diff --git a/grammar.js b/grammar.js index 88aea376..bfc38a1d 100644 --- a/grammar.js +++ b/grammar.js @@ -841,7 +841,12 @@ module.exports = grammar({ ')', ), - raw_string: _ => /'[^']*'/, + raw_string_content: _ => token(prec(-1, /([^']|\\')*/)), + raw_string: $ => seq( + '\'', + $.raw_string_content, + '\'', + ), ansi_c_string: _ => /\$'([^']|\\')*'/, diff --git a/src/grammar.json b/src/grammar.json index 38a42752..540da063 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -5213,9 +5213,33 @@ } ] }, + "raw_string_content": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": -1, + "content": { + "type": "PATTERN", + "value": "([^']|\\\\')*" + } + } + }, "raw_string": { - "type": "PATTERN", - "value": "'[^']*'" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "'" + }, + { + "type": "SYMBOL", + "name": "raw_string_content" + }, + { + "type": "STRING", + "value": "'" + } + ] }, "ansi_c_string": { "type": "PATTERN", diff --git a/src/node-types.json b/src/node-types.json index a69fdc09..12329498 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -1736,6 +1736,21 @@ ] } }, + { + "type": "raw_string", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "raw_string_content", + "named": true + } + ] + } + }, { "type": "redirected_statement", "named": true, @@ -2334,6 +2349,10 @@ "type": "&>>", "named": false }, + { + "type": "'", + "named": false + }, { "type": "(", "named": false @@ -2711,7 +2730,7 @@ "named": false }, { - "type": "raw_string", + "type": "raw_string_content", "named": true }, { diff --git a/src/parser.c b/src/parser.c index 2038bed8..cb136d5a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,11 +13,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7671 -#define LARGE_STATE_COUNT 528 -#define SYMBOL_COUNT 280 +#define STATE_COUNT 7869 +#define LARGE_STATE_COUNT 530 +#define SYMBOL_COUNT 282 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 175 +#define TOKEN_COUNT 176 #define EXTERNAL_TOKEN_COUNT 29 #define FIELD_COUNT 19 #define MAX_ALIAS_SEQUENCE_LENGTH 8 @@ -128,181 +128,183 @@ enum ts_symbol_identifiers { sym__special_character = 102, anon_sym_DQUOTE = 103, sym_string_content = 104, - sym_raw_string = 105, - sym_ansi_c_string = 106, - aux_sym_number_token1 = 107, - aux_sym_number_token2 = 108, - anon_sym_POUND = 109, - anon_sym_DOLLAR_LBRACE = 110, - anon_sym_RBRACE3 = 111, - anon_sym_BANG2 = 112, - anon_sym_AT = 113, - anon_sym_STAR2 = 114, - anon_sym_POUND2 = 115, - anon_sym_EQ2 = 116, - anon_sym_COLON_EQ = 117, - anon_sym_DASH3 = 118, - anon_sym_COLON_DASH = 119, - anon_sym_PLUS3 = 120, - anon_sym_COLON_PLUS = 121, - anon_sym_QMARK2 = 122, - anon_sym_COLON_QMARK = 123, - anon_sym_PERCENT_PERCENT = 124, - aux_sym__expansion_regex_token1 = 125, - anon_sym_SLASH_SLASH = 126, - anon_sym_SLASH_POUND = 127, - anon_sym_SLASH_PERCENT = 128, - anon_sym_COMMA_COMMA = 129, - anon_sym_CARET_CARET = 130, - anon_sym_U = 131, - anon_sym_u = 132, - anon_sym_L = 133, - anon_sym_Q = 134, - anon_sym_E = 135, - anon_sym_P = 136, - anon_sym_A = 137, - anon_sym_K = 138, - anon_sym_a = 139, - anon_sym_k = 140, - anon_sym_DOLLAR_LPAREN = 141, - anon_sym_BQUOTE = 142, - anon_sym_DOLLAR_BQUOTE = 143, - anon_sym_LT_LPAREN = 144, - anon_sym_GT_LPAREN = 145, - sym_comment = 146, - sym__comment_word = 147, - aux_sym__simple_variable_name_token1 = 148, - aux_sym__multiline_variable_name_token1 = 149, - anon_sym_AT2 = 150, - anon_sym_0 = 151, - anon_sym__ = 152, - sym_heredoc_start = 153, - sym_simple_heredoc_body = 154, - sym__heredoc_body_beginning = 155, - sym_heredoc_content = 156, - sym_heredoc_end = 157, - sym_file_descriptor = 158, - sym__empty_value = 159, - sym__concat = 160, - sym_variable_name = 161, - sym_test_operator = 162, - sym_regex = 163, - sym__regex_no_slash = 164, - sym__regex_no_space = 165, - sym__expansion_word = 166, - sym_extglob_pattern = 167, - sym__bare_dollar = 168, - sym__brace_start = 169, - sym__immediate_double_hash = 170, - sym__external_expansion_sym_hash = 171, - sym__external_expansion_sym_bang = 172, - sym__external_expansion_sym_equal = 173, - sym___error_recovery = 174, - sym_program = 175, - sym__statements = 176, - aux_sym__terminated_statement = 177, - sym__statement_not_pipeline = 178, - sym_redirected_statement = 179, - sym_for_statement = 180, - sym_c_style_for_statement = 181, - sym__for_body = 182, - sym__c_expression = 183, - sym__c_expression_not_assignment = 184, - sym__c_variable_assignment = 185, - sym__c_unary_expression = 186, - sym__c_binary_expression = 187, - sym__c_postfix_expression = 188, - sym__c_parenthesized_expression = 189, - sym_while_statement = 190, - sym_do_group = 191, - sym_if_statement = 192, - sym_elif_clause = 193, - sym_else_clause = 194, - sym_case_statement = 195, - sym_case_item = 196, - sym_last_case_item = 197, - sym_function_definition = 198, - sym_compound_statement = 199, - sym_subshell = 200, - sym_pipeline = 201, - sym_list = 202, - sym_negated_command = 203, - sym_test_command = 204, - sym__test_command_binary_expression = 205, - sym_declaration_command = 206, - sym_unset_command = 207, - sym_command = 208, - sym_command_name = 209, - sym_variable_assignment = 210, - sym_variable_assignments = 211, - sym_subscript = 212, - sym_file_redirect = 213, - sym_heredoc_redirect = 214, - sym__heredoc_pipeline = 215, - sym__heredoc_expression = 216, - aux_sym__heredoc_command = 217, - sym__heredoc_body = 218, - sym_heredoc_body = 219, - sym__simple_heredoc_body = 220, - sym_herestring_redirect = 221, - sym__expression = 222, - sym_binary_expression = 223, - sym_ternary_expression = 224, - sym_unary_expression = 225, - sym_postfix_expression = 226, - sym_parenthesized_expression = 227, - sym_arithmetic_expansion = 228, - sym_brace_expression = 229, - sym__arithmetic_expression = 230, - sym__arithmetic_literal = 231, - sym__arithmetic_binary_expression = 232, - sym__arithmetic_ternary_expression = 233, - sym__arithmetic_unary_expression = 234, - sym__arithmetic_postfix_expression = 235, - sym__arithmetic_parenthesized_expression = 236, - sym_concatenation = 237, - sym_string = 238, - sym_translated_string = 239, - sym_array = 240, - sym_number = 241, - sym_simple_expansion = 242, - sym_expansion = 243, - sym__expansion_body = 244, - sym__expansion_expression = 245, - sym__expansion_regex = 246, - sym__expansion_regex_replacement = 247, - sym__expansion_regex_removal = 248, - sym__expansion_max_length = 249, - sym__expansion_max_length_expression = 250, - sym__expansion_max_length_binary_expression = 251, - sym__expansion_operator = 252, - sym__concatenation_in_expansion = 253, - sym_command_substitution = 254, - sym_process_substitution = 255, - sym__extglob_blob = 256, - sym__c_terminator = 257, - aux_sym__statements_repeat1 = 258, - aux_sym_redirected_statement_repeat1 = 259, - aux_sym_redirected_statement_repeat2 = 260, - aux_sym_for_statement_repeat1 = 261, - aux_sym__for_body_repeat1 = 262, - aux_sym_if_statement_repeat1 = 263, - aux_sym_case_statement_repeat1 = 264, - aux_sym_case_item_repeat1 = 265, - aux_sym_pipeline_repeat1 = 266, - aux_sym_declaration_command_repeat1 = 267, - aux_sym_unset_command_repeat1 = 268, - aux_sym_command_repeat1 = 269, - aux_sym_command_repeat2 = 270, - aux_sym_variable_assignments_repeat1 = 271, - aux_sym_heredoc_body_repeat1 = 272, - aux_sym__literal_repeat1 = 273, - aux_sym_arithmetic_expansion_repeat1 = 274, - aux_sym_concatenation_repeat1 = 275, - aux_sym_string_repeat1 = 276, - aux_sym__expansion_body_repeat1 = 277, - aux_sym__expansion_regex_repeat1 = 278, - aux_sym__concatenation_in_expansion_repeat1 = 279, + sym_raw_string_content = 105, + anon_sym_SQUOTE = 106, + sym_ansi_c_string = 107, + aux_sym_number_token1 = 108, + aux_sym_number_token2 = 109, + anon_sym_POUND = 110, + anon_sym_DOLLAR_LBRACE = 111, + anon_sym_RBRACE3 = 112, + anon_sym_BANG2 = 113, + anon_sym_AT = 114, + anon_sym_STAR2 = 115, + anon_sym_POUND2 = 116, + anon_sym_EQ2 = 117, + anon_sym_COLON_EQ = 118, + anon_sym_DASH3 = 119, + anon_sym_COLON_DASH = 120, + anon_sym_PLUS3 = 121, + anon_sym_COLON_PLUS = 122, + anon_sym_QMARK2 = 123, + anon_sym_COLON_QMARK = 124, + anon_sym_PERCENT_PERCENT = 125, + aux_sym__expansion_regex_token1 = 126, + anon_sym_SLASH_SLASH = 127, + anon_sym_SLASH_POUND = 128, + anon_sym_SLASH_PERCENT = 129, + anon_sym_COMMA_COMMA = 130, + anon_sym_CARET_CARET = 131, + anon_sym_U = 132, + anon_sym_u = 133, + anon_sym_L = 134, + anon_sym_Q = 135, + anon_sym_E = 136, + anon_sym_P = 137, + anon_sym_A = 138, + anon_sym_K = 139, + anon_sym_a = 140, + anon_sym_k = 141, + anon_sym_DOLLAR_LPAREN = 142, + anon_sym_BQUOTE = 143, + anon_sym_DOLLAR_BQUOTE = 144, + anon_sym_LT_LPAREN = 145, + anon_sym_GT_LPAREN = 146, + sym_comment = 147, + sym__comment_word = 148, + aux_sym__simple_variable_name_token1 = 149, + aux_sym__multiline_variable_name_token1 = 150, + anon_sym_AT2 = 151, + anon_sym_0 = 152, + anon_sym__ = 153, + sym_heredoc_start = 154, + sym_simple_heredoc_body = 155, + sym__heredoc_body_beginning = 156, + sym_heredoc_content = 157, + sym_heredoc_end = 158, + sym_file_descriptor = 159, + sym__empty_value = 160, + sym__concat = 161, + sym_variable_name = 162, + sym_test_operator = 163, + sym_regex = 164, + sym__regex_no_slash = 165, + sym__regex_no_space = 166, + sym__expansion_word = 167, + sym_extglob_pattern = 168, + sym__bare_dollar = 169, + sym__brace_start = 170, + sym__immediate_double_hash = 171, + sym__external_expansion_sym_hash = 172, + sym__external_expansion_sym_bang = 173, + sym__external_expansion_sym_equal = 174, + sym___error_recovery = 175, + sym_program = 176, + sym__statements = 177, + aux_sym__terminated_statement = 178, + sym__statement_not_pipeline = 179, + sym_redirected_statement = 180, + sym_for_statement = 181, + sym_c_style_for_statement = 182, + sym__for_body = 183, + sym__c_expression = 184, + sym__c_expression_not_assignment = 185, + sym__c_variable_assignment = 186, + sym__c_unary_expression = 187, + sym__c_binary_expression = 188, + sym__c_postfix_expression = 189, + sym__c_parenthesized_expression = 190, + sym_while_statement = 191, + sym_do_group = 192, + sym_if_statement = 193, + sym_elif_clause = 194, + sym_else_clause = 195, + sym_case_statement = 196, + sym_case_item = 197, + sym_last_case_item = 198, + sym_function_definition = 199, + sym_compound_statement = 200, + sym_subshell = 201, + sym_pipeline = 202, + sym_list = 203, + sym_negated_command = 204, + sym_test_command = 205, + sym__test_command_binary_expression = 206, + sym_declaration_command = 207, + sym_unset_command = 208, + sym_command = 209, + sym_command_name = 210, + sym_variable_assignment = 211, + sym_variable_assignments = 212, + sym_subscript = 213, + sym_file_redirect = 214, + sym_heredoc_redirect = 215, + sym__heredoc_pipeline = 216, + sym__heredoc_expression = 217, + aux_sym__heredoc_command = 218, + sym__heredoc_body = 219, + sym_heredoc_body = 220, + sym__simple_heredoc_body = 221, + sym_herestring_redirect = 222, + sym__expression = 223, + sym_binary_expression = 224, + sym_ternary_expression = 225, + sym_unary_expression = 226, + sym_postfix_expression = 227, + sym_parenthesized_expression = 228, + sym_arithmetic_expansion = 229, + sym_brace_expression = 230, + sym__arithmetic_expression = 231, + sym__arithmetic_literal = 232, + sym__arithmetic_binary_expression = 233, + sym__arithmetic_ternary_expression = 234, + sym__arithmetic_unary_expression = 235, + sym__arithmetic_postfix_expression = 236, + sym__arithmetic_parenthesized_expression = 237, + sym_concatenation = 238, + sym_string = 239, + sym_translated_string = 240, + sym_array = 241, + sym_raw_string = 242, + sym_number = 243, + sym_simple_expansion = 244, + sym_expansion = 245, + sym__expansion_body = 246, + sym__expansion_expression = 247, + sym__expansion_regex = 248, + sym__expansion_regex_replacement = 249, + sym__expansion_regex_removal = 250, + sym__expansion_max_length = 251, + sym__expansion_max_length_expression = 252, + sym__expansion_max_length_binary_expression = 253, + sym__expansion_operator = 254, + sym__concatenation_in_expansion = 255, + sym_command_substitution = 256, + sym_process_substitution = 257, + sym__extglob_blob = 258, + sym__c_terminator = 259, + aux_sym__statements_repeat1 = 260, + aux_sym_redirected_statement_repeat1 = 261, + aux_sym_redirected_statement_repeat2 = 262, + aux_sym_for_statement_repeat1 = 263, + aux_sym__for_body_repeat1 = 264, + aux_sym_if_statement_repeat1 = 265, + aux_sym_case_statement_repeat1 = 266, + aux_sym_case_item_repeat1 = 267, + aux_sym_pipeline_repeat1 = 268, + aux_sym_declaration_command_repeat1 = 269, + aux_sym_unset_command_repeat1 = 270, + aux_sym_command_repeat1 = 271, + aux_sym_command_repeat2 = 272, + aux_sym_variable_assignments_repeat1 = 273, + aux_sym_heredoc_body_repeat1 = 274, + aux_sym__literal_repeat1 = 275, + aux_sym_arithmetic_expansion_repeat1 = 276, + aux_sym_concatenation_repeat1 = 277, + aux_sym_string_repeat1 = 278, + aux_sym__expansion_body_repeat1 = 279, + aux_sym__expansion_regex_repeat1 = 280, + aux_sym__concatenation_in_expansion_repeat1 = 281, }; static const char * const ts_symbol_names[] = { @@ -411,7 +413,8 @@ static const char * const ts_symbol_names[] = { [sym__special_character] = "_special_character", [anon_sym_DQUOTE] = "\"", [sym_string_content] = "string_content", - [sym_raw_string] = "raw_string", + [sym_raw_string_content] = "raw_string_content", + [anon_sym_SQUOTE] = "'", [sym_ansi_c_string] = "ansi_c_string", [aux_sym_number_token1] = "number_token1", [aux_sym_number_token2] = "number_token2", @@ -547,6 +550,7 @@ static const char * const ts_symbol_names[] = { [sym_string] = "string", [sym_translated_string] = "translated_string", [sym_array] = "array", + [sym_raw_string] = "raw_string", [sym_number] = "number", [sym_simple_expansion] = "simple_expansion", [sym_expansion] = "expansion", @@ -694,7 +698,8 @@ static const TSSymbol ts_symbol_map[] = { [sym__special_character] = sym__special_character, [anon_sym_DQUOTE] = anon_sym_DQUOTE, [sym_string_content] = sym_string_content, - [sym_raw_string] = sym_raw_string, + [sym_raw_string_content] = sym_raw_string_content, + [anon_sym_SQUOTE] = anon_sym_SQUOTE, [sym_ansi_c_string] = sym_ansi_c_string, [aux_sym_number_token1] = aux_sym_number_token1, [aux_sym_number_token2] = aux_sym_number_token2, @@ -830,6 +835,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_string] = sym_string, [sym_translated_string] = sym_translated_string, [sym_array] = sym_array, + [sym_raw_string] = sym_raw_string, [sym_number] = sym_number, [sym_simple_expansion] = sym_simple_expansion, [sym_expansion] = sym_expansion, @@ -1292,10 +1298,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_raw_string] = { + [sym_raw_string_content] = { .visible = true, .named = true, }, + [anon_sym_SQUOTE] = { + .visible = true, + .named = false, + }, [sym_ansi_c_string] = { .visible = true, .named = true, @@ -1837,6 +1847,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_raw_string] = { + .visible = true, + .named = true, + }, [sym_number] = { .visible = true, .named = true, @@ -2814,406 +2828,406 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [61] = 61, [62] = 62, [63] = 63, - [64] = 61, - [65] = 65, - [66] = 66, + [64] = 64, + [65] = 34, + [66] = 34, [67] = 67, [68] = 68, - [69] = 69, - [70] = 70, - [71] = 34, - [72] = 34, - [73] = 70, - [74] = 69, - [75] = 75, - [76] = 76, - [77] = 70, - [78] = 75, - [79] = 69, - [80] = 75, - [81] = 76, - [82] = 70, - [83] = 69, + [69] = 62, + [70] = 63, + [71] = 71, + [72] = 71, + [73] = 68, + [74] = 74, + [75] = 62, + [76] = 63, + [77] = 61, + [78] = 71, + [79] = 68, + [80] = 62, + [81] = 63, + [82] = 82, + [83] = 71, [84] = 84, - [85] = 75, - [86] = 76, - [87] = 70, - [88] = 69, - [89] = 75, - [90] = 76, - [91] = 70, - [92] = 69, - [93] = 75, - [94] = 76, - [95] = 70, - [96] = 69, - [97] = 75, - [98] = 76, - [99] = 70, - [100] = 69, - [101] = 75, - [102] = 76, - [103] = 84, - [104] = 65, - [105] = 66, - [106] = 67, - [107] = 68, - [108] = 76, - [109] = 84, - [110] = 61, - [111] = 65, - [112] = 66, - [113] = 67, + [85] = 68, + [86] = 86, + [87] = 62, + [88] = 63, + [89] = 71, + [90] = 68, + [91] = 62, + [92] = 63, + [93] = 71, + [94] = 68, + [95] = 62, + [96] = 63, + [97] = 71, + [98] = 68, + [99] = 62, + [100] = 63, + [101] = 71, + [102] = 102, + [103] = 64, + [104] = 67, + [105] = 61, + [106] = 86, + [107] = 107, + [108] = 102, + [109] = 64, + [110] = 67, + [111] = 61, + [112] = 86, + [113] = 107, [114] = 68, - [115] = 84, - [116] = 61, - [117] = 65, - [118] = 66, - [119] = 67, - [120] = 68, - [121] = 121, - [122] = 84, - [123] = 61, - [124] = 65, - [125] = 66, - [126] = 67, - [127] = 84, - [128] = 61, - [129] = 65, - [130] = 66, - [131] = 67, - [132] = 84, - [133] = 61, - [134] = 65, - [135] = 66, - [136] = 67, - [137] = 84, - [138] = 61, - [139] = 65, - [140] = 66, - [141] = 67, - [142] = 61, - [143] = 65, - [144] = 66, - [145] = 67, - [146] = 61, - [147] = 65, - [148] = 66, - [149] = 67, - [150] = 61, - [151] = 65, - [152] = 66, - [153] = 67, - [154] = 61, - [155] = 65, - [156] = 66, - [157] = 67, - [158] = 61, - [159] = 65, - [160] = 66, - [161] = 67, - [162] = 61, - [163] = 65, - [164] = 66, - [165] = 67, - [166] = 61, - [167] = 65, - [168] = 66, - [169] = 67, - [170] = 61, - [171] = 65, - [172] = 66, - [173] = 67, - [174] = 61, - [175] = 65, - [176] = 66, - [177] = 67, - [178] = 61, - [179] = 65, - [180] = 66, - [181] = 67, - [182] = 61, - [183] = 65, - [184] = 66, - [185] = 67, - [186] = 61, - [187] = 65, - [188] = 66, - [189] = 67, - [190] = 61, - [191] = 65, - [192] = 66, - [193] = 67, - [194] = 61, - [195] = 65, - [196] = 66, - [197] = 67, - [198] = 61, - [199] = 65, - [200] = 66, - [201] = 67, - [202] = 61, - [203] = 65, - [204] = 66, - [205] = 67, - [206] = 61, - [207] = 65, - [208] = 66, - [209] = 67, - [210] = 61, - [211] = 65, - [212] = 66, - [213] = 67, - [214] = 61, - [215] = 65, - [216] = 66, - [217] = 67, - [218] = 61, - [219] = 65, - [220] = 66, - [221] = 67, - [222] = 61, - [223] = 65, - [224] = 66, - [225] = 67, - [226] = 61, - [227] = 65, - [228] = 66, - [229] = 67, - [230] = 61, - [231] = 65, - [232] = 66, - [233] = 67, - [234] = 61, - [235] = 65, - [236] = 66, - [237] = 67, - [238] = 61, - [239] = 65, - [240] = 66, - [241] = 67, - [242] = 61, - [243] = 65, - [244] = 66, - [245] = 67, - [246] = 61, - [247] = 65, - [248] = 66, - [249] = 67, - [250] = 61, - [251] = 65, - [252] = 66, - [253] = 61, - [254] = 65, - [255] = 66, - [256] = 67, - [257] = 61, - [258] = 65, - [259] = 66, - [260] = 67, - [261] = 61, - [262] = 65, - [263] = 66, - [264] = 67, - [265] = 61, - [266] = 65, - [267] = 66, - [268] = 67, - [269] = 61, - [270] = 65, - [271] = 66, - [272] = 67, - [273] = 61, - [274] = 65, - [275] = 66, - [276] = 67, - [277] = 61, - [278] = 65, - [279] = 66, - [280] = 67, - [281] = 61, - [282] = 65, - [283] = 66, - [284] = 67, - [285] = 61, - [286] = 65, - [287] = 66, - [288] = 67, - [289] = 61, - [290] = 65, - [291] = 66, - [292] = 67, - [293] = 61, - [294] = 65, - [295] = 66, - [296] = 67, - [297] = 61, - [298] = 65, - [299] = 66, - [300] = 67, - [301] = 61, - [302] = 65, - [303] = 66, - [304] = 67, - [305] = 61, - [306] = 65, - [307] = 66, - [308] = 67, - [309] = 61, - [310] = 65, - [311] = 66, - [312] = 67, - [313] = 61, - [314] = 65, - [315] = 66, - [316] = 67, - [317] = 61, - [318] = 65, - [319] = 66, - [320] = 67, - [321] = 61, - [322] = 65, - [323] = 66, - [324] = 67, - [325] = 61, - [326] = 65, - [327] = 66, - [328] = 67, - [329] = 61, - [330] = 65, - [331] = 66, - [332] = 67, - [333] = 61, - [334] = 65, - [335] = 66, - [336] = 67, - [337] = 61, - [338] = 65, - [339] = 66, - [340] = 67, - [341] = 61, - [342] = 65, - [343] = 66, - [344] = 67, - [345] = 61, - [346] = 65, - [347] = 66, - [348] = 67, - [349] = 61, - [350] = 65, - [351] = 66, - [352] = 67, - [353] = 61, - [354] = 65, - [355] = 66, - [356] = 67, - [357] = 61, - [358] = 65, - [359] = 66, - [360] = 67, - [361] = 61, - [362] = 65, - [363] = 66, - [364] = 67, - [365] = 61, - [366] = 65, - [367] = 66, - [368] = 67, - [369] = 61, - [370] = 65, - [371] = 66, - [372] = 61, - [373] = 65, - [374] = 66, - [375] = 61, - [376] = 65, - [377] = 66, - [378] = 61, - [379] = 65, - [380] = 66, - [381] = 61, - [382] = 65, - [383] = 66, - [384] = 61, - [385] = 65, - [386] = 66, - [387] = 61, - [388] = 65, - [389] = 66, - [390] = 61, - [391] = 65, - [392] = 66, - [393] = 61, - [394] = 65, - [395] = 66, - [396] = 61, - [397] = 65, - [398] = 66, - [399] = 61, - [400] = 65, - [401] = 66, - [402] = 61, - [403] = 65, - [404] = 66, - [405] = 61, - [406] = 65, - [407] = 66, - [408] = 61, - [409] = 65, - [410] = 66, - [411] = 61, - [412] = 65, - [413] = 66, - [414] = 61, - [415] = 65, - [416] = 66, - [417] = 67, + [115] = 102, + [116] = 64, + [117] = 67, + [118] = 61, + [119] = 86, + [120] = 107, + [121] = 107, + [122] = 102, + [123] = 64, + [124] = 67, + [125] = 61, + [126] = 86, + [127] = 102, + [128] = 64, + [129] = 67, + [130] = 61, + [131] = 86, + [132] = 102, + [133] = 64, + [134] = 67, + [135] = 61, + [136] = 86, + [137] = 102, + [138] = 64, + [139] = 67, + [140] = 61, + [141] = 86, + [142] = 64, + [143] = 67, + [144] = 61, + [145] = 86, + [146] = 64, + [147] = 67, + [148] = 61, + [149] = 86, + [150] = 64, + [151] = 67, + [152] = 61, + [153] = 86, + [154] = 64, + [155] = 67, + [156] = 61, + [157] = 86, + [158] = 64, + [159] = 67, + [160] = 102, + [161] = 86, + [162] = 64, + [163] = 67, + [164] = 61, + [165] = 86, + [166] = 64, + [167] = 67, + [168] = 61, + [169] = 86, + [170] = 64, + [171] = 67, + [172] = 61, + [173] = 86, + [174] = 64, + [175] = 67, + [176] = 61, + [177] = 86, + [178] = 64, + [179] = 67, + [180] = 61, + [181] = 86, + [182] = 64, + [183] = 67, + [184] = 61, + [185] = 86, + [186] = 64, + [187] = 67, + [188] = 61, + [189] = 86, + [190] = 67, + [191] = 61, + [192] = 86, + [193] = 64, + [194] = 67, + [195] = 61, + [196] = 86, + [197] = 64, + [198] = 67, + [199] = 61, + [200] = 86, + [201] = 64, + [202] = 67, + [203] = 61, + [204] = 86, + [205] = 64, + [206] = 67, + [207] = 61, + [208] = 86, + [209] = 64, + [210] = 67, + [211] = 61, + [212] = 86, + [213] = 64, + [214] = 67, + [215] = 61, + [216] = 86, + [217] = 64, + [218] = 67, + [219] = 61, + [220] = 86, + [221] = 64, + [222] = 67, + [223] = 61, + [224] = 86, + [225] = 64, + [226] = 67, + [227] = 61, + [228] = 86, + [229] = 64, + [230] = 67, + [231] = 61, + [232] = 86, + [233] = 64, + [234] = 67, + [235] = 61, + [236] = 86, + [237] = 64, + [238] = 67, + [239] = 61, + [240] = 86, + [241] = 64, + [242] = 67, + [243] = 61, + [244] = 86, + [245] = 64, + [246] = 67, + [247] = 61, + [248] = 86, + [249] = 64, + [250] = 67, + [251] = 61, + [252] = 86, + [253] = 64, + [254] = 67, + [255] = 61, + [256] = 86, + [257] = 64, + [258] = 67, + [259] = 61, + [260] = 86, + [261] = 64, + [262] = 67, + [263] = 61, + [264] = 86, + [265] = 64, + [266] = 67, + [267] = 61, + [268] = 86, + [269] = 64, + [270] = 67, + [271] = 61, + [272] = 86, + [273] = 64, + [274] = 67, + [275] = 61, + [276] = 86, + [277] = 64, + [278] = 67, + [279] = 61, + [280] = 86, + [281] = 64, + [282] = 67, + [283] = 61, + [284] = 86, + [285] = 64, + [286] = 67, + [287] = 61, + [288] = 86, + [289] = 64, + [290] = 67, + [291] = 61, + [292] = 86, + [293] = 64, + [294] = 67, + [295] = 61, + [296] = 86, + [297] = 64, + [298] = 67, + [299] = 61, + [300] = 86, + [301] = 64, + [302] = 67, + [303] = 61, + [304] = 86, + [305] = 64, + [306] = 67, + [307] = 61, + [308] = 86, + [309] = 64, + [310] = 67, + [311] = 61, + [312] = 86, + [313] = 64, + [314] = 67, + [315] = 61, + [316] = 86, + [317] = 64, + [318] = 67, + [319] = 61, + [320] = 86, + [321] = 64, + [322] = 67, + [323] = 61, + [324] = 86, + [325] = 64, + [326] = 67, + [327] = 61, + [328] = 86, + [329] = 64, + [330] = 67, + [331] = 61, + [332] = 86, + [333] = 64, + [334] = 67, + [335] = 61, + [336] = 86, + [337] = 64, + [338] = 67, + [339] = 61, + [340] = 86, + [341] = 64, + [342] = 67, + [343] = 61, + [344] = 86, + [345] = 64, + [346] = 67, + [347] = 61, + [348] = 86, + [349] = 64, + [350] = 67, + [351] = 61, + [352] = 86, + [353] = 64, + [354] = 67, + [355] = 61, + [356] = 86, + [357] = 64, + [358] = 67, + [359] = 61, + [360] = 86, + [361] = 64, + [362] = 67, + [363] = 61, + [364] = 86, + [365] = 64, + [366] = 67, + [367] = 61, + [368] = 86, + [369] = 64, + [370] = 67, + [371] = 61, + [372] = 64, + [373] = 67, + [374] = 61, + [375] = 64, + [376] = 67, + [377] = 61, + [378] = 64, + [379] = 67, + [380] = 61, + [381] = 64, + [382] = 67, + [383] = 61, + [384] = 64, + [385] = 67, + [386] = 61, + [387] = 64, + [388] = 67, + [389] = 61, + [390] = 64, + [391] = 67, + [392] = 61, + [393] = 64, + [394] = 67, + [395] = 61, + [396] = 64, + [397] = 67, + [398] = 61, + [399] = 64, + [400] = 67, + [401] = 61, + [402] = 64, + [403] = 67, + [404] = 61, + [405] = 64, + [406] = 67, + [407] = 61, + [408] = 64, + [409] = 67, + [410] = 61, + [411] = 64, + [412] = 67, + [413] = 61, + [414] = 64, + [415] = 67, + [416] = 61, + [417] = 64, [418] = 418, - [419] = 419, - [420] = 418, + [419] = 418, + [420] = 420, [421] = 421, - [422] = 419, + [422] = 420, [423] = 423, - [424] = 418, - [425] = 425, - [426] = 419, - [427] = 418, - [428] = 419, - [429] = 419, - [430] = 425, - [431] = 425, - [432] = 425, + [424] = 424, + [425] = 420, + [426] = 424, + [427] = 420, + [428] = 418, + [429] = 424, + [430] = 420, + [431] = 424, + [432] = 418, [433] = 433, [434] = 434, - [435] = 433, - [436] = 433, - [437] = 433, + [435] = 434, + [436] = 436, + [437] = 436, [438] = 438, - [439] = 434, - [440] = 433, + [439] = 436, + [440] = 434, [441] = 434, [442] = 434, - [443] = 433, + [443] = 436, [444] = 434, - [445] = 433, - [446] = 434, - [447] = 434, - [448] = 433, - [449] = 434, - [450] = 450, + [445] = 436, + [446] = 436, + [447] = 436, + [448] = 434, + [449] = 436, + [450] = 434, [451] = 451, - [452] = 452, + [452] = 451, [453] = 451, - [454] = 451, - [455] = 452, - [456] = 451, - [457] = 452, - [458] = 452, - [459] = 452, - [460] = 452, - [461] = 451, + [454] = 454, + [455] = 451, + [456] = 454, + [457] = 454, + [458] = 454, + [459] = 451, + [460] = 454, + [461] = 454, [462] = 451, - [463] = 452, + [463] = 451, [464] = 464, [465] = 465, [466] = 464, @@ -3247,7180 +3261,7378 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [494] = 494, [495] = 495, [496] = 470, - [497] = 473, + [497] = 468, [498] = 498, - [499] = 471, - [500] = 472, - [501] = 468, - [502] = 469, - [503] = 490, - [504] = 482, - [505] = 484, + [499] = 472, + [500] = 473, + [501] = 471, + [502] = 502, + [503] = 469, + [504] = 478, + [505] = 489, [506] = 487, - [507] = 474, - [508] = 476, - [509] = 483, - [510] = 475, - [511] = 489, - [512] = 478, - [513] = 481, + [507] = 481, + [508] = 482, + [509] = 484, + [510] = 483, + [511] = 490, + [512] = 491, + [513] = 492, [514] = 485, - [515] = 491, - [516] = 488, - [517] = 492, - [518] = 479, - [519] = 477, - [520] = 486, - [521] = 480, - [522] = 493, - [523] = 494, - [524] = 498, - [525] = 495, + [515] = 488, + [516] = 477, + [517] = 486, + [518] = 480, + [519] = 493, + [520] = 479, + [521] = 474, + [522] = 475, + [523] = 476, + [524] = 495, + [525] = 494, [526] = 526, - [527] = 526, - [528] = 528, - [529] = 529, - [530] = 529, - [531] = 528, - [532] = 532, - [533] = 529, - [534] = 528, - [535] = 535, + [527] = 498, + [528] = 526, + [529] = 502, + [530] = 530, + [531] = 531, + [532] = 530, + [533] = 531, + [534] = 534, + [535] = 531, [536] = 536, - [537] = 464, - [538] = 465, - [539] = 528, - [540] = 529, + [537] = 537, + [538] = 530, + [539] = 530, + [540] = 531, [541] = 541, [542] = 542, - [543] = 532, - [544] = 544, - [545] = 529, - [546] = 528, - [547] = 536, - [548] = 465, + [543] = 543, + [544] = 534, + [545] = 465, + [546] = 530, + [547] = 531, + [548] = 531, [549] = 464, - [550] = 464, - [551] = 465, - [552] = 528, - [553] = 529, - [554] = 535, - [555] = 465, - [556] = 535, - [557] = 542, - [558] = 464, + [550] = 530, + [551] = 537, + [552] = 536, + [553] = 543, + [554] = 537, + [555] = 541, + [556] = 534, + [557] = 536, + [558] = 465, [559] = 464, [560] = 465, - [561] = 532, - [562] = 544, - [563] = 532, - [564] = 536, - [565] = 464, - [566] = 541, - [567] = 535, - [568] = 465, - [569] = 536, - [570] = 542, - [571] = 532, - [572] = 536, - [573] = 541, - [574] = 544, - [575] = 542, + [561] = 464, + [562] = 534, + [563] = 537, + [564] = 542, + [565] = 536, + [566] = 465, + [567] = 543, + [568] = 541, + [569] = 543, + [570] = 464, + [571] = 537, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 536, [576] = 465, - [577] = 544, - [578] = 464, - [579] = 465, - [580] = 464, - [581] = 464, - [582] = 465, - [583] = 583, - [584] = 584, - [585] = 585, - [586] = 541, - [587] = 536, - [588] = 535, - [589] = 532, + [577] = 542, + [578] = 465, + [579] = 464, + [580] = 542, + [581] = 541, + [582] = 537, + [583] = 534, + [584] = 536, + [585] = 464, + [586] = 464, + [587] = 573, + [588] = 588, + [589] = 465, [590] = 464, - [591] = 464, - [592] = 592, - [593] = 593, - [594] = 464, - [595] = 465, - [596] = 583, - [597] = 584, - [598] = 583, - [599] = 465, - [600] = 600, - [601] = 542, - [602] = 585, - [603] = 544, + [591] = 591, + [592] = 572, + [593] = 573, + [594] = 574, + [595] = 574, + [596] = 596, + [597] = 597, + [598] = 541, + [599] = 572, + [600] = 543, + [601] = 541, + [602] = 543, + [603] = 542, [604] = 604, - [605] = 605, - [606] = 541, - [607] = 607, - [608] = 544, - [609] = 465, - [610] = 584, - [611] = 528, - [612] = 542, - [613] = 529, - [614] = 585, - [615] = 585, - [616] = 604, - [617] = 529, - [618] = 618, - [619] = 583, - [620] = 584, - [621] = 618, - [622] = 592, - [623] = 593, - [624] = 624, - [625] = 585, - [626] = 592, - [627] = 593, - [628] = 618, - [629] = 583, - [630] = 630, - [631] = 624, - [632] = 584, - [633] = 585, - [634] = 528, - [635] = 584, - [636] = 464, - [637] = 465, - [638] = 464, - [639] = 465, - [640] = 584, - [641] = 464, - [642] = 465, - [643] = 585, - [644] = 583, - [645] = 464, - [646] = 465, - [647] = 464, + [605] = 465, + [606] = 530, + [607] = 465, + [608] = 464, + [609] = 531, + [610] = 610, + [611] = 591, + [612] = 597, + [613] = 531, + [614] = 464, + [615] = 572, + [616] = 596, + [617] = 574, + [618] = 591, + [619] = 572, + [620] = 597, + [621] = 574, + [622] = 465, + [623] = 572, + [624] = 610, + [625] = 572, + [626] = 574, + [627] = 464, + [628] = 573, + [629] = 604, + [630] = 610, + [631] = 610, + [632] = 573, + [633] = 610, + [634] = 634, + [635] = 465, + [636] = 573, + [637] = 610, + [638] = 610, + [639] = 574, + [640] = 610, + [641] = 465, + [642] = 464, + [643] = 588, + [644] = 530, + [645] = 573, + [646] = 588, + [647] = 591, [648] = 465, - [649] = 618, - [650] = 618, - [651] = 583, - [652] = 600, - [653] = 630, - [654] = 618, - [655] = 618, - [656] = 607, - [657] = 618, + [649] = 464, + [650] = 465, + [651] = 464, + [652] = 465, + [653] = 464, + [654] = 465, + [655] = 464, + [656] = 604, + [657] = 465, [658] = 464, - [659] = 583, - [660] = 584, - [661] = 585, - [662] = 464, - [663] = 465, - [664] = 664, - [665] = 592, - [666] = 593, - [667] = 583, - [668] = 600, - [669] = 592, - [670] = 593, - [671] = 604, - [672] = 583, - [673] = 584, - [674] = 585, - [675] = 592, - [676] = 593, - [677] = 664, - [678] = 604, - [679] = 664, - [680] = 465, - [681] = 464, - [682] = 464, - [683] = 464, - [684] = 465, - [685] = 465, - [686] = 584, - [687] = 593, - [688] = 585, - [689] = 464, - [690] = 465, - [691] = 464, - [692] = 465, - [693] = 664, - [694] = 464, - [695] = 465, - [696] = 592, - [697] = 600, - [698] = 583, - [699] = 664, - [700] = 584, - [701] = 585, - [702] = 664, - [703] = 607, - [704] = 664, - [705] = 607, - [706] = 536, - [707] = 535, - [708] = 532, - [709] = 465, - [710] = 465, + [659] = 659, + [660] = 659, + [661] = 661, + [662] = 659, + [663] = 588, + [664] = 591, + [665] = 597, + [666] = 659, + [667] = 596, + [668] = 659, + [669] = 659, + [670] = 536, + [671] = 596, + [672] = 672, + [673] = 573, + [674] = 604, + [675] = 574, + [676] = 661, + [677] = 572, + [678] = 573, + [679] = 574, + [680] = 591, + [681] = 597, + [682] = 572, + [683] = 573, + [684] = 574, + [685] = 659, + [686] = 591, + [687] = 597, + [688] = 672, + [689] = 597, + [690] = 572, + [691] = 573, + [692] = 574, + [693] = 537, + [694] = 534, + [695] = 572, + [696] = 465, + [697] = 572, + [698] = 573, + [699] = 574, + [700] = 464, + [701] = 597, + [702] = 702, + [703] = 703, + [704] = 464, + [705] = 705, + [706] = 702, + [707] = 703, + [708] = 703, + [709] = 702, + [710] = 703, [711] = 711, - [712] = 711, - [713] = 465, - [714] = 464, - [715] = 465, - [716] = 716, - [717] = 464, - [718] = 592, - [719] = 719, - [720] = 583, - [721] = 464, - [722] = 465, - [723] = 723, - [724] = 584, - [725] = 719, - [726] = 464, - [727] = 465, - [728] = 464, - [729] = 464, - [730] = 730, - [731] = 536, - [732] = 464, - [733] = 465, - [734] = 593, - [735] = 583, - [736] = 719, - [737] = 723, - [738] = 723, - [739] = 719, - [740] = 604, - [741] = 465, - [742] = 465, - [743] = 583, - [744] = 584, - [745] = 730, - [746] = 593, - [747] = 535, - [748] = 592, - [749] = 607, - [750] = 584, - [751] = 464, - [752] = 585, - [753] = 604, - [754] = 593, - [755] = 532, - [756] = 465, - [757] = 719, - [758] = 600, - [759] = 723, - [760] = 760, - [761] = 585, - [762] = 583, - [763] = 542, - [764] = 716, - [765] = 544, - [766] = 584, - [767] = 607, - [768] = 585, - [769] = 592, - [770] = 541, - [771] = 464, - [772] = 465, - [773] = 464, - [774] = 723, - [775] = 592, - [776] = 593, - [777] = 760, - [778] = 592, - [779] = 584, - [780] = 465, - [781] = 464, - [782] = 465, - [783] = 541, - [784] = 585, - [785] = 464, - [786] = 465, - [787] = 592, - [788] = 583, - [789] = 593, - [790] = 592, - [791] = 593, - [792] = 464, - [793] = 465, - [794] = 584, - [795] = 624, - [796] = 592, - [797] = 593, - [798] = 593, - [799] = 630, - [800] = 583, - [801] = 605, - [802] = 464, - [803] = 544, - [804] = 542, - [805] = 605, - [806] = 585, - [807] = 585, - [808] = 808, - [809] = 809, - [810] = 810, - [811] = 592, - [812] = 583, - [813] = 813, - [814] = 583, - [815] = 815, - [816] = 816, - [817] = 630, - [818] = 470, + [712] = 465, + [713] = 713, + [714] = 572, + [715] = 573, + [716] = 591, + [717] = 597, + [718] = 464, + [719] = 574, + [720] = 572, + [721] = 572, + [722] = 573, + [723] = 465, + [724] = 597, + [725] = 537, + [726] = 465, + [727] = 702, + [728] = 534, + [729] = 536, + [730] = 465, + [731] = 464, + [732] = 588, + [733] = 591, + [734] = 597, + [735] = 573, + [736] = 574, + [737] = 464, + [738] = 596, + [739] = 739, + [740] = 711, + [741] = 713, + [742] = 739, + [743] = 465, + [744] = 464, + [745] = 465, + [746] = 464, + [747] = 588, + [748] = 591, + [749] = 596, + [750] = 705, + [751] = 465, + [752] = 604, + [753] = 543, + [754] = 541, + [755] = 702, + [756] = 542, + [757] = 703, + [758] = 591, + [759] = 464, + [760] = 465, + [761] = 573, + [762] = 591, + [763] = 465, + [764] = 597, + [765] = 591, + [766] = 597, + [767] = 465, + [768] = 465, + [769] = 465, + [770] = 464, + [771] = 465, + [772] = 464, + [773] = 465, + [774] = 464, + [775] = 465, + [776] = 573, + [777] = 541, + [778] = 464, + [779] = 464, + [780] = 464, + [781] = 574, + [782] = 597, + [783] = 542, + [784] = 591, + [785] = 591, + [786] = 597, + [787] = 464, + [788] = 465, + [789] = 464, + [790] = 543, + [791] = 465, + [792] = 572, + [793] = 464, + [794] = 572, + [795] = 464, + [796] = 591, + [797] = 672, + [798] = 634, + [799] = 661, + [800] = 465, + [801] = 464, + [802] = 465, + [803] = 464, + [804] = 572, + [805] = 574, + [806] = 465, + [807] = 464, + [808] = 591, + [809] = 597, + [810] = 465, + [811] = 464, + [812] = 597, + [813] = 634, + [814] = 572, + [815] = 573, + [816] = 573, + [817] = 574, + [818] = 818, [819] = 819, - [820] = 584, - [821] = 624, - [822] = 473, - [823] = 472, - [824] = 471, - [825] = 593, - [826] = 584, - [827] = 592, - [828] = 828, - [829] = 593, - [830] = 607, - [831] = 585, - [832] = 832, - [833] = 478, - [834] = 583, - [835] = 584, - [836] = 475, - [837] = 464, - [838] = 476, - [839] = 479, - [840] = 480, - [841] = 465, - [842] = 481, - [843] = 477, - [844] = 585, - [845] = 464, - [846] = 819, - [847] = 465, - [848] = 482, - [849] = 484, - [850] = 470, - [851] = 473, - [852] = 472, - [853] = 487, - [854] = 474, - [855] = 471, - [856] = 470, - [857] = 473, - [858] = 472, - [859] = 813, - [860] = 483, - [861] = 810, - [862] = 489, - [863] = 485, - [864] = 490, - [865] = 486, - [866] = 815, - [867] = 867, - [868] = 868, - [869] = 491, - [870] = 488, - [871] = 492, - [872] = 816, - [873] = 873, - [874] = 809, - [875] = 464, - [876] = 465, - [877] = 604, - [878] = 878, - [879] = 879, - [880] = 808, - [881] = 583, - [882] = 584, - [883] = 585, - [884] = 884, - [885] = 600, - [886] = 886, - [887] = 584, - [888] = 583, - [889] = 464, - [890] = 465, - [891] = 593, - [892] = 592, - [893] = 592, - [894] = 593, - [895] = 471, - [896] = 815, - [897] = 480, - [898] = 867, - [899] = 481, - [900] = 477, - [901] = 878, - [902] = 478, - [903] = 475, - [904] = 476, - [905] = 479, - [906] = 480, - [907] = 482, - [908] = 484, - [909] = 481, - [910] = 471, - [911] = 477, - [912] = 470, - [913] = 810, - [914] = 470, - [915] = 487, - [916] = 474, - [917] = 473, - [918] = 472, - [919] = 471, - [920] = 482, - [921] = 484, - [922] = 464, - [923] = 465, - [924] = 487, - [925] = 474, - [926] = 483, - [927] = 489, - [928] = 485, - [929] = 490, - [930] = 486, - [931] = 464, - [932] = 465, - [933] = 491, - [934] = 488, - [935] = 492, - [936] = 464, - [937] = 465, - [938] = 483, - [939] = 489, - [940] = 485, - [941] = 490, - [942] = 486, - [943] = 491, - [944] = 488, - [945] = 492, - [946] = 464, - [947] = 465, - [948] = 816, - [949] = 607, - [950] = 950, - [951] = 809, - [952] = 819, - [953] = 604, - [954] = 813, - [955] = 808, - [956] = 479, - [957] = 600, - [958] = 583, - [959] = 584, - [960] = 592, - [961] = 593, - [962] = 583, - [963] = 584, - [964] = 585, - [965] = 585, - [966] = 472, - [967] = 471, - [968] = 464, - [969] = 465, - [970] = 592, - [971] = 593, - [972] = 950, - [973] = 815, - [974] = 583, - [975] = 584, - [976] = 585, - [977] = 950, - [978] = 978, - [979] = 470, - [980] = 813, - [981] = 473, - [982] = 816, - [983] = 808, - [984] = 950, - [985] = 472, - [986] = 810, - [987] = 832, - [988] = 873, - [989] = 809, - [990] = 884, - [991] = 886, - [992] = 950, - [993] = 868, - [994] = 879, - [995] = 464, - [996] = 465, - [997] = 493, - [998] = 464, - [999] = 465, - [1000] = 476, - [1001] = 950, - [1002] = 473, - [1003] = 819, - [1004] = 950, - [1005] = 478, - [1006] = 475, - [1007] = 592, - [1008] = 593, - [1009] = 950, - [1010] = 813, - [1011] = 873, - [1012] = 478, - [1013] = 475, - [1014] = 483, - [1015] = 489, - [1016] = 485, - [1017] = 490, - [1018] = 486, - [1019] = 464, - [1020] = 465, - [1021] = 491, - [1022] = 488, - [1023] = 492, - [1024] = 867, - [1025] = 808, - [1026] = 476, - [1027] = 479, - [1028] = 884, - [1029] = 886, - [1030] = 464, - [1031] = 465, - [1032] = 1032, - [1033] = 480, - [1034] = 1032, - [1035] = 819, - [1036] = 1032, - [1037] = 832, - [1038] = 873, - [1039] = 884, - [1040] = 886, - [1041] = 464, - [1042] = 465, - [1043] = 592, - [1044] = 593, - [1045] = 470, - [1046] = 473, - [1047] = 810, - [1048] = 470, - [1049] = 473, - [1050] = 472, - [1051] = 481, + [820] = 661, + [821] = 672, + [822] = 822, + [823] = 823, + [824] = 824, + [825] = 597, + [826] = 470, + [827] = 473, + [828] = 472, + [829] = 471, + [830] = 830, + [831] = 831, + [832] = 574, + [833] = 572, + [834] = 597, + [835] = 573, + [836] = 573, + [837] = 574, + [838] = 572, + [839] = 588, + [840] = 574, + [841] = 591, + [842] = 596, + [843] = 572, + [844] = 573, + [845] = 845, + [846] = 604, + [847] = 591, + [848] = 472, + [849] = 819, + [850] = 822, + [851] = 830, + [852] = 588, + [853] = 853, + [854] = 574, + [855] = 853, + [856] = 824, + [857] = 572, + [858] = 481, + [859] = 482, + [860] = 573, + [861] = 480, + [862] = 485, + [863] = 486, + [864] = 572, + [865] = 484, + [866] = 483, + [867] = 488, + [868] = 465, + [869] = 464, + [870] = 493, + [871] = 476, + [872] = 470, + [873] = 473, + [874] = 596, + [875] = 479, + [876] = 474, + [877] = 471, + [878] = 470, + [879] = 473, + [880] = 472, + [881] = 475, + [882] = 489, + [883] = 478, + [884] = 490, + [885] = 477, + [886] = 471, + [887] = 887, + [888] = 604, + [889] = 487, + [890] = 491, + [891] = 492, + [892] = 573, + [893] = 574, + [894] = 853, + [895] = 853, + [896] = 845, + [897] = 591, + [898] = 597, + [899] = 899, + [900] = 591, + [901] = 597, + [902] = 902, + [903] = 853, + [904] = 465, + [905] = 823, + [906] = 464, + [907] = 853, + [908] = 465, + [909] = 464, + [910] = 910, + [911] = 464, + [912] = 818, + [913] = 913, + [914] = 853, + [915] = 915, + [916] = 916, + [917] = 572, + [918] = 573, + [919] = 591, + [920] = 597, + [921] = 574, + [922] = 465, + [923] = 923, + [924] = 853, + [925] = 823, + [926] = 845, + [927] = 464, + [928] = 822, + [929] = 491, + [930] = 487, + [931] = 473, + [932] = 491, + [933] = 830, + [934] = 492, + [935] = 818, + [936] = 475, + [937] = 489, + [938] = 471, + [939] = 472, + [940] = 940, + [941] = 818, + [942] = 470, + [943] = 824, + [944] = 845, + [945] = 823, + [946] = 465, + [947] = 910, + [948] = 899, + [949] = 902, + [950] = 473, + [951] = 915, + [952] = 916, + [953] = 913, + [954] = 824, + [955] = 464, + [956] = 471, + [957] = 923, + [958] = 591, + [959] = 597, + [960] = 887, + [961] = 465, + [962] = 464, + [963] = 495, + [964] = 465, + [965] = 464, + [966] = 481, + [967] = 482, + [968] = 492, + [969] = 478, + [970] = 480, + [971] = 485, + [972] = 486, + [973] = 490, + [974] = 484, + [975] = 483, + [976] = 488, + [977] = 819, + [978] = 481, + [979] = 482, + [980] = 470, + [981] = 480, + [982] = 830, + [983] = 485, + [984] = 486, + [985] = 493, + [986] = 476, + [987] = 484, + [988] = 483, + [989] = 465, + [990] = 488, + [991] = 477, + [992] = 465, + [993] = 464, + [994] = 470, + [995] = 479, + [996] = 474, + [997] = 473, + [998] = 472, + [999] = 471, + [1000] = 493, + [1001] = 476, + [1002] = 465, + [1003] = 464, + [1004] = 479, + [1005] = 819, + [1006] = 474, + [1007] = 475, + [1008] = 489, + [1009] = 478, + [1010] = 490, + [1011] = 572, + [1012] = 477, + [1013] = 573, + [1014] = 574, + [1015] = 465, + [1016] = 464, + [1017] = 591, + [1018] = 597, + [1019] = 591, + [1020] = 597, + [1021] = 487, + [1022] = 472, + [1023] = 822, + [1024] = 478, + [1025] = 464, + [1026] = 940, + [1027] = 1027, + [1028] = 470, + [1029] = 474, + [1030] = 473, + [1031] = 887, + [1032] = 472, + [1033] = 1033, + [1034] = 491, + [1035] = 492, + [1036] = 485, + [1037] = 481, + [1038] = 471, + [1039] = 915, + [1040] = 502, + [1041] = 493, + [1042] = 916, + [1043] = 478, + [1044] = 470, + [1045] = 473, + [1046] = 472, + [1047] = 478, + [1048] = 490, + [1049] = 470, + [1050] = 473, + [1051] = 472, [1052] = 471, - [1053] = 1053, + [1053] = 477, [1054] = 1054, - [1055] = 477, - [1056] = 482, - [1057] = 478, + [1055] = 471, + [1056] = 1056, + [1057] = 1057, [1058] = 475, - [1059] = 1053, - [1060] = 1054, - [1061] = 481, - [1062] = 1062, - [1063] = 482, + [1059] = 486, + [1060] = 1060, + [1061] = 1061, + [1062] = 484, + [1063] = 819, [1064] = 1064, - [1065] = 464, - [1066] = 465, - [1067] = 470, - [1068] = 583, - [1069] = 473, - [1070] = 584, - [1071] = 472, - [1072] = 585, - [1073] = 1073, - [1074] = 592, - [1075] = 471, - [1076] = 593, - [1077] = 832, - [1078] = 873, - [1079] = 884, - [1080] = 886, - [1081] = 1081, + [1065] = 493, + [1066] = 1033, + [1067] = 479, + [1068] = 482, + [1069] = 923, + [1070] = 495, + [1071] = 818, + [1072] = 470, + [1073] = 887, + [1074] = 910, + [1075] = 1075, + [1076] = 1054, + [1077] = 1077, + [1078] = 913, + [1079] = 1056, + [1080] = 473, + [1081] = 487, [1082] = 1082, - [1083] = 485, - [1084] = 1084, - [1085] = 1085, - [1086] = 490, - [1087] = 487, - [1088] = 1088, - [1089] = 474, - [1090] = 476, - [1091] = 483, - [1092] = 484, - [1093] = 1093, - [1094] = 832, - [1095] = 491, - [1096] = 488, + [1083] = 465, + [1084] = 491, + [1085] = 464, + [1086] = 492, + [1087] = 910, + [1088] = 492, + [1089] = 479, + [1090] = 485, + [1091] = 477, + [1092] = 474, + [1093] = 480, + [1094] = 495, + [1095] = 483, + [1096] = 475, [1097] = 1097, - [1098] = 492, - [1099] = 479, - [1100] = 478, - [1101] = 475, + [1098] = 476, + [1099] = 899, + [1100] = 476, + [1101] = 489, [1102] = 481, - [1103] = 878, - [1104] = 867, - [1105] = 485, + [1103] = 482, + [1104] = 484, + [1105] = 1105, [1106] = 490, - [1107] = 491, - [1108] = 488, - [1109] = 492, - [1110] = 479, - [1111] = 1111, - [1112] = 878, - [1113] = 477, - [1114] = 486, - [1115] = 482, - [1116] = 484, - [1117] = 480, - [1118] = 1118, - [1119] = 464, - [1120] = 465, - [1121] = 487, - [1122] = 474, - [1123] = 464, - [1124] = 465, - [1125] = 464, - [1126] = 465, - [1127] = 978, - [1128] = 477, - [1129] = 476, - [1130] = 464, + [1107] = 480, + [1108] = 485, + [1109] = 465, + [1110] = 464, + [1111] = 486, + [1112] = 464, + [1113] = 822, + [1114] = 489, + [1115] = 913, + [1116] = 1033, + [1117] = 845, + [1118] = 823, + [1119] = 484, + [1120] = 479, + [1121] = 1121, + [1122] = 483, + [1123] = 488, + [1124] = 488, + [1125] = 902, + [1126] = 830, + [1127] = 923, + [1128] = 1128, + [1129] = 475, + [1130] = 489, [1131] = 465, - [1132] = 809, - [1133] = 483, - [1134] = 868, - [1135] = 879, - [1136] = 493, - [1137] = 498, - [1138] = 815, - [1139] = 487, - [1140] = 474, - [1141] = 868, - [1142] = 816, - [1143] = 470, - [1144] = 473, - [1145] = 472, - [1146] = 470, + [1132] = 818, + [1133] = 465, + [1134] = 464, + [1135] = 819, + [1136] = 471, + [1137] = 464, + [1138] = 488, + [1139] = 477, + [1140] = 591, + [1141] = 465, + [1142] = 464, + [1143] = 597, + [1144] = 470, + [1145] = 824, + [1146] = 481, [1147] = 473, - [1148] = 810, + [1148] = 483, [1149] = 472, - [1150] = 809, - [1151] = 471, - [1152] = 471, - [1153] = 489, - [1154] = 471, - [1155] = 484, - [1156] = 480, - [1157] = 879, - [1158] = 486, - [1159] = 592, - [1160] = 593, - [1161] = 493, - [1162] = 816, - [1163] = 489, - [1164] = 473, - [1165] = 485, - [1166] = 490, - [1167] = 491, - [1168] = 487, - [1169] = 488, - [1170] = 485, - [1171] = 1171, - [1172] = 486, - [1173] = 486, - [1174] = 1174, - [1175] = 492, - [1176] = 470, - [1177] = 1081, - [1178] = 1082, - [1179] = 978, - [1180] = 487, - [1181] = 474, - [1182] = 489, - [1183] = 473, - [1184] = 493, - [1185] = 490, - [1186] = 471, - [1187] = 1053, - [1188] = 1054, - [1189] = 473, - [1190] = 1081, - [1191] = 1082, - [1192] = 832, - [1193] = 873, - [1194] = 491, - [1195] = 488, - [1196] = 884, - [1197] = 886, - [1198] = 492, - [1199] = 491, - [1200] = 488, - [1201] = 492, - [1202] = 476, - [1203] = 484, - [1204] = 1053, - [1205] = 1054, + [1150] = 490, + [1151] = 487, + [1152] = 487, + [1153] = 474, + [1154] = 899, + [1155] = 902, + [1156] = 471, + [1157] = 482, + [1158] = 480, + [1159] = 899, + [1160] = 902, + [1161] = 465, + [1162] = 464, + [1163] = 486, + [1164] = 915, + [1165] = 493, + [1166] = 476, + [1167] = 915, + [1168] = 916, + [1169] = 916, + [1170] = 823, + [1171] = 465, + [1172] = 491, + [1173] = 465, + [1174] = 476, + [1175] = 1057, + [1176] = 481, + [1177] = 482, + [1178] = 480, + [1179] = 481, + [1180] = 482, + [1181] = 485, + [1182] = 486, + [1183] = 470, + [1184] = 480, + [1185] = 473, + [1186] = 472, + [1187] = 484, + [1188] = 483, + [1189] = 485, + [1190] = 488, + [1191] = 486, + [1192] = 484, + [1193] = 483, + [1194] = 488, + [1195] = 471, + [1196] = 470, + [1197] = 473, + [1198] = 502, + [1199] = 472, + [1200] = 493, + [1201] = 476, + [1202] = 471, + [1203] = 493, + [1204] = 470, + [1205] = 479, [1206] = 474, - [1207] = 592, - [1208] = 1208, - [1209] = 593, - [1210] = 485, - [1211] = 470, - [1212] = 487, - [1213] = 1088, - [1214] = 489, - [1215] = 476, - [1216] = 478, - [1217] = 490, - [1218] = 474, - [1219] = 1093, - [1220] = 478, - [1221] = 475, + [1207] = 473, + [1208] = 472, + [1209] = 470, + [1210] = 479, + [1211] = 474, + [1212] = 473, + [1213] = 502, + [1214] = 472, + [1215] = 471, + [1216] = 471, + [1217] = 475, + [1218] = 489, + [1219] = 478, + [1220] = 490, + [1221] = 477, [1222] = 475, - [1223] = 481, - [1224] = 479, - [1225] = 486, - [1226] = 1226, - [1227] = 491, - [1228] = 480, - [1229] = 493, - [1230] = 477, - [1231] = 1073, - [1232] = 473, - [1233] = 483, - [1234] = 488, - [1235] = 1062, - [1236] = 482, - [1237] = 483, - [1238] = 492, - [1239] = 1084, - [1240] = 1240, - [1241] = 1064, + [1223] = 489, + [1224] = 495, + [1225] = 478, + [1226] = 490, + [1227] = 477, + [1228] = 487, + [1229] = 491, + [1230] = 492, + [1231] = 487, + [1232] = 491, + [1233] = 492, + [1234] = 465, + [1235] = 464, + [1236] = 480, + [1237] = 481, + [1238] = 482, + [1239] = 483, + [1240] = 485, + [1241] = 486, [1242] = 484, - [1243] = 482, - [1244] = 498, - [1245] = 481, - [1246] = 472, - [1247] = 464, - [1248] = 473, - [1249] = 471, - [1250] = 465, - [1251] = 477, - [1252] = 472, - [1253] = 482, - [1254] = 470, - [1255] = 479, - [1256] = 498, - [1257] = 978, - [1258] = 478, - [1259] = 475, - [1260] = 483, - [1261] = 1097, - [1262] = 868, - [1263] = 879, - [1264] = 471, - [1265] = 485, - [1266] = 476, - [1267] = 486, - [1268] = 478, - [1269] = 475, - [1270] = 489, - [1271] = 867, - [1272] = 878, - [1273] = 482, - [1274] = 479, - [1275] = 1275, - [1276] = 1276, - [1277] = 480, - [1278] = 470, - [1279] = 470, - [1280] = 832, - [1281] = 873, - [1282] = 884, - [1283] = 886, - [1284] = 476, - [1285] = 480, - [1286] = 471, - [1287] = 472, - [1288] = 1111, - [1289] = 481, - [1290] = 479, - [1291] = 477, - [1292] = 480, - [1293] = 1293, - [1294] = 487, - [1295] = 474, - [1296] = 483, - [1297] = 489, - [1298] = 484, - [1299] = 493, - [1300] = 484, - [1301] = 472, - [1302] = 481, - [1303] = 477, - [1304] = 471, - [1305] = 490, - [1306] = 1085, - [1307] = 493, - [1308] = 884, - [1309] = 1053, - [1310] = 471, - [1311] = 482, - [1312] = 477, - [1313] = 482, - [1314] = 1314, - [1315] = 484, - [1316] = 1054, - [1317] = 479, - [1318] = 464, - [1319] = 465, - [1320] = 480, - [1321] = 481, - [1322] = 470, - [1323] = 1314, - [1324] = 487, - [1325] = 474, - [1326] = 470, - [1327] = 1081, - [1328] = 473, - [1329] = 1082, - [1330] = 472, - [1331] = 491, - [1332] = 488, - [1333] = 492, - [1334] = 476, - [1335] = 471, - [1336] = 473, - [1337] = 470, - [1338] = 1084, - [1339] = 1339, - [1340] = 473, - [1341] = 487, - [1342] = 474, - [1343] = 1343, - [1344] = 472, - [1345] = 472, - [1346] = 1085, - [1347] = 481, - [1348] = 479, - [1349] = 477, - [1350] = 480, - [1351] = 487, - [1352] = 471, - [1353] = 583, - [1354] = 584, - [1355] = 474, - [1356] = 483, - [1357] = 585, - [1358] = 489, - [1359] = 485, - [1360] = 490, - [1361] = 486, - [1362] = 1053, - [1363] = 482, - [1364] = 484, - [1365] = 1054, - [1366] = 484, - [1367] = 491, - [1368] = 488, - [1369] = 1088, - [1370] = 493, - [1371] = 492, - [1372] = 1111, - [1373] = 1093, - [1374] = 473, - [1375] = 483, - [1376] = 489, - [1377] = 485, - [1378] = 490, - [1379] = 477, - [1380] = 481, - [1381] = 1381, - [1382] = 486, - [1383] = 477, - [1384] = 1384, - [1385] = 483, - [1386] = 489, - [1387] = 1081, - [1388] = 1082, - [1389] = 485, - [1390] = 490, - [1391] = 486, - [1392] = 1088, - [1393] = 491, - [1394] = 488, - [1395] = 492, - [1396] = 478, - [1397] = 471, - [1398] = 1073, - [1399] = 1064, - [1400] = 488, - [1401] = 492, - [1402] = 475, - [1403] = 498, - [1404] = 1053, - [1405] = 1054, - [1406] = 471, - [1407] = 1062, - [1408] = 493, - [1409] = 470, - [1410] = 1097, - [1411] = 476, - [1412] = 478, - [1413] = 1093, - [1414] = 1081, - [1415] = 1082, - [1416] = 475, - [1417] = 479, - [1418] = 1111, - [1419] = 832, - [1420] = 1081, - [1421] = 1082, - [1422] = 873, - [1423] = 1293, - [1424] = 1226, - [1425] = 480, - [1426] = 473, - [1427] = 1240, - [1428] = 498, - [1429] = 1208, - [1430] = 1084, - [1431] = 1085, - [1432] = 1073, - [1433] = 470, - [1434] = 472, - [1435] = 1062, - [1436] = 832, - [1437] = 470, - [1438] = 873, - [1439] = 473, - [1440] = 1053, - [1441] = 1275, - [1442] = 1276, - [1443] = 1054, - [1444] = 1171, - [1445] = 472, - [1446] = 1174, - [1447] = 1064, - [1448] = 884, - [1449] = 886, - [1450] = 471, - [1451] = 487, - [1452] = 474, - [1453] = 1088, - [1454] = 473, - [1455] = 1093, - [1456] = 498, - [1457] = 1097, - [1458] = 472, - [1459] = 476, - [1460] = 471, - [1461] = 472, - [1462] = 481, - [1463] = 482, - [1464] = 478, - [1465] = 475, - [1466] = 483, - [1467] = 484, - [1468] = 489, - [1469] = 485, - [1470] = 476, - [1471] = 490, - [1472] = 493, - [1473] = 478, - [1474] = 475, - [1475] = 479, - [1476] = 886, - [1477] = 480, - [1478] = 486, - [1479] = 470, - [1480] = 491, - [1481] = 1240, - [1482] = 478, - [1483] = 487, - [1484] = 475, - [1485] = 474, - [1486] = 1486, - [1487] = 481, - [1488] = 484, - [1489] = 479, - [1490] = 1226, - [1491] = 1491, - [1492] = 489, - [1493] = 1293, - [1494] = 479, - [1495] = 485, - [1496] = 483, - [1497] = 489, - [1498] = 485, - [1499] = 490, - [1500] = 477, - [1501] = 476, - [1502] = 480, - [1503] = 592, - [1504] = 486, - [1505] = 480, - [1506] = 1506, - [1507] = 470, - [1508] = 487, - [1509] = 491, + [1243] = 488, + [1244] = 493, + [1245] = 475, + [1246] = 476, + [1247] = 478, + [1248] = 477, + [1249] = 479, + [1250] = 474, + [1251] = 489, + [1252] = 940, + [1253] = 490, + [1254] = 916, + [1255] = 473, + [1256] = 471, + [1257] = 1054, + [1258] = 1056, + [1259] = 487, + [1260] = 491, + [1261] = 492, + [1262] = 572, + [1263] = 573, + [1264] = 1054, + [1265] = 1056, + [1266] = 574, + [1267] = 1267, + [1268] = 1268, + [1269] = 480, + [1270] = 481, + [1271] = 482, + [1272] = 483, + [1273] = 485, + [1274] = 486, + [1275] = 1121, + [1276] = 1128, + [1277] = 1277, + [1278] = 484, + [1279] = 1279, + [1280] = 488, + [1281] = 495, + [1282] = 493, + [1283] = 1283, + [1284] = 475, + [1285] = 476, + [1286] = 1286, + [1287] = 478, + [1288] = 477, + [1289] = 1289, + [1290] = 940, + [1291] = 1027, + [1292] = 1097, + [1293] = 479, + [1294] = 474, + [1295] = 489, + [1296] = 495, + [1297] = 490, + [1298] = 1298, + [1299] = 1027, + [1300] = 1097, + [1301] = 899, + [1302] = 902, + [1303] = 915, + [1304] = 916, + [1305] = 487, + [1306] = 491, + [1307] = 492, + [1308] = 1061, + [1309] = 1064, + [1310] = 1082, + [1311] = 1075, + [1312] = 1077, + [1313] = 910, + [1314] = 913, + [1315] = 923, + [1316] = 887, + [1317] = 1105, + [1318] = 899, + [1319] = 902, + [1320] = 915, + [1321] = 470, + [1322] = 1097, + [1323] = 475, + [1324] = 489, + [1325] = 478, + [1326] = 490, + [1327] = 477, + [1328] = 1328, + [1329] = 473, + [1330] = 1328, + [1331] = 471, + [1332] = 487, + [1333] = 491, + [1334] = 492, + [1335] = 475, + [1336] = 489, + [1337] = 478, + [1338] = 490, + [1339] = 1064, + [1340] = 477, + [1341] = 475, + [1342] = 489, + [1343] = 478, + [1344] = 490, + [1345] = 477, + [1346] = 487, + [1347] = 491, + [1348] = 492, + [1349] = 487, + [1350] = 491, + [1351] = 492, + [1352] = 1082, + [1353] = 1121, + [1354] = 486, + [1355] = 482, + [1356] = 470, + [1357] = 473, + [1358] = 481, + [1359] = 1328, + [1360] = 482, + [1361] = 899, + [1362] = 902, + [1363] = 495, + [1364] = 1364, + [1365] = 495, + [1366] = 1082, + [1367] = 472, + [1368] = 484, + [1369] = 483, + [1370] = 1027, + [1371] = 1364, + [1372] = 1097, + [1373] = 480, + [1374] = 488, + [1375] = 1061, + [1376] = 470, + [1377] = 471, + [1378] = 481, + [1379] = 473, + [1380] = 482, + [1381] = 1298, + [1382] = 472, + [1383] = 1061, + [1384] = 485, + [1385] = 471, + [1386] = 470, + [1387] = 1027, + [1388] = 465, + [1389] = 464, + [1390] = 486, + [1391] = 1097, + [1392] = 1392, + [1393] = 473, + [1394] = 1394, + [1395] = 480, + [1396] = 470, + [1397] = 472, + [1398] = 479, + [1399] = 474, + [1400] = 480, + [1401] = 591, + [1402] = 471, + [1403] = 597, + [1404] = 473, + [1405] = 472, + [1406] = 484, + [1407] = 483, + [1408] = 485, + [1409] = 1409, + [1410] = 488, + [1411] = 486, + [1412] = 471, + [1413] = 493, + [1414] = 476, + [1415] = 472, + [1416] = 484, + [1417] = 1057, + [1418] = 1328, + [1419] = 1105, + [1420] = 488, + [1421] = 1075, + [1422] = 1077, + [1423] = 1064, + [1424] = 495, + [1425] = 471, + [1426] = 470, + [1427] = 1082, + [1428] = 481, + [1429] = 482, + [1430] = 495, + [1431] = 1075, + [1432] = 502, + [1433] = 1056, + [1434] = 1121, + [1435] = 1435, + [1436] = 1054, + [1437] = 1056, + [1438] = 480, + [1439] = 899, + [1440] = 1027, + [1441] = 1097, + [1442] = 470, + [1443] = 479, + [1444] = 474, + [1445] = 1328, + [1446] = 1057, + [1447] = 473, + [1448] = 902, + [1449] = 485, + [1450] = 502, + [1451] = 1077, + [1452] = 486, + [1453] = 472, + [1454] = 485, + [1455] = 502, + [1456] = 481, + [1457] = 473, + [1458] = 1064, + [1459] = 493, + [1460] = 475, + [1461] = 1105, + [1462] = 1128, + [1463] = 476, + [1464] = 489, + [1465] = 478, + [1466] = 1128, + [1467] = 490, + [1468] = 470, + [1469] = 484, + [1470] = 483, + [1471] = 915, + [1472] = 477, + [1473] = 471, + [1474] = 493, + [1475] = 1289, + [1476] = 916, + [1477] = 1054, + [1478] = 1056, + [1479] = 915, + [1480] = 1027, + [1481] = 1054, + [1482] = 476, + [1483] = 1283, + [1484] = 1054, + [1485] = 1328, + [1486] = 1286, + [1487] = 1056, + [1488] = 488, + [1489] = 493, + [1490] = 1267, + [1491] = 1268, + [1492] = 916, + [1493] = 1277, + [1494] = 1328, + [1495] = 1279, + [1496] = 476, + [1497] = 472, + [1498] = 487, + [1499] = 491, + [1500] = 492, + [1501] = 479, + [1502] = 474, + [1503] = 479, + [1504] = 474, + [1505] = 483, + [1506] = 1027, + [1507] = 487, + [1508] = 491, + [1509] = 492, [1510] = 488, - [1511] = 492, - [1512] = 593, + [1511] = 477, + [1512] = 479, [1513] = 474, - [1514] = 470, - [1515] = 490, - [1516] = 473, - [1517] = 477, - [1518] = 491, - [1519] = 488, - [1520] = 492, - [1521] = 473, - [1522] = 1381, - [1523] = 493, - [1524] = 472, - [1525] = 481, - [1526] = 498, - [1527] = 478, - [1528] = 483, - [1529] = 489, - [1530] = 485, - [1531] = 475, - [1532] = 1314, - [1533] = 490, - [1534] = 1174, - [1535] = 486, - [1536] = 481, - [1537] = 491, - [1538] = 1486, - [1539] = 1381, - [1540] = 488, - [1541] = 492, - [1542] = 1088, - [1543] = 477, + [1514] = 1286, + [1515] = 1515, + [1516] = 493, + [1517] = 1517, + [1518] = 486, + [1519] = 476, + [1520] = 470, + [1521] = 1283, + [1522] = 493, + [1523] = 502, + [1524] = 479, + [1525] = 474, + [1526] = 493, + [1527] = 476, + [1528] = 473, + [1529] = 475, + [1530] = 489, + [1531] = 478, + [1532] = 490, + [1533] = 1533, + [1534] = 1298, + [1535] = 477, + [1536] = 1533, + [1537] = 484, + [1538] = 574, + [1539] = 1533, + [1540] = 1286, + [1541] = 487, + [1542] = 491, + [1543] = 492, [1544] = 472, - [1545] = 481, - [1546] = 482, - [1547] = 1547, - [1548] = 1093, + [1545] = 475, + [1546] = 489, + [1547] = 478, + [1548] = 490, [1549] = 477, - [1550] = 1550, - [1551] = 486, - [1552] = 498, - [1553] = 477, - [1554] = 1275, - [1555] = 476, + [1550] = 487, + [1551] = 491, + [1552] = 492, + [1553] = 471, + [1554] = 478, + [1555] = 483, [1556] = 1556, - [1557] = 480, - [1558] = 1081, - [1559] = 1082, - [1560] = 471, - [1561] = 482, - [1562] = 479, - [1563] = 491, - [1564] = 1208, - [1565] = 488, - [1566] = 487, - [1567] = 492, - [1568] = 483, - [1569] = 1081, - [1570] = 484, - [1571] = 1571, - [1572] = 474, - [1573] = 476, - [1574] = 1082, - [1575] = 483, - [1576] = 487, - [1577] = 474, - [1578] = 1082, - [1579] = 484, - [1580] = 489, - [1581] = 493, - [1582] = 485, - [1583] = 478, - [1584] = 1506, - [1585] = 482, - [1586] = 482, - [1587] = 471, - [1588] = 1486, - [1589] = 486, - [1590] = 1590, + [1557] = 490, + [1558] = 487, + [1559] = 1097, + [1560] = 491, + [1561] = 1561, + [1562] = 492, + [1563] = 485, + [1564] = 502, + [1565] = 1533, + [1566] = 1566, + [1567] = 481, + [1568] = 1027, + [1569] = 1097, + [1570] = 481, + [1571] = 502, + [1572] = 482, + [1573] = 1561, + [1574] = 1574, + [1575] = 1561, + [1576] = 1289, + [1577] = 482, + [1578] = 488, + [1579] = 477, + [1580] = 1561, + [1581] = 486, + [1582] = 1267, + [1583] = 1583, + [1584] = 1268, + [1585] = 1574, + [1586] = 1586, + [1587] = 573, + [1588] = 1588, + [1589] = 480, + [1590] = 481, [1591] = 480, - [1592] = 1275, - [1593] = 1276, - [1594] = 478, - [1595] = 470, - [1596] = 473, - [1597] = 472, - [1598] = 482, - [1599] = 475, - [1600] = 493, - [1601] = 484, - [1602] = 471, - [1603] = 482, - [1604] = 1486, - [1605] = 476, - [1606] = 487, - [1607] = 1226, - [1608] = 486, - [1609] = 474, - [1610] = 470, - [1611] = 473, - [1612] = 472, - [1613] = 1081, - [1614] = 1614, - [1615] = 471, - [1616] = 483, - [1617] = 1339, - [1618] = 484, - [1619] = 489, - [1620] = 481, - [1621] = 1208, - [1622] = 1384, - [1623] = 477, - [1624] = 1293, - [1625] = 470, - [1626] = 1171, - [1627] = 478, - [1628] = 475, - [1629] = 487, - [1630] = 474, + [1592] = 480, + [1593] = 495, + [1594] = 482, + [1595] = 1595, + [1596] = 481, + [1597] = 482, + [1598] = 495, + [1599] = 483, + [1600] = 485, + [1601] = 1586, + [1602] = 1588, + [1603] = 486, + [1604] = 485, + [1605] = 1595, + [1606] = 470, + [1607] = 473, + [1608] = 471, + [1609] = 470, + [1610] = 473, + [1611] = 471, + [1612] = 486, + [1613] = 485, + [1614] = 470, + [1615] = 1615, + [1616] = 479, + [1617] = 480, + [1618] = 1595, + [1619] = 474, + [1620] = 1620, + [1621] = 493, + [1622] = 470, + [1623] = 473, + [1624] = 473, + [1625] = 1364, + [1626] = 481, + [1627] = 482, + [1628] = 495, + [1629] = 484, + [1630] = 1595, [1631] = 483, - [1632] = 481, - [1633] = 1174, - [1634] = 485, - [1635] = 1486, - [1636] = 490, - [1637] = 491, - [1638] = 488, - [1639] = 492, - [1640] = 479, - [1641] = 484, - [1642] = 477, - [1643] = 486, - [1644] = 489, - [1645] = 1081, - [1646] = 1082, - [1647] = 480, - [1648] = 1084, - [1649] = 1085, - [1650] = 498, - [1651] = 473, - [1652] = 1062, - [1653] = 832, - [1654] = 873, - [1655] = 478, - [1656] = 470, - [1657] = 485, - [1658] = 1658, - [1659] = 479, - [1660] = 1293, - [1661] = 1343, - [1662] = 1064, - [1663] = 884, - [1664] = 886, - [1665] = 1053, - [1666] = 1054, - [1667] = 473, - [1668] = 490, - [1669] = 493, + [1632] = 472, + [1633] = 485, + [1634] = 488, + [1635] = 486, + [1636] = 1595, + [1637] = 484, + [1638] = 483, + [1639] = 470, + [1640] = 473, + [1641] = 1595, + [1642] = 488, + [1643] = 1595, + [1644] = 1364, + [1645] = 472, + [1646] = 1595, + [1647] = 484, + [1648] = 488, + [1649] = 1298, + [1650] = 471, + [1651] = 493, + [1652] = 486, + [1653] = 479, + [1654] = 471, + [1655] = 1277, + [1656] = 476, + [1657] = 1657, + [1658] = 478, + [1659] = 474, + [1660] = 477, + [1661] = 480, + [1662] = 1279, + [1663] = 493, + [1664] = 1289, + [1665] = 1392, + [1666] = 475, + [1667] = 1283, + [1668] = 479, + [1669] = 474, [1670] = 475, - [1671] = 1240, - [1672] = 1486, - [1673] = 472, - [1674] = 1240, - [1675] = 480, - [1676] = 478, - [1677] = 471, - [1678] = 475, - [1679] = 1053, - [1680] = 1054, - [1681] = 481, - [1682] = 1171, - [1683] = 476, - [1684] = 485, - [1685] = 484, - [1686] = 490, - [1687] = 1571, - [1688] = 480, - [1689] = 815, - [1690] = 476, - [1691] = 486, - [1692] = 482, - [1693] = 813, - [1694] = 816, - [1695] = 1276, - [1696] = 1696, - [1697] = 483, - [1698] = 491, - [1699] = 475, - [1700] = 488, - [1701] = 492, - [1702] = 1486, - [1703] = 479, - [1704] = 1590, - [1705] = 498, - [1706] = 487, - [1707] = 470, - [1708] = 810, - [1709] = 473, - [1710] = 471, - [1711] = 809, - [1712] = 471, - [1713] = 470, - [1714] = 473, - [1715] = 471, - [1716] = 474, - [1717] = 489, - [1718] = 1718, - [1719] = 1314, - [1720] = 490, - [1721] = 479, - [1722] = 491, - [1723] = 488, - [1724] = 492, - [1725] = 476, - [1726] = 485, - [1727] = 473, - [1728] = 472, - [1729] = 471, - [1730] = 471, - [1731] = 476, - [1732] = 478, - [1733] = 475, - [1734] = 479, - [1735] = 480, - [1736] = 481, - [1737] = 477, - [1738] = 482, - [1739] = 470, - [1740] = 483, - [1741] = 473, - [1742] = 484, - [1743] = 472, - [1744] = 486, - [1745] = 487, - [1746] = 474, - [1747] = 476, - [1748] = 1314, - [1749] = 489, - [1750] = 478, - [1751] = 475, - [1752] = 490, - [1753] = 479, - [1754] = 480, - [1755] = 471, - [1756] = 481, - [1757] = 491, - [1758] = 488, - [1759] = 492, - [1760] = 477, - [1761] = 482, - [1762] = 483, - [1763] = 484, - [1764] = 485, - [1765] = 486, - [1766] = 487, - [1767] = 474, - [1768] = 489, - [1769] = 490, - [1770] = 491, - [1771] = 488, - [1772] = 492, + [1671] = 476, + [1672] = 489, + [1673] = 502, + [1674] = 471, + [1675] = 1283, + [1676] = 1394, + [1677] = 1286, + [1678] = 484, + [1679] = 478, + [1680] = 490, + [1681] = 1267, + [1682] = 483, + [1683] = 477, + [1684] = 1268, + [1685] = 488, + [1686] = 481, + [1687] = 482, + [1688] = 479, + [1689] = 474, + [1690] = 489, + [1691] = 490, + [1692] = 487, + [1693] = 491, + [1694] = 492, + [1695] = 476, + [1696] = 480, + [1697] = 1533, + [1698] = 487, + [1699] = 491, + [1700] = 492, + [1701] = 572, + [1702] = 485, + [1703] = 1435, + [1704] = 486, + [1705] = 1277, + [1706] = 1279, + [1707] = 489, + [1708] = 484, + [1709] = 1435, + [1710] = 483, + [1711] = 1064, + [1712] = 1082, + [1713] = 481, + [1714] = 488, + [1715] = 482, + [1716] = 493, + [1717] = 1027, + [1718] = 1097, + [1719] = 475, + [1720] = 476, + [1721] = 489, + [1722] = 478, + [1723] = 490, + [1724] = 495, + [1725] = 479, + [1726] = 474, + [1727] = 484, + [1728] = 1728, + [1729] = 477, + [1730] = 478, + [1731] = 1409, + [1732] = 483, + [1733] = 480, + [1734] = 470, + [1735] = 473, + [1736] = 472, + [1737] = 1533, + [1738] = 475, + [1739] = 471, + [1740] = 490, + [1741] = 487, + [1742] = 1533, + [1743] = 491, + [1744] = 1027, + [1745] = 1097, + [1746] = 1075, + [1747] = 1077, + [1748] = 1121, + [1749] = 899, + [1750] = 902, + [1751] = 492, + [1752] = 485, + [1753] = 1128, + [1754] = 915, + [1755] = 916, + [1756] = 1054, + [1757] = 1056, + [1758] = 1054, + [1759] = 1056, + [1760] = 470, + [1761] = 476, + [1762] = 489, + [1763] = 822, + [1764] = 473, + [1765] = 845, + [1766] = 823, + [1767] = 472, + [1768] = 818, + [1769] = 819, + [1770] = 471, + [1771] = 475, + [1772] = 493, [1773] = 1773, - [1774] = 1773, - [1775] = 1381, - [1776] = 1088, - [1777] = 1381, - [1778] = 498, - [1779] = 1081, - [1780] = 1082, + [1774] = 478, + [1775] = 1775, + [1776] = 483, + [1777] = 1777, + [1778] = 502, + [1779] = 1779, + [1780] = 1780, [1781] = 1781, - [1782] = 1782, - [1783] = 1783, - [1784] = 1491, - [1785] = 493, - [1786] = 1384, - [1787] = 1339, - [1788] = 498, - [1789] = 1773, - [1790] = 1088, - [1791] = 809, - [1792] = 1343, - [1793] = 498, - [1794] = 1614, - [1795] = 1093, - [1796] = 1314, - [1797] = 498, - [1798] = 478, - [1799] = 475, - [1800] = 476, - [1801] = 493, - [1802] = 479, - [1803] = 480, - [1804] = 481, - [1805] = 477, - [1806] = 1773, - [1807] = 1556, - [1808] = 1718, - [1809] = 1314, - [1810] = 493, - [1811] = 482, - [1812] = 482, - [1813] = 484, - [1814] = 487, - [1815] = 474, - [1816] = 476, - [1817] = 483, - [1818] = 484, - [1819] = 489, - [1820] = 493, - [1821] = 478, - [1822] = 475, - [1823] = 487, - [1824] = 474, - [1825] = 481, - [1826] = 485, - [1827] = 490, - [1828] = 491, - [1829] = 488, - [1830] = 492, - [1831] = 479, + [1782] = 490, + [1783] = 487, + [1784] = 1784, + [1785] = 1773, + [1786] = 1786, + [1787] = 491, + [1788] = 478, + [1789] = 1435, + [1790] = 485, + [1791] = 819, + [1792] = 1773, + [1793] = 488, + [1794] = 1794, + [1795] = 1027, + [1796] = 1097, + [1797] = 1797, + [1798] = 477, + [1799] = 1364, + [1800] = 486, + [1801] = 476, + [1802] = 470, + [1803] = 473, + [1804] = 471, + [1805] = 1805, + [1806] = 1392, + [1807] = 1807, + [1808] = 1027, + [1809] = 1097, + [1810] = 1810, + [1811] = 479, + [1812] = 474, + [1813] = 495, + [1814] = 1781, + [1815] = 1815, + [1816] = 1784, + [1817] = 1773, + [1818] = 1777, + [1819] = 1815, + [1820] = 1574, + [1821] = 1821, + [1822] = 1822, + [1823] = 502, + [1824] = 1779, + [1825] = 823, + [1826] = 489, + [1827] = 470, + [1828] = 473, + [1829] = 471, + [1830] = 1807, + [1831] = 1821, [1832] = 477, - [1833] = 486, - [1834] = 480, - [1835] = 1081, - [1836] = 1082, - [1837] = 483, - [1838] = 886, - [1839] = 485, - [1840] = 490, - [1841] = 486, - [1842] = 491, - [1843] = 488, - [1844] = 492, - [1845] = 1781, - [1846] = 1773, - [1847] = 470, - [1848] = 473, - [1849] = 471, - [1850] = 1781, - [1851] = 815, - [1852] = 1781, - [1853] = 813, - [1854] = 816, - [1855] = 470, - [1856] = 1783, - [1857] = 1081, - [1858] = 1082, - [1859] = 470, - [1860] = 473, - [1861] = 471, - [1862] = 583, - [1863] = 1783, - [1864] = 470, - [1865] = 473, - [1866] = 471, - [1867] = 1783, - [1868] = 1783, - [1869] = 493, - [1870] = 1783, - [1871] = 1506, - [1872] = 1783, - [1873] = 1783, - [1874] = 493, - [1875] = 584, - [1876] = 476, - [1877] = 493, - [1878] = 1506, - [1879] = 478, - [1880] = 475, - [1881] = 479, - [1882] = 1571, - [1883] = 1590, - [1884] = 480, - [1885] = 481, - [1886] = 1571, - [1887] = 477, - [1888] = 1590, - [1889] = 1658, - [1890] = 1773, - [1891] = 585, - [1892] = 1343, - [1893] = 1384, - [1894] = 1696, - [1895] = 1093, - [1896] = 810, - [1897] = 482, - [1898] = 483, - [1899] = 484, + [1833] = 481, + [1834] = 482, + [1835] = 1781, + [1836] = 1822, + [1837] = 1784, + [1838] = 1773, + [1839] = 819, + [1840] = 1780, + [1841] = 1822, + [1842] = 1794, + [1843] = 1805, + [1844] = 1786, + [1845] = 1797, + [1846] = 1515, + [1847] = 1847, + [1848] = 1781, + [1849] = 1784, + [1850] = 1773, + [1851] = 1517, + [1852] = 480, + [1853] = 1853, + [1854] = 1854, + [1855] = 495, + [1856] = 495, + [1857] = 1574, + [1858] = 1781, + [1859] = 1773, + [1860] = 1786, + [1861] = 1779, + [1862] = 597, + [1863] = 1775, + [1864] = 481, + [1865] = 482, + [1866] = 1807, + [1867] = 1810, + [1868] = 1777, + [1869] = 1797, + [1870] = 483, + [1871] = 485, + [1872] = 1586, + [1873] = 1435, + [1874] = 1588, + [1875] = 486, + [1876] = 1876, + [1877] = 818, + [1878] = 1775, + [1879] = 1847, + [1880] = 480, + [1881] = 470, + [1882] = 473, + [1883] = 479, + [1884] = 1815, + [1885] = 484, + [1886] = 1821, + [1887] = 495, + [1888] = 471, + [1889] = 1586, + [1890] = 474, + [1891] = 488, + [1892] = 493, + [1893] = 1784, + [1894] = 1588, + [1895] = 1810, + [1896] = 1777, + [1897] = 1822, + [1898] = 1810, + [1899] = 1822, [1900] = 485, - [1901] = 486, - [1902] = 1381, - [1903] = 487, - [1904] = 474, - [1905] = 489, - [1906] = 490, - [1907] = 491, - [1908] = 488, - [1909] = 492, - [1910] = 1293, - [1911] = 1314, - [1912] = 1240, - [1913] = 1773, - [1914] = 1275, - [1915] = 1276, - [1916] = 809, - [1917] = 470, - [1918] = 1381, - [1919] = 473, - [1920] = 868, - [1921] = 879, - [1922] = 867, - [1923] = 878, - [1924] = 472, - [1925] = 1339, - [1926] = 832, - [1927] = 873, - [1928] = 884, - [1929] = 489, - [1930] = 1930, - [1931] = 1931, - [1932] = 1930, - [1933] = 1933, - [1934] = 1934, - [1935] = 1935, - [1936] = 1936, - [1937] = 1937, - [1938] = 1293, - [1939] = 1939, - [1940] = 1940, - [1941] = 1941, - [1942] = 476, - [1943] = 1571, - [1944] = 1696, - [1945] = 1381, - [1946] = 481, - [1947] = 1240, - [1948] = 478, - [1949] = 1506, - [1950] = 1950, - [1951] = 475, - [1952] = 476, - [1953] = 488, - [1954] = 1954, - [1955] = 1955, - [1956] = 492, - [1957] = 498, - [1958] = 479, - [1959] = 1959, - [1960] = 1506, - [1961] = 1961, - [1962] = 1962, - [1963] = 477, - [1964] = 1964, - [1965] = 1965, - [1966] = 1966, - [1967] = 1933, - [1968] = 1934, - [1969] = 1935, - [1970] = 1936, - [1971] = 1937, - [1972] = 480, - [1973] = 493, - [1974] = 475, - [1975] = 482, - [1976] = 1506, - [1977] = 498, - [1978] = 1978, - [1979] = 1571, - [1980] = 483, - [1981] = 481, - [1982] = 484, - [1983] = 477, - [1984] = 498, - [1985] = 481, - [1986] = 479, - [1987] = 485, - [1988] = 1954, - [1989] = 477, - [1990] = 1955, - [1991] = 493, - [1992] = 1571, - [1993] = 482, - [1994] = 1590, - [1995] = 483, - [1996] = 484, - [1997] = 485, - [1998] = 493, - [1999] = 486, - [2000] = 486, - [2001] = 487, - [2002] = 474, - [2003] = 1590, - [2004] = 480, - [2005] = 487, - [2006] = 1381, - [2007] = 832, - [2008] = 873, - [2009] = 1939, - [2010] = 1940, - [2011] = 1978, - [2012] = 1930, - [2013] = 884, - [2014] = 886, - [2015] = 489, - [2016] = 1978, - [2017] = 1954, - [2018] = 1955, - [2019] = 1959, - [2020] = 1961, - [2021] = 1962, - [2022] = 1964, - [2023] = 1965, - [2024] = 1966, - [2025] = 1933, - [2026] = 1934, - [2027] = 1935, - [2028] = 1936, - [2029] = 1937, - [2030] = 1941, - [2031] = 1941, - [2032] = 470, - [2033] = 473, - [2034] = 474, - [2035] = 490, - [2036] = 471, - [2037] = 489, - [2038] = 1939, - [2039] = 1940, - [2040] = 1930, - [2041] = 478, - [2042] = 490, - [2043] = 1930, - [2044] = 592, - [2045] = 1930, - [2046] = 491, - [2047] = 1930, - [2048] = 1930, - [2049] = 1930, - [2050] = 1930, - [2051] = 1930, - [2052] = 1930, - [2053] = 1930, - [2054] = 1930, - [2055] = 1930, - [2056] = 1930, - [2057] = 1930, - [2058] = 488, - [2059] = 1930, - [2060] = 1930, - [2061] = 1930, - [2062] = 1930, - [2063] = 1930, - [2064] = 1930, - [2065] = 1930, - [2066] = 1930, - [2067] = 1930, - [2068] = 1930, - [2069] = 1930, - [2070] = 1930, - [2071] = 1930, - [2072] = 1930, - [2073] = 1930, - [2074] = 1930, - [2075] = 1930, - [2076] = 1930, - [2077] = 1930, - [2078] = 1930, - [2079] = 1930, - [2080] = 1930, - [2081] = 1930, - [2082] = 1930, - [2083] = 1930, - [2084] = 1930, - [2085] = 1930, - [2086] = 1930, - [2087] = 1930, - [2088] = 1930, - [2089] = 1930, - [2090] = 1930, - [2091] = 1930, - [2092] = 1930, - [2093] = 1930, - [2094] = 1930, - [2095] = 1930, - [2096] = 1930, - [2097] = 1930, - [2098] = 1930, - [2099] = 1930, - [2100] = 1930, - [2101] = 1930, - [2102] = 1930, - [2103] = 1930, - [2104] = 1930, - [2105] = 1930, - [2106] = 1930, - [2107] = 1930, - [2108] = 1930, - [2109] = 1930, - [2110] = 1930, - [2111] = 1930, - [2112] = 1930, - [2113] = 1930, - [2114] = 1930, - [2115] = 1930, - [2116] = 1930, - [2117] = 1930, - [2118] = 1930, - [2119] = 1930, - [2120] = 1930, - [2121] = 1930, - [2122] = 1930, - [2123] = 593, - [2124] = 492, - [2125] = 2125, - [2126] = 1950, - [2127] = 1931, - [2128] = 1081, - [2129] = 1082, - [2130] = 1954, - [2131] = 1955, - [2132] = 1959, - [2133] = 1939, - [2134] = 1940, - [2135] = 2125, - [2136] = 1950, - [2137] = 1931, - [2138] = 1978, - [2139] = 1961, - [2140] = 1962, - [2141] = 1964, - [2142] = 1965, - [2143] = 2125, - [2144] = 1950, - [2145] = 1931, - [2146] = 1966, - [2147] = 498, - [2148] = 1933, - [2149] = 2125, - [2150] = 1950, - [2151] = 1931, - [2152] = 1934, - [2153] = 1935, - [2154] = 2125, - [2155] = 1931, - [2156] = 1936, - [2157] = 1937, - [2158] = 868, - [2159] = 879, - [2160] = 498, - [2161] = 482, - [2162] = 1959, - [2163] = 1961, - [2164] = 498, - [2165] = 1962, - [2166] = 1964, - [2167] = 1965, - [2168] = 1966, - [2169] = 1933, - [2170] = 1934, + [1901] = 1615, + [1902] = 1815, + [1903] = 1821, + [1904] = 486, + [1905] = 479, + [1906] = 475, + [1907] = 489, + [1908] = 1620, + [1909] = 478, + [1910] = 1876, + [1911] = 1409, + [1912] = 490, + [1913] = 1876, + [1914] = 489, + [1915] = 474, + [1916] = 480, + [1917] = 1794, + [1918] = 845, + [1919] = 1780, + [1920] = 1064, + [1921] = 493, + [1922] = 822, + [1923] = 477, + [1924] = 481, + [1925] = 490, + [1926] = 482, + [1927] = 1876, + [1928] = 475, + [1929] = 476, + [1930] = 475, + [1931] = 484, + [1932] = 478, + [1933] = 1728, + [1934] = 484, + [1935] = 477, + [1936] = 1364, + [1937] = 483, + [1938] = 1392, + [1939] = 495, + [1940] = 488, + [1941] = 1780, + [1942] = 1435, + [1943] = 1794, + [1944] = 1805, + [1945] = 1786, + [1946] = 479, + [1947] = 474, + [1948] = 1797, + [1949] = 1775, + [1950] = 1847, + [1951] = 489, + [1952] = 1853, + [1953] = 1854, + [1954] = 1781, + [1955] = 1779, + [1956] = 1775, + [1957] = 1807, + [1958] = 1810, + [1959] = 1777, + [1960] = 1794, + [1961] = 490, + [1962] = 1805, + [1963] = 1780, + [1964] = 1064, + [1965] = 487, + [1966] = 1847, + [1967] = 495, + [1968] = 1815, + [1969] = 1821, + [1970] = 1807, + [1971] = 491, + [1972] = 1779, + [1973] = 492, + [1974] = 591, + [1975] = 476, + [1976] = 487, + [1977] = 491, + [1978] = 492, + [1979] = 1409, + [1980] = 1853, + [1981] = 1805, + [1982] = 1394, + [1983] = 1853, + [1984] = 487, + [1985] = 1822, + [1986] = 1815, + [1987] = 491, + [1988] = 1364, + [1989] = 1283, + [1990] = 1821, + [1991] = 1394, + [1992] = 1854, + [1993] = 1786, + [1994] = 1286, + [1995] = 1797, + [1996] = 492, + [1997] = 502, + [1998] = 502, + [1999] = 1082, + [2000] = 1876, + [2001] = 1364, + [2002] = 1780, + [2003] = 1794, + [2004] = 1805, + [2005] = 470, + [2006] = 495, + [2007] = 1786, + [2008] = 1435, + [2009] = 1797, + [2010] = 1847, + [2011] = 1853, + [2012] = 473, + [2013] = 1854, + [2014] = 1779, + [2015] = 1027, + [2016] = 472, + [2017] = 1097, + [2018] = 1775, + [2019] = 1807, + [2020] = 470, + [2021] = 473, + [2022] = 472, + [2023] = 1810, + [2024] = 471, + [2025] = 1777, + [2026] = 471, + [2027] = 480, + [2028] = 481, + [2029] = 482, + [2030] = 483, + [2031] = 485, + [2032] = 1657, + [2033] = 486, + [2034] = 484, + [2035] = 488, + [2036] = 1780, + [2037] = 1794, + [2038] = 1786, + [2039] = 1797, + [2040] = 1847, + [2041] = 1853, + [2042] = 1854, + [2043] = 1779, + [2044] = 1775, + [2045] = 1807, + [2046] = 1810, + [2047] = 1777, + [2048] = 1876, + [2049] = 1082, + [2050] = 470, + [2051] = 1267, + [2052] = 1268, + [2053] = 475, + [2054] = 473, + [2055] = 476, + [2056] = 472, + [2057] = 478, + [2058] = 1854, + [2059] = 493, + [2060] = 1815, + [2061] = 1821, + [2062] = 1847, + [2063] = 1822, + [2064] = 477, + [2065] = 1876, + [2066] = 479, + [2067] = 476, + [2068] = 1853, + [2069] = 474, + [2070] = 480, + [2071] = 489, + [2072] = 481, + [2073] = 482, + [2074] = 483, + [2075] = 490, + [2076] = 485, + [2077] = 910, + [2078] = 913, + [2079] = 486, + [2080] = 471, + [2081] = 484, + [2082] = 487, + [2083] = 491, + [2084] = 492, + [2085] = 923, + [2086] = 887, + [2087] = 488, + [2088] = 1854, + [2089] = 899, + [2090] = 902, + [2091] = 915, + [2092] = 916, + [2093] = 493, + [2094] = 475, + [2095] = 492, + [2096] = 2096, + [2097] = 1728, + [2098] = 1588, + [2099] = 491, + [2100] = 2096, + [2101] = 2096, + [2102] = 2096, + [2103] = 2096, + [2104] = 1283, + [2105] = 480, + [2106] = 915, + [2107] = 1586, + [2108] = 2096, + [2109] = 492, + [2110] = 916, + [2111] = 2096, + [2112] = 2096, + [2113] = 481, + [2114] = 482, + [2115] = 1615, + [2116] = 2096, + [2117] = 483, + [2118] = 2096, + [2119] = 485, + [2120] = 2096, + [2121] = 2096, + [2122] = 486, + [2123] = 471, + [2124] = 1657, + [2125] = 480, + [2126] = 2096, + [2127] = 481, + [2128] = 482, + [2129] = 923, + [2130] = 484, + [2131] = 483, + [2132] = 2096, + [2133] = 2096, + [2134] = 887, + [2135] = 485, + [2136] = 2096, + [2137] = 488, + [2138] = 2096, + [2139] = 486, + [2140] = 2096, + [2141] = 484, + [2142] = 2096, + [2143] = 488, + [2144] = 502, + [2145] = 470, + [2146] = 493, + [2147] = 2096, + [2148] = 1283, + [2149] = 475, + [2150] = 2096, + [2151] = 476, + [2152] = 495, + [2153] = 473, + [2154] = 2096, + [2155] = 478, + [2156] = 490, + [2157] = 495, + [2158] = 2096, + [2159] = 477, + [2160] = 2096, + [2161] = 2096, + [2162] = 479, + [2163] = 474, + [2164] = 489, + [2165] = 1586, + [2166] = 490, + [2167] = 2096, + [2168] = 2096, + [2169] = 1286, + [2170] = 2096, [2171] = 493, - [2172] = 1556, - [2173] = 1954, - [2174] = 1955, - [2175] = 1718, - [2176] = 1935, - [2177] = 1959, - [2178] = 1961, - [2179] = 1936, - [2180] = 1962, - [2181] = 1964, - [2182] = 1965, - [2183] = 1966, - [2184] = 1933, - [2185] = 1934, - [2186] = 1937, - [2187] = 1935, - [2188] = 1936, - [2189] = 1937, - [2190] = 483, - [2191] = 1931, - [2192] = 1696, - [2193] = 1571, - [2194] = 484, - [2195] = 1240, - [2196] = 1293, - [2197] = 1590, - [2198] = 1590, - [2199] = 867, - [2200] = 878, - [2201] = 1506, - [2202] = 1941, - [2203] = 1556, - [2204] = 1718, - [2205] = 493, - [2206] = 485, - [2207] = 1614, - [2208] = 491, - [2209] = 488, - [2210] = 1941, - [2211] = 1939, - [2212] = 1940, - [2213] = 1941, - [2214] = 492, - [2215] = 2125, - [2216] = 486, - [2217] = 1954, - [2218] = 1955, - [2219] = 1961, - [2220] = 1962, - [2221] = 1964, - [2222] = 1965, - [2223] = 1966, - [2224] = 1933, - [2225] = 1934, - [2226] = 1935, - [2227] = 1936, - [2228] = 1937, - [2229] = 1614, - [2230] = 1941, - [2231] = 470, - [2232] = 1978, + [2172] = 475, + [2173] = 476, + [2174] = 495, + [2175] = 478, + [2176] = 487, + [2177] = 491, + [2178] = 492, + [2179] = 2096, + [2180] = 1515, + [2181] = 502, + [2182] = 1657, + [2183] = 502, + [2184] = 1517, + [2185] = 2096, + [2186] = 2096, + [2187] = 2096, + [2188] = 2096, + [2189] = 471, + [2190] = 1586, + [2191] = 2096, + [2192] = 1435, + [2193] = 2096, + [2194] = 477, + [2195] = 2096, + [2196] = 1588, + [2197] = 479, + [2198] = 474, + [2199] = 489, + [2200] = 490, + [2201] = 2096, + [2202] = 1574, + [2203] = 489, + [2204] = 2096, + [2205] = 2096, + [2206] = 2096, + [2207] = 2096, + [2208] = 902, + [2209] = 480, + [2210] = 1620, + [2211] = 1574, + [2212] = 1027, + [2213] = 2096, + [2214] = 2096, + [2215] = 2096, + [2216] = 502, + [2217] = 495, + [2218] = 2096, + [2219] = 2096, + [2220] = 481, + [2221] = 482, + [2222] = 2096, + [2223] = 2096, + [2224] = 2096, + [2225] = 2096, + [2226] = 2096, + [2227] = 2096, + [2228] = 502, + [2229] = 483, + [2230] = 487, + [2231] = 491, + [2232] = 1728, [2233] = 487, - [2234] = 1381, - [2235] = 1939, - [2236] = 473, - [2237] = 1940, - [2238] = 498, - [2239] = 472, - [2240] = 1978, - [2241] = 1491, - [2242] = 1939, - [2243] = 1940, - [2244] = 1978, - [2245] = 464, - [2246] = 465, - [2247] = 474, - [2248] = 489, - [2249] = 476, - [2250] = 1491, - [2251] = 1658, - [2252] = 490, - [2253] = 1658, - [2254] = 478, - [2255] = 1954, - [2256] = 1955, - [2257] = 475, - [2258] = 1959, - [2259] = 1961, - [2260] = 1962, - [2261] = 1964, - [2262] = 1965, - [2263] = 1966, - [2264] = 479, - [2265] = 480, - [2266] = 471, - [2267] = 491, - [2268] = 476, - [2269] = 482, - [2270] = 498, - [2271] = 488, - [2272] = 491, - [2273] = 492, - [2274] = 488, - [2275] = 486, - [2276] = 474, - [2277] = 978, - [2278] = 498, - [2279] = 472, - [2280] = 485, - [2281] = 470, - [2282] = 473, - [2283] = 472, - [2284] = 483, - [2285] = 492, - [2286] = 471, - [2287] = 1381, - [2288] = 482, - [2289] = 1064, - [2290] = 493, - [2291] = 489, - [2292] = 1556, - [2293] = 1718, - [2294] = 484, - [2295] = 884, - [2296] = 493, - [2297] = 886, - [2298] = 470, - [2299] = 473, - [2300] = 471, - [2301] = 1081, - [2302] = 1082, - [2303] = 470, - [2304] = 473, - [2305] = 471, - [2306] = 1614, - [2307] = 1381, - [2308] = 498, - [2309] = 478, - [2310] = 475, - [2311] = 489, - [2312] = 483, - [2313] = 479, - [2314] = 484, - [2315] = 486, - [2316] = 480, - [2317] = 490, - [2318] = 498, - [2319] = 1062, - [2320] = 832, - [2321] = 873, - [2322] = 487, - [2323] = 1081, - [2324] = 1082, - [2325] = 1084, - [2326] = 1085, - [2327] = 474, - [2328] = 1062, - [2329] = 832, - [2330] = 873, - [2331] = 1064, - [2332] = 884, - [2333] = 886, - [2334] = 1053, - [2335] = 1054, - [2336] = 498, - [2337] = 481, - [2338] = 1053, - [2339] = 1054, - [2340] = 487, - [2341] = 485, - [2342] = 490, - [2343] = 477, - [2344] = 491, - [2345] = 493, - [2346] = 1081, - [2347] = 2347, - [2348] = 470, - [2349] = 478, - [2350] = 1053, - [2351] = 498, - [2352] = 1073, - [2353] = 498, - [2354] = 2354, - [2355] = 2355, - [2356] = 1084, - [2357] = 1085, - [2358] = 485, - [2359] = 2359, - [2360] = 1081, - [2361] = 1082, - [2362] = 1082, - [2363] = 1054, - [2364] = 2347, - [2365] = 475, - [2366] = 471, - [2367] = 486, - [2368] = 471, - [2369] = 2369, - [2370] = 493, - [2371] = 471, - [2372] = 473, - [2373] = 1081, - [2374] = 2359, - [2375] = 470, - [2376] = 487, - [2377] = 474, - [2378] = 470, - [2379] = 473, - [2380] = 471, - [2381] = 1082, - [2382] = 489, - [2383] = 1093, - [2384] = 1111, - [2385] = 480, - [2386] = 2347, - [2387] = 2359, - [2388] = 473, - [2389] = 490, - [2390] = 471, - [2391] = 1053, - [2392] = 476, - [2393] = 1054, - [2394] = 832, - [2395] = 471, - [2396] = 873, - [2397] = 478, - [2398] = 471, - [2399] = 477, - [2400] = 1064, - [2401] = 479, - [2402] = 498, - [2403] = 480, - [2404] = 471, - [2405] = 471, - [2406] = 2354, - [2407] = 2354, - [2408] = 1275, - [2409] = 1276, - [2410] = 884, - [2411] = 481, - [2412] = 2355, - [2413] = 470, - [2414] = 473, - [2415] = 477, - [2416] = 2355, - [2417] = 470, - [2418] = 473, - [2419] = 886, - [2420] = 472, - [2421] = 481, - [2422] = 472, - [2423] = 472, - [2424] = 471, - [2425] = 1097, - [2426] = 2354, - [2427] = 2427, - [2428] = 2347, - [2429] = 2359, - [2430] = 491, - [2431] = 488, - [2432] = 471, - [2433] = 476, - [2434] = 482, - [2435] = 1088, - [2436] = 492, - [2437] = 2355, - [2438] = 483, - [2439] = 484, - [2440] = 479, - [2441] = 1062, - [2442] = 475, - [2443] = 479, - [2444] = 486, - [2445] = 487, - [2446] = 474, - [2447] = 489, - [2448] = 474, - [2449] = 490, - [2450] = 491, - [2451] = 488, - [2452] = 492, - [2453] = 489, - [2454] = 470, + [2234] = 492, + [2235] = 485, + [2236] = 1097, + [2237] = 1620, + [2238] = 1515, + [2239] = 1586, + [2240] = 1615, + [2241] = 2096, + [2242] = 486, + [2243] = 2096, + [2244] = 2096, + [2245] = 2096, + [2246] = 1435, + [2247] = 2096, + [2248] = 2096, + [2249] = 2096, + [2250] = 502, + [2251] = 913, + [2252] = 2096, + [2253] = 2096, + [2254] = 2096, + [2255] = 2096, + [2256] = 2096, + [2257] = 2096, + [2258] = 2096, + [2259] = 2096, + [2260] = 2096, + [2261] = 484, + [2262] = 1286, + [2263] = 899, + [2264] = 1588, + [2265] = 488, + [2266] = 470, + [2267] = 2096, + [2268] = 2096, + [2269] = 1574, + [2270] = 1435, + [2271] = 2096, + [2272] = 473, + [2273] = 2096, + [2274] = 2096, + [2275] = 2096, + [2276] = 472, + [2277] = 1574, + [2278] = 1588, + [2279] = 2096, + [2280] = 2096, + [2281] = 2096, + [2282] = 2096, + [2283] = 495, + [2284] = 493, + [2285] = 465, + [2286] = 1517, + [2287] = 464, + [2288] = 2096, + [2289] = 475, + [2290] = 476, + [2291] = 478, + [2292] = 477, + [2293] = 910, + [2294] = 479, + [2295] = 474, + [2296] = 2096, + [2297] = 502, + [2298] = 2096, + [2299] = 472, + [2300] = 1054, + [2301] = 1435, + [2302] = 502, + [2303] = 2303, + [2304] = 2304, + [2305] = 493, + [2306] = 502, + [2307] = 1515, + [2308] = 1517, + [2309] = 1027, + [2310] = 1097, + [2311] = 1728, + [2312] = 502, + [2313] = 1121, + [2314] = 899, + [2315] = 902, + [2316] = 479, + [2317] = 474, + [2318] = 475, + [2319] = 476, + [2320] = 489, + [2321] = 1128, + [2322] = 915, + [2323] = 916, + [2324] = 470, + [2325] = 473, + [2326] = 2303, + [2327] = 2304, + [2328] = 2328, + [2329] = 2329, + [2330] = 472, + [2331] = 2303, + [2332] = 2304, + [2333] = 2328, + [2334] = 2329, + [2335] = 2303, + [2336] = 2304, + [2337] = 2328, + [2338] = 2329, + [2339] = 471, + [2340] = 2328, + [2341] = 2329, + [2342] = 1435, + [2343] = 478, + [2344] = 1056, + [2345] = 487, + [2346] = 491, + [2347] = 492, + [2348] = 480, + [2349] = 481, + [2350] = 482, + [2351] = 483, + [2352] = 485, + [2353] = 486, + [2354] = 484, + [2355] = 470, + [2356] = 473, + [2357] = 471, + [2358] = 470, + [2359] = 473, + [2360] = 471, + [2361] = 488, + [2362] = 493, + [2363] = 475, + [2364] = 476, + [2365] = 495, + [2366] = 478, + [2367] = 477, + [2368] = 479, + [2369] = 474, + [2370] = 477, + [2371] = 489, + [2372] = 495, + [2373] = 490, + [2374] = 487, + [2375] = 491, + [2376] = 492, + [2377] = 502, + [2378] = 940, + [2379] = 495, + [2380] = 502, + [2381] = 1027, + [2382] = 1097, + [2383] = 1075, + [2384] = 1077, + [2385] = 1121, + [2386] = 899, + [2387] = 902, + [2388] = 1128, + [2389] = 915, + [2390] = 916, + [2391] = 1054, + [2392] = 1056, + [2393] = 490, + [2394] = 899, + [2395] = 479, + [2396] = 474, + [2397] = 1056, + [2398] = 489, + [2399] = 481, + [2400] = 482, + [2401] = 471, + [2402] = 490, + [2403] = 1064, + [2404] = 1056, + [2405] = 483, + [2406] = 1027, + [2407] = 1097, + [2408] = 485, + [2409] = 481, + [2410] = 482, + [2411] = 486, + [2412] = 471, + [2413] = 1082, + [2414] = 470, + [2415] = 473, + [2416] = 471, + [2417] = 487, + [2418] = 491, + [2419] = 492, + [2420] = 1121, + [2421] = 495, + [2422] = 471, + [2423] = 1057, + [2424] = 470, + [2425] = 502, + [2426] = 473, + [2427] = 471, + [2428] = 484, + [2429] = 488, + [2430] = 471, + [2431] = 1027, + [2432] = 480, + [2433] = 1097, + [2434] = 502, + [2435] = 488, + [2436] = 486, + [2437] = 1054, + [2438] = 2438, + [2439] = 902, + [2440] = 915, + [2441] = 473, + [2442] = 2442, + [2443] = 1061, + [2444] = 484, + [2445] = 502, + [2446] = 472, + [2447] = 471, + [2448] = 470, + [2449] = 473, + [2450] = 493, + [2451] = 472, + [2452] = 471, + [2453] = 470, + [2454] = 1075, [2455] = 473, - [2456] = 470, - [2457] = 1293, - [2458] = 472, - [2459] = 473, - [2460] = 1343, - [2461] = 490, - [2462] = 2462, - [2463] = 2463, - [2464] = 1240, - [2465] = 471, - [2466] = 476, - [2467] = 472, - [2468] = 483, - [2469] = 489, - [2470] = 2462, - [2471] = 2463, - [2472] = 478, - [2473] = 475, + [2456] = 1077, + [2457] = 472, + [2458] = 471, + [2459] = 471, + [2460] = 1105, + [2461] = 475, + [2462] = 476, + [2463] = 916, + [2464] = 1027, + [2465] = 1267, + [2466] = 1268, + [2467] = 483, + [2468] = 478, + [2469] = 1097, + [2470] = 480, + [2471] = 1054, + [2472] = 477, + [2473] = 1128, [2474] = 485, - [2475] = 490, + [2475] = 471, [2476] = 470, [2477] = 473, - [2478] = 471, - [2479] = 486, - [2480] = 470, - [2481] = 1081, - [2482] = 1082, - [2483] = 2462, - [2484] = 2463, - [2485] = 470, - [2486] = 473, - [2487] = 493, - [2488] = 2462, - [2489] = 2463, - [2490] = 2462, - [2491] = 2463, - [2492] = 472, - [2493] = 491, - [2494] = 488, - [2495] = 492, - [2496] = 479, - [2497] = 480, - [2498] = 2498, - [2499] = 2427, - [2500] = 2369, - [2501] = 470, - [2502] = 473, - [2503] = 2503, - [2504] = 472, - [2505] = 481, - [2506] = 477, - [2507] = 470, - [2508] = 473, - [2509] = 2498, + [2478] = 470, + [2479] = 2479, + [2480] = 2480, + [2481] = 470, + [2482] = 473, + [2483] = 472, + [2484] = 471, + [2485] = 2479, + [2486] = 2480, + [2487] = 2479, + [2488] = 2480, + [2489] = 2479, + [2490] = 2480, + [2491] = 480, + [2492] = 2492, + [2493] = 495, + [2494] = 487, + [2495] = 481, + [2496] = 482, + [2497] = 483, + [2498] = 485, + [2499] = 486, + [2500] = 470, + [2501] = 473, + [2502] = 2502, + [2503] = 472, + [2504] = 484, + [2505] = 491, + [2506] = 488, + [2507] = 2492, + [2508] = 470, + [2509] = 489, [2510] = 470, [2511] = 473, - [2512] = 470, - [2513] = 473, - [2514] = 1275, - [2515] = 1081, - [2516] = 1082, - [2517] = 1276, - [2518] = 471, - [2519] = 486, - [2520] = 476, - [2521] = 488, - [2522] = 492, - [2523] = 1171, - [2524] = 1093, - [2525] = 1174, - [2526] = 478, - [2527] = 475, - [2528] = 473, - [2529] = 498, - [2530] = 2498, - [2531] = 1081, - [2532] = 1082, - [2533] = 1208, - [2534] = 493, - [2535] = 480, - [2536] = 481, - [2537] = 487, - [2538] = 476, - [2539] = 477, - [2540] = 493, + [2512] = 471, + [2513] = 493, + [2514] = 475, + [2515] = 476, + [2516] = 470, + [2517] = 473, + [2518] = 2438, + [2519] = 478, + [2520] = 1027, + [2521] = 1097, + [2522] = 2442, + [2523] = 2479, + [2524] = 2480, + [2525] = 2492, + [2526] = 477, + [2527] = 479, + [2528] = 474, + [2529] = 489, + [2530] = 502, + [2531] = 490, + [2532] = 470, + [2533] = 1435, + [2534] = 1283, + [2535] = 487, + [2536] = 491, + [2537] = 492, + [2538] = 492, + [2539] = 1392, + [2540] = 473, [2541] = 478, - [2542] = 475, - [2543] = 482, - [2544] = 479, - [2545] = 480, - [2546] = 470, - [2547] = 2547, - [2548] = 2503, - [2549] = 483, - [2550] = 473, - [2551] = 484, - [2552] = 472, - [2553] = 481, - [2554] = 2498, - [2555] = 485, - [2556] = 2498, - [2557] = 477, - [2558] = 486, - [2559] = 487, - [2560] = 1381, - [2561] = 474, - [2562] = 489, - [2563] = 490, - [2564] = 2462, - [2565] = 471, - [2566] = 482, - [2567] = 2498, - [2568] = 471, - [2569] = 1339, - [2570] = 483, - [2571] = 484, - [2572] = 1088, - [2573] = 491, - [2574] = 488, - [2575] = 492, - [2576] = 2463, - [2577] = 482, - [2578] = 485, - [2579] = 483, - [2580] = 484, - [2581] = 485, - [2582] = 491, - [2583] = 493, - [2584] = 481, - [2585] = 1556, - [2586] = 479, - [2587] = 1718, - [2588] = 477, - [2589] = 2547, - [2590] = 485, - [2591] = 464, - [2592] = 465, - [2593] = 2503, - [2594] = 482, - [2595] = 484, - [2596] = 476, - [2597] = 470, - [2598] = 478, - [2599] = 475, - [2600] = 489, - [2601] = 478, - [2602] = 479, - [2603] = 480, - [2604] = 475, - [2605] = 482, - [2606] = 480, - [2607] = 1381, - [2608] = 487, - [2609] = 474, - [2610] = 473, - [2611] = 1088, - [2612] = 476, - [2613] = 483, - [2614] = 483, - [2615] = 484, - [2616] = 489, - [2617] = 2617, - [2618] = 492, - [2619] = 1240, - [2620] = 485, - [2621] = 490, - [2622] = 1093, - [2623] = 2503, - [2624] = 481, - [2625] = 485, - [2626] = 486, - [2627] = 477, - [2628] = 486, - [2629] = 1384, - [2630] = 472, - [2631] = 493, - [2632] = 481, - [2633] = 1381, - [2634] = 477, + [2542] = 1064, + [2543] = 1027, + [2544] = 1097, + [2545] = 2545, + [2546] = 2502, + [2547] = 1286, + [2548] = 473, + [2549] = 2492, + [2550] = 477, + [2551] = 480, + [2552] = 1394, + [2553] = 1298, + [2554] = 482, + [2555] = 483, + [2556] = 485, + [2557] = 486, + [2558] = 470, + [2559] = 473, + [2560] = 472, + [2561] = 484, + [2562] = 488, + [2563] = 472, + [2564] = 471, + [2565] = 480, + [2566] = 1082, + [2567] = 481, + [2568] = 482, + [2569] = 483, + [2570] = 1267, + [2571] = 485, + [2572] = 1268, + [2573] = 486, + [2574] = 484, + [2575] = 488, + [2576] = 493, + [2577] = 475, + [2578] = 476, + [2579] = 478, + [2580] = 477, + [2581] = 479, + [2582] = 474, + [2583] = 489, + [2584] = 490, + [2585] = 487, + [2586] = 491, + [2587] = 492, + [2588] = 2492, + [2589] = 493, + [2590] = 475, + [2591] = 476, + [2592] = 478, + [2593] = 477, + [2594] = 479, + [2595] = 474, + [2596] = 489, + [2597] = 490, + [2598] = 487, + [2599] = 491, + [2600] = 492, + [2601] = 1277, + [2602] = 470, + [2603] = 473, + [2604] = 1279, + [2605] = 472, + [2606] = 2492, + [2607] = 471, + [2608] = 495, + [2609] = 2479, + [2610] = 2480, + [2611] = 490, + [2612] = 471, + [2613] = 470, + [2614] = 1027, + [2615] = 1097, + [2616] = 473, + [2617] = 495, + [2618] = 475, + [2619] = 481, + [2620] = 486, + [2621] = 492, + [2622] = 476, + [2623] = 483, + [2624] = 2624, + [2625] = 490, + [2626] = 480, + [2627] = 1615, + [2628] = 2628, + [2629] = 479, + [2630] = 1082, + [2631] = 485, + [2632] = 2632, + [2633] = 1283, + [2634] = 484, [2635] = 487, - [2636] = 474, - [2637] = 470, - [2638] = 473, - [2639] = 490, - [2640] = 489, + [2636] = 491, + [2637] = 492, + [2638] = 1394, + [2639] = 478, + [2640] = 487, [2641] = 491, [2642] = 488, [2643] = 492, - [2644] = 1314, - [2645] = 476, - [2646] = 490, - [2647] = 479, - [2648] = 480, + [2644] = 486, + [2645] = 1515, + [2646] = 1517, + [2647] = 477, + [2648] = 474, [2649] = 2649, - [2650] = 482, - [2651] = 2651, - [2652] = 481, - [2653] = 483, - [2654] = 484, - [2655] = 477, - [2656] = 478, - [2657] = 485, - [2658] = 491, - [2659] = 488, - [2660] = 492, - [2661] = 486, - [2662] = 1314, - [2663] = 1081, - [2664] = 1082, - [2665] = 487, - [2666] = 474, - [2667] = 2667, - [2668] = 490, - [2669] = 482, - [2670] = 475, - [2671] = 1339, - [2672] = 483, - [2673] = 489, - [2674] = 2674, - [2675] = 485, - [2676] = 490, - [2677] = 491, + [2650] = 475, + [2651] = 1392, + [2652] = 2652, + [2653] = 2502, + [2654] = 481, + [2655] = 1435, + [2656] = 1620, + [2657] = 479, + [2658] = 474, + [2659] = 2659, + [2660] = 482, + [2661] = 489, + [2662] = 495, + [2663] = 2663, + [2664] = 475, + [2665] = 480, + [2666] = 489, + [2667] = 481, + [2668] = 482, + [2669] = 484, + [2670] = 490, + [2671] = 483, + [2672] = 485, + [2673] = 1435, + [2674] = 486, + [2675] = 490, + [2676] = 495, + [2677] = 484, [2678] = 488, - [2679] = 492, - [2680] = 486, - [2681] = 498, - [2682] = 491, - [2683] = 493, - [2684] = 486, - [2685] = 2685, - [2686] = 488, - [2687] = 498, - [2688] = 479, - [2689] = 487, - [2690] = 480, - [2691] = 476, - [2692] = 474, - [2693] = 491, - [2694] = 488, - [2695] = 478, - [2696] = 475, - [2697] = 1343, - [2698] = 492, - [2699] = 493, - [2700] = 1696, - [2701] = 479, - [2702] = 471, - [2703] = 2703, - [2704] = 480, - [2705] = 2503, - [2706] = 482, - [2707] = 483, - [2708] = 484, - [2709] = 485, - [2710] = 476, - [2711] = 486, - [2712] = 493, - [2713] = 483, - [2714] = 481, - [2715] = 477, - [2716] = 2716, - [2717] = 498, - [2718] = 487, - [2719] = 474, - [2720] = 1658, - [2721] = 489, - [2722] = 2722, - [2723] = 1293, - [2724] = 484, - [2725] = 490, - [2726] = 2726, - [2727] = 488, - [2728] = 493, - [2729] = 478, - [2730] = 492, - [2731] = 491, - [2732] = 2498, - [2733] = 2733, - [2734] = 2734, - [2735] = 475, - [2736] = 489, - [2737] = 2737, - [2738] = 2738, - [2739] = 481, - [2740] = 2738, - [2741] = 477, - [2742] = 483, - [2743] = 2743, - [2744] = 489, - [2745] = 2738, - [2746] = 485, - [2747] = 490, - [2748] = 486, - [2749] = 482, - [2750] = 2738, - [2751] = 1590, - [2752] = 2752, - [2753] = 1491, - [2754] = 2738, - [2755] = 2716, - [2756] = 1506, - [2757] = 2738, - [2758] = 2738, - [2759] = 2759, - [2760] = 2738, - [2761] = 2761, - [2762] = 2762, - [2763] = 2738, - [2764] = 2738, - [2765] = 483, - [2766] = 2649, - [2767] = 2767, - [2768] = 2768, - [2769] = 2769, - [2770] = 2738, - [2771] = 2771, - [2772] = 2772, - [2773] = 2773, - [2774] = 2738, - [2775] = 489, - [2776] = 2776, - [2777] = 2738, - [2778] = 2738, - [2779] = 2738, - [2780] = 2780, - [2781] = 493, - [2782] = 2738, - [2783] = 2738, - [2784] = 483, - [2785] = 2738, - [2786] = 2738, - [2787] = 2787, - [2788] = 489, - [2789] = 1658, - [2790] = 2738, - [2791] = 1556, - [2792] = 1506, - [2793] = 2738, - [2794] = 485, - [2795] = 2738, - [2796] = 490, - [2797] = 485, - [2798] = 490, - [2799] = 491, - [2800] = 488, - [2801] = 2738, - [2802] = 1718, - [2803] = 492, - [2804] = 2738, - [2805] = 2738, - [2806] = 2738, - [2807] = 486, + [2679] = 493, + [2680] = 1286, + [2681] = 465, + [2682] = 475, + [2683] = 495, + [2684] = 464, + [2685] = 488, + [2686] = 2686, + [2687] = 476, + [2688] = 487, + [2689] = 1409, + [2690] = 493, + [2691] = 489, + [2692] = 2545, + [2693] = 502, + [2694] = 484, + [2695] = 477, + [2696] = 481, + [2697] = 491, + [2698] = 482, + [2699] = 1064, + [2700] = 483, + [2701] = 495, + [2702] = 485, + [2703] = 488, + [2704] = 493, + [2705] = 2502, + [2706] = 475, + [2707] = 475, + [2708] = 476, + [2709] = 486, + [2710] = 478, + [2711] = 478, + [2712] = 477, + [2713] = 479, + [2714] = 474, + [2715] = 489, + [2716] = 490, + [2717] = 478, + [2718] = 490, + [2719] = 487, + [2720] = 491, + [2721] = 492, + [2722] = 477, + [2723] = 480, + [2724] = 2502, + [2725] = 487, + [2726] = 491, + [2727] = 492, + [2728] = 477, + [2729] = 2729, + [2730] = 1027, + [2731] = 476, + [2732] = 492, + [2733] = 493, + [2734] = 1364, + [2735] = 470, + [2736] = 473, + [2737] = 472, + [2738] = 495, + [2739] = 475, + [2740] = 470, + [2741] = 2741, + [2742] = 473, + [2743] = 471, + [2744] = 476, + [2745] = 478, + [2746] = 487, + [2747] = 481, + [2748] = 482, + [2749] = 1097, + [2750] = 478, + [2751] = 2751, + [2752] = 491, + [2753] = 480, + [2754] = 502, + [2755] = 477, + [2756] = 483, + [2757] = 485, + [2758] = 2758, + [2759] = 481, + [2760] = 485, + [2761] = 479, + [2762] = 486, + [2763] = 1364, + [2764] = 474, + [2765] = 479, + [2766] = 474, + [2767] = 489, + [2768] = 482, + [2769] = 480, + [2770] = 495, + [2771] = 484, + [2772] = 483, + [2773] = 502, + [2774] = 489, + [2775] = 488, + [2776] = 490, + [2777] = 2492, + [2778] = 493, + [2779] = 1574, + [2780] = 478, + [2781] = 465, + [2782] = 464, + [2783] = 490, + [2784] = 477, + [2785] = 465, + [2786] = 464, + [2787] = 493, + [2788] = 465, + [2789] = 464, + [2790] = 2790, + [2791] = 2791, + [2792] = 2792, + [2793] = 2793, + [2794] = 2649, + [2795] = 2795, + [2796] = 2796, + [2797] = 2797, + [2798] = 2798, + [2799] = 476, + [2800] = 2800, + [2801] = 2801, + [2802] = 2802, + [2803] = 2803, + [2804] = 2804, + [2805] = 2805, + [2806] = 2806, + [2807] = 2686, [2808] = 2808, [2809] = 2809, - [2810] = 2738, - [2811] = 486, - [2812] = 2685, - [2813] = 2813, - [2814] = 2738, - [2815] = 464, - [2816] = 2738, - [2817] = 2738, - [2818] = 1381, - [2819] = 2547, - [2820] = 2820, - [2821] = 2738, - [2822] = 2822, - [2823] = 487, - [2824] = 2738, - [2825] = 487, - [2826] = 2738, - [2827] = 474, - [2828] = 491, - [2829] = 2738, - [2830] = 2738, - [2831] = 2738, - [2832] = 1571, - [2833] = 488, - [2834] = 492, - [2835] = 2722, - [2836] = 2836, + [2810] = 2810, + [2811] = 2811, + [2812] = 2812, + [2813] = 2791, + [2814] = 2814, + [2815] = 502, + [2816] = 2816, + [2817] = 2796, + [2818] = 475, + [2819] = 2819, + [2820] = 2800, + [2821] = 2800, + [2822] = 489, + [2823] = 2802, + [2824] = 2803, + [2825] = 2804, + [2826] = 2826, + [2827] = 493, + [2828] = 478, + [2829] = 2829, + [2830] = 2791, + [2831] = 2831, + [2832] = 2832, + [2833] = 2833, + [2834] = 490, + [2835] = 2796, + [2836] = 487, [2837] = 2837, [2838] = 2838, - [2839] = 2738, - [2840] = 2738, - [2841] = 474, - [2842] = 2617, - [2843] = 2726, - [2844] = 2844, - [2845] = 2845, - [2846] = 2738, - [2847] = 498, - [2848] = 486, + [2839] = 491, + [2840] = 492, + [2841] = 2841, + [2842] = 2842, + [2843] = 2800, + [2844] = 2802, + [2845] = 2803, + [2846] = 2804, + [2847] = 477, + [2848] = 2791, [2849] = 2849, - [2850] = 2738, - [2851] = 465, - [2852] = 493, - [2853] = 2738, - [2854] = 2547, - [2855] = 2738, - [2856] = 491, - [2857] = 483, - [2858] = 2762, - [2859] = 484, - [2860] = 2860, - [2861] = 489, - [2862] = 476, - [2863] = 488, - [2864] = 479, - [2865] = 492, - [2866] = 2738, - [2867] = 464, - [2868] = 2868, - [2869] = 498, - [2870] = 2738, - [2871] = 465, - [2872] = 2738, - [2873] = 2738, - [2874] = 1696, - [2875] = 2738, - [2876] = 2738, - [2877] = 2877, - [2878] = 2738, - [2879] = 480, - [2880] = 2880, - [2881] = 2738, - [2882] = 2882, - [2883] = 2738, - [2884] = 2674, - [2885] = 2885, - [2886] = 2738, - [2887] = 485, - [2888] = 482, - [2889] = 2762, - [2890] = 490, - [2891] = 1381, - [2892] = 478, - [2893] = 1293, - [2894] = 491, - [2895] = 2738, - [2896] = 2896, - [2897] = 2738, - [2898] = 498, - [2899] = 2899, - [2900] = 2738, - [2901] = 464, - [2902] = 2902, - [2903] = 2903, - [2904] = 488, - [2905] = 2738, - [2906] = 465, - [2907] = 498, - [2908] = 2908, - [2909] = 2738, - [2910] = 484, - [2911] = 2738, - [2912] = 2912, - [2913] = 492, - [2914] = 1240, - [2915] = 2915, - [2916] = 2916, - [2917] = 2762, - [2918] = 2918, - [2919] = 2738, - [2920] = 493, - [2921] = 2738, - [2922] = 2762, - [2923] = 2923, - [2924] = 2924, - [2925] = 2738, - [2926] = 2926, - [2927] = 2738, - [2928] = 498, - [2929] = 1614, - [2930] = 2930, - [2931] = 2738, - [2932] = 2738, - [2933] = 2762, - [2934] = 1571, - [2935] = 498, - [2936] = 2738, - [2937] = 2937, - [2938] = 2938, - [2939] = 475, - [2940] = 2738, - [2941] = 1590, - [2942] = 2759, - [2943] = 464, - [2944] = 2944, - [2945] = 465, - [2946] = 2946, - [2947] = 464, - [2948] = 2930, - [2949] = 465, - [2950] = 2808, - [2951] = 2822, - [2952] = 2674, - [2953] = 2743, - [2954] = 2903, - [2955] = 2885, - [2956] = 2759, - [2957] = 2820, - [2958] = 2958, - [2959] = 498, + [2850] = 2850, + [2851] = 2851, + [2852] = 2796, + [2853] = 2853, + [2854] = 2854, + [2855] = 2791, + [2856] = 2796, + [2857] = 2802, + [2858] = 2791, + [2859] = 2791, + [2860] = 2791, + [2861] = 2791, + [2862] = 2791, + [2863] = 2791, + [2864] = 2729, + [2865] = 2791, + [2866] = 2791, + [2867] = 2791, + [2868] = 2791, + [2869] = 2791, + [2870] = 2791, + [2871] = 2791, + [2872] = 2791, + [2873] = 2791, + [2874] = 1435, + [2875] = 2791, + [2876] = 2791, + [2877] = 2791, + [2878] = 2791, + [2879] = 2791, + [2880] = 2791, + [2881] = 2791, + [2882] = 2791, + [2883] = 2791, + [2884] = 1515, + [2885] = 2791, + [2886] = 2791, + [2887] = 1517, + [2888] = 2791, + [2889] = 2791, + [2890] = 2791, + [2891] = 2791, + [2892] = 2791, + [2893] = 2791, + [2894] = 2791, + [2895] = 2895, + [2896] = 2791, + [2897] = 2791, + [2898] = 2791, + [2899] = 489, + [2900] = 2791, + [2901] = 2791, + [2902] = 475, + [2903] = 2791, + [2904] = 2791, + [2905] = 1615, + [2906] = 2791, + [2907] = 2791, + [2908] = 2791, + [2909] = 2909, + [2910] = 2791, + [2911] = 489, + [2912] = 2791, + [2913] = 2913, + [2914] = 2791, + [2915] = 2791, + [2916] = 479, + [2917] = 2791, + [2918] = 2791, + [2919] = 2791, + [2920] = 2791, + [2921] = 2791, + [2922] = 474, + [2923] = 2791, + [2924] = 2791, + [2925] = 2791, + [2926] = 2791, + [2927] = 2791, + [2928] = 2791, + [2929] = 2791, + [2930] = 2791, + [2931] = 475, + [2932] = 487, + [2933] = 491, + [2934] = 492, + [2935] = 478, + [2936] = 476, + [2937] = 1586, + [2938] = 490, + [2939] = 502, + [2940] = 489, + [2941] = 2624, + [2942] = 477, + [2943] = 495, + [2944] = 479, + [2945] = 1283, + [2946] = 474, + [2947] = 1574, + [2948] = 502, + [2949] = 1620, + [2950] = 1286, + [2951] = 2951, + [2952] = 2652, + [2953] = 2545, + [2954] = 2751, + [2955] = 487, + [2956] = 2956, + [2957] = 491, + [2958] = 492, + [2959] = 2959, [2960] = 2960, [2961] = 2961, - [2962] = 2877, - [2963] = 2808, - [2964] = 2964, - [2965] = 2809, - [2966] = 2813, - [2967] = 2617, - [2968] = 2968, - [2969] = 2822, - [2970] = 2970, - [2971] = 2651, - [2972] = 2972, - [2973] = 2944, - [2974] = 2946, - [2975] = 2885, - [2976] = 2674, - [2977] = 2896, - [2978] = 2899, - [2979] = 2896, - [2980] = 2958, - [2981] = 2960, - [2982] = 2961, - [2983] = 2964, - [2984] = 2899, - [2985] = 482, - [2986] = 2912, - [2987] = 2722, - [2988] = 2968, - [2989] = 2902, - [2990] = 2990, - [2991] = 2970, - [2992] = 2972, - [2993] = 2944, - [2994] = 2946, - [2995] = 2809, - [2996] = 483, - [2997] = 2958, - [2998] = 484, - [2999] = 2960, - [3000] = 2961, - [3001] = 2924, - [3002] = 2902, - [3003] = 2964, - [3004] = 2916, - [3005] = 3005, - [3006] = 485, - [3007] = 2968, - [3008] = 2961, - [3009] = 464, - [3010] = 465, - [3011] = 486, - [3012] = 498, - [3013] = 2970, - [3014] = 2958, - [3015] = 2968, - [3016] = 1081, - [3017] = 1082, - [3018] = 2960, - [3019] = 487, - [3020] = 474, - [3021] = 2961, - [3022] = 489, - [3023] = 471, - [3024] = 3024, - [3025] = 2737, - [3026] = 464, - [3027] = 465, - [3028] = 490, - [3029] = 2968, - [3030] = 3030, - [3031] = 2733, - [3032] = 2734, - [3033] = 2938, - [3034] = 2958, - [3035] = 1381, - [3036] = 2960, - [3037] = 2961, - [3038] = 2958, - [3039] = 2958, - [3040] = 2903, - [3041] = 2912, - [3042] = 491, - [3043] = 488, - [3044] = 492, - [3045] = 2924, - [3046] = 2737, - [3047] = 2649, - [3048] = 2930, - [3049] = 2743, - [3050] = 2759, - [3051] = 2820, - [3052] = 2877, - [3053] = 2885, - [3054] = 2896, - [3055] = 2972, - [3056] = 2899, - [3057] = 2902, - [3058] = 2916, - [3059] = 2809, - [3060] = 2703, - [3061] = 2667, - [3062] = 2972, - [3063] = 2958, - [3064] = 2960, - [3065] = 2961, - [3066] = 2916, - [3067] = 2960, - [3068] = 3068, - [3069] = 3069, - [3070] = 2733, - [3071] = 2734, - [3072] = 3072, - [3073] = 2726, - [3074] = 2903, - [3075] = 2912, - [3076] = 2685, - [3077] = 2960, - [3078] = 2961, - [3079] = 2924, - [3080] = 2737, - [3081] = 2930, - [3082] = 2743, - [3083] = 2759, - [3084] = 2820, - [3085] = 3085, - [3086] = 2877, - [3087] = 3087, - [3088] = 2885, - [3089] = 2896, - [3090] = 2899, - [3091] = 2902, - [3092] = 2916, - [3093] = 3093, - [3094] = 3094, - [3095] = 3095, - [3096] = 2813, - [3097] = 2703, - [3098] = 2667, - [3099] = 3099, - [3100] = 3100, - [3101] = 2651, - [3102] = 2808, - [3103] = 2938, - [3104] = 2716, - [3105] = 2822, - [3106] = 3106, - [3107] = 3107, - [3108] = 3108, - [3109] = 3109, - [3110] = 3110, - [3111] = 2808, - [3112] = 2809, - [3113] = 2964, - [3114] = 2944, - [3115] = 2685, - [3116] = 2813, - [3117] = 2649, - [3118] = 3118, - [3119] = 2946, - [3120] = 464, - [3121] = 2617, - [3122] = 465, - [3123] = 2808, - [3124] = 2964, - [3125] = 3125, - [3126] = 2813, - [3127] = 2809, - [3128] = 2903, - [3129] = 2912, - [3130] = 2924, - [3131] = 2737, - [3132] = 2930, - [3133] = 2743, - [3134] = 470, - [3135] = 2722, - [3136] = 2820, - [3137] = 2877, - [3138] = 2885, - [3139] = 2813, - [3140] = 2896, - [3141] = 2899, + [2962] = 2962, + [2963] = 1588, + [2964] = 2803, + [2965] = 2804, + [2966] = 478, + [2967] = 2545, + [2968] = 1728, + [2969] = 502, + [2970] = 502, + [2971] = 495, + [2972] = 490, + [2973] = 1657, + [2974] = 487, + [2975] = 491, + [2976] = 492, + [2977] = 2977, + [2978] = 502, + [2979] = 2796, + [2980] = 2980, + [2981] = 1586, + [2982] = 477, + [2983] = 2983, + [2984] = 2758, + [2985] = 1588, + [2986] = 2986, + [2987] = 481, + [2988] = 482, + [2989] = 480, + [2990] = 485, + [2991] = 486, + [2992] = 2992, + [2993] = 484, + [2994] = 483, + [2995] = 488, + [2996] = 2996, + [2997] = 1435, + [2998] = 475, + [2999] = 495, + [3000] = 2791, + [3001] = 2829, + [3002] = 3002, + [3003] = 2801, + [3004] = 2686, + [3005] = 2816, + [3006] = 2849, + [3007] = 2798, + [3008] = 3008, + [3009] = 2801, + [3010] = 2816, + [3011] = 2801, + [3012] = 3012, + [3013] = 3013, + [3014] = 3002, + [3015] = 2850, + [3016] = 2851, + [3017] = 2853, + [3018] = 2624, + [3019] = 2798, + [3020] = 3008, + [3021] = 2801, + [3022] = 3022, + [3023] = 2816, + [3024] = 3013, + [3025] = 2816, + [3026] = 3002, + [3027] = 3012, + [3028] = 2854, + [3029] = 3008, + [3030] = 3012, + [3031] = 2741, + [3032] = 3012, + [3033] = 3033, + [3034] = 465, + [3035] = 464, + [3036] = 3036, + [3037] = 2841, + [3038] = 2652, + [3039] = 3022, + [3040] = 465, + [3041] = 464, + [3042] = 3013, + [3043] = 3002, + [3044] = 3044, + [3045] = 3045, + [3046] = 3046, + [3047] = 2842, + [3048] = 3048, + [3049] = 3049, + [3050] = 2659, + [3051] = 2663, + [3052] = 3052, + [3053] = 3033, + [3054] = 3054, + [3055] = 3055, + [3056] = 3056, + [3057] = 3057, + [3058] = 3058, + [3059] = 3008, + [3060] = 2798, + [3061] = 2624, + [3062] = 2826, + [3063] = 2826, + [3064] = 2829, + [3065] = 2829, + [3066] = 2831, + [3067] = 2832, + [3068] = 2833, + [3069] = 2837, + [3070] = 2838, + [3071] = 2841, + [3072] = 2842, + [3073] = 2652, + [3074] = 2849, + [3075] = 2850, + [3076] = 2851, + [3077] = 2853, + [3078] = 2854, + [3079] = 502, + [3080] = 3012, + [3081] = 2751, + [3082] = 3033, + [3083] = 3054, + [3084] = 2659, + [3085] = 3055, + [3086] = 3056, + [3087] = 3057, + [3088] = 3058, + [3089] = 2983, + [3090] = 2663, + [3091] = 3022, + [3092] = 2831, + [3093] = 2826, + [3094] = 2832, + [3095] = 2833, + [3096] = 2837, + [3097] = 2838, + [3098] = 3013, + [3099] = 3002, + [3100] = 2841, + [3101] = 2831, + [3102] = 2832, + [3103] = 2833, + [3104] = 2837, + [3105] = 2838, + [3106] = 2751, + [3107] = 2841, + [3108] = 2842, + [3109] = 3033, + [3110] = 3054, + [3111] = 2842, + [3112] = 3055, + [3113] = 3056, + [3114] = 3057, + [3115] = 3058, + [3116] = 2849, + [3117] = 2850, + [3118] = 2849, + [3119] = 2850, + [3120] = 2851, + [3121] = 2853, + [3122] = 2851, + [3123] = 2854, + [3124] = 2853, + [3125] = 2628, + [3126] = 2632, + [3127] = 2854, + [3128] = 2729, + [3129] = 493, + [3130] = 3012, + [3131] = 3054, + [3132] = 465, + [3133] = 3133, + [3134] = 3022, + [3135] = 475, + [3136] = 476, + [3137] = 3137, + [3138] = 2798, + [3139] = 3013, + [3140] = 2758, + [3141] = 2956, [3142] = 3142, - [3143] = 2902, - [3144] = 2822, - [3145] = 2916, - [3146] = 473, - [3147] = 493, - [3148] = 2822, - [3149] = 472, - [3150] = 498, - [3151] = 2903, - [3152] = 2912, - [3153] = 2968, - [3154] = 2924, - [3155] = 2737, - [3156] = 2726, - [3157] = 2930, - [3158] = 2743, - [3159] = 2759, - [3160] = 2820, - [3161] = 2877, - [3162] = 2970, - [3163] = 2968, - [3164] = 2716, - [3165] = 2918, - [3166] = 485, - [3167] = 485, - [3168] = 3168, - [3169] = 490, - [3170] = 3108, - [3171] = 3168, - [3172] = 2768, - [3173] = 2776, - [3174] = 479, - [3175] = 491, - [3176] = 3168, - [3177] = 488, - [3178] = 2769, - [3179] = 492, - [3180] = 2780, - [3181] = 487, - [3182] = 464, - [3183] = 3168, - [3184] = 3085, - [3185] = 474, - [3186] = 3168, - [3187] = 3109, - [3188] = 3188, - [3189] = 3189, - [3190] = 3190, - [3191] = 3191, - [3192] = 3192, - [3193] = 3193, - [3194] = 3168, - [3195] = 3093, - [3196] = 486, - [3197] = 3094, - [3198] = 483, - [3199] = 3168, - [3200] = 3168, - [3201] = 482, - [3202] = 2771, - [3203] = 480, - [3204] = 484, - [3205] = 464, - [3206] = 3168, - [3207] = 482, - [3208] = 465, + [3143] = 3143, + [3144] = 3144, + [3145] = 3145, + [3146] = 3002, + [3147] = 3002, + [3148] = 2628, + [3149] = 3055, + [3150] = 2741, + [3151] = 2826, + [3152] = 2829, + [3153] = 2831, + [3154] = 2832, + [3155] = 2833, + [3156] = 2837, + [3157] = 2838, + [3158] = 2841, + [3159] = 2842, + [3160] = 2849, + [3161] = 2850, + [3162] = 2851, + [3163] = 2853, + [3164] = 2854, + [3165] = 3056, + [3166] = 2632, + [3167] = 2758, + [3168] = 2956, + [3169] = 3022, + [3170] = 478, + [3171] = 465, + [3172] = 464, + [3173] = 2801, + [3174] = 477, + [3175] = 3013, + [3176] = 3002, + [3177] = 1027, + [3178] = 464, + [3179] = 1097, + [3180] = 2729, + [3181] = 502, + [3182] = 479, + [3183] = 474, + [3184] = 2956, + [3185] = 489, + [3186] = 3186, + [3187] = 2686, + [3188] = 2649, + [3189] = 2816, + [3190] = 3013, + [3191] = 465, + [3192] = 464, + [3193] = 3022, + [3194] = 2956, + [3195] = 490, + [3196] = 470, + [3197] = 3022, + [3198] = 473, + [3199] = 472, + [3200] = 3200, + [3201] = 3201, + [3202] = 3202, + [3203] = 3022, + [3204] = 471, + [3205] = 1435, + [3206] = 2956, + [3207] = 2649, + [3208] = 3208, [3209] = 3209, - [3210] = 481, - [3211] = 3168, - [3212] = 2882, - [3213] = 3168, - [3214] = 487, - [3215] = 483, - [3216] = 3168, - [3217] = 485, - [3218] = 3168, - [3219] = 490, - [3220] = 474, - [3221] = 3168, - [3222] = 3168, - [3223] = 3168, - [3224] = 3168, - [3225] = 484, - [3226] = 3168, - [3227] = 3168, - [3228] = 491, - [3229] = 3168, - [3230] = 487, - [3231] = 488, - [3232] = 3168, - [3233] = 492, - [3234] = 483, - [3235] = 3168, - [3236] = 2918, - [3237] = 3168, - [3238] = 487, - [3239] = 3188, - [3240] = 3168, - [3241] = 2990, - [3242] = 474, - [3243] = 3087, - [3244] = 3168, - [3245] = 484, - [3246] = 3118, - [3247] = 3024, - [3248] = 3168, - [3249] = 3168, - [3250] = 3168, - [3251] = 2761, - [3252] = 2844, - [3253] = 3168, - [3254] = 2868, - [3255] = 3168, - [3256] = 474, - [3257] = 464, - [3258] = 3168, - [3259] = 483, - [3260] = 477, - [3261] = 3168, - [3262] = 465, - [3263] = 482, - [3264] = 3168, - [3265] = 2772, - [3266] = 489, - [3267] = 3267, - [3268] = 3168, - [3269] = 3168, - [3270] = 489, - [3271] = 3267, - [3272] = 3095, - [3273] = 3168, - [3274] = 483, - [3275] = 3168, - [3276] = 2915, - [3277] = 489, - [3278] = 3189, - [3279] = 2926, - [3280] = 2923, - [3281] = 485, - [3282] = 2845, - [3283] = 2860, - [3284] = 465, - [3285] = 3168, - [3286] = 3099, - [3287] = 3106, - [3288] = 485, - [3289] = 490, - [3290] = 3168, - [3291] = 3142, - [3292] = 2773, - [3293] = 484, - [3294] = 3168, - [3295] = 464, - [3296] = 486, - [3297] = 3100, - [3298] = 3125, - [3299] = 465, - [3300] = 3168, - [3301] = 490, - [3302] = 3168, - [3303] = 3209, - [3304] = 486, - [3305] = 484, - [3306] = 3168, - [3307] = 2937, - [3308] = 489, - [3309] = 482, - [3310] = 464, - [3311] = 488, - [3312] = 491, - [3313] = 465, - [3314] = 3168, - [3315] = 2787, - [3316] = 3168, - [3317] = 2836, - [3318] = 2880, - [3319] = 2882, - [3320] = 2937, - [3321] = 2787, - [3322] = 2849, - [3323] = 2752, - [3324] = 2767, - [3325] = 2768, - [3326] = 2769, - [3327] = 2771, - [3328] = 2772, - [3329] = 2773, - [3330] = 3168, - [3331] = 3168, - [3332] = 3188, - [3333] = 3189, - [3334] = 2915, - [3335] = 2923, - [3336] = 3068, - [3337] = 3069, - [3338] = 3072, - [3339] = 3085, - [3340] = 3093, - [3341] = 3094, - [3342] = 464, - [3343] = 3095, - [3344] = 3190, - [3345] = 3099, - [3346] = 3106, - [3347] = 3107, - [3348] = 3108, - [3349] = 3109, - [3350] = 3110, - [3351] = 3168, - [3352] = 3191, - [3353] = 465, - [3354] = 2845, - [3355] = 2860, - [3356] = 3142, - [3357] = 3192, - [3358] = 2990, - [3359] = 3168, - [3360] = 3193, - [3361] = 2908, - [3362] = 2908, - [3363] = 464, - [3364] = 3110, - [3365] = 2849, - [3366] = 3087, - [3367] = 488, + [3210] = 3210, + [3211] = 3057, + [3212] = 3212, + [3213] = 2798, + [3214] = 2826, + [3215] = 3058, + [3216] = 3008, + [3217] = 487, + [3218] = 495, + [3219] = 491, + [3220] = 492, + [3221] = 2829, + [3222] = 2831, + [3223] = 2832, + [3224] = 2983, + [3225] = 2833, + [3226] = 2837, + [3227] = 2838, + [3228] = 3013, + [3229] = 3012, + [3230] = 502, + [3231] = 3231, + [3232] = 3232, + [3233] = 477, + [3234] = 490, + [3235] = 3202, + [3236] = 2790, + [3237] = 2792, + [3238] = 3238, + [3239] = 2793, + [3240] = 2795, + [3241] = 2797, + [3242] = 3232, + [3243] = 2805, + [3244] = 3232, + [3245] = 2810, + [3246] = 2806, + [3247] = 2811, + [3248] = 2812, + [3249] = 2814, + [3250] = 3210, + [3251] = 3232, + [3252] = 2808, + [3253] = 3232, + [3254] = 3232, + [3255] = 2809, + [3256] = 2810, + [3257] = 2811, + [3258] = 3232, + [3259] = 465, + [3260] = 3209, + [3261] = 2812, + [3262] = 3232, + [3263] = 2814, + [3264] = 3044, + [3265] = 3045, + [3266] = 3046, + [3267] = 3048, + [3268] = 3049, + [3269] = 493, + [3270] = 3052, + [3271] = 3231, + [3272] = 475, + [3273] = 476, + [3274] = 3133, + [3275] = 3137, + [3276] = 478, + [3277] = 3142, + [3278] = 3209, + [3279] = 477, + [3280] = 464, + [3281] = 3143, + [3282] = 3144, + [3283] = 477, + [3284] = 3145, + [3285] = 3201, + [3286] = 479, + [3287] = 474, + [3288] = 3212, + [3289] = 2992, + [3290] = 489, + [3291] = 3232, + [3292] = 3186, + [3293] = 2992, + [3294] = 490, + [3295] = 2986, + [3296] = 3296, + [3297] = 2909, + [3298] = 3232, + [3299] = 474, + [3300] = 2951, + [3301] = 3232, + [3302] = 3232, + [3303] = 487, + [3304] = 491, + [3305] = 492, + [3306] = 3232, + [3307] = 2959, + [3308] = 3232, + [3309] = 3309, + [3310] = 3232, + [3311] = 3232, + [3312] = 3312, + [3313] = 475, + [3314] = 3232, + [3315] = 3232, + [3316] = 3312, + [3317] = 3232, + [3318] = 3202, + [3319] = 492, + [3320] = 3232, + [3321] = 3232, + [3322] = 476, + [3323] = 3232, + [3324] = 2790, + [3325] = 2792, + [3326] = 2793, + [3327] = 2795, + [3328] = 465, + [3329] = 2797, + [3330] = 464, + [3331] = 3238, + [3332] = 2951, + [3333] = 2960, + [3334] = 2977, + [3335] = 3044, + [3336] = 2977, + [3337] = 2980, + [3338] = 2913, + [3339] = 3045, + [3340] = 493, + [3341] = 3046, + [3342] = 475, + [3343] = 476, + [3344] = 3232, + [3345] = 3048, + [3346] = 3049, + [3347] = 3052, + [3348] = 478, + [3349] = 2819, + [3350] = 3231, + [3351] = 3232, + [3352] = 477, + [3353] = 489, + [3354] = 3232, + [3355] = 479, + [3356] = 474, + [3357] = 3133, + [3358] = 489, + [3359] = 3137, + [3360] = 3142, + [3361] = 3143, + [3362] = 3144, + [3363] = 490, + [3364] = 3145, + [3365] = 3232, + [3366] = 3232, + [3367] = 2980, [3368] = 492, - [3369] = 3168, - [3370] = 3118, - [3371] = 3024, + [3369] = 3369, + [3370] = 3232, + [3371] = 2961, [3372] = 487, - [3373] = 3168, - [3374] = 489, - [3375] = 2837, - [3376] = 2837, - [3377] = 3190, - [3378] = 2838, - [3379] = 492, - [3380] = 3168, + [3373] = 491, + [3374] = 492, + [3375] = 2962, + [3376] = 3186, + [3377] = 3232, + [3378] = 3232, + [3379] = 3232, + [3380] = 2805, [3381] = 465, - [3382] = 2761, - [3383] = 491, - [3384] = 2844, - [3385] = 2868, - [3386] = 486, - [3387] = 2903, - [3388] = 2912, - [3389] = 2924, - [3390] = 2737, - [3391] = 2930, - [3392] = 2743, - [3393] = 2759, - [3394] = 2820, - [3395] = 2877, - [3396] = 2885, - [3397] = 2896, - [3398] = 2899, - [3399] = 2902, - [3400] = 2916, - [3401] = 2822, - [3402] = 3191, - [3403] = 3193, - [3404] = 2836, - [3405] = 3168, - [3406] = 3168, - [3407] = 2776, - [3408] = 3168, - [3409] = 2780, - [3410] = 490, - [3411] = 3068, - [3412] = 3267, - [3413] = 3168, - [3414] = 3069, - [3415] = 2752, - [3416] = 486, - [3417] = 491, - [3418] = 3168, - [3419] = 3168, - [3420] = 3168, - [3421] = 474, - [3422] = 488, - [3423] = 492, - [3424] = 3168, - [3425] = 2880, - [3426] = 3426, - [3427] = 498, - [3428] = 3168, - [3429] = 2926, - [3430] = 478, - [3431] = 475, - [3432] = 2767, - [3433] = 3168, - [3434] = 482, - [3435] = 3072, - [3436] = 3168, - [3437] = 3209, - [3438] = 2838, - [3439] = 3168, - [3440] = 3188, - [3441] = 3189, - [3442] = 476, - [3443] = 3190, - [3444] = 3168, - [3445] = 3107, - [3446] = 3191, - [3447] = 3168, - [3448] = 2808, - [3449] = 2809, - [3450] = 2813, - [3451] = 3192, - [3452] = 3192, - [3453] = 3100, - [3454] = 3125, - [3455] = 3193, - [3456] = 3456, - [3457] = 493, - [3458] = 464, - [3459] = 470, - [3460] = 1381, - [3461] = 1064, - [3462] = 473, - [3463] = 3463, - [3464] = 832, - [3465] = 884, - [3466] = 886, - [3467] = 472, - [3468] = 3468, - [3469] = 3469, - [3470] = 873, - [3471] = 1053, - [3472] = 471, - [3473] = 1054, - [3474] = 3474, - [3475] = 1081, - [3476] = 1082, - [3477] = 1062, + [3382] = 2819, + [3383] = 3232, + [3384] = 3212, + [3385] = 3232, + [3386] = 2986, + [3387] = 3232, + [3388] = 574, + [3389] = 3232, + [3390] = 3200, + [3391] = 2913, + [3392] = 3232, + [3393] = 465, + [3394] = 475, + [3395] = 464, + [3396] = 2895, + [3397] = 3232, + [3398] = 3232, + [3399] = 487, + [3400] = 489, + [3401] = 3401, + [3402] = 3232, + [3403] = 2909, + [3404] = 3232, + [3405] = 3232, + [3406] = 3232, + [3407] = 3407, + [3408] = 3232, + [3409] = 465, + [3410] = 478, + [3411] = 3232, + [3412] = 464, + [3413] = 481, + [3414] = 482, + [3415] = 3232, + [3416] = 3232, + [3417] = 3232, + [3418] = 480, + [3419] = 479, + [3420] = 3232, + [3421] = 3232, + [3422] = 487, + [3423] = 485, + [3424] = 3232, + [3425] = 2826, + [3426] = 2829, + [3427] = 2831, + [3428] = 2832, + [3429] = 2833, + [3430] = 2837, + [3431] = 2838, + [3432] = 2841, + [3433] = 2842, + [3434] = 2849, + [3435] = 2850, + [3436] = 2851, + [3437] = 2853, + [3438] = 2854, + [3439] = 486, + [3440] = 2956, + [3441] = 2806, + [3442] = 491, + [3443] = 3232, + [3444] = 3238, + [3445] = 2996, + [3446] = 3200, + [3447] = 484, + [3448] = 483, + [3449] = 465, + [3450] = 488, + [3451] = 464, + [3452] = 3232, + [3453] = 3312, + [3454] = 465, + [3455] = 3232, + [3456] = 3232, + [3457] = 3232, + [3458] = 3232, + [3459] = 3232, + [3460] = 493, + [3461] = 3232, + [3462] = 476, + [3463] = 3232, + [3464] = 3232, + [3465] = 3238, + [3466] = 487, + [3467] = 2996, + [3468] = 3232, + [3469] = 3232, + [3470] = 478, + [3471] = 3232, + [3472] = 479, + [3473] = 479, + [3474] = 491, + [3475] = 474, + [3476] = 3407, + [3477] = 502, [3478] = 464, - [3479] = 3456, - [3480] = 465, - [3481] = 465, - [3482] = 464, - [3483] = 465, - [3484] = 3456, - [3485] = 585, - [3486] = 3456, - [3487] = 490, - [3488] = 478, - [3489] = 475, - [3490] = 3490, - [3491] = 484, - [3492] = 3490, - [3493] = 3490, - [3494] = 3490, - [3495] = 479, - [3496] = 485, - [3497] = 498, - [3498] = 480, - [3499] = 3490, - [3500] = 3490, - [3501] = 3490, - [3502] = 3490, - [3503] = 3490, - [3504] = 481, - [3505] = 476, - [3506] = 3490, - [3507] = 488, - [3508] = 492, - [3509] = 486, - [3510] = 3490, - [3511] = 3490, - [3512] = 3490, - [3513] = 477, - [3514] = 3490, - [3515] = 3490, - [3516] = 3490, - [3517] = 3490, - [3518] = 482, - [3519] = 3490, - [3520] = 3490, - [3521] = 3490, - [3522] = 3490, - [3523] = 487, - [3524] = 474, - [3525] = 3490, - [3526] = 3490, - [3527] = 3527, - [3528] = 483, - [3529] = 489, - [3530] = 491, - [3531] = 1339, - [3532] = 1093, - [3533] = 493, - [3534] = 1088, - [3535] = 1343, - [3536] = 3536, - [3537] = 465, - [3538] = 465, - [3539] = 464, - [3540] = 1314, - [3541] = 464, - [3542] = 1381, - [3543] = 3543, - [3544] = 3544, - [3545] = 3545, - [3546] = 1658, - [3547] = 1506, - [3548] = 3548, - [3549] = 3549, - [3550] = 3549, - [3551] = 3551, - [3552] = 1696, - [3553] = 3548, - [3554] = 1571, - [3555] = 3555, - [3556] = 3555, - [3557] = 3551, - [3558] = 464, - [3559] = 498, - [3560] = 3551, - [3561] = 3549, - [3562] = 3555, - [3563] = 3549, - [3564] = 3548, - [3565] = 3551, - [3566] = 3551, - [3567] = 3549, - [3568] = 3549, + [3479] = 3232, + [3480] = 491, + [3481] = 474, + [3482] = 2895, + [3483] = 2808, + [3484] = 492, + [3485] = 493, + [3486] = 3210, + [3487] = 464, + [3488] = 493, + [3489] = 3489, + [3490] = 475, + [3491] = 2959, + [3492] = 3407, + [3493] = 476, + [3494] = 489, + [3495] = 3232, + [3496] = 2960, + [3497] = 478, + [3498] = 3201, + [3499] = 490, + [3500] = 477, + [3501] = 3232, + [3502] = 2798, + [3503] = 2801, + [3504] = 2816, + [3505] = 2809, + [3506] = 2961, + [3507] = 2962, + [3508] = 490, + [3509] = 1128, + [3510] = 3510, + [3511] = 3510, + [3512] = 3510, + [3513] = 3510, + [3514] = 3510, + [3515] = 3510, + [3516] = 3510, + [3517] = 3510, + [3518] = 3510, + [3519] = 3510, + [3520] = 3510, + [3521] = 3510, + [3522] = 3510, + [3523] = 3510, + [3524] = 3510, + [3525] = 3510, + [3526] = 3510, + [3527] = 3510, + [3528] = 473, + [3529] = 916, + [3530] = 1056, + [3531] = 3510, + [3532] = 1027, + [3533] = 1097, + [3534] = 3510, + [3535] = 465, + [3536] = 464, + [3537] = 1435, + [3538] = 1121, + [3539] = 899, + [3540] = 902, + [3541] = 465, + [3542] = 464, + [3543] = 3510, + [3544] = 495, + [3545] = 3510, + [3546] = 472, + [3547] = 465, + [3548] = 464, + [3549] = 3510, + [3550] = 471, + [3551] = 470, + [3552] = 915, + [3553] = 1054, + [3554] = 492, + [3555] = 480, + [3556] = 478, + [3557] = 487, + [3558] = 483, + [3559] = 491, + [3560] = 477, + [3561] = 488, + [3562] = 479, + [3563] = 474, + [3564] = 485, + [3565] = 481, + [3566] = 475, + [3567] = 489, + [3568] = 482, [3569] = 3569, - [3570] = 465, - [3571] = 3551, - [3572] = 3551, - [3573] = 3573, - [3574] = 3551, - [3575] = 3549, - [3576] = 465, - [3577] = 3549, - [3578] = 3578, - [3579] = 1590, - [3580] = 465, - [3581] = 464, - [3582] = 3549, - [3583] = 1293, - [3584] = 3551, - [3585] = 3551, - [3586] = 3549, - [3587] = 3549, - [3588] = 464, - [3589] = 465, - [3590] = 3549, + [3570] = 502, + [3571] = 490, + [3572] = 493, + [3573] = 486, + [3574] = 476, + [3575] = 484, + [3576] = 3576, + [3577] = 3577, + [3578] = 464, + [3579] = 3579, + [3580] = 3576, + [3581] = 3577, + [3582] = 3582, + [3583] = 1435, + [3584] = 3582, + [3585] = 3577, + [3586] = 3586, + [3587] = 3582, + [3588] = 3582, + [3589] = 3582, + [3590] = 3590, [3591] = 3591, - [3592] = 1240, - [3593] = 3548, - [3594] = 3551, - [3595] = 3549, - [3596] = 464, - [3597] = 3551, - [3598] = 3549, - [3599] = 3551, - [3600] = 464, - [3601] = 3601, - [3602] = 3548, - [3603] = 3551, - [3604] = 465, - [3605] = 3549, - [3606] = 585, - [3607] = 3555, - [3608] = 3551, - [3609] = 3551, - [3610] = 464, - [3611] = 3549, - [3612] = 465, - [3613] = 3555, - [3614] = 3614, + [3592] = 3586, + [3593] = 3586, + [3594] = 3582, + [3595] = 574, + [3596] = 1392, + [3597] = 3582, + [3598] = 3586, + [3599] = 3586, + [3600] = 1064, + [3601] = 3582, + [3602] = 3602, + [3603] = 3582, + [3604] = 3586, + [3605] = 3586, + [3606] = 3582, + [3607] = 3586, + [3608] = 3582, + [3609] = 465, + [3610] = 3582, + [3611] = 3586, + [3612] = 3586, + [3613] = 3586, + [3614] = 3582, [3615] = 3615, - [3616] = 3616, - [3617] = 3617, - [3618] = 3614, - [3619] = 3615, - [3620] = 3620, - [3621] = 3615, - [3622] = 464, - [3623] = 3617, - [3624] = 3614, - [3625] = 3620, - [3626] = 3614, - [3627] = 3627, - [3628] = 3614, - [3629] = 3627, - [3630] = 3615, - [3631] = 3615, - [3632] = 465, - [3633] = 3616, - [3634] = 465, - [3635] = 3614, - [3636] = 3615, - [3637] = 3615, - [3638] = 3615, - [3639] = 3615, - [3640] = 3615, - [3641] = 3614, - [3642] = 3642, - [3643] = 3614, - [3644] = 3616, - [3645] = 3614, - [3646] = 3617, - [3647] = 3620, - [3648] = 3614, - [3649] = 3614, - [3650] = 3616, - [3651] = 3615, - [3652] = 3614, - [3653] = 3615, - [3654] = 3615, - [3655] = 3614, - [3656] = 3620, - [3657] = 3615, - [3658] = 3615, - [3659] = 3615, - [3660] = 3614, - [3661] = 3627, - [3662] = 3616, - [3663] = 3615, - [3664] = 3614, - [3665] = 3614, - [3666] = 3617, - [3667] = 3614, - [3668] = 3617, - [3669] = 3614, - [3670] = 3615, - [3671] = 3615, - [3672] = 3614, - [3673] = 3615, - [3674] = 3614, - [3675] = 464, - [3676] = 3614, - [3677] = 3615, - [3678] = 3616, - [3679] = 3620, - [3680] = 3614, - [3681] = 3615, - [3682] = 3614, - [3683] = 3614, - [3684] = 3627, - [3685] = 3615, - [3686] = 3615, - [3687] = 3620, - [3688] = 3617, - [3689] = 3614, - [3690] = 3615, - [3691] = 3615, - [3692] = 3615, - [3693] = 3614, - [3694] = 3614, - [3695] = 3614, - [3696] = 3617, - [3697] = 3615, - [3698] = 3698, - [3699] = 3698, - [3700] = 3700, - [3701] = 3698, - [3702] = 3700, - [3703] = 3703, - [3704] = 3698, - [3705] = 3705, - [3706] = 3700, - [3707] = 3698, - [3708] = 3708, - [3709] = 3709, - [3710] = 3710, - [3711] = 3711, - [3712] = 3712, - [3713] = 3713, - [3714] = 3714, - [3715] = 3700, - [3716] = 3716, - [3717] = 3717, - [3718] = 3718, - [3719] = 3698, - [3720] = 3700, - [3721] = 3721, - [3722] = 3722, - [3723] = 3723, - [3724] = 3698, - [3725] = 3700, - [3726] = 3726, - [3727] = 3698, - [3728] = 3708, - [3729] = 3698, - [3730] = 3703, - [3731] = 3700, - [3732] = 3698, - [3733] = 3700, - [3734] = 3698, - [3735] = 3700, - [3736] = 3700, - [3737] = 3698, - [3738] = 3700, - [3739] = 3698, - [3740] = 3703, - [3741] = 3700, - [3742] = 3698, - [3743] = 3709, - [3744] = 3700, - [3745] = 3698, - [3746] = 3710, - [3747] = 3700, - [3748] = 3711, - [3749] = 3698, - [3750] = 3700, - [3751] = 3712, - [3752] = 3698, - [3753] = 3713, - [3754] = 3714, - [3755] = 3716, - [3756] = 3717, - [3757] = 3700, - [3758] = 3698, - [3759] = 3759, - [3760] = 3700, - [3761] = 3698, - [3762] = 3700, - [3763] = 3698, - [3764] = 3718, - [3765] = 3700, - [3766] = 3698, - [3767] = 3700, - [3768] = 3698, - [3769] = 3700, - [3770] = 3698, - [3771] = 3721, - [3772] = 3722, - [3773] = 3723, - [3774] = 3700, - [3775] = 3775, - [3776] = 3698, - [3777] = 3700, - [3778] = 3698, - [3779] = 3700, - [3780] = 3698, - [3781] = 3759, - [3782] = 3703, - [3783] = 3700, - [3784] = 3698, - [3785] = 3700, - [3786] = 3698, - [3787] = 3787, - [3788] = 3788, - [3789] = 3789, - [3790] = 3700, - [3791] = 3698, - [3792] = 3700, - [3793] = 3700, - [3794] = 3705, - [3795] = 3795, - [3796] = 3698, - [3797] = 3698, - [3798] = 3708, - [3799] = 3709, - [3800] = 3710, - [3801] = 3711, - [3802] = 3712, - [3803] = 3713, - [3804] = 3714, - [3805] = 3716, - [3806] = 3717, - [3807] = 3718, - [3808] = 3721, - [3809] = 3722, - [3810] = 3723, - [3811] = 3700, - [3812] = 3700, - [3813] = 3698, - [3814] = 3698, - [3815] = 3700, - [3816] = 3698, - [3817] = 3703, - [3818] = 3700, - [3819] = 3698, - [3820] = 3700, - [3821] = 3698, - [3822] = 3700, - [3823] = 3698, - [3824] = 3700, - [3825] = 3698, - [3826] = 3698, - [3827] = 3700, - [3828] = 3698, - [3829] = 3700, - [3830] = 3698, - [3831] = 3700, - [3832] = 3698, - [3833] = 3700, - [3834] = 3698, - [3835] = 3700, - [3836] = 3698, - [3837] = 3700, - [3838] = 3698, - [3839] = 3700, - [3840] = 3698, - [3841] = 3705, - [3842] = 3795, - [3843] = 3700, - [3844] = 3698, - [3845] = 3700, - [3846] = 3698, - [3847] = 3700, - [3848] = 3698, - [3849] = 3703, - [3850] = 3700, - [3851] = 3698, - [3852] = 3700, - [3853] = 3698, - [3854] = 3700, - [3855] = 3698, - [3856] = 3700, - [3857] = 3698, - [3858] = 3700, - [3859] = 3698, - [3860] = 3700, - [3861] = 3698, - [3862] = 3700, - [3863] = 3698, - [3864] = 3705, - [3865] = 3795, - [3866] = 3700, - [3867] = 3698, - [3868] = 3703, - [3869] = 3700, - [3870] = 3698, - [3871] = 3700, - [3872] = 3698, - [3873] = 3700, - [3874] = 3698, - [3875] = 3700, - [3876] = 3705, - [3877] = 3795, - [3878] = 3698, - [3879] = 3703, - [3880] = 3700, - [3881] = 3698, - [3882] = 3700, - [3883] = 3698, - [3884] = 3700, - [3885] = 3698, - [3886] = 3705, - [3887] = 3795, - [3888] = 3759, - [3889] = 3703, - [3890] = 3705, - [3891] = 3795, - [3892] = 3700, - [3893] = 3698, - [3894] = 3703, - [3895] = 3705, - [3896] = 3795, - [3897] = 3703, - [3898] = 3705, - [3899] = 3795, - [3900] = 3703, - [3901] = 3705, - [3902] = 3795, - [3903] = 3703, - [3904] = 3705, - [3905] = 3795, - [3906] = 3700, - [3907] = 3703, - [3908] = 3698, - [3909] = 3705, - [3910] = 3795, - [3911] = 3703, - [3912] = 3705, - [3913] = 3703, - [3914] = 3795, - [3915] = 3703, - [3916] = 3705, - [3917] = 3795, - [3918] = 3703, - [3919] = 3705, - [3920] = 3795, - [3921] = 3703, - [3922] = 3705, - [3923] = 3795, - [3924] = 3703, - [3925] = 3705, - [3926] = 3700, - [3927] = 3795, - [3928] = 3703, - [3929] = 3705, - [3930] = 3698, - [3931] = 3795, - [3932] = 3703, - [3933] = 3705, - [3934] = 3795, - [3935] = 3703, - [3936] = 3705, - [3937] = 3795, - [3938] = 3703, - [3939] = 3795, - [3940] = 3703, - [3941] = 3705, - [3942] = 3795, - [3943] = 3703, - [3944] = 3705, - [3945] = 3795, - [3946] = 3703, - [3947] = 3703, - [3948] = 3703, - [3949] = 3700, - [3950] = 3703, - [3951] = 3698, - [3952] = 3703, - [3953] = 3703, - [3954] = 3703, - [3955] = 3700, - [3956] = 3703, - [3957] = 3703, - [3958] = 3703, - [3959] = 3703, - [3960] = 3703, - [3961] = 3703, - [3962] = 3703, - [3963] = 3703, - [3964] = 3703, - [3965] = 3703, - [3966] = 3700, - [3967] = 3703, - [3968] = 3698, - [3969] = 3703, - [3970] = 3698, - [3971] = 3703, - [3972] = 3703, - [3973] = 3703, - [3974] = 3703, - [3975] = 3703, - [3976] = 3703, - [3977] = 3703, - [3978] = 3703, - [3979] = 3703, - [3980] = 3703, - [3981] = 3703, - [3982] = 3700, - [3983] = 3703, - [3984] = 3698, - [3985] = 3703, - [3986] = 3703, - [3987] = 3703, - [3988] = 3700, - [3989] = 3698, - [3990] = 3700, - [3991] = 3991, - [3992] = 3992, - [3993] = 3698, - [3994] = 3994, - [3995] = 3775, - [3996] = 3700, - [3997] = 3698, - [3998] = 3705, - [3999] = 3795, - [4000] = 3705, - [4001] = 3795, - [4002] = 3705, - [4003] = 3795, - [4004] = 3700, - [4005] = 3705, - [4006] = 3795, - [4007] = 3698, - [4008] = 3991, - [4009] = 3992, - [4010] = 3994, - [4011] = 3775, - [4012] = 3700, - [4013] = 3698, - [4014] = 3703, - [4015] = 3705, - [4016] = 3795, - [4017] = 3705, - [4018] = 3795, - [4019] = 3705, - [4020] = 3795, - [4021] = 3705, - [4022] = 3795, - [4023] = 3700, - [4024] = 3991, - [4025] = 3992, - [4026] = 3698, - [4027] = 3705, - [4028] = 3795, - [4029] = 3705, - [4030] = 3795, - [4031] = 3991, - [4032] = 3992, - [4033] = 3700, - [4034] = 3698, - [4035] = 3705, - [4036] = 3795, - [4037] = 3705, - [4038] = 3795, - [4039] = 3991, - [4040] = 3992, - [4041] = 3991, - [4042] = 3992, - [4043] = 3991, - [4044] = 3992, - [4045] = 3700, - [4046] = 3991, - [4047] = 3992, - [4048] = 3698, - [4049] = 3991, - [4050] = 3992, - [4051] = 3991, - [4052] = 3992, - [4053] = 3991, - [4054] = 3992, - [4055] = 3991, - [4056] = 3992, - [4057] = 3991, - [4058] = 3992, - [4059] = 3991, - [4060] = 3992, - [4061] = 3991, - [4062] = 3991, - [4063] = 3992, - [4064] = 3700, - [4065] = 3992, - [4066] = 3991, - [4067] = 3992, - [4068] = 3698, - [4069] = 3991, - [4070] = 3992, - [4071] = 3991, - [4072] = 3992, - [4073] = 3991, - [4074] = 3992, - [4075] = 3991, - [4076] = 3992, - [4077] = 3991, - [4078] = 3992, - [4079] = 3991, - [4080] = 3992, - [4081] = 3700, - [4082] = 3700, - [4083] = 3991, - [4084] = 3992, - [4085] = 3698, - [4086] = 3991, - [4087] = 3992, - [4088] = 3991, - [4089] = 3992, - [4090] = 3991, - [4091] = 3992, - [4092] = 3991, - [4093] = 3992, - [4094] = 3991, - [4095] = 3992, - [4096] = 3991, - [4097] = 3992, - [4098] = 3700, - [4099] = 3991, - [4100] = 3992, - [4101] = 3698, - [4102] = 3991, - [4103] = 3992, - [4104] = 3703, - [4105] = 3991, - [4106] = 3992, - [4107] = 3991, - [4108] = 3992, - [4109] = 3991, - [4110] = 3992, - [4111] = 3698, - [4112] = 3991, - [4113] = 3992, - [4114] = 3991, - [4115] = 3992, - [4116] = 3700, - [4117] = 3991, - [4118] = 3992, - [4119] = 3698, - [4120] = 3991, - [4121] = 3992, - [4122] = 3991, - [4123] = 3992, - [4124] = 3991, - [4125] = 3992, - [4126] = 3991, - [4127] = 3992, - [4128] = 3991, - [4129] = 3992, - [4130] = 3991, - [4131] = 3992, - [4132] = 3991, - [4133] = 3992, - [4134] = 3700, - [4135] = 3795, - [4136] = 3991, - [4137] = 3992, - [4138] = 3698, - [4139] = 3991, - [4140] = 3992, - [4141] = 3991, - [4142] = 3992, - [4143] = 4143, - [4144] = 3991, - [4145] = 3992, - [4146] = 3991, - [4147] = 3992, - [4148] = 3991, - [4149] = 3992, - [4150] = 3991, - [4151] = 3992, - [4152] = 3700, - [4153] = 3991, - [4154] = 3992, - [4155] = 3698, - [4156] = 3991, - [4157] = 3992, - [4158] = 3991, - [4159] = 3992, - [4160] = 3991, - [4161] = 3992, - [4162] = 3991, - [4163] = 3992, - [4164] = 3991, - [4165] = 3992, - [4166] = 3991, - [4167] = 3992, - [4168] = 3700, - [4169] = 3991, - [4170] = 3992, - [4171] = 3698, - [4172] = 3991, - [4173] = 3992, - [4174] = 3991, - [4175] = 3992, - [4176] = 3991, - [4177] = 3992, - [4178] = 3991, - [4179] = 3992, - [4180] = 3991, - [4181] = 3992, - [4182] = 3991, - [4183] = 3992, - [4184] = 3700, - [4185] = 3698, - [4186] = 3700, - [4187] = 3698, - [4188] = 3703, - [4189] = 4143, - [4190] = 3787, - [4191] = 3788, - [4192] = 3789, - [4193] = 3700, - [4194] = 3703, - [4195] = 3698, - [4196] = 3994, - [4197] = 3787, - [4198] = 3700, - [4199] = 3788, - [4200] = 3700, - [4201] = 3698, - [4202] = 3789, - [4203] = 3700, - [4204] = 3698, - [4205] = 4143, - [4206] = 3700, - [4207] = 3698, - [4208] = 3700, - [4209] = 3700, - [4210] = 3698, - [4211] = 3698, - [4212] = 4143, - [4213] = 3700, - [4214] = 3700, - [4215] = 3705, - [4216] = 465, - [4217] = 4217, - [4218] = 4218, - [4219] = 4219, - [4220] = 471, - [4221] = 4221, - [4222] = 471, - [4223] = 4218, - [4224] = 4224, - [4225] = 464, - [4226] = 4218, - [4227] = 4218, - [4228] = 4228, - [4229] = 471, - [4230] = 4230, - [4231] = 4217, - [4232] = 4232, - [4233] = 472, - [4234] = 470, - [4235] = 4224, - [4236] = 4236, - [4237] = 473, - [4238] = 4238, - [4239] = 1062, - [4240] = 472, - [4241] = 4241, - [4242] = 1064, - [4243] = 832, - [4244] = 873, - [4245] = 472, - [4246] = 884, - [4247] = 886, - [4248] = 472, - [4249] = 4249, - [4250] = 4250, - [4251] = 4221, - [4252] = 4219, - [4253] = 471, - [4254] = 4254, - [4255] = 471, - [4256] = 470, - [4257] = 473, - [4258] = 1053, - [4259] = 1054, - [4260] = 4260, - [4261] = 493, - [4262] = 475, - [4263] = 4224, - [4264] = 488, - [4265] = 4265, - [4266] = 4266, - [4267] = 832, - [4268] = 873, - [4269] = 491, - [4270] = 476, - [4271] = 4230, - [4272] = 493, - [4273] = 478, - [4274] = 2733, - [4275] = 884, - [4276] = 886, - [4277] = 475, - [4278] = 2734, - [4279] = 482, - [4280] = 484, - [4281] = 479, - [4282] = 480, - [4283] = 471, - [4284] = 470, - [4285] = 4238, - [4286] = 1062, - [4287] = 472, - [4288] = 491, - [4289] = 2703, - [4290] = 2667, - [4291] = 488, - [4292] = 1339, + [3616] = 3582, + [3617] = 3586, + [3618] = 3576, + [3619] = 3586, + [3620] = 1364, + [3621] = 3576, + [3622] = 3622, + [3623] = 3623, + [3624] = 3582, + [3625] = 1082, + [3626] = 3626, + [3627] = 3586, + [3628] = 3576, + [3629] = 3582, + [3630] = 3577, + [3631] = 464, + [3632] = 495, + [3633] = 3586, + [3634] = 1394, + [3635] = 3577, + [3636] = 465, + [3637] = 3586, + [3638] = 464, + [3639] = 3639, + [3640] = 3640, + [3641] = 3639, + [3642] = 3640, + [3643] = 3643, + [3644] = 465, + [3645] = 464, + [3646] = 3640, + [3647] = 464, + [3648] = 465, + [3649] = 464, + [3650] = 3650, + [3651] = 3640, + [3652] = 3652, + [3653] = 3650, + [3654] = 3639, + [3655] = 3650, + [3656] = 3640, + [3657] = 3639, + [3658] = 3639, + [3659] = 3639, + [3660] = 3640, + [3661] = 3640, + [3662] = 3662, + [3663] = 3652, + [3664] = 3639, + [3665] = 1615, + [3666] = 3650, + [3667] = 3640, + [3668] = 3639, + [3669] = 3639, + [3670] = 3640, + [3671] = 3640, + [3672] = 1283, + [3673] = 465, + [3674] = 3662, + [3675] = 3639, + [3676] = 3640, + [3677] = 3677, + [3678] = 465, + [3679] = 3639, + [3680] = 3640, + [3681] = 1586, + [3682] = 3639, + [3683] = 3650, + [3684] = 3640, + [3685] = 3639, + [3686] = 3650, + [3687] = 3640, + [3688] = 464, + [3689] = 3639, + [3690] = 3639, + [3691] = 3639, + [3692] = 3640, + [3693] = 3639, + [3694] = 3640, + [3695] = 3662, + [3696] = 3652, + [3697] = 3662, + [3698] = 3652, + [3699] = 3640, + [3700] = 3639, + [3701] = 3639, + [3702] = 3640, + [3703] = 3639, + [3704] = 3639, + [3705] = 3677, + [3706] = 3640, + [3707] = 3640, + [3708] = 3639, + [3709] = 3640, + [3710] = 3640, + [3711] = 464, + [3712] = 3639, + [3713] = 1574, + [3714] = 3640, + [3715] = 3639, + [3716] = 465, + [3717] = 3662, + [3718] = 3652, + [3719] = 3640, + [3720] = 3640, + [3721] = 3650, + [3722] = 3639, + [3723] = 3639, + [3724] = 502, + [3725] = 3640, + [3726] = 3639, + [3727] = 1620, + [3728] = 3640, + [3729] = 3639, + [3730] = 3662, + [3731] = 465, + [3732] = 3677, + [3733] = 3640, + [3734] = 3652, + [3735] = 3677, + [3736] = 1286, + [3737] = 1588, + [3738] = 3738, + [3739] = 3739, + [3740] = 3739, + [3741] = 3741, + [3742] = 3739, + [3743] = 3741, + [3744] = 3738, + [3745] = 3745, + [3746] = 3739, + [3747] = 3739, + [3748] = 3748, + [3749] = 3745, + [3750] = 3748, + [3751] = 3748, + [3752] = 3748, + [3753] = 3741, + [3754] = 3738, + [3755] = 3738, + [3756] = 3739, + [3757] = 3748, + [3758] = 3745, + [3759] = 3745, + [3760] = 3741, + [3761] = 3739, + [3762] = 3738, + [3763] = 3745, + [3764] = 3739, + [3765] = 3739, + [3766] = 3745, + [3767] = 3748, + [3768] = 3739, + [3769] = 3741, + [3770] = 3739, + [3771] = 3738, + [3772] = 3748, + [3773] = 3739, + [3774] = 3748, + [3775] = 3745, + [3776] = 3741, + [3777] = 3738, + [3778] = 3738, + [3779] = 3739, + [3780] = 3748, + [3781] = 3745, + [3782] = 3739, + [3783] = 3741, + [3784] = 3748, + [3785] = 3741, + [3786] = 3738, + [3787] = 3739, + [3788] = 3748, + [3789] = 3745, + [3790] = 3738, + [3791] = 3741, + [3792] = 3739, + [3793] = 3748, + [3794] = 3741, + [3795] = 3738, + [3796] = 3738, + [3797] = 3741, + [3798] = 3738, + [3799] = 3739, + [3800] = 3741, + [3801] = 3738, + [3802] = 3738, + [3803] = 3739, + [3804] = 3738, + [3805] = 3739, + [3806] = 3741, + [3807] = 3739, + [3808] = 3745, + [3809] = 3748, + [3810] = 3741, + [3811] = 3748, + [3812] = 3748, + [3813] = 3738, + [3814] = 3745, + [3815] = 3738, + [3816] = 3739, + [3817] = 3748, + [3818] = 3745, + [3819] = 3748, + [3820] = 3739, + [3821] = 3748, + [3822] = 3745, + [3823] = 3739, + [3824] = 3739, + [3825] = 3748, + [3826] = 3745, + [3827] = 3745, + [3828] = 3745, + [3829] = 3748, + [3830] = 3745, + [3831] = 3739, + [3832] = 3739, + [3833] = 3748, + [3834] = 3748, + [3835] = 3739, + [3836] = 3745, + [3837] = 3741, + [3838] = 3745, + [3839] = 3748, + [3840] = 3738, + [3841] = 3745, + [3842] = 3739, + [3843] = 3748, + [3844] = 3739, + [3845] = 3741, + [3846] = 3745, + [3847] = 3745, + [3848] = 3739, + [3849] = 3738, + [3850] = 3739, + [3851] = 3748, + [3852] = 3745, + [3853] = 3739, + [3854] = 3748, + [3855] = 3745, + [3856] = 3748, + [3857] = 3739, + [3858] = 3745, + [3859] = 3739, + [3860] = 3739, + [3861] = 3748, + [3862] = 3745, + [3863] = 3748, + [3864] = 3748, + [3865] = 3745, + [3866] = 3748, + [3867] = 3748, + [3868] = 3745, + [3869] = 3745, + [3870] = 3745, + [3871] = 3745, + [3872] = 3739, + [3873] = 3748, + [3874] = 3745, + [3875] = 3748, + [3876] = 3739, + [3877] = 3748, + [3878] = 3745, + [3879] = 3741, + [3880] = 3880, + [3881] = 3739, + [3882] = 3745, + [3883] = 3748, + [3884] = 3738, + [3885] = 3745, + [3886] = 3739, + [3887] = 3748, + [3888] = 3739, + [3889] = 3741, + [3890] = 3741, + [3891] = 3741, + [3892] = 3745, + [3893] = 3748, + [3894] = 3739, + [3895] = 3739, + [3896] = 3748, + [3897] = 3745, + [3898] = 3748, + [3899] = 3748, + [3900] = 3745, + [3901] = 3738, + [3902] = 3738, + [3903] = 3745, + [3904] = 3741, + [3905] = 3739, + [3906] = 3738, + [3907] = 3748, + [3908] = 3739, + [3909] = 3739, + [3910] = 3748, + [3911] = 3739, + [3912] = 3748, + [3913] = 3739, + [3914] = 3745, + [3915] = 3748, + [3916] = 3739, + [3917] = 3748, + [3918] = 3748, + [3919] = 3745, + [3920] = 3739, + [3921] = 3739, + [3922] = 3739, + [3923] = 3748, + [3924] = 3748, + [3925] = 3738, + [3926] = 3739, + [3927] = 3748, + [3928] = 3739, + [3929] = 3745, + [3930] = 3739, + [3931] = 3739, + [3932] = 3748, + [3933] = 3739, + [3934] = 3745, + [3935] = 3748, + [3936] = 3739, + [3937] = 3748, + [3938] = 3748, + [3939] = 3748, + [3940] = 3748, + [3941] = 3745, + [3942] = 3739, + [3943] = 3745, + [3944] = 3748, + [3945] = 3739, + [3946] = 3748, + [3947] = 3745, + [3948] = 3739, + [3949] = 3739, + [3950] = 3748, + [3951] = 3739, + [3952] = 3739, + [3953] = 3748, + [3954] = 3954, + [3955] = 3745, + [3956] = 3739, + [3957] = 3739, + [3958] = 3748, + [3959] = 465, + [3960] = 3745, + [3961] = 3745, + [3962] = 3739, + [3963] = 3739, + [3964] = 3748, + [3965] = 3748, + [3966] = 3748, + [3967] = 3741, + [3968] = 3745, + [3969] = 3741, + [3970] = 3738, + [3971] = 3738, + [3972] = 3739, + [3973] = 3745, + [3974] = 3741, + [3975] = 3738, + [3976] = 3739, + [3977] = 3745, + [3978] = 3748, + [3979] = 3748, + [3980] = 3739, + [3981] = 3745, + [3982] = 3739, + [3983] = 3748, + [3984] = 3741, + [3985] = 3745, + [3986] = 3739, + [3987] = 3739, + [3988] = 3745, + [3989] = 3739, + [3990] = 3748, + [3991] = 3745, + [3992] = 3745, + [3993] = 3738, + [3994] = 3739, + [3995] = 3739, + [3996] = 3748, + [3997] = 3739, + [3998] = 3748, + [3999] = 3741, + [4000] = 3739, + [4001] = 3739, + [4002] = 464, + [4003] = 3748, + [4004] = 3741, + [4005] = 3739, + [4006] = 3748, + [4007] = 3748, + [4008] = 3954, + [4009] = 3739, + [4010] = 3745, + [4011] = 3741, + [4012] = 3748, + [4013] = 3745, + [4014] = 3738, + [4015] = 3745, + [4016] = 3739, + [4017] = 3739, + [4018] = 3748, + [4019] = 3748, + [4020] = 3739, + [4021] = 3739, + [4022] = 3748, + [4023] = 3741, + [4024] = 3739, + [4025] = 3748, + [4026] = 3739, + [4027] = 3748, + [4028] = 465, + [4029] = 3738, + [4030] = 3954, + [4031] = 3739, + [4032] = 3748, + [4033] = 3741, + [4034] = 3748, + [4035] = 3748, + [4036] = 3738, + [4037] = 3738, + [4038] = 464, + [4039] = 3741, + [4040] = 3741, + [4041] = 3748, + [4042] = 3739, + [4043] = 3748, + [4044] = 3739, + [4045] = 3748, + [4046] = 3748, + [4047] = 3748, + [4048] = 3739, + [4049] = 3739, + [4050] = 3745, + [4051] = 3748, + [4052] = 3748, + [4053] = 3748, + [4054] = 3748, + [4055] = 3739, + [4056] = 3748, + [4057] = 3741, + [4058] = 3748, + [4059] = 3745, + [4060] = 3738, + [4061] = 3954, + [4062] = 3741, + [4063] = 3745, + [4064] = 3738, + [4065] = 3748, + [4066] = 3739, + [4067] = 3748, + [4068] = 3745, + [4069] = 3739, + [4070] = 3741, + [4071] = 4071, + [4072] = 4071, + [4073] = 4073, + [4074] = 4074, + [4075] = 4075, + [4076] = 4071, + [4077] = 4077, + [4078] = 4077, + [4079] = 4079, + [4080] = 4071, + [4081] = 4071, + [4082] = 4071, + [4083] = 4077, + [4084] = 4077, + [4085] = 4085, + [4086] = 4086, + [4087] = 4071, + [4088] = 4088, + [4089] = 4071, + [4090] = 4090, + [4091] = 4077, + [4092] = 4077, + [4093] = 4071, + [4094] = 4075, + [4095] = 4077, + [4096] = 4071, + [4097] = 4077, + [4098] = 4077, + [4099] = 4099, + [4100] = 4074, + [4101] = 4071, + [4102] = 4077, + [4103] = 4103, + [4104] = 4071, + [4105] = 4105, + [4106] = 4071, + [4107] = 4071, + [4108] = 4077, + [4109] = 4077, + [4110] = 4110, + [4111] = 4077, + [4112] = 4088, + [4113] = 4071, + [4114] = 4077, + [4115] = 4071, + [4116] = 4077, + [4117] = 4071, + [4118] = 4103, + [4119] = 4071, + [4120] = 4077, + [4121] = 4121, + [4122] = 4071, + [4123] = 4077, + [4124] = 4124, + [4125] = 4071, + [4126] = 4071, + [4127] = 4077, + [4128] = 4077, + [4129] = 4129, + [4130] = 4071, + [4131] = 4071, + [4132] = 4071, + [4133] = 4077, + [4134] = 4099, + [4135] = 4077, + [4136] = 4071, + [4137] = 4073, + [4138] = 4077, + [4139] = 4077, + [4140] = 4140, + [4141] = 4071, + [4142] = 4077, + [4143] = 4079, + [4144] = 4086, + [4145] = 4071, + [4146] = 4146, + [4147] = 4071, + [4148] = 4071, + [4149] = 4077, + [4150] = 4071, + [4151] = 4151, + [4152] = 4077, + [4153] = 4077, + [4154] = 4129, + [4155] = 4071, + [4156] = 4077, + [4157] = 4146, + [4158] = 4071, + [4159] = 4124, + [4160] = 4085, + [4161] = 4161, + [4162] = 4071, + [4163] = 4071, + [4164] = 4077, + [4165] = 4077, + [4166] = 4077, + [4167] = 4077, + [4168] = 4071, + [4169] = 4074, + [4170] = 4077, + [4171] = 4077, + [4172] = 4105, + [4173] = 4071, + [4174] = 4077, + [4175] = 4071, + [4176] = 4071, + [4177] = 4071, + [4178] = 4077, + [4179] = 4071, + [4180] = 4077, + [4181] = 4077, + [4182] = 4077, + [4183] = 4121, + [4184] = 4077, + [4185] = 4071, + [4186] = 4077, + [4187] = 4071, + [4188] = 4077, + [4189] = 4099, + [4190] = 4161, + [4191] = 4071, + [4192] = 4077, + [4193] = 4071, + [4194] = 4071, + [4195] = 4077, + [4196] = 4110, + [4197] = 4071, + [4198] = 4077, + [4199] = 4071, + [4200] = 4077, + [4201] = 4071, + [4202] = 4103, + [4203] = 4105, + [4204] = 4077, + [4205] = 4110, + [4206] = 4071, + [4207] = 4077, + [4208] = 4071, + [4209] = 4077, + [4210] = 4077, + [4211] = 4071, + [4212] = 4077, + [4213] = 4071, + [4214] = 4071, + [4215] = 4079, + [4216] = 4077, + [4217] = 4071, + [4218] = 4077, + [4219] = 4077, + [4220] = 4086, + [4221] = 4077, + [4222] = 4071, + [4223] = 4124, + [4224] = 4161, + [4225] = 4225, + [4226] = 4071, + [4227] = 4075, + [4228] = 4140, + [4229] = 4071, + [4230] = 4077, + [4231] = 4151, + [4232] = 4071, + [4233] = 4077, + [4234] = 4077, + [4235] = 4071, + [4236] = 4077, + [4237] = 4088, + [4238] = 4090, + [4239] = 4077, + [4240] = 4121, + [4241] = 4071, + [4242] = 4077, + [4243] = 4090, + [4244] = 4071, + [4245] = 4077, + [4246] = 4151, + [4247] = 4071, + [4248] = 4140, + [4249] = 4146, + [4250] = 4071, + [4251] = 4071, + [4252] = 4077, + [4253] = 4071, + [4254] = 4073, + [4255] = 4077, + [4256] = 4077, + [4257] = 4071, + [4258] = 4077, + [4259] = 4085, + [4260] = 4129, + [4261] = 465, + [4262] = 4262, + [4263] = 471, + [4264] = 4264, + [4265] = 4264, + [4266] = 471, + [4267] = 4267, + [4268] = 4268, + [4269] = 464, + [4270] = 4270, + [4271] = 4271, + [4272] = 4264, + [4273] = 4264, + [4274] = 470, + [4275] = 1128, + [4276] = 471, + [4277] = 471, + [4278] = 4278, + [4279] = 4279, + [4280] = 899, + [4281] = 902, + [4282] = 915, + [4283] = 916, + [4284] = 4268, + [4285] = 4285, + [4286] = 4271, + [4287] = 4262, + [4288] = 4288, + [4289] = 472, + [4290] = 4290, + [4291] = 472, + [4292] = 4267, [4293] = 4293, - [4294] = 4241, - [4295] = 1064, - [4296] = 4224, - [4297] = 476, - [4298] = 488, - [4299] = 478, - [4300] = 475, - [4301] = 487, - [4302] = 492, - [4303] = 474, - [4304] = 479, - [4305] = 480, - [4306] = 471, - [4307] = 471, - [4308] = 473, - [4309] = 4309, - [4310] = 486, - [4311] = 4217, - [4312] = 4221, - [4313] = 1314, + [4294] = 471, + [4295] = 470, + [4296] = 473, + [4297] = 472, + [4298] = 473, + [4299] = 472, + [4300] = 1054, + [4301] = 1056, + [4302] = 4302, + [4303] = 4303, + [4304] = 1121, + [4305] = 4305, + [4306] = 482, + [4307] = 4305, + [4308] = 1128, + [4309] = 474, + [4310] = 4267, + [4311] = 4311, + [4312] = 475, + [4313] = 1064, [4314] = 489, [4315] = 478, - [4316] = 476, - [4317] = 1343, - [4318] = 481, - [4319] = 478, - [4320] = 1053, - [4321] = 1088, - [4322] = 475, - [4323] = 1054, - [4324] = 481, + [4316] = 1082, + [4317] = 4268, + [4318] = 490, + [4319] = 4319, + [4320] = 4320, + [4321] = 4271, + [4322] = 4302, + [4323] = 2659, + [4324] = 2663, [4325] = 477, - [4326] = 472, - [4327] = 473, - [4328] = 471, - [4329] = 492, - [4330] = 479, - [4331] = 4221, - [4332] = 482, - [4333] = 832, - [4334] = 480, - [4335] = 4250, - [4336] = 873, - [4337] = 1093, - [4338] = 481, - [4339] = 884, - [4340] = 1093, - [4341] = 476, - [4342] = 470, - [4343] = 472, - [4344] = 473, - [4345] = 491, - [4346] = 886, - [4347] = 477, - [4348] = 472, - [4349] = 479, - [4350] = 4350, - [4351] = 482, - [4352] = 483, - [4353] = 484, + [4326] = 2628, + [4327] = 2632, + [4328] = 4267, + [4329] = 4268, + [4330] = 4271, + [4331] = 4271, + [4332] = 4278, + [4333] = 4267, + [4334] = 479, + [4335] = 4262, + [4336] = 899, + [4337] = 902, + [4338] = 915, + [4339] = 916, + [4340] = 475, + [4341] = 489, + [4342] = 472, + [4343] = 1364, + [4344] = 4262, + [4345] = 480, + [4346] = 481, + [4347] = 482, + [4348] = 478, + [4349] = 483, + [4350] = 485, + [4351] = 486, + [4352] = 484, + [4353] = 488, [4354] = 471, - [4355] = 471, - [4356] = 471, - [4357] = 4238, - [4358] = 1062, - [4359] = 487, - [4360] = 474, - [4361] = 493, - [4362] = 493, - [4363] = 481, - [4364] = 1088, - [4365] = 477, - [4366] = 480, - [4367] = 485, - [4368] = 483, - [4369] = 4232, - [4370] = 485, - [4371] = 4241, - [4372] = 1064, - [4373] = 4373, - [4374] = 4374, - [4375] = 4217, - [4376] = 486, - [4377] = 487, - [4378] = 1339, - [4379] = 474, - [4380] = 4219, - [4381] = 4381, - [4382] = 489, - [4383] = 484, - [4384] = 483, - [4385] = 482, - [4386] = 484, - [4387] = 489, - [4388] = 485, - [4389] = 4254, - [4390] = 4217, - [4391] = 487, + [4355] = 495, + [4356] = 493, + [4357] = 475, + [4358] = 476, + [4359] = 478, + [4360] = 477, + [4361] = 479, + [4362] = 474, + [4363] = 489, + [4364] = 490, + [4365] = 1392, + [4366] = 4288, + [4367] = 487, + [4368] = 491, + [4369] = 492, + [4370] = 1394, + [4371] = 490, + [4372] = 480, + [4373] = 481, + [4374] = 473, + [4375] = 487, + [4376] = 1064, + [4377] = 485, + [4378] = 486, + [4379] = 1082, + [4380] = 471, + [4381] = 495, + [4382] = 484, + [4383] = 483, + [4384] = 488, + [4385] = 471, + [4386] = 471, + [4387] = 493, + [4388] = 476, + [4389] = 471, + [4390] = 472, + [4391] = 479, [4392] = 474, - [4393] = 490, - [4394] = 490, - [4395] = 1343, - [4396] = 4219, - [4397] = 492, - [4398] = 4219, - [4399] = 477, - [4400] = 483, - [4401] = 489, - [4402] = 490, - [4403] = 485, - [4404] = 4224, - [4405] = 490, - [4406] = 486, - [4407] = 4407, - [4408] = 486, - [4409] = 491, - [4410] = 488, - [4411] = 492, - [4412] = 1314, - [4413] = 4221, - [4414] = 470, - [4415] = 493, - [4416] = 486, - [4417] = 832, - [4418] = 873, - [4419] = 491, - [4420] = 488, - [4421] = 492, - [4422] = 1339, - [4423] = 491, - [4424] = 488, - [4425] = 492, - [4426] = 884, - [4427] = 886, - [4428] = 477, - [4429] = 1343, - [4430] = 4250, - [4431] = 4309, - [4432] = 4432, - [4433] = 4373, - [4434] = 4254, - [4435] = 493, - [4436] = 4381, - [4437] = 470, - [4438] = 487, - [4439] = 474, - [4440] = 1088, - [4441] = 473, - [4442] = 472, - [4443] = 1093, - [4444] = 476, - [4445] = 478, - [4446] = 475, - [4447] = 4266, - [4448] = 479, - [4449] = 2915, - [4450] = 480, - [4451] = 2923, - [4452] = 4293, - [4453] = 2845, - [4454] = 2860, - [4455] = 481, - [4456] = 477, - [4457] = 471, - [4458] = 470, - [4459] = 473, - [4460] = 1314, - [4461] = 471, + [4393] = 475, + [4394] = 489, + [4395] = 478, + [4396] = 490, + [4397] = 477, + [4398] = 487, + [4399] = 491, + [4400] = 492, + [4401] = 491, + [4402] = 470, + [4403] = 473, + [4404] = 492, + [4405] = 472, + [4406] = 4262, + [4407] = 477, + [4408] = 899, + [4409] = 902, + [4410] = 481, + [4411] = 482, + [4412] = 487, + [4413] = 480, + [4414] = 485, + [4415] = 486, + [4416] = 491, + [4417] = 481, + [4418] = 482, + [4419] = 492, + [4420] = 484, + [4421] = 483, + [4422] = 488, + [4423] = 915, + [4424] = 916, + [4425] = 1364, + [4426] = 480, + [4427] = 495, + [4428] = 485, + [4429] = 4429, + [4430] = 486, + [4431] = 484, + [4432] = 483, + [4433] = 4433, + [4434] = 4434, + [4435] = 488, + [4436] = 4436, + [4437] = 495, + [4438] = 4268, + [4439] = 4303, + [4440] = 1121, + [4441] = 493, + [4442] = 476, + [4443] = 4305, + [4444] = 1128, + [4445] = 4445, + [4446] = 493, + [4447] = 476, + [4448] = 4303, + [4449] = 1121, + [4450] = 1392, + [4451] = 471, + [4452] = 470, + [4453] = 479, + [4454] = 474, + [4455] = 473, + [4456] = 472, + [4457] = 4293, + [4458] = 4458, + [4459] = 1394, + [4460] = 1054, + [4461] = 1056, [4462] = 470, - [4463] = 473, - [4464] = 478, - [4465] = 470, - [4466] = 473, - [4467] = 475, - [4468] = 4224, - [4469] = 4221, + [4463] = 471, + [4464] = 493, + [4465] = 1064, + [4466] = 484, + [4467] = 1064, + [4468] = 1392, + [4469] = 1064, [4470] = 478, - [4471] = 476, - [4472] = 482, - [4473] = 470, - [4474] = 483, - [4475] = 473, - [4476] = 484, - [4477] = 498, - [4478] = 475, - [4479] = 472, - [4480] = 485, - [4481] = 486, - [4482] = 487, - [4483] = 474, - [4484] = 471, - [4485] = 471, - [4486] = 478, - [4487] = 475, - [4488] = 489, - [4489] = 884, - [4490] = 886, - [4491] = 479, - [4492] = 4350, - [4493] = 490, - [4494] = 471, - [4495] = 4250, - [4496] = 480, - [4497] = 471, - [4498] = 470, - [4499] = 473, - [4500] = 470, - [4501] = 473, - [4502] = 4432, - [4503] = 1339, - [4504] = 4254, - [4505] = 1088, - [4506] = 491, - [4507] = 488, - [4508] = 492, - [4509] = 4407, - [4510] = 476, - [4511] = 481, - [4512] = 4374, - [4513] = 498, - [4514] = 4254, - [4515] = 490, - [4516] = 477, - [4517] = 480, - [4518] = 483, - [4519] = 489, - [4520] = 493, - [4521] = 481, - [4522] = 485, - [4523] = 476, - [4524] = 4238, - [4525] = 1343, - [4526] = 1062, - [4527] = 1093, - [4528] = 490, - [4529] = 1053, - [4530] = 1054, - [4531] = 1088, - [4532] = 4241, - [4533] = 1064, - [4534] = 477, - [4535] = 486, - [4536] = 1093, - [4537] = 1081, - [4538] = 493, - [4539] = 1082, - [4540] = 4265, - [4541] = 4250, - [4542] = 491, - [4543] = 4230, - [4544] = 488, - [4545] = 492, - [4546] = 4546, - [4547] = 1339, + [4471] = 483, + [4472] = 1082, + [4473] = 4436, + [4474] = 4458, + [4475] = 479, + [4476] = 480, + [4477] = 481, + [4478] = 482, + [4479] = 1394, + [4480] = 474, + [4481] = 483, + [4482] = 1082, + [4483] = 1054, + [4484] = 1056, + [4485] = 485, + [4486] = 4305, + [4487] = 486, + [4488] = 1128, + [4489] = 484, + [4490] = 488, + [4491] = 471, + [4492] = 470, + [4493] = 473, + [4494] = 495, + [4495] = 490, + [4496] = 488, + [4497] = 4319, + [4498] = 1082, + [4499] = 479, + [4500] = 474, + [4501] = 493, + [4502] = 470, + [4503] = 475, + [4504] = 473, + [4505] = 476, + [4506] = 502, + [4507] = 477, + [4508] = 472, + [4509] = 478, + [4510] = 477, + [4511] = 479, + [4512] = 474, + [4513] = 489, + [4514] = 490, + [4515] = 471, + [4516] = 1392, + [4517] = 487, + [4518] = 491, + [4519] = 492, + [4520] = 495, + [4521] = 475, + [4522] = 489, + [4523] = 478, + [4524] = 4303, + [4525] = 1121, + [4526] = 490, + [4527] = 477, + [4528] = 4305, + [4529] = 1128, + [4530] = 475, + [4531] = 489, + [4532] = 470, + [4533] = 478, + [4534] = 473, + [4535] = 899, + [4536] = 902, + [4537] = 490, + [4538] = 477, + [4539] = 487, + [4540] = 4278, + [4541] = 491, + [4542] = 492, + [4543] = 915, + [4544] = 916, + [4545] = 487, + [4546] = 491, + [4547] = 492, [4548] = 482, - [4549] = 1343, - [4550] = 470, - [4551] = 479, + [4549] = 1394, + [4550] = 471, + [4551] = 470, [4552] = 473, - [4553] = 484, - [4554] = 480, - [4555] = 482, - [4556] = 832, - [4557] = 4432, - [4558] = 484, - [4559] = 498, - [4560] = 482, - [4561] = 484, - [4562] = 873, - [4563] = 487, - [4564] = 474, - [4565] = 487, - [4566] = 474, - [4567] = 498, - [4568] = 481, - [4569] = 4232, - [4570] = 4232, - [4571] = 4230, - [4572] = 4238, - [4573] = 1062, - [4574] = 1053, - [4575] = 1054, - [4576] = 4238, - [4577] = 1062, - [4578] = 4241, - [4579] = 1064, - [4580] = 832, - [4581] = 873, - [4582] = 884, - [4583] = 886, - [4584] = 4241, - [4585] = 483, - [4586] = 1064, - [4587] = 489, - [4588] = 485, - [4589] = 490, - [4590] = 486, - [4591] = 483, - [4592] = 489, - [4593] = 4232, - [4594] = 485, - [4595] = 4230, - [4596] = 1053, - [4597] = 1054, - [4598] = 4238, - [4599] = 1062, - [4600] = 4241, - [4601] = 1064, - [4602] = 832, - [4603] = 873, - [4604] = 884, - [4605] = 886, - [4606] = 479, - [4607] = 886, - [4608] = 4608, - [4609] = 4609, - [4610] = 4293, - [4611] = 4608, - [4612] = 479, - [4613] = 1696, - [4614] = 480, - [4615] = 4608, - [4616] = 498, - [4617] = 4617, - [4618] = 4618, - [4619] = 470, - [4620] = 473, - [4621] = 4608, - [4622] = 4622, - [4623] = 4623, - [4624] = 4608, - [4625] = 4625, - [4626] = 4250, - [4627] = 4254, - [4628] = 4608, - [4629] = 481, - [4630] = 477, - [4631] = 4631, - [4632] = 4608, - [4633] = 4608, - [4634] = 4407, - [4635] = 4350, + [4553] = 470, + [4554] = 473, + [4555] = 4302, + [4556] = 502, + [4557] = 4268, + [4558] = 4271, + [4559] = 1027, + [4560] = 1097, + [4561] = 471, + [4562] = 471, + [4563] = 471, + [4564] = 470, + [4565] = 473, + [4566] = 485, + [4567] = 470, + [4568] = 473, + [4569] = 4278, + [4570] = 4570, + [4571] = 480, + [4572] = 4570, + [4573] = 491, + [4574] = 4288, + [4575] = 4429, + [4576] = 492, + [4577] = 4320, + [4578] = 484, + [4579] = 4579, + [4580] = 481, + [4581] = 482, + [4582] = 480, + [4583] = 485, + [4584] = 486, + [4585] = 4433, + [4586] = 483, + [4587] = 4434, + [4588] = 476, + [4589] = 484, + [4590] = 483, + [4591] = 488, + [4592] = 495, + [4593] = 485, + [4594] = 488, + [4595] = 486, + [4596] = 486, + [4597] = 475, + [4598] = 4445, + [4599] = 489, + [4600] = 2959, + [4601] = 493, + [4602] = 2960, + [4603] = 502, + [4604] = 4311, + [4605] = 899, + [4606] = 902, + [4607] = 2961, + [4608] = 493, + [4609] = 4278, + [4610] = 476, + [4611] = 502, + [4612] = 2962, + [4613] = 4293, + [4614] = 4302, + [4615] = 4570, + [4616] = 915, + [4617] = 916, + [4618] = 1392, + [4619] = 4288, + [4620] = 1394, + [4621] = 470, + [4622] = 479, + [4623] = 474, + [4624] = 473, + [4625] = 1054, + [4626] = 1056, + [4627] = 4303, + [4628] = 1121, + [4629] = 4305, + [4630] = 1128, + [4631] = 899, + [4632] = 902, + [4633] = 915, + [4634] = 916, + [4635] = 472, [4636] = 476, - [4637] = 4608, - [4638] = 4608, - [4639] = 478, - [4640] = 475, - [4641] = 4608, - [4642] = 4642, - [4643] = 479, - [4644] = 480, - [4645] = 493, - [4646] = 4608, - [4647] = 471, - [4648] = 470, - [4649] = 473, - [4650] = 470, - [4651] = 473, - [4652] = 4608, - [4653] = 4608, - [4654] = 4608, - [4655] = 4608, - [4656] = 4350, - [4657] = 481, - [4658] = 4658, - [4659] = 477, - [4660] = 4608, - [4661] = 4238, - [4662] = 4662, - [4663] = 1062, - [4664] = 1088, - [4665] = 470, - [4666] = 473, - [4667] = 4608, - [4668] = 4668, - [4669] = 4407, - [4670] = 4407, - [4671] = 4608, - [4672] = 832, - [4673] = 498, - [4674] = 873, - [4675] = 4608, - [4676] = 4676, - [4677] = 4309, - [4678] = 4373, - [4679] = 1240, - [4680] = 4381, - [4681] = 4681, - [4682] = 4265, - [4683] = 4266, - [4684] = 4608, - [4685] = 4293, - [4686] = 4608, - [4687] = 4687, - [4688] = 4608, - [4689] = 4689, - [4690] = 4608, - [4691] = 4608, - [4692] = 4350, + [4637] = 4303, + [4638] = 1121, + [4639] = 481, + [4640] = 482, + [4641] = 481, + [4642] = 4293, + [4643] = 4293, + [4644] = 4302, + [4645] = 1054, + [4646] = 1056, + [4647] = 4303, + [4648] = 1121, + [4649] = 4305, + [4650] = 1128, + [4651] = 899, + [4652] = 902, + [4653] = 915, + [4654] = 916, + [4655] = 495, + [4656] = 1364, + [4657] = 4288, + [4658] = 480, + [4659] = 487, + [4660] = 1392, + [4661] = 4661, + [4662] = 4458, + [4663] = 899, + [4664] = 4664, + [4665] = 4661, + [4666] = 1283, + [4667] = 4661, + [4668] = 4661, + [4669] = 4669, + [4670] = 4661, + [4671] = 902, + [4672] = 4661, + [4673] = 4661, + [4674] = 481, + [4675] = 4661, + [4676] = 4661, + [4677] = 4661, + [4678] = 4661, + [4679] = 4661, + [4680] = 482, + [4681] = 4661, + [4682] = 4661, + [4683] = 4661, + [4684] = 4661, + [4685] = 4661, + [4686] = 4661, + [4687] = 4319, + [4688] = 4661, + [4689] = 1286, + [4690] = 4690, + [4691] = 4691, + [4692] = 483, [4693] = 4693, - [4694] = 4241, - [4695] = 498, - [4696] = 4608, - [4697] = 4608, - [4698] = 1064, - [4699] = 4608, - [4700] = 4608, - [4701] = 884, - [4702] = 478, - [4703] = 482, - [4704] = 475, - [4705] = 1506, - [4706] = 1339, - [4707] = 4608, - [4708] = 483, + [4694] = 4693, + [4695] = 485, + [4696] = 476, + [4697] = 4697, + [4698] = 915, + [4699] = 470, + [4700] = 473, + [4701] = 4661, + [4702] = 486, + [4703] = 1394, + [4704] = 4697, + [4705] = 916, + [4706] = 4661, + [4707] = 4661, + [4708] = 4278, [4709] = 484, - [4710] = 4710, - [4711] = 4625, - [4712] = 4608, - [4713] = 485, - [4714] = 1343, - [4715] = 1658, - [4716] = 4309, - [4717] = 4717, - [4718] = 486, - [4719] = 4608, - [4720] = 4642, - [4721] = 487, - [4722] = 498, - [4723] = 474, - [4724] = 4724, - [4725] = 4373, - [4726] = 489, - [4727] = 482, - [4728] = 1506, - [4729] = 4381, - [4730] = 4608, - [4731] = 490, - [4732] = 484, - [4733] = 4266, - [4734] = 4265, + [4710] = 4288, + [4711] = 4661, + [4712] = 4712, + [4713] = 488, + [4714] = 502, + [4715] = 471, + [4716] = 470, + [4717] = 473, + [4718] = 4661, + [4719] = 470, + [4720] = 473, + [4721] = 477, + [4722] = 4661, + [4723] = 4320, + [4724] = 4311, + [4725] = 470, + [4726] = 473, + [4727] = 4727, + [4728] = 502, + [4729] = 4661, + [4730] = 1121, + [4731] = 4661, + [4732] = 4732, + [4733] = 470, + [4734] = 1574, [4735] = 4735, - [4736] = 4736, - [4737] = 4737, - [4738] = 4373, - [4739] = 4608, - [4740] = 4381, - [4741] = 4265, - [4742] = 491, - [4743] = 488, - [4744] = 492, - [4745] = 4608, - [4746] = 4608, - [4747] = 4608, - [4748] = 4309, - [4749] = 4710, + [4736] = 4661, + [4737] = 1283, + [4738] = 473, + [4739] = 4436, + [4740] = 4740, + [4741] = 4661, + [4742] = 4305, + [4743] = 4743, + [4744] = 4661, + [4745] = 1286, + [4746] = 4732, + [4747] = 4740, + [4748] = 4748, + [4749] = 4749, [4750] = 4750, - [4751] = 1571, - [4752] = 4608, - [4753] = 4608, - [4754] = 4608, - [4755] = 4668, - [4756] = 4756, - [4757] = 4608, - [4758] = 4631, - [4759] = 4750, - [4760] = 4608, - [4761] = 4608, - [4762] = 4608, - [4763] = 487, - [4764] = 4608, - [4765] = 1293, - [4766] = 474, - [4767] = 4293, - [4768] = 470, - [4769] = 4689, - [4770] = 4608, - [4771] = 1293, - [4772] = 1240, - [4773] = 1590, - [4774] = 4608, - [4775] = 4608, - [4776] = 1093, - [4777] = 473, - [4778] = 4608, - [4779] = 4608, - [4780] = 4608, - [4781] = 4374, - [4782] = 4608, - [4783] = 4693, - [4784] = 4608, - [4785] = 4785, - [4786] = 4724, - [4787] = 4608, - [4788] = 1658, - [4789] = 4374, - [4790] = 483, - [4791] = 4608, - [4792] = 489, - [4793] = 485, - [4794] = 490, - [4795] = 4608, - [4796] = 1571, - [4797] = 4238, - [4798] = 1062, - [4799] = 832, - [4800] = 873, - [4801] = 4241, - [4802] = 1064, - [4803] = 884, - [4804] = 886, - [4805] = 4662, - [4806] = 4608, - [4807] = 4266, - [4808] = 486, - [4809] = 4608, - [4810] = 4608, - [4811] = 4608, - [4812] = 4374, - [4813] = 4813, - [4814] = 4608, - [4815] = 1590, - [4816] = 4232, - [4817] = 4608, - [4818] = 1696, - [4819] = 4230, - [4820] = 4608, - [4821] = 4608, - [4822] = 4822, - [4823] = 491, - [4824] = 488, - [4825] = 4608, - [4826] = 4622, - [4827] = 492, - [4828] = 4608, - [4829] = 1053, - [4830] = 1054, - [4831] = 4238, - [4832] = 1062, - [4833] = 4241, - [4834] = 1064, - [4835] = 832, - [4836] = 873, - [4837] = 884, - [4838] = 886, - [4839] = 4608, - [4840] = 4756, - [4841] = 4822, - [4842] = 4618, - [4843] = 4608, - [4844] = 4608, - [4845] = 4608, - [4846] = 4608, - [4847] = 4238, - [4848] = 1062, - [4849] = 832, - [4850] = 873, - [4851] = 4241, - [4852] = 1064, - [4853] = 884, - [4854] = 886, - [4855] = 4608, - [4856] = 4608, - [4857] = 4608, - [4858] = 4608, - [4859] = 4608, - [4860] = 4608, - [4861] = 4608, - [4862] = 4608, - [4863] = 476, - [4864] = 4864, - [4865] = 4865, - [4866] = 4866, - [4867] = 1293, - [4868] = 1571, - [4869] = 4693, - [4870] = 4870, - [4871] = 1590, - [4872] = 1696, - [4873] = 4873, - [4874] = 1658, - [4875] = 4875, - [4876] = 1240, - [4877] = 4756, - [4878] = 4878, - [4879] = 1293, - [4880] = 4866, - [4881] = 4881, - [4882] = 4882, - [4883] = 4883, - [4884] = 4884, - [4885] = 4885, - [4886] = 4886, - [4887] = 4622, - [4888] = 1240, - [4889] = 4889, - [4890] = 4890, - [4891] = 4891, - [4892] = 4892, - [4893] = 4893, - [4894] = 4756, - [4895] = 4895, - [4896] = 1240, - [4897] = 4897, - [4898] = 4898, - [4899] = 1506, - [4900] = 498, - [4901] = 4822, - [4902] = 4618, - [4903] = 4875, - [4904] = 4904, - [4905] = 4878, - [4906] = 4885, - [4907] = 4756, - [4908] = 4822, - [4909] = 4618, - [4910] = 4889, - [4911] = 4904, - [4912] = 4912, - [4913] = 4892, - [4914] = 4895, - [4915] = 4915, - [4916] = 4916, - [4917] = 4917, - [4918] = 4915, - [4919] = 4622, - [4920] = 1381, - [4921] = 4724, - [4922] = 4693, - [4923] = 470, - [4924] = 473, - [4925] = 4916, - [4926] = 4750, + [4751] = 4743, + [4752] = 4661, + [4753] = 4661, + [4754] = 475, + [4755] = 4661, + [4756] = 4429, + [4757] = 4433, + [4758] = 4458, + [4759] = 495, + [4760] = 489, + [4761] = 4661, + [4762] = 1615, + [4763] = 4434, + [4764] = 4319, + [4765] = 487, + [4766] = 4661, + [4767] = 4661, + [4768] = 4661, + [4769] = 4445, + [4770] = 491, + [4771] = 4661, + [4772] = 4445, + [4773] = 502, + [4774] = 492, + [4775] = 4775, + [4776] = 493, + [4777] = 4311, + [4778] = 4778, + [4779] = 4661, + [4780] = 4780, + [4781] = 4429, + [4782] = 4661, + [4783] = 4690, + [4784] = 4661, + [4785] = 1574, + [4786] = 1620, + [4787] = 478, + [4788] = 4661, + [4789] = 493, + [4790] = 4661, + [4791] = 4791, + [4792] = 4792, + [4793] = 4669, + [4794] = 475, + [4795] = 476, + [4796] = 4796, + [4797] = 4797, + [4798] = 4661, + [4799] = 4799, + [4800] = 4800, + [4801] = 4801, + [4802] = 4801, + [4803] = 1064, + [4804] = 4303, + [4805] = 4661, + [4806] = 4780, + [4807] = 4320, + [4808] = 479, + [4809] = 4661, + [4810] = 478, + [4811] = 4775, + [4812] = 4661, + [4813] = 4792, + [4814] = 4661, + [4815] = 1586, + [4816] = 1588, + [4817] = 4796, + [4818] = 4433, + [4819] = 4797, + [4820] = 477, + [4821] = 4661, + [4822] = 4661, + [4823] = 1082, + [4824] = 4436, + [4825] = 4434, + [4826] = 4661, + [4827] = 4429, + [4828] = 479, + [4829] = 474, + [4830] = 4661, + [4831] = 489, + [4832] = 4661, + [4833] = 4303, + [4834] = 1121, + [4835] = 899, + [4836] = 902, + [4837] = 4305, + [4838] = 1128, + [4839] = 915, + [4840] = 916, + [4841] = 4661, + [4842] = 1586, + [4843] = 4661, + [4844] = 490, + [4845] = 4661, + [4846] = 4661, + [4847] = 481, + [4848] = 482, + [4849] = 4661, + [4850] = 4661, + [4851] = 4661, + [4852] = 4661, + [4853] = 1588, + [4854] = 4854, + [4855] = 4293, + [4856] = 4302, + [4857] = 4433, + [4858] = 474, + [4859] = 480, + [4860] = 4434, + [4861] = 4319, + [4862] = 4445, + [4863] = 1615, + [4864] = 4311, + [4865] = 485, + [4866] = 486, + [4867] = 4661, + [4868] = 4661, + [4869] = 4436, + [4870] = 487, + [4871] = 4320, + [4872] = 1054, + [4873] = 1056, + [4874] = 4303, + [4875] = 1121, + [4876] = 4305, + [4877] = 1128, + [4878] = 491, + [4879] = 899, + [4880] = 902, + [4881] = 915, + [4882] = 916, + [4883] = 492, + [4884] = 4661, + [4885] = 484, + [4886] = 502, + [4887] = 483, + [4888] = 4661, + [4889] = 1620, + [4890] = 4458, + [4891] = 4661, + [4892] = 488, + [4893] = 4661, + [4894] = 4303, + [4895] = 1121, + [4896] = 899, + [4897] = 902, + [4898] = 4305, + [4899] = 1128, + [4900] = 915, + [4901] = 916, + [4902] = 4902, + [4903] = 4661, + [4904] = 490, + [4905] = 4661, + [4906] = 4661, + [4907] = 4661, + [4908] = 4661, + [4909] = 4661, + [4910] = 4661, + [4911] = 1128, + [4912] = 4661, + [4913] = 4661, + [4914] = 4854, + [4915] = 480, + [4916] = 4661, + [4917] = 4661, + [4918] = 4661, + [4919] = 1128, + [4920] = 4920, + [4921] = 1286, + [4922] = 4922, + [4923] = 4697, + [4924] = 4732, + [4925] = 4775, + [4926] = 4664, [4927] = 4927, - [4928] = 4928, - [4929] = 1658, - [4930] = 4930, - [4931] = 4931, + [4928] = 4792, + [4929] = 4796, + [4930] = 4797, + [4931] = 4735, [4932] = 4932, - [4933] = 4890, - [4934] = 4864, - [4935] = 4822, + [4933] = 4796, + [4934] = 4934, + [4935] = 4797, [4936] = 4936, - [4937] = 4618, - [4938] = 4938, - [4939] = 1696, - [4940] = 4940, - [4941] = 4931, - [4942] = 4870, + [4937] = 4937, + [4938] = 4778, + [4939] = 4939, + [4940] = 4937, + [4941] = 1620, + [4942] = 4942, [4943] = 4943, - [4944] = 4928, + [4944] = 4944, [4945] = 4945, - [4946] = 4946, - [4947] = 4947, + [4946] = 4669, + [4947] = 4939, [4948] = 4948, - [4949] = 4949, - [4950] = 4631, + [4949] = 4932, + [4950] = 4920, [4951] = 4951, - [4952] = 4631, - [4953] = 4662, + [4952] = 1286, + [4953] = 1286, [4954] = 4954, [4955] = 4955, - [4956] = 4293, - [4957] = 4886, - [4958] = 4631, - [4959] = 4891, - [4960] = 4873, + [4956] = 4956, + [4957] = 4743, + [4958] = 4958, + [4959] = 4775, + [4960] = 4792, [4961] = 4961, - [4962] = 4962, - [4963] = 4724, - [4964] = 4717, - [4965] = 4940, - [4966] = 4932, - [4967] = 4938, - [4968] = 4884, - [4969] = 4865, - [4970] = 4955, - [4971] = 4945, + [4962] = 4922, + [4963] = 4961, + [4964] = 4927, + [4965] = 4740, + [4966] = 4966, + [4967] = 4792, + [4968] = 4796, + [4969] = 4797, + [4970] = 4712, + [4971] = 4971, [4972] = 4972, [4973] = 4973, - [4974] = 4883, - [4975] = 4893, - [4976] = 4936, - [4977] = 4689, - [4978] = 4945, - [4979] = 4625, - [4980] = 4668, - [4981] = 4943, - [4982] = 4982, - [4983] = 4972, - [4984] = 4882, - [4985] = 4930, - [4986] = 4947, - [4987] = 1658, - [4988] = 4948, - [4989] = 4891, - [4990] = 493, - [4991] = 1696, - [4992] = 4881, - [4993] = 4940, - [4994] = 4881, - [4995] = 4681, - [4996] = 4996, - [4997] = 1293, - [4998] = 4949, - [4999] = 4642, - [5000] = 4689, - [5001] = 4917, - [5002] = 4973, - [5003] = 4982, - [5004] = 4238, - [5005] = 1062, - [5006] = 832, - [5007] = 873, - [5008] = 4241, - [5009] = 1064, - [5010] = 884, - [5011] = 886, - [5012] = 4693, - [5013] = 4946, - [5014] = 4951, - [5015] = 4724, - [5016] = 4407, - [5017] = 4912, - [5018] = 4954, - [5019] = 4309, - [5020] = 4961, - [5021] = 4373, - [5022] = 4689, - [5023] = 4676, - [5024] = 4381, - [5025] = 4962, - [5026] = 4710, - [5027] = 4265, - [5028] = 4897, - [5029] = 4898, - [5030] = 4622, - [5031] = 4735, - [5032] = 4266, - [5033] = 4996, - [5034] = 4864, - [5035] = 4982, - [5036] = 4724, - [5037] = 4717, - [5038] = 4917, - [5039] = 5039, - [5040] = 4866, - [5041] = 470, - [5042] = 4936, - [5043] = 4875, - [5044] = 4932, - [5045] = 4878, - [5046] = 4885, - [5047] = 4889, - [5048] = 4892, - [5049] = 4938, - [5050] = 473, - [5051] = 4895, - [5052] = 4915, - [5053] = 4916, - [5054] = 4931, - [5055] = 4886, - [5056] = 4873, - [5057] = 4961, - [5058] = 4962, - [5059] = 4865, - [5060] = 4972, - [5061] = 4973, - [5062] = 4946, - [5063] = 4951, - [5064] = 4943, - [5065] = 4928, - [5066] = 4622, - [5067] = 4955, - [5068] = 4676, - [5069] = 4676, - [5070] = 4996, - [5071] = 4717, - [5072] = 4897, - [5073] = 4898, - [5074] = 4822, - [5075] = 4681, - [5076] = 498, - [5077] = 4681, - [5078] = 4735, - [5079] = 4735, - [5080] = 5080, - [5081] = 4893, - [5082] = 470, - [5083] = 473, - [5084] = 1658, - [5085] = 471, - [5086] = 4735, - [5087] = 472, - [5088] = 4882, - [5089] = 4883, - [5090] = 4884, - [5091] = 471, - [5092] = 471, - [5093] = 5093, - [5094] = 4676, - [5095] = 1696, - [5096] = 4681, - [5097] = 4870, - [5098] = 4224, - [5099] = 4947, - [5100] = 4221, - [5101] = 4631, - [5102] = 4689, - [5103] = 4954, - [5104] = 4948, - [5105] = 4693, - [5106] = 4717, - [5107] = 1293, - [5108] = 1081, - [5109] = 5109, - [5110] = 4618, - [5111] = 4949, - [5112] = 4904, - [5113] = 4912, - [5114] = 4756, - [5115] = 471, - [5116] = 4890, - [5117] = 471, - [5118] = 4930, - [5119] = 1082, - [5120] = 1240, - [5121] = 4238, - [5122] = 5122, - [5123] = 481, - [5124] = 1062, - [5125] = 5125, - [5126] = 475, - [5127] = 5127, - [5128] = 5128, - [5129] = 5129, - [5130] = 472, - [5131] = 5131, - [5132] = 4681, - [5133] = 4221, - [5134] = 4250, - [5135] = 4735, + [4974] = 4974, + [4975] = 4975, + [4976] = 4972, + [4977] = 4977, + [4978] = 4978, + [4979] = 4979, + [4980] = 4980, + [4981] = 4981, + [4982] = 4974, + [4983] = 4983, + [4984] = 4690, + [4985] = 4975, + [4986] = 4979, + [4987] = 4980, + [4988] = 4981, + [4989] = 4983, + [4990] = 4990, + [4991] = 4990, + [4992] = 4992, + [4993] = 4992, + [4994] = 4780, + [4995] = 4693, + [4996] = 4942, + [4997] = 4997, + [4998] = 4943, + [4999] = 4999, + [5000] = 5000, + [5001] = 5001, + [5002] = 5002, + [5003] = 5003, + [5004] = 5004, + [5005] = 5005, + [5006] = 5006, + [5007] = 5007, + [5008] = 4955, + [5009] = 4978, + [5010] = 5007, + [5011] = 4954, + [5012] = 4801, + [5013] = 5013, + [5014] = 5014, + [5015] = 5015, + [5016] = 1615, + [5017] = 4948, + [5018] = 5015, + [5019] = 4934, + [5020] = 4973, + [5021] = 1620, + [5022] = 5013, + [5023] = 1586, + [5024] = 4775, + [5025] = 1588, + [5026] = 5026, + [5027] = 4971, + [5028] = 4944, + [5029] = 1620, + [5030] = 5030, + [5031] = 4732, + [5032] = 5030, + [5033] = 4951, + [5034] = 1283, + [5035] = 4740, + [5036] = 5036, + [5037] = 4966, + [5038] = 4997, + [5039] = 5003, + [5040] = 4958, + [5041] = 5006, + [5042] = 4999, + [5043] = 5001, + [5044] = 4690, + [5045] = 4303, + [5046] = 1121, + [5047] = 899, + [5048] = 902, + [5049] = 4305, + [5050] = 502, + [5051] = 915, + [5052] = 916, + [5053] = 4977, + [5054] = 4955, + [5055] = 4978, + [5056] = 5000, + [5057] = 5026, + [5058] = 4436, + [5059] = 4854, + [5060] = 4429, + [5061] = 4433, + [5062] = 4434, + [5063] = 4319, + [5064] = 4445, + [5065] = 4311, + [5066] = 4690, + [5067] = 4936, + [5068] = 4693, + [5069] = 4958, + [5070] = 4732, + [5071] = 495, + [5072] = 1435, + [5073] = 4740, + [5074] = 4956, + [5075] = 470, + [5076] = 473, + [5077] = 1283, + [5078] = 1615, + [5079] = 1615, + [5080] = 1574, + [5081] = 4945, + [5082] = 1283, + [5083] = 5002, + [5084] = 5004, + [5085] = 5005, + [5086] = 5014, + [5087] = 4693, + [5088] = 4977, + [5089] = 5030, + [5090] = 5007, + [5091] = 1620, + [5092] = 4979, + [5093] = 4980, + [5094] = 470, + [5095] = 473, + [5096] = 4981, + [5097] = 4945, + [5098] = 4983, + [5099] = 472, + [5100] = 4932, + [5101] = 4990, + [5102] = 4992, + [5103] = 4732, + [5104] = 1027, + [5105] = 5000, + [5106] = 4664, + [5107] = 4775, + [5108] = 4778, + [5109] = 5002, + [5110] = 4792, + [5111] = 4796, + [5112] = 4797, + [5113] = 5004, + [5114] = 1097, + [5115] = 5005, + [5116] = 4664, + [5117] = 4712, + [5118] = 5118, + [5119] = 5119, + [5120] = 4735, + [5121] = 5001, + [5122] = 4740, + [5123] = 4939, + [5124] = 5014, + [5125] = 5015, + [5126] = 4954, + [5127] = 4948, + [5128] = 4934, + [5129] = 4973, + [5130] = 470, + [5131] = 473, + [5132] = 471, + [5133] = 4975, + [5134] = 4712, + [5135] = 4943, [5136] = 5136, - [5137] = 5137, - [5138] = 5138, - [5139] = 4221, - [5140] = 5140, - [5141] = 5141, - [5142] = 471, - [5143] = 5143, - [5144] = 5144, - [5145] = 477, - [5146] = 886, - [5147] = 4224, - [5148] = 5148, - [5149] = 471, - [5150] = 5150, - [5151] = 470, - [5152] = 5152, - [5153] = 473, - [5154] = 5154, - [5155] = 5155, - [5156] = 470, - [5157] = 473, - [5158] = 476, - [5159] = 5159, - [5160] = 5160, - [5161] = 5125, - [5162] = 5154, - [5163] = 5159, - [5164] = 480, - [5165] = 873, - [5166] = 5129, - [5167] = 5160, - [5168] = 5140, - [5169] = 5169, - [5170] = 884, - [5171] = 4254, - [5172] = 482, - [5173] = 5141, - [5174] = 5174, - [5175] = 5175, - [5176] = 5176, - [5177] = 483, + [5137] = 5013, + [5138] = 4693, + [5139] = 4999, + [5140] = 4735, + [5141] = 1286, + [5142] = 5142, + [5143] = 502, + [5144] = 4961, + [5145] = 4971, + [5146] = 4936, + [5147] = 1283, + [5148] = 4966, + [5149] = 4664, + [5150] = 4922, + [5151] = 4927, + [5152] = 1615, + [5153] = 4956, + [5154] = 5006, + [5155] = 4997, + [5156] = 4735, + [5157] = 4778, + [5158] = 5026, + [5159] = 4942, + [5160] = 471, + [5161] = 5161, + [5162] = 5003, + [5163] = 4937, + [5164] = 471, + [5165] = 4690, + [5166] = 4778, + [5167] = 4944, + [5168] = 471, + [5169] = 4712, + [5170] = 4268, + [5171] = 4951, + [5172] = 4972, + [5173] = 4271, + [5174] = 471, + [5175] = 4974, + [5176] = 4920, + [5177] = 899, [5178] = 484, [5179] = 5179, - [5180] = 5140, - [5181] = 5169, - [5182] = 4241, - [5183] = 5159, - [5184] = 5184, - [5185] = 4254, - [5186] = 5186, - [5187] = 832, - [5188] = 5141, - [5189] = 5174, - [5190] = 491, - [5191] = 5175, - [5192] = 5176, - [5193] = 479, + [5180] = 5180, + [5181] = 5181, + [5182] = 5182, + [5183] = 488, + [5184] = 4271, + [5185] = 5185, + [5186] = 471, + [5187] = 5187, + [5188] = 4278, + [5189] = 5189, + [5190] = 5190, + [5191] = 5191, + [5192] = 5192, + [5193] = 5193, [5194] = 5194, - [5195] = 5160, - [5196] = 485, - [5197] = 488, + [5195] = 5195, + [5196] = 5196, + [5197] = 5197, [5198] = 5198, - [5199] = 5199, - [5200] = 5200, - [5201] = 471, - [5202] = 492, + [5199] = 4303, + [5200] = 1121, + [5201] = 5201, + [5202] = 5202, [5203] = 5203, - [5204] = 478, - [5205] = 5179, - [5206] = 5174, - [5207] = 486, - [5208] = 5154, - [5209] = 490, - [5210] = 5210, - [5211] = 471, - [5212] = 5212, - [5213] = 4238, - [5214] = 487, - [5215] = 474, - [5216] = 5216, - [5217] = 5210, - [5218] = 5125, - [5219] = 5219, - [5220] = 5210, - [5221] = 5175, - [5222] = 5222, - [5223] = 5143, + [5204] = 5204, + [5205] = 493, + [5206] = 5206, + [5207] = 4278, + [5208] = 4288, + [5209] = 4305, + [5210] = 1128, + [5211] = 475, + [5212] = 476, + [5213] = 478, + [5214] = 5214, + [5215] = 5215, + [5216] = 477, + [5217] = 471, + [5218] = 470, + [5219] = 473, + [5220] = 470, + [5221] = 473, + [5222] = 479, + [5223] = 474, [5224] = 489, - [5225] = 5225, - [5226] = 470, + [5225] = 471, + [5226] = 5226, [5227] = 5227, [5228] = 5228, - [5229] = 4250, - [5230] = 4232, + [5229] = 4271, + [5230] = 490, [5231] = 5231, - [5232] = 4230, - [5233] = 1053, - [5234] = 1054, - [5235] = 5143, - [5236] = 1062, - [5237] = 4241, - [5238] = 1064, - [5239] = 832, - [5240] = 873, - [5241] = 884, - [5242] = 886, - [5243] = 5243, - [5244] = 5176, - [5245] = 5169, - [5246] = 473, + [5232] = 5232, + [5233] = 899, + [5234] = 902, + [5235] = 5235, + [5236] = 915, + [5237] = 916, + [5238] = 5238, + [5239] = 4268, + [5240] = 5240, + [5241] = 4288, + [5242] = 487, + [5243] = 491, + [5244] = 492, + [5245] = 5197, + [5246] = 5246, [5247] = 5247, - [5248] = 5129, - [5249] = 1064, - [5250] = 5179, - [5251] = 5251, - [5252] = 5252, - [5253] = 5253, - [5254] = 5254, - [5255] = 4250, - [5256] = 4241, - [5257] = 884, - [5258] = 886, - [5259] = 4238, - [5260] = 5260, - [5261] = 1062, - [5262] = 1053, - [5263] = 1064, - [5264] = 1054, + [5248] = 5248, + [5249] = 5249, + [5250] = 5189, + [5251] = 5190, + [5252] = 5191, + [5253] = 5192, + [5254] = 5193, + [5255] = 5194, + [5256] = 5195, + [5257] = 5196, + [5258] = 5198, + [5259] = 5203, + [5260] = 5204, + [5261] = 5206, + [5262] = 5262, + [5263] = 5263, + [5264] = 5264, [5265] = 5265, - [5266] = 5266, - [5267] = 5267, - [5268] = 1339, - [5269] = 4241, - [5270] = 1064, - [5271] = 5271, - [5272] = 5272, + [5266] = 5189, + [5267] = 5190, + [5268] = 4735, + [5269] = 5191, + [5270] = 4712, + [5271] = 5192, + [5272] = 5193, [5273] = 5273, - [5274] = 5274, - [5275] = 5275, - [5276] = 5276, - [5277] = 5277, - [5278] = 5278, - [5279] = 4265, - [5280] = 5280, - [5281] = 5281, - [5282] = 5282, - [5283] = 5283, - [5284] = 5265, - [5285] = 5265, - [5286] = 4230, - [5287] = 5287, - [5288] = 5265, - [5289] = 5289, - [5290] = 5290, + [5274] = 5194, + [5275] = 5195, + [5276] = 5197, + [5277] = 5196, + [5278] = 5198, + [5279] = 5203, + [5280] = 5204, + [5281] = 5206, + [5282] = 5238, + [5283] = 480, + [5284] = 471, + [5285] = 470, + [5286] = 481, + [5287] = 473, + [5288] = 482, + [5289] = 472, + [5290] = 483, [5291] = 5291, - [5292] = 5292, - [5293] = 5293, - [5294] = 5294, - [5295] = 4254, - [5296] = 5296, - [5297] = 4407, - [5298] = 4309, - [5299] = 4373, - [5300] = 4381, - [5301] = 4265, - [5302] = 4266, - [5303] = 4293, - [5304] = 5304, - [5305] = 5265, - [5306] = 493, - [5307] = 5307, + [5292] = 485, + [5293] = 486, + [5294] = 4293, + [5295] = 4302, + [5296] = 1054, + [5297] = 1056, + [5298] = 4303, + [5299] = 1121, + [5300] = 4305, + [5301] = 1128, + [5302] = 902, + [5303] = 915, + [5304] = 916, + [5305] = 5238, + [5306] = 5306, + [5307] = 1121, [5308] = 5308, - [5309] = 1343, + [5309] = 5309, [5310] = 5310, [5311] = 5311, [5312] = 5312, - [5313] = 5313, - [5314] = 5314, - [5315] = 5315, - [5316] = 5316, - [5317] = 5317, + [5313] = 1392, + [5314] = 477, + [5315] = 479, + [5316] = 1064, + [5317] = 4288, [5318] = 5318, - [5319] = 5319, + [5319] = 474, [5320] = 5320, - [5321] = 5265, - [5322] = 470, - [5323] = 473, - [5324] = 1381, - [5325] = 5265, + [5321] = 489, + [5322] = 5322, + [5323] = 1082, + [5324] = 488, + [5325] = 4293, [5326] = 5326, [5327] = 5327, - [5328] = 4238, - [5329] = 1062, + [5328] = 5328, + [5329] = 5329, [5330] = 5330, - [5331] = 5331, - [5332] = 5332, - [5333] = 5333, + [5331] = 4319, + [5332] = 4303, + [5333] = 495, [5334] = 5334, - [5335] = 873, + [5335] = 5335, [5336] = 5336, - [5337] = 473, - [5338] = 5338, - [5339] = 472, - [5340] = 1088, + [5337] = 4305, + [5338] = 1128, + [5339] = 5339, + [5340] = 484, [5341] = 5341, [5342] = 5342, - [5343] = 5265, - [5344] = 476, - [5345] = 5345, - [5346] = 478, - [5347] = 475, - [5348] = 479, - [5349] = 480, - [5350] = 5350, - [5351] = 481, - [5352] = 477, - [5353] = 470, - [5354] = 473, - [5355] = 493, - [5356] = 472, - [5357] = 832, - [5358] = 873, - [5359] = 1093, - [5360] = 482, - [5361] = 483, - [5362] = 484, - [5363] = 485, - [5364] = 486, - [5365] = 487, - [5366] = 474, - [5367] = 489, - [5368] = 490, - [5369] = 4407, - [5370] = 491, - [5371] = 488, - [5372] = 492, + [5343] = 5343, + [5344] = 4436, + [5345] = 4302, + [5346] = 5346, + [5347] = 470, + [5348] = 5348, + [5349] = 5343, + [5350] = 5343, + [5351] = 473, + [5352] = 490, + [5353] = 5353, + [5354] = 5354, + [5355] = 5355, + [5356] = 5356, + [5357] = 5357, + [5358] = 472, + [5359] = 4429, + [5360] = 5360, + [5361] = 5361, + [5362] = 4433, + [5363] = 5363, + [5364] = 4434, + [5365] = 4319, + [5366] = 4445, + [5367] = 4311, + [5368] = 5368, + [5369] = 5369, + [5370] = 1394, + [5371] = 5343, + [5372] = 5372, [5373] = 5373, - [5374] = 5374, - [5375] = 884, - [5376] = 886, - [5377] = 4232, + [5374] = 487, + [5375] = 491, + [5376] = 492, + [5377] = 5377, [5378] = 5378, [5379] = 5379, - [5380] = 471, - [5381] = 470, - [5382] = 473, + [5380] = 5380, + [5381] = 5381, + [5382] = 5382, [5383] = 5383, - [5384] = 472, - [5385] = 5385, + [5384] = 5343, + [5385] = 4436, [5386] = 5386, [5387] = 5387, [5388] = 5388, [5389] = 5389, [5390] = 5390, - [5391] = 4238, - [5392] = 1062, - [5393] = 832, - [5394] = 873, - [5395] = 4241, - [5396] = 1064, - [5397] = 884, - [5398] = 886, - [5399] = 5399, + [5391] = 5391, + [5392] = 470, + [5393] = 5393, + [5394] = 473, + [5395] = 5395, + [5396] = 5396, + [5397] = 5397, + [5398] = 5398, + [5399] = 470, [5400] = 5400, - [5401] = 832, - [5402] = 5402, + [5401] = 4305, + [5402] = 471, [5403] = 470, - [5404] = 488, - [5405] = 491, - [5406] = 4373, - [5407] = 1093, - [5408] = 1339, - [5409] = 4266, - [5410] = 4381, - [5411] = 5411, - [5412] = 487, - [5413] = 474, - [5414] = 488, - [5415] = 492, - [5416] = 481, - [5417] = 493, - [5418] = 480, + [5404] = 473, + [5405] = 473, + [5406] = 1128, + [5407] = 5407, + [5408] = 5408, + [5409] = 5409, + [5410] = 472, + [5411] = 5343, + [5412] = 5412, + [5413] = 5343, + [5414] = 5414, + [5415] = 899, + [5416] = 902, + [5417] = 899, + [5418] = 902, [5419] = 5419, - [5420] = 491, - [5421] = 832, - [5422] = 492, - [5423] = 873, - [5424] = 884, - [5425] = 886, - [5426] = 486, - [5427] = 483, - [5428] = 4238, + [5420] = 480, + [5421] = 493, + [5422] = 495, + [5423] = 475, + [5424] = 481, + [5425] = 482, + [5426] = 5426, + [5427] = 5343, + [5428] = 483, [5429] = 5429, - [5430] = 476, - [5431] = 1062, - [5432] = 478, - [5433] = 475, - [5434] = 489, - [5435] = 1339, - [5436] = 479, - [5437] = 480, - [5438] = 481, - [5439] = 5439, - [5440] = 477, - [5441] = 485, - [5442] = 490, - [5443] = 493, - [5444] = 486, - [5445] = 483, - [5446] = 4309, - [5447] = 476, - [5448] = 498, - [5449] = 478, - [5450] = 475, - [5451] = 479, - [5452] = 484, - [5453] = 1064, - [5454] = 480, - [5455] = 482, - [5456] = 483, - [5457] = 489, - [5458] = 484, - [5459] = 1088, - [5460] = 485, - [5461] = 486, - [5462] = 487, + [5430] = 915, + [5431] = 916, + [5432] = 485, + [5433] = 915, + [5434] = 916, + [5435] = 1435, + [5436] = 1054, + [5437] = 486, + [5438] = 4303, + [5439] = 1121, + [5440] = 1056, + [5441] = 476, + [5442] = 5442, + [5443] = 4303, + [5444] = 1121, + [5445] = 899, + [5446] = 902, + [5447] = 4305, + [5448] = 1128, + [5449] = 915, + [5450] = 916, + [5451] = 4278, + [5452] = 5452, + [5453] = 5453, + [5454] = 5454, + [5455] = 5455, + [5456] = 5456, + [5457] = 472, + [5458] = 478, + [5459] = 5459, + [5460] = 5460, + [5461] = 5461, + [5462] = 474, [5463] = 474, - [5464] = 489, - [5465] = 493, - [5466] = 481, - [5467] = 490, - [5468] = 477, - [5469] = 5469, - [5470] = 491, - [5471] = 488, - [5472] = 492, - [5473] = 4407, - [5474] = 1314, - [5475] = 470, - [5476] = 473, - [5477] = 472, - [5478] = 5478, - [5479] = 477, - [5480] = 485, - [5481] = 1093, - [5482] = 1343, - [5483] = 482, - [5484] = 484, - [5485] = 490, - [5486] = 478, - [5487] = 475, - [5488] = 4293, - [5489] = 482, - [5490] = 479, - [5491] = 487, - [5492] = 474, - [5493] = 476, - [5494] = 4265, - [5495] = 498, - [5496] = 1088, - [5497] = 1343, - [5498] = 4241, - [5499] = 484, - [5500] = 5500, - [5501] = 483, - [5502] = 5502, - [5503] = 5502, - [5504] = 482, - [5505] = 1339, - [5506] = 1293, - [5507] = 5502, - [5508] = 5508, - [5509] = 5508, - [5510] = 498, - [5511] = 491, - [5512] = 488, - [5513] = 492, - [5514] = 485, - [5515] = 498, - [5516] = 464, - [5517] = 465, - [5518] = 1343, - [5519] = 493, - [5520] = 1240, - [5521] = 498, - [5522] = 490, - [5523] = 471, - [5524] = 5508, + [5464] = 4429, + [5465] = 479, + [5466] = 474, + [5467] = 480, + [5468] = 1064, + [5469] = 485, + [5470] = 486, + [5471] = 5471, + [5472] = 1082, + [5473] = 484, + [5474] = 483, + [5475] = 1364, + [5476] = 488, + [5477] = 489, + [5478] = 495, + [5479] = 495, + [5480] = 475, + [5481] = 489, + [5482] = 478, + [5483] = 490, + [5484] = 477, + [5485] = 487, + [5486] = 491, + [5487] = 492, + [5488] = 4436, + [5489] = 4303, + [5490] = 1121, + [5491] = 4445, + [5492] = 484, + [5493] = 493, + [5494] = 483, + [5495] = 476, + [5496] = 490, + [5497] = 4305, + [5498] = 1128, + [5499] = 488, + [5500] = 4433, + [5501] = 4434, + [5502] = 479, + [5503] = 5503, + [5504] = 5504, + [5505] = 1392, + [5506] = 5506, + [5507] = 1394, + [5508] = 487, + [5509] = 491, + [5510] = 492, + [5511] = 480, + [5512] = 5512, + [5513] = 4319, + [5514] = 481, + [5515] = 482, + [5516] = 480, + [5517] = 502, + [5518] = 483, + [5519] = 481, + [5520] = 482, + [5521] = 1394, + [5522] = 485, + [5523] = 475, + [5524] = 489, [5525] = 478, - [5526] = 475, - [5527] = 5502, - [5528] = 5508, - [5529] = 476, - [5530] = 486, - [5531] = 479, - [5532] = 480, - [5533] = 1088, - [5534] = 4681, - [5535] = 4735, - [5536] = 481, - [5537] = 1658, - [5538] = 487, - [5539] = 474, - [5540] = 477, - [5541] = 1696, - [5542] = 1093, - [5543] = 489, - [5544] = 5508, - [5545] = 5545, - [5546] = 5502, - [5547] = 4917, - [5548] = 4961, - [5549] = 4962, - [5550] = 4865, - [5551] = 832, - [5552] = 873, - [5553] = 4972, - [5554] = 1571, - [5555] = 4973, - [5556] = 4866, - [5557] = 5557, - [5558] = 5557, - [5559] = 1293, - [5560] = 4822, - [5561] = 4668, - [5562] = 470, - [5563] = 473, - [5564] = 4254, - [5565] = 4724, - [5566] = 472, - [5567] = 5557, - [5568] = 4875, - [5569] = 4241, - [5570] = 1064, - [5571] = 4946, - [5572] = 4878, - [5573] = 4681, - [5574] = 1696, - [5575] = 4885, - [5576] = 1506, - [5577] = 4662, - [5578] = 5557, - [5579] = 4756, - [5580] = 4954, - [5581] = 4931, - [5582] = 1658, - [5583] = 4735, - [5584] = 1590, - [5585] = 4710, - [5586] = 5557, - [5587] = 4889, - [5588] = 4618, - [5589] = 884, - [5590] = 1240, - [5591] = 886, - [5592] = 4886, - [5593] = 5557, - [5594] = 5557, - [5595] = 4631, - [5596] = 4238, - [5597] = 4892, - [5598] = 4642, - [5599] = 4895, - [5600] = 4915, - [5601] = 4916, - [5602] = 4693, - [5603] = 4622, - [5604] = 4750, - [5605] = 1658, - [5606] = 5557, - [5607] = 1240, - [5608] = 4625, - [5609] = 1062, - [5610] = 1293, - [5611] = 4689, - [5612] = 1696, - [5613] = 5557, - [5614] = 498, - [5615] = 4873, - [5616] = 4951, - [5617] = 1339, - [5618] = 480, - [5619] = 474, - [5620] = 4689, - [5621] = 4973, - [5622] = 4954, - [5623] = 481, - [5624] = 4931, - [5625] = 490, - [5626] = 4904, - [5627] = 477, - [5628] = 4893, - [5629] = 487, - [5630] = 4946, - [5631] = 493, - [5632] = 4693, - [5633] = 4822, - [5634] = 4951, - [5635] = 4886, - [5636] = 491, - [5637] = 4870, - [5638] = 1343, - [5639] = 4895, - [5640] = 4873, - [5641] = 4961, - [5642] = 4982, - [5643] = 482, - [5644] = 4885, - [5645] = 4962, - [5646] = 4865, - [5647] = 4943, - [5648] = 4949, - [5649] = 1293, - [5650] = 4947, - [5651] = 485, - [5652] = 4866, - [5653] = 1093, - [5654] = 4948, - [5655] = 4972, - [5656] = 4890, - [5657] = 478, - [5658] = 475, - [5659] = 4930, - [5660] = 492, - [5661] = 4631, - [5662] = 4618, - [5663] = 4936, - [5664] = 4875, - [5665] = 4932, - [5666] = 4915, - [5667] = 4889, - [5668] = 4938, - [5669] = 4878, - [5670] = 1088, - [5671] = 476, - [5672] = 4724, - [5673] = 4916, - [5674] = 4955, - [5675] = 4884, - [5676] = 4892, - [5677] = 4756, - [5678] = 483, - [5679] = 4928, - [5680] = 1240, - [5681] = 4917, - [5682] = 4897, - [5683] = 4912, - [5684] = 4996, - [5685] = 4898, - [5686] = 489, - [5687] = 486, - [5688] = 484, - [5689] = 1696, - [5690] = 4882, - [5691] = 488, - [5692] = 1658, - [5693] = 479, - [5694] = 4883, - [5695] = 4622, - [5696] = 4864, - [5697] = 5697, - [5698] = 464, - [5699] = 498, - [5700] = 465, - [5701] = 5701, - [5702] = 5702, - [5703] = 5703, - [5704] = 1293, - [5705] = 5702, - [5706] = 5703, - [5707] = 5703, - [5708] = 5702, - [5709] = 1696, - [5710] = 5703, - [5711] = 5702, - [5712] = 5703, - [5713] = 1240, - [5714] = 5702, - [5715] = 5702, - [5716] = 5703, - [5717] = 5703, - [5718] = 5703, - [5719] = 5702, - [5720] = 5702, - [5721] = 5703, - [5722] = 5702, - [5723] = 5702, - [5724] = 5703, - [5725] = 5702, - [5726] = 5703, - [5727] = 5703, - [5728] = 5702, - [5729] = 5703, - [5730] = 5703, - [5731] = 5702, - [5732] = 5702, - [5733] = 5702, - [5734] = 5703, - [5735] = 5702, - [5736] = 5703, - [5737] = 5703, - [5738] = 5702, - [5739] = 5703, - [5740] = 5703, - [5741] = 5703, - [5742] = 5702, - [5743] = 5702, - [5744] = 5703, - [5745] = 5703, - [5746] = 5702, - [5747] = 5702, - [5748] = 5702, - [5749] = 5703, - [5750] = 5703, - [5751] = 5702, - [5752] = 5702, - [5753] = 5702, - [5754] = 5754, - [5755] = 5703, - [5756] = 5703, - [5757] = 5702, - [5758] = 5702, - [5759] = 5703, - [5760] = 5703, - [5761] = 5702, - [5762] = 5702, - [5763] = 5703, - [5764] = 5703, - [5765] = 5703, - [5766] = 5702, - [5767] = 5702, - [5768] = 5703, - [5769] = 5703, - [5770] = 5702, - [5771] = 5702, - [5772] = 5703, - [5773] = 5703, - [5774] = 5703, - [5775] = 5702, - [5776] = 5703, - [5777] = 5702, - [5778] = 5702, - [5779] = 5703, - [5780] = 5703, - [5781] = 5702, - [5782] = 5702, - [5783] = 5702, - [5784] = 5703, - [5785] = 5703, - [5786] = 5702, - [5787] = 5702, - [5788] = 5703, - [5789] = 5703, - [5790] = 5702, - [5791] = 5703, - [5792] = 5703, - [5793] = 5702, - [5794] = 5702, - [5795] = 5703, - [5796] = 5702, - [5797] = 5703, - [5798] = 5703, - [5799] = 5702, - [5800] = 5702, - [5801] = 5703, - [5802] = 5702, - [5803] = 5703, - [5804] = 5703, - [5805] = 5702, - [5806] = 5702, - [5807] = 5702, - [5808] = 5703, - [5809] = 5703, - [5810] = 5702, - [5811] = 5703, - [5812] = 5702, - [5813] = 5703, - [5814] = 5702, - [5815] = 5703, - [5816] = 5703, - [5817] = 5703, - [5818] = 5702, - [5819] = 5703, - [5820] = 5702, - [5821] = 5702, - [5822] = 5703, - [5823] = 5703, - [5824] = 5702, - [5825] = 5702, - [5826] = 5703, - [5827] = 5703, - [5828] = 5702, - [5829] = 5702, - [5830] = 5702, - [5831] = 5703, - [5832] = 5702, - [5833] = 5703, - [5834] = 5703, - [5835] = 5702, - [5836] = 1658, - [5837] = 5703, - [5838] = 5703, - [5839] = 5703, - [5840] = 5702, - [5841] = 5703, - [5842] = 5702, - [5843] = 5703, - [5844] = 5702, - [5845] = 5702, - [5846] = 5702, - [5847] = 5703, - [5848] = 5702, - [5849] = 5703, - [5850] = 5702, - [5851] = 5703, - [5852] = 5702, - [5853] = 5703, - [5854] = 5702, - [5855] = 5703, - [5856] = 5702, - [5857] = 5702, - [5858] = 5703, - [5859] = 5702, - [5860] = 5703, - [5861] = 5702, - [5862] = 5702, - [5863] = 5703, - [5864] = 5702, - [5865] = 5865, - [5866] = 5865, - [5867] = 5865, - [5868] = 5865, - [5869] = 5869, - [5870] = 5865, - [5871] = 5869, - [5872] = 5865, - [5873] = 5869, - [5874] = 5869, - [5875] = 5875, - [5876] = 5875, - [5877] = 5869, - [5878] = 5865, - [5879] = 5865, - [5880] = 5869, - [5881] = 5869, - [5882] = 5875, - [5883] = 5865, - [5884] = 5875, - [5885] = 5869, - [5886] = 5865, - [5887] = 5865, - [5888] = 5869, - [5889] = 5869, - [5890] = 5875, - [5891] = 5875, - [5892] = 5875, - [5893] = 5865, - [5894] = 5865, - [5895] = 5869, - [5896] = 5869, - [5897] = 5875, - [5898] = 5869, - [5899] = 5875, - [5900] = 5869, - [5901] = 5869, - [5902] = 5865, - [5903] = 5865, - [5904] = 5875, - [5905] = 5875, - [5906] = 5869, - [5907] = 5869, - [5908] = 5875, - [5909] = 5875, - [5910] = 5865, - [5911] = 5865, - [5912] = 5869, - [5913] = 5875, - [5914] = 5875, - [5915] = 5869, - [5916] = 5865, - [5917] = 5875, - [5918] = 5865, - [5919] = 5869, - [5920] = 5875, - [5921] = 5869, - [5922] = 5875, - [5923] = 5875, - [5924] = 5869, - [5925] = 5865, - [5926] = 5875, - [5927] = 5875, - [5928] = 5869, - [5929] = 5865, - [5930] = 5865, - [5931] = 5875, - [5932] = 5875, - [5933] = 5869, - [5934] = 5869, - [5935] = 5869, - [5936] = 5875, - [5937] = 5875, - [5938] = 5869, - [5939] = 5875, - [5940] = 5869, - [5941] = 5869, - [5942] = 5865, - [5943] = 5869, - [5944] = 5865, - [5945] = 5875, - [5946] = 5875, - [5947] = 5869, - [5948] = 5869, - [5949] = 5869, - [5950] = 5869, - [5951] = 5869, - [5952] = 5875, - [5953] = 5875, - [5954] = 5875, - [5955] = 5875, - [5956] = 5865, - [5957] = 5875, - [5958] = 5869, - [5959] = 5865, - [5960] = 5865, - [5961] = 5865, - [5962] = 5875, - [5963] = 5875, - [5964] = 5869, - [5965] = 5865, - [5966] = 5875, - [5967] = 5869, - [5968] = 5865, - [5969] = 5869, - [5970] = 5869, - [5971] = 5865, - [5972] = 5875, - [5973] = 5875, - [5974] = 5865, - [5975] = 5869, - [5976] = 5869, - [5977] = 5875, - [5978] = 5875, - [5979] = 5869, - [5980] = 5869, - [5981] = 5869, - [5982] = 5875, - [5983] = 5875, - [5984] = 5869, - [5985] = 5865, - [5986] = 5865, - [5987] = 5865, - [5988] = 5869, - [5989] = 5869, - [5990] = 5869, - [5991] = 5869, - [5992] = 5875, - [5993] = 5875, - [5994] = 5875, - [5995] = 5865, - [5996] = 5869, - [5997] = 5875, - [5998] = 5869, - [5999] = 5869, - [6000] = 5875, - [6001] = 5869, - [6002] = 5875, - [6003] = 5865, - [6004] = 5875, - [6005] = 5865, - [6006] = 5865, - [6007] = 5869, - [6008] = 5875, - [6009] = 5865, - [6010] = 5875, - [6011] = 5875, - [6012] = 5865, - [6013] = 5865, - [6014] = 5869, - [6015] = 5865, - [6016] = 5869, - [6017] = 5865, - [6018] = 5865, - [6019] = 5875, - [6020] = 5865, - [6021] = 5869, - [6022] = 5865, - [6023] = 5869, - [6024] = 5869, - [6025] = 5875, - [6026] = 5875, - [6027] = 5865, - [6028] = 5875, - [6029] = 5869, - [6030] = 5865, - [6031] = 5875, - [6032] = 5865, - [6033] = 5865, - [6034] = 5875, - [6035] = 5869, - [6036] = 5869, - [6037] = 5865, - [6038] = 5875, - [6039] = 5865, - [6040] = 5875, - [6041] = 5869, - [6042] = 5875, - [6043] = 5869, - [6044] = 5869, - [6045] = 5865, - [6046] = 5875, - [6047] = 5869, - [6048] = 5869, - [6049] = 5875, - [6050] = 5875, - [6051] = 5865, - [6052] = 5869, - [6053] = 5865, - [6054] = 5869, - [6055] = 5875, - [6056] = 5865, - [6057] = 5875, - [6058] = 5875, - [6059] = 5865, - [6060] = 5875, - [6061] = 5865, - [6062] = 5869, - [6063] = 5875, - [6064] = 5875, - [6065] = 5865, - [6066] = 5865, - [6067] = 5865, - [6068] = 5869, - [6069] = 5875, - [6070] = 5875, - [6071] = 5865, - [6072] = 5869, - [6073] = 5869, - [6074] = 5869, - [6075] = 5875, - [6076] = 5865, - [6077] = 5875, - [6078] = 5869, - [6079] = 5869, - [6080] = 5869, - [6081] = 5875, - [6082] = 5875, - [6083] = 5865, - [6084] = 5875, - [6085] = 5869, - [6086] = 5875, - [6087] = 5875, - [6088] = 6088, - [6089] = 487, - [6090] = 6088, - [6091] = 6088, - [6092] = 6088, - [6093] = 6088, - [6094] = 6088, - [6095] = 6088, - [6096] = 474, - [6097] = 6088, - [6098] = 6098, - [6099] = 6099, - [6100] = 6100, - [6101] = 6099, - [6102] = 6100, - [6103] = 6100, - [6104] = 6099, - [6105] = 6099, - [6106] = 6099, - [6107] = 6100, - [6108] = 6100, - [6109] = 6100, - [6110] = 6099, - [6111] = 6100, - [6112] = 6099, - [6113] = 6099, - [6114] = 6099, - [6115] = 6100, - [6116] = 6100, - [6117] = 6117, - [6118] = 6118, - [6119] = 6118, - [6120] = 6118, - [6121] = 6118, - [6122] = 6122, - [6123] = 489, - [6124] = 6118, - [6125] = 6118, - [6126] = 477, - [6127] = 6118, - [6128] = 6118, - [6129] = 6118, - [6130] = 6118, - [6131] = 6118, - [6132] = 6118, - [6133] = 6118, - [6134] = 6118, - [6135] = 6118, - [6136] = 6118, - [6137] = 6118, - [6138] = 6118, - [6139] = 481, - [6140] = 6118, - [6141] = 6118, - [6142] = 6118, - [6143] = 6118, - [6144] = 6118, - [6145] = 6118, - [6146] = 6146, - [6147] = 6147, - [6148] = 6118, - [6149] = 6149, - [6150] = 6118, - [6151] = 6118, - [6152] = 490, - [6153] = 491, - [6154] = 488, - [6155] = 492, - [6156] = 487, - [6157] = 474, - [6158] = 6158, + [5526] = 490, + [5527] = 485, + [5528] = 477, + [5529] = 899, + [5530] = 902, + [5531] = 486, + [5532] = 493, + [5533] = 470, + [5534] = 486, + [5535] = 473, + [5536] = 915, + [5537] = 916, + [5538] = 472, + [5539] = 4311, + [5540] = 475, + [5541] = 476, + [5542] = 484, + [5543] = 487, + [5544] = 491, + [5545] = 492, + [5546] = 488, + [5547] = 502, + [5548] = 1064, + [5549] = 478, + [5550] = 495, + [5551] = 1082, + [5552] = 477, + [5553] = 493, + [5554] = 476, + [5555] = 479, + [5556] = 1392, + [5557] = 481, + [5558] = 482, + [5559] = 477, + [5560] = 1615, + [5561] = 476, + [5562] = 5562, + [5563] = 1064, + [5564] = 495, + [5565] = 5565, + [5566] = 475, + [5567] = 489, + [5568] = 471, + [5569] = 478, + [5570] = 490, + [5571] = 1082, + [5572] = 481, + [5573] = 482, + [5574] = 484, + [5575] = 1394, + [5576] = 5576, + [5577] = 5576, + [5578] = 5578, + [5579] = 5578, + [5580] = 5578, + [5581] = 464, + [5582] = 492, + [5583] = 5578, + [5584] = 483, + [5585] = 1392, + [5586] = 502, + [5587] = 1283, + [5588] = 502, + [5589] = 4735, + [5590] = 488, + [5591] = 4712, + [5592] = 493, + [5593] = 502, + [5594] = 5576, + [5595] = 480, + [5596] = 5576, + [5597] = 5578, + [5598] = 465, + [5599] = 479, + [5600] = 485, + [5601] = 486, + [5602] = 1620, + [5603] = 5576, + [5604] = 474, + [5605] = 487, + [5606] = 491, + [5607] = 1286, + [5608] = 4796, + [5609] = 4801, + [5610] = 5610, + [5611] = 1615, + [5612] = 473, + [5613] = 4780, + [5614] = 4775, + [5615] = 5014, + [5616] = 4288, + [5617] = 1620, + [5618] = 5015, + [5619] = 4948, + [5620] = 5610, + [5621] = 4934, + [5622] = 502, + [5623] = 899, + [5624] = 902, + [5625] = 4303, + [5626] = 4712, + [5627] = 1121, + [5628] = 5610, + [5629] = 915, + [5630] = 916, + [5631] = 1620, + [5632] = 4732, + [5633] = 4740, + [5634] = 4305, + [5635] = 1283, + [5636] = 5610, + [5637] = 1128, + [5638] = 4992, + [5639] = 4973, + [5640] = 5610, + [5641] = 5013, + [5642] = 4697, + [5643] = 4735, + [5644] = 5005, + [5645] = 1588, + [5646] = 5030, + [5647] = 4937, + [5648] = 5610, + [5649] = 4690, + [5650] = 5610, + [5651] = 1283, + [5652] = 5610, + [5653] = 472, + [5654] = 5000, + [5655] = 4743, + [5656] = 1286, + [5657] = 5610, + [5658] = 4854, + [5659] = 4792, + [5660] = 4669, + [5661] = 1615, + [5662] = 4972, + [5663] = 1286, + [5664] = 4974, + [5665] = 4975, + [5666] = 4979, + [5667] = 5002, + [5668] = 4980, + [5669] = 4981, + [5670] = 470, + [5671] = 4693, + [5672] = 1574, + [5673] = 4983, + [5674] = 4797, + [5675] = 4990, + [5676] = 5004, + [5677] = 1586, + [5678] = 4981, + [5679] = 486, + [5680] = 4797, + [5681] = 4992, + [5682] = 5006, + [5683] = 5001, + [5684] = 480, + [5685] = 1286, + [5686] = 5030, + [5687] = 495, + [5688] = 490, + [5689] = 1064, + [5690] = 4936, + [5691] = 4956, + [5692] = 4939, + [5693] = 4690, + [5694] = 477, + [5695] = 4954, + [5696] = 4943, + [5697] = 4974, + [5698] = 4983, + [5699] = 4796, + [5700] = 5026, + [5701] = 1615, + [5702] = 4934, + [5703] = 1392, + [5704] = 4973, + [5705] = 4972, + [5706] = 482, + [5707] = 493, + [5708] = 479, + [5709] = 474, + [5710] = 4975, + [5711] = 4944, + [5712] = 5003, + [5713] = 4945, + [5714] = 4951, + [5715] = 4932, + [5716] = 5005, + [5717] = 476, + [5718] = 4792, + [5719] = 4961, + [5720] = 5013, + [5721] = 4920, + [5722] = 1283, + [5723] = 4979, + [5724] = 5014, + [5725] = 1082, + [5726] = 4775, + [5727] = 5015, + [5728] = 4740, + [5729] = 5002, + [5730] = 4693, + [5731] = 489, + [5732] = 487, + [5733] = 4937, + [5734] = 4971, + [5735] = 484, + [5736] = 4922, + [5737] = 4927, + [5738] = 483, + [5739] = 481, + [5740] = 4980, + [5741] = 491, + [5742] = 4732, + [5743] = 4966, + [5744] = 4948, + [5745] = 492, + [5746] = 5004, + [5747] = 4997, + [5748] = 4999, + [5749] = 1394, + [5750] = 5007, + [5751] = 1620, + [5752] = 485, + [5753] = 4990, + [5754] = 488, + [5755] = 478, + [5756] = 4942, + [5757] = 5000, + [5758] = 475, + [5759] = 502, + [5760] = 465, + [5761] = 464, + [5762] = 5762, + [5763] = 5763, + [5764] = 5764, + [5765] = 5764, + [5766] = 5764, + [5767] = 5764, + [5768] = 5764, + [5769] = 5764, + [5770] = 5764, + [5771] = 5764, + [5772] = 5772, + [5773] = 5764, + [5774] = 5772, + [5775] = 5764, + [5776] = 5764, + [5777] = 5772, + [5778] = 5772, + [5779] = 5764, + [5780] = 5764, + [5781] = 1283, + [5782] = 5772, + [5783] = 5764, + [5784] = 5772, + [5785] = 5764, + [5786] = 5764, + [5787] = 5764, + [5788] = 5772, + [5789] = 5772, + [5790] = 5772, + [5791] = 5764, + [5792] = 5772, + [5793] = 5764, + [5794] = 5764, + [5795] = 5772, + [5796] = 5772, + [5797] = 5764, + [5798] = 5764, + [5799] = 5772, + [5800] = 5764, + [5801] = 5772, + [5802] = 5764, + [5803] = 5772, + [5804] = 5772, + [5805] = 5772, + [5806] = 5764, + [5807] = 1615, + [5808] = 5772, + [5809] = 5772, + [5810] = 5764, + [5811] = 5772, + [5812] = 5772, + [5813] = 5764, + [5814] = 5764, + [5815] = 5764, + [5816] = 5772, + [5817] = 5772, + [5818] = 5772, + [5819] = 5764, + [5820] = 5764, + [5821] = 5764, + [5822] = 5772, + [5823] = 5764, + [5824] = 5764, + [5825] = 5764, + [5826] = 5772, + [5827] = 5772, + [5828] = 5772, + [5829] = 5764, + [5830] = 5772, + [5831] = 5772, + [5832] = 5764, + [5833] = 5772, + [5834] = 5772, + [5835] = 5772, + [5836] = 5764, + [5837] = 1286, + [5838] = 5772, + [5839] = 5764, + [5840] = 5772, + [5841] = 5764, + [5842] = 5772, + [5843] = 5772, + [5844] = 5764, + [5845] = 5764, + [5846] = 5764, + [5847] = 5772, + [5848] = 5764, + [5849] = 5772, + [5850] = 5772, + [5851] = 5772, + [5852] = 5772, + [5853] = 5764, + [5854] = 5764, + [5855] = 5764, + [5856] = 5772, + [5857] = 5764, + [5858] = 5772, + [5859] = 5764, + [5860] = 5764, + [5861] = 5772, + [5862] = 5764, + [5863] = 5764, + [5864] = 5764, + [5865] = 5764, + [5866] = 5764, + [5867] = 5772, + [5868] = 5772, + [5869] = 5772, + [5870] = 5772, + [5871] = 5764, + [5872] = 5772, + [5873] = 5764, + [5874] = 5772, + [5875] = 5772, + [5876] = 5772, + [5877] = 5772, + [5878] = 5772, + [5879] = 5764, + [5880] = 5880, + [5881] = 5772, + [5882] = 5772, + [5883] = 5772, + [5884] = 5764, + [5885] = 5764, + [5886] = 5772, + [5887] = 5772, + [5888] = 5772, + [5889] = 5764, + [5890] = 5764, + [5891] = 5772, + [5892] = 5772, + [5893] = 5764, + [5894] = 5772, + [5895] = 5772, + [5896] = 5764, + [5897] = 5764, + [5898] = 5764, + [5899] = 5764, + [5900] = 5772, + [5901] = 5772, + [5902] = 5764, + [5903] = 5772, + [5904] = 5772, + [5905] = 5764, + [5906] = 5772, + [5907] = 5764, + [5908] = 5764, + [5909] = 5772, + [5910] = 5764, + [5911] = 1620, + [5912] = 5764, + [5913] = 5764, + [5914] = 5764, + [5915] = 5764, + [5916] = 5772, + [5917] = 5764, + [5918] = 5772, + [5919] = 5772, + [5920] = 5764, + [5921] = 5764, + [5922] = 5772, + [5923] = 5772, + [5924] = 5772, + [5925] = 5772, + [5926] = 5772, + [5927] = 5927, + [5928] = 5928, + [5929] = 5928, + [5930] = 5930, + [5931] = 5927, + [5932] = 5928, + [5933] = 5930, + [5934] = 5927, + [5935] = 5928, + [5936] = 5930, + [5937] = 5930, + [5938] = 5927, + [5939] = 5928, + [5940] = 5930, + [5941] = 5927, + [5942] = 5928, + [5943] = 5930, + [5944] = 5927, + [5945] = 5928, + [5946] = 5930, + [5947] = 5927, + [5948] = 5928, + [5949] = 5927, + [5950] = 5930, + [5951] = 5927, + [5952] = 5928, + [5953] = 5930, + [5954] = 5927, + [5955] = 5928, + [5956] = 5930, + [5957] = 5928, + [5958] = 5927, + [5959] = 5928, + [5960] = 5930, + [5961] = 5927, + [5962] = 5928, + [5963] = 5930, + [5964] = 5927, + [5965] = 5927, + [5966] = 5928, + [5967] = 5930, + [5968] = 5927, + [5969] = 5930, + [5970] = 5928, + [5971] = 5930, + [5972] = 5927, + [5973] = 5928, + [5974] = 5927, + [5975] = 5930, + [5976] = 5927, + [5977] = 5928, + [5978] = 5927, + [5979] = 5930, + [5980] = 5927, + [5981] = 5928, + [5982] = 5930, + [5983] = 5927, + [5984] = 5928, + [5985] = 5928, + [5986] = 5930, + [5987] = 5927, + [5988] = 5928, + [5989] = 5930, + [5990] = 5927, + [5991] = 5928, + [5992] = 5930, + [5993] = 5928, + [5994] = 5930, + [5995] = 5930, + [5996] = 5927, + [5997] = 5928, + [5998] = 5930, + [5999] = 5927, + [6000] = 5928, + [6001] = 5927, + [6002] = 5930, + [6003] = 5927, + [6004] = 5928, + [6005] = 5930, + [6006] = 5930, + [6007] = 5927, + [6008] = 5928, + [6009] = 5930, + [6010] = 5927, + [6011] = 5930, + [6012] = 5927, + [6013] = 5930, + [6014] = 5927, + [6015] = 5930, + [6016] = 5930, + [6017] = 5927, + [6018] = 5930, + [6019] = 5927, + [6020] = 5930, + [6021] = 5927, + [6022] = 5927, + [6023] = 5930, + [6024] = 5927, + [6025] = 5930, + [6026] = 5927, + [6027] = 5928, + [6028] = 5930, + [6029] = 5927, + [6030] = 5930, + [6031] = 5927, + [6032] = 5930, + [6033] = 5930, + [6034] = 5927, + [6035] = 5930, + [6036] = 5927, + [6037] = 5930, + [6038] = 5927, + [6039] = 5930, + [6040] = 5927, + [6041] = 5927, + [6042] = 5928, + [6043] = 5930, + [6044] = 5927, + [6045] = 5928, + [6046] = 5930, + [6047] = 5927, + [6048] = 5928, + [6049] = 5928, + [6050] = 5927, + [6051] = 5927, + [6052] = 5930, + [6053] = 5928, + [6054] = 5930, + [6055] = 5927, + [6056] = 5928, + [6057] = 5928, + [6058] = 5930, + [6059] = 5927, + [6060] = 5928, + [6061] = 5930, + [6062] = 5927, + [6063] = 5928, + [6064] = 5930, + [6065] = 5930, + [6066] = 5927, + [6067] = 5928, + [6068] = 5928, + [6069] = 5930, + [6070] = 5927, + [6071] = 5928, + [6072] = 5930, + [6073] = 5927, + [6074] = 5928, + [6075] = 5930, + [6076] = 5927, + [6077] = 5928, + [6078] = 5927, + [6079] = 5930, + [6080] = 5930, + [6081] = 5927, + [6082] = 5928, + [6083] = 5930, + [6084] = 5927, + [6085] = 5927, + [6086] = 5928, + [6087] = 5930, + [6088] = 5927, + [6089] = 5928, + [6090] = 5930, + [6091] = 5927, + [6092] = 5928, + [6093] = 5930, + [6094] = 5927, + [6095] = 5928, + [6096] = 5930, + [6097] = 5927, + [6098] = 5928, + [6099] = 5930, + [6100] = 5927, + [6101] = 5928, + [6102] = 5930, + [6103] = 5927, + [6104] = 5928, + [6105] = 5928, + [6106] = 5930, + [6107] = 5927, + [6108] = 5928, + [6109] = 5930, + [6110] = 5928, + [6111] = 5927, + [6112] = 5928, + [6113] = 5930, + [6114] = 5927, + [6115] = 5928, + [6116] = 5930, + [6117] = 5927, + [6118] = 5928, + [6119] = 5930, + [6120] = 5927, + [6121] = 5928, + [6122] = 5930, + [6123] = 5930, + [6124] = 5927, + [6125] = 5928, + [6126] = 5930, + [6127] = 5927, + [6128] = 5928, + [6129] = 5930, + [6130] = 5927, + [6131] = 5927, + [6132] = 5928, + [6133] = 5930, + [6134] = 5927, + [6135] = 5928, + [6136] = 5930, + [6137] = 5927, + [6138] = 5928, + [6139] = 5930, + [6140] = 5927, + [6141] = 5928, + [6142] = 5930, + [6143] = 5927, + [6144] = 5930, + [6145] = 5928, + [6146] = 5930, + [6147] = 5927, + [6148] = 5928, + [6149] = 5930, + [6150] = 6150, + [6151] = 6150, + [6152] = 6150, + [6153] = 6150, + [6154] = 479, + [6155] = 474, + [6156] = 6150, + [6157] = 6150, + [6158] = 6150, [6159] = 6159, - [6160] = 6159, - [6161] = 6159, - [6162] = 6162, - [6163] = 6163, - [6164] = 6163, - [6165] = 6165, - [6166] = 6159, - [6167] = 6163, - [6168] = 6159, - [6169] = 6163, - [6170] = 6163, - [6171] = 6165, - [6172] = 6165, - [6173] = 6165, - [6174] = 6163, - [6175] = 6159, - [6176] = 6176, - [6177] = 6165, - [6178] = 6163, - [6179] = 6165, + [6160] = 6150, + [6161] = 6161, + [6162] = 6161, + [6163] = 6161, + [6164] = 6164, + [6165] = 6161, + [6166] = 6164, + [6167] = 6164, + [6168] = 6164, + [6169] = 6164, + [6170] = 6164, + [6171] = 6161, + [6172] = 6161, + [6173] = 6161, + [6174] = 6164, + [6175] = 6161, + [6176] = 6164, + [6177] = 6161, + [6178] = 6164, + [6179] = 6179, [6180] = 6180, - [6181] = 6165, - [6182] = 1226, - [6183] = 6163, - [6184] = 6159, - [6185] = 6159, - [6186] = 6165, - [6187] = 471, - [6188] = 6188, - [6189] = 6189, - [6190] = 6190, - [6191] = 472, - [6192] = 6192, - [6193] = 6192, - [6194] = 6194, - [6195] = 473, - [6196] = 6196, - [6197] = 6197, - [6198] = 6190, - [6199] = 6192, - [6200] = 6192, - [6201] = 470, - [6202] = 6190, - [6203] = 6203, - [6204] = 6190, - [6205] = 489, - [6206] = 6206, - [6207] = 482, - [6208] = 6208, - [6209] = 491, - [6210] = 488, - [6211] = 492, - [6212] = 474, - [6213] = 6208, - [6214] = 6214, - [6215] = 489, - [6216] = 492, - [6217] = 486, - [6218] = 6218, - [6219] = 481, - [6220] = 6208, - [6221] = 478, - [6222] = 490, - [6223] = 484, - [6224] = 485, - [6225] = 490, - [6226] = 6208, - [6227] = 483, - [6228] = 490, - [6229] = 491, - [6230] = 489, - [6231] = 488, - [6232] = 475, - [6233] = 476, - [6234] = 484, - [6235] = 492, - [6236] = 479, - [6237] = 487, - [6238] = 488, - [6239] = 6239, - [6240] = 487, - [6241] = 493, - [6242] = 491, - [6243] = 474, - [6244] = 480, - [6245] = 6245, - [6246] = 477, - [6247] = 482, + [6181] = 6180, + [6182] = 6180, + [6183] = 6180, + [6184] = 6184, + [6185] = 6180, + [6186] = 6180, + [6187] = 6187, + [6188] = 479, + [6189] = 474, + [6190] = 6180, + [6191] = 6180, + [6192] = 6180, + [6193] = 6180, + [6194] = 6180, + [6195] = 489, + [6196] = 6180, + [6197] = 6180, + [6198] = 6198, + [6199] = 6180, + [6200] = 6180, + [6201] = 6180, + [6202] = 490, + [6203] = 487, + [6204] = 6180, + [6205] = 6180, + [6206] = 491, + [6207] = 492, + [6208] = 6180, + [6209] = 6180, + [6210] = 6210, + [6211] = 6180, + [6212] = 6180, + [6213] = 6213, + [6214] = 6180, + [6215] = 484, + [6216] = 6180, + [6217] = 6180, + [6218] = 6180, + [6219] = 488, + [6220] = 6180, + [6221] = 6221, + [6222] = 6221, + [6223] = 1289, + [6224] = 6224, + [6225] = 6224, + [6226] = 6221, + [6227] = 6227, + [6228] = 6221, + [6229] = 6224, + [6230] = 6224, + [6231] = 6224, + [6232] = 6221, + [6233] = 6224, + [6234] = 6227, + [6235] = 6227, + [6236] = 6227, + [6237] = 6224, + [6238] = 6227, + [6239] = 6224, + [6240] = 6240, + [6241] = 6221, + [6242] = 6242, + [6243] = 6221, + [6244] = 6227, + [6245] = 6227, + [6246] = 6221, + [6247] = 6227, [6248] = 6248, [6249] = 6249, - [6250] = 6249, - [6251] = 485, - [6252] = 6249, - [6253] = 6249, - [6254] = 6249, - [6255] = 6255, - [6256] = 6249, - [6257] = 6249, - [6258] = 486, - [6259] = 6249, - [6260] = 6249, - [6261] = 6261, - [6262] = 6249, - [6263] = 6249, - [6264] = 6264, - [6265] = 6249, - [6266] = 6266, - [6267] = 6249, - [6268] = 6249, - [6269] = 6249, - [6270] = 6249, - [6271] = 6249, - [6272] = 6272, - [6273] = 6273, - [6274] = 6249, - [6275] = 6249, - [6276] = 6276, - [6277] = 6249, - [6278] = 6278, - [6279] = 6249, - [6280] = 6280, - [6281] = 6281, - [6282] = 6249, - [6283] = 6249, - [6284] = 498, - [6285] = 6249, - [6286] = 6249, - [6287] = 6287, + [6250] = 6250, + [6251] = 6251, + [6252] = 6252, + [6253] = 471, + [6254] = 6254, + [6255] = 472, + [6256] = 6256, + [6257] = 6257, + [6258] = 470, + [6259] = 6256, + [6260] = 6257, + [6261] = 473, + [6262] = 6262, + [6263] = 6256, + [6264] = 6257, + [6265] = 6256, + [6266] = 6257, + [6267] = 482, + [6268] = 6268, + [6269] = 490, + [6270] = 487, + [6271] = 491, + [6272] = 492, + [6273] = 479, + [6274] = 474, + [6275] = 480, + [6276] = 475, + [6277] = 493, + [6278] = 476, + [6279] = 476, + [6280] = 489, + [6281] = 484, + [6282] = 492, + [6283] = 478, + [6284] = 485, + [6285] = 486, + [6286] = 6286, + [6287] = 487, [6288] = 6288, - [6289] = 6249, + [6289] = 6289, [6290] = 6290, - [6291] = 6291, - [6292] = 6249, - [6293] = 6249, - [6294] = 6294, - [6295] = 6295, - [6296] = 6249, - [6297] = 6249, - [6298] = 6266, - [6299] = 6249, - [6300] = 6300, - [6301] = 6249, - [6302] = 6249, - [6303] = 6303, - [6304] = 6249, - [6305] = 6249, - [6306] = 6249, - [6307] = 6249, - [6308] = 6249, - [6309] = 6309, - [6310] = 6249, - [6311] = 6249, + [6291] = 479, + [6292] = 474, + [6293] = 477, + [6294] = 495, + [6295] = 483, + [6296] = 6296, + [6297] = 489, + [6298] = 490, + [6299] = 489, + [6300] = 6268, + [6301] = 6268, + [6302] = 481, + [6303] = 493, + [6304] = 487, + [6305] = 491, + [6306] = 492, + [6307] = 490, + [6308] = 491, + [6309] = 6268, + [6310] = 488, + [6311] = 6311, [6312] = 6312, - [6313] = 6249, - [6314] = 6249, - [6315] = 6249, - [6316] = 6249, - [6317] = 6249, - [6318] = 6318, + [6313] = 6312, + [6314] = 6312, + [6315] = 6312, + [6316] = 6316, + [6317] = 6312, + [6318] = 6312, [6319] = 6319, - [6320] = 6249, - [6321] = 6249, - [6322] = 6322, - [6323] = 6249, + [6320] = 6312, + [6321] = 6312, + [6322] = 6312, + [6323] = 6312, [6324] = 6324, - [6325] = 6249, - [6326] = 6326, - [6327] = 6266, - [6328] = 6249, - [6329] = 6249, - [6330] = 6249, - [6331] = 6249, - [6332] = 6332, - [6333] = 6249, + [6325] = 6312, + [6326] = 6312, + [6327] = 478, + [6328] = 6312, + [6329] = 6312, + [6330] = 6312, + [6331] = 6331, + [6332] = 6312, + [6333] = 6312, [6334] = 6334, - [6335] = 6249, - [6336] = 6249, - [6337] = 471, - [6338] = 6338, - [6339] = 6249, - [6340] = 6249, - [6341] = 6249, - [6342] = 6249, - [6343] = 6249, - [6344] = 6249, - [6345] = 6291, - [6346] = 6291, - [6347] = 6347, - [6348] = 6348, - [6349] = 6349, - [6350] = 6249, - [6351] = 6249, - [6352] = 6352, - [6353] = 6249, + [6335] = 6312, + [6336] = 6336, + [6337] = 6337, + [6338] = 6312, + [6339] = 6312, + [6340] = 6312, + [6341] = 6312, + [6342] = 6312, + [6343] = 6312, + [6344] = 6312, + [6345] = 6345, + [6346] = 6312, + [6347] = 6312, + [6348] = 6312, + [6349] = 6312, + [6350] = 6312, + [6351] = 6351, + [6352] = 477, + [6353] = 6312, [6354] = 6354, - [6355] = 6249, - [6356] = 6249, - [6357] = 6266, - [6358] = 6291, + [6355] = 6312, + [6356] = 6356, + [6357] = 6357, + [6358] = 6312, [6359] = 6359, [6360] = 6360, - [6361] = 483, - [6362] = 6249, - [6363] = 6249, - [6364] = 6249, + [6361] = 6312, + [6362] = 6312, + [6363] = 6363, + [6364] = 6312, [6365] = 6365, [6366] = 6366, - [6367] = 6249, + [6367] = 6367, [6368] = 6368, [6369] = 6369, - [6370] = 6370, - [6371] = 2703, - [6372] = 6372, - [6373] = 472, - [6374] = 6374, - [6375] = 6375, - [6376] = 6368, + [6370] = 6312, + [6371] = 6312, + [6372] = 471, + [6373] = 6345, + [6374] = 6312, + [6375] = 475, + [6376] = 6312, [6377] = 6377, - [6378] = 6378, - [6379] = 6378, - [6380] = 6380, - [6381] = 2734, + [6378] = 6312, + [6379] = 502, + [6380] = 6312, + [6381] = 6312, [6382] = 6382, - [6383] = 6383, - [6384] = 6372, - [6385] = 6375, - [6386] = 6386, - [6387] = 6375, - [6388] = 473, - [6389] = 6378, - [6390] = 6369, - [6391] = 6391, + [6383] = 6312, + [6384] = 6312, + [6385] = 6312, + [6386] = 6312, + [6387] = 6312, + [6388] = 6334, + [6389] = 6312, + [6390] = 6312, + [6391] = 6312, [6392] = 6392, - [6393] = 6393, - [6394] = 6377, - [6395] = 6372, - [6396] = 6396, - [6397] = 6369, - [6398] = 6398, - [6399] = 492, - [6400] = 6400, - [6401] = 6401, - [6402] = 6402, - [6403] = 6375, - [6404] = 6402, + [6393] = 6312, + [6394] = 6394, + [6395] = 6395, + [6396] = 6312, + [6397] = 6312, + [6398] = 6312, + [6399] = 6399, + [6400] = 6312, + [6401] = 6312, + [6402] = 6312, + [6403] = 6403, + [6404] = 6404, [6405] = 6405, - [6406] = 6377, - [6407] = 6377, - [6408] = 6408, - [6409] = 6402, - [6410] = 6378, - [6411] = 6411, - [6412] = 6412, - [6413] = 6408, + [6406] = 6406, + [6407] = 6345, + [6408] = 6312, + [6409] = 6409, + [6410] = 6312, + [6411] = 6312, + [6412] = 483, + [6413] = 6413, [6414] = 6414, - [6415] = 6392, - [6416] = 6408, + [6415] = 6312, + [6416] = 6416, [6417] = 6417, - [6418] = 6417, - [6419] = 6368, - [6420] = 6420, + [6418] = 6418, + [6419] = 6312, + [6420] = 6334, [6421] = 6421, - [6422] = 6422, - [6423] = 6402, - [6424] = 2667, - [6425] = 6425, - [6426] = 491, - [6427] = 6408, - [6428] = 6428, - [6429] = 6412, - [6430] = 6392, - [6431] = 6431, - [6432] = 6432, - [6433] = 6417, + [6422] = 6312, + [6423] = 6312, + [6424] = 6345, + [6425] = 6312, + [6426] = 6312, + [6427] = 6312, + [6428] = 6312, + [6429] = 6312, + [6430] = 6334, + [6431] = 6312, + [6432] = 2632, + [6433] = 492, [6434] = 6434, - [6435] = 6412, - [6436] = 488, - [6437] = 6382, - [6438] = 6382, + [6435] = 6435, + [6436] = 6436, + [6437] = 470, + [6438] = 6438, [6439] = 6439, - [6440] = 6382, + [6440] = 6440, [6441] = 6441, [6442] = 6442, - [6443] = 6412, + [6443] = 6434, [6444] = 6444, - [6445] = 6372, + [6445] = 6435, [6446] = 6446, - [6447] = 6441, - [6448] = 6441, - [6449] = 6439, + [6447] = 6447, + [6448] = 6448, + [6449] = 6449, [6450] = 6450, - [6451] = 6439, - [6452] = 6452, - [6453] = 6369, - [6454] = 6372, - [6455] = 6439, - [6456] = 6368, + [6451] = 6451, + [6452] = 473, + [6453] = 6453, + [6454] = 2628, + [6455] = 6455, + [6456] = 6456, [6457] = 6457, [6458] = 6458, [6459] = 6459, [6460] = 6460, - [6461] = 6378, - [6462] = 6375, - [6463] = 470, - [6464] = 6441, - [6465] = 6383, - [6466] = 6392, - [6467] = 6377, - [6468] = 6383, - [6469] = 6368, - [6470] = 6402, - [6471] = 6408, - [6472] = 6412, - [6473] = 6392, - [6474] = 6417, - [6475] = 6383, - [6476] = 6417, - [6477] = 6382, - [6478] = 2733, - [6479] = 6441, - [6480] = 489, + [6461] = 6453, + [6462] = 6451, + [6463] = 6463, + [6464] = 6464, + [6465] = 6446, + [6466] = 6466, + [6467] = 6453, + [6468] = 6455, + [6469] = 6456, + [6470] = 6457, + [6471] = 472, + [6472] = 6446, + [6473] = 6455, + [6474] = 6458, + [6475] = 6451, + [6476] = 6476, + [6477] = 6456, + [6478] = 6466, + [6479] = 6479, + [6480] = 6480, [6481] = 6481, - [6482] = 476, - [6483] = 486, - [6484] = 492, - [6485] = 6485, - [6486] = 493, - [6487] = 490, - [6488] = 6488, - [6489] = 480, - [6490] = 491, - [6491] = 488, - [6492] = 2845, - [6493] = 1590, - [6494] = 6494, - [6495] = 6495, + [6482] = 6482, + [6483] = 6466, + [6484] = 491, + [6485] = 6480, + [6486] = 6486, + [6487] = 6487, + [6488] = 6466, + [6489] = 6480, + [6490] = 6457, + [6491] = 6435, + [6492] = 6436, + [6493] = 6493, + [6494] = 6440, + [6495] = 6446, [6496] = 6496, - [6497] = 6497, - [6498] = 486, - [6499] = 6499, - [6500] = 492, - [6501] = 487, - [6502] = 6502, - [6503] = 6503, - [6504] = 474, - [6505] = 478, - [6506] = 475, - [6507] = 483, + [6497] = 6444, + [6498] = 6435, + [6499] = 6436, + [6500] = 6440, + [6501] = 6501, + [6502] = 6441, + [6503] = 6440, + [6504] = 6444, + [6505] = 6441, + [6506] = 6434, + [6507] = 6451, [6508] = 6508, - [6509] = 2915, + [6509] = 6509, [6510] = 6510, - [6511] = 6511, - [6512] = 479, - [6513] = 2860, + [6511] = 6444, + [6512] = 6441, + [6513] = 6513, [6514] = 6514, - [6515] = 6515, - [6516] = 2923, - [6517] = 485, - [6518] = 491, - [6519] = 488, - [6520] = 492, - [6521] = 6521, - [6522] = 6522, - [6523] = 6508, - [6524] = 6524, - [6525] = 481, - [6526] = 6526, - [6527] = 6527, - [6528] = 493, - [6529] = 1571, - [6530] = 6508, - [6531] = 487, - [6532] = 474, - [6533] = 485, - [6534] = 6534, - [6535] = 479, - [6536] = 477, - [6537] = 6537, - [6538] = 490, - [6539] = 491, - [6540] = 484, + [6515] = 6458, + [6516] = 6434, + [6517] = 6517, + [6518] = 6518, + [6519] = 6434, + [6520] = 6480, + [6521] = 6435, + [6522] = 6436, + [6523] = 6440, + [6524] = 6444, + [6525] = 6453, + [6526] = 6453, + [6527] = 6455, + [6528] = 6528, + [6529] = 6456, + [6530] = 6457, + [6531] = 6436, + [6532] = 6458, + [6533] = 6446, + [6534] = 6455, + [6535] = 6456, + [6536] = 2659, + [6537] = 6457, + [6538] = 2663, + [6539] = 6458, + [6540] = 6480, [6541] = 6541, - [6542] = 483, - [6543] = 488, - [6544] = 6508, - [6545] = 489, - [6546] = 482, - [6547] = 6547, - [6548] = 6547, + [6542] = 487, + [6543] = 6543, + [6544] = 6544, + [6545] = 6545, + [6546] = 489, + [6547] = 1586, + [6548] = 483, [6549] = 6549, - [6550] = 6550, - [6551] = 6393, - [6552] = 6552, - [6553] = 6547, - [6554] = 6554, - [6555] = 6555, - [6556] = 6556, - [6557] = 6547, - [6558] = 6547, - [6559] = 6559, - [6560] = 6547, - [6561] = 6561, - [6562] = 6562, - [6563] = 6563, - [6564] = 6564, - [6565] = 6565, - [6566] = 6547, - [6567] = 6567, - [6568] = 6547, + [6550] = 481, + [6551] = 492, + [6552] = 484, + [6553] = 478, + [6554] = 493, + [6555] = 486, + [6556] = 483, + [6557] = 6557, + [6558] = 6558, + [6559] = 490, + [6560] = 6560, + [6561] = 476, + [6562] = 6544, + [6563] = 487, + [6564] = 488, + [6565] = 489, + [6566] = 6566, + [6567] = 491, + [6568] = 492, [6569] = 6569, [6570] = 6570, - [6571] = 6547, + [6571] = 477, [6572] = 6572, [6573] = 6573, - [6574] = 6574, + [6574] = 474, [6575] = 6575, - [6576] = 6576, - [6577] = 6547, - [6578] = 6547, - [6579] = 6547, - [6580] = 6570, + [6576] = 495, + [6577] = 6577, + [6578] = 6544, + [6579] = 475, + [6580] = 6580, [6581] = 6581, - [6582] = 6582, - [6583] = 6547, + [6582] = 2962, + [6583] = 477, [6584] = 6584, - [6585] = 6585, - [6586] = 491, - [6587] = 6547, + [6585] = 6544, + [6586] = 6586, + [6587] = 1588, [6588] = 6588, - [6589] = 6570, - [6590] = 6547, - [6591] = 6570, - [6592] = 6547, - [6593] = 6593, - [6594] = 6594, - [6595] = 6570, - [6596] = 6596, - [6597] = 6570, - [6598] = 6547, - [6599] = 6599, - [6600] = 6570, - [6601] = 6570, - [6602] = 6570, - [6603] = 6547, - [6604] = 6570, - [6605] = 6547, - [6606] = 6570, - [6607] = 6570, - [6608] = 6570, - [6609] = 6547, - [6610] = 6570, - [6611] = 6570, - [6612] = 6570, - [6613] = 6547, - [6614] = 6547, - [6615] = 6547, - [6616] = 6570, - [6617] = 6393, - [6618] = 6570, - [6619] = 6570, - [6620] = 6547, - [6621] = 498, - [6622] = 6622, - [6623] = 6570, - [6624] = 6624, - [6625] = 2703, + [6589] = 6589, + [6590] = 6590, + [6591] = 6591, + [6592] = 478, + [6593] = 475, + [6594] = 485, + [6595] = 6595, + [6596] = 480, + [6597] = 6597, + [6598] = 479, + [6599] = 479, + [6600] = 487, + [6601] = 474, + [6602] = 491, + [6603] = 487, + [6604] = 492, + [6605] = 482, + [6606] = 491, + [6607] = 490, + [6608] = 2960, + [6609] = 2961, + [6610] = 485, + [6611] = 2959, + [6612] = 495, + [6613] = 6613, + [6614] = 6614, + [6615] = 475, + [6616] = 6616, + [6617] = 6617, + [6618] = 6618, + [6619] = 6616, + [6620] = 6620, + [6621] = 6618, + [6622] = 6617, + [6623] = 6623, + [6624] = 6616, + [6625] = 6625, [6626] = 6626, - [6627] = 6547, - [6628] = 6547, - [6629] = 488, - [6630] = 492, - [6631] = 6631, - [6632] = 6588, - [6633] = 6547, - [6634] = 2667, - [6635] = 6635, - [6636] = 6547, - [6637] = 6547, - [6638] = 6638, - [6639] = 6570, - [6640] = 6547, - [6641] = 6547, - [6642] = 485, + [6627] = 6618, + [6628] = 6616, + [6629] = 6618, + [6630] = 2659, + [6631] = 6618, + [6632] = 6616, + [6633] = 6618, + [6634] = 6618, + [6635] = 6618, + [6636] = 6618, + [6637] = 478, + [6638] = 6616, + [6639] = 6639, + [6640] = 6640, + [6641] = 6641, + [6642] = 6642, [6643] = 6643, - [6644] = 6644, - [6645] = 6645, - [6646] = 6547, - [6647] = 6581, + [6644] = 6616, + [6645] = 6618, + [6646] = 6618, + [6647] = 6618, [6648] = 6648, - [6649] = 6547, - [6650] = 6547, - [6651] = 6547, + [6649] = 6616, + [6650] = 6618, + [6651] = 6618, [6652] = 6652, - [6653] = 490, - [6654] = 6588, - [6655] = 6547, + [6653] = 6618, + [6654] = 6654, + [6655] = 6655, [6656] = 6656, - [6657] = 483, - [6658] = 2733, - [6659] = 6547, - [6660] = 6547, - [6661] = 2734, - [6662] = 6662, - [6663] = 2547, - [6664] = 6547, - [6665] = 6547, - [6666] = 6567, - [6667] = 6547, - [6668] = 6668, - [6669] = 6547, - [6670] = 6547, - [6671] = 6547, - [6672] = 481, - [6673] = 477, - [6674] = 6547, - [6675] = 489, - [6676] = 6547, - [6677] = 6677, - [6678] = 6678, - [6679] = 6547, - [6680] = 498, - [6681] = 6547, - [6682] = 6682, - [6683] = 6683, - [6684] = 6588, - [6685] = 6685, - [6686] = 6547, - [6687] = 6547, - [6688] = 6688, - [6689] = 6689, - [6690] = 6547, - [6691] = 6691, - [6692] = 486, + [6657] = 6616, + [6658] = 6658, + [6659] = 6659, + [6660] = 6660, + [6661] = 6661, + [6662] = 6618, + [6663] = 6618, + [6664] = 6618, + [6665] = 6665, + [6666] = 6618, + [6667] = 6617, + [6668] = 6616, + [6669] = 475, + [6670] = 6618, + [6671] = 477, + [6672] = 6618, + [6673] = 6616, + [6674] = 489, + [6675] = 6618, + [6676] = 6617, + [6677] = 6623, + [6678] = 502, + [6679] = 6618, + [6680] = 6616, + [6681] = 6623, + [6682] = 6618, + [6683] = 6620, + [6684] = 6618, + [6685] = 478, + [6686] = 490, + [6687] = 6618, + [6688] = 6618, + [6689] = 6618, + [6690] = 6690, + [6691] = 6618, + [6692] = 477, [6693] = 6693, - [6694] = 6547, - [6695] = 6547, - [6696] = 6547, - [6697] = 483, - [6698] = 6547, - [6699] = 485, + [6694] = 6618, + [6695] = 6616, + [6696] = 6618, + [6697] = 6697, + [6698] = 6618, + [6699] = 6618, [6700] = 6700, - [6701] = 6570, - [6702] = 486, - [6703] = 6547, - [6704] = 6704, - [6705] = 6588, - [6706] = 6547, - [6707] = 6547, - [6708] = 6547, - [6709] = 6588, - [6710] = 6547, - [6711] = 6547, - [6712] = 6547, - [6713] = 6588, - [6714] = 6567, - [6715] = 6715, - [6716] = 6588, - [6717] = 6717, - [6718] = 6547, - [6719] = 6719, - [6720] = 6547, - [6721] = 6570, - [6722] = 6722, - [6723] = 6547, - [6724] = 6547, - [6725] = 6581, - [6726] = 6726, + [6701] = 6701, + [6702] = 6702, + [6703] = 487, + [6704] = 491, + [6705] = 492, + [6706] = 6618, + [6707] = 6618, + [6708] = 6708, + [6709] = 6709, + [6710] = 6710, + [6711] = 2663, + [6712] = 6618, + [6713] = 484, + [6714] = 6448, + [6715] = 2545, + [6716] = 6716, + [6717] = 6616, + [6718] = 6718, + [6719] = 6618, + [6720] = 6720, + [6721] = 6618, + [6722] = 6617, + [6723] = 6723, + [6724] = 6724, + [6725] = 6618, + [6726] = 6618, [6727] = 6727, - [6728] = 2923, - [6729] = 6521, - [6730] = 6730, - [6731] = 6730, - [6732] = 6732, - [6733] = 6730, - [6734] = 480, - [6735] = 6735, - [6736] = 6730, - [6737] = 6730, - [6738] = 6738, - [6739] = 6726, - [6740] = 6534, + [6728] = 6617, + [6729] = 6620, + [6730] = 2628, + [6731] = 6618, + [6732] = 6618, + [6733] = 6618, + [6734] = 6618, + [6735] = 6618, + [6736] = 6616, + [6737] = 6737, + [6738] = 6448, + [6739] = 6739, + [6740] = 6740, [6741] = 6741, [6742] = 6742, - [6743] = 483, - [6744] = 6730, - [6745] = 6534, - [6746] = 6730, - [6747] = 6742, - [6748] = 6730, - [6749] = 6749, - [6750] = 2722, - [6751] = 6726, - [6752] = 6730, + [6743] = 6618, + [6744] = 6744, + [6745] = 6745, + [6746] = 6617, + [6747] = 6616, + [6748] = 6618, + [6749] = 6618, + [6750] = 6750, + [6751] = 6618, + [6752] = 6752, [6753] = 6753, - [6754] = 6742, + [6754] = 6618, [6755] = 6755, - [6756] = 6730, - [6757] = 6730, - [6758] = 6730, - [6759] = 2845, - [6760] = 2860, - [6761] = 476, - [6762] = 2716, + [6756] = 2632, + [6757] = 488, + [6758] = 6618, + [6759] = 6616, + [6760] = 6618, + [6761] = 6761, + [6762] = 6618, [6763] = 6763, - [6764] = 6741, - [6765] = 6730, - [6766] = 6730, - [6767] = 485, - [6768] = 6742, - [6769] = 6730, - [6770] = 6730, - [6771] = 6730, - [6772] = 6726, - [6773] = 6503, - [6774] = 6730, - [6775] = 6775, - [6776] = 6741, - [6777] = 6777, - [6778] = 2915, - [6779] = 6730, - [6780] = 6741, - [6781] = 486, - [6782] = 6782, - [6783] = 6521, - [6784] = 6730, - [6785] = 6730, + [6764] = 6764, + [6765] = 6617, + [6766] = 6766, + [6767] = 6767, + [6768] = 6618, + [6769] = 6618, + [6770] = 502, + [6771] = 6616, + [6772] = 6618, + [6773] = 6618, + [6774] = 6618, + [6775] = 6618, + [6776] = 6618, + [6777] = 6618, + [6778] = 6618, + [6779] = 6616, + [6780] = 6618, + [6781] = 6618, + [6782] = 6616, + [6783] = 6616, + [6784] = 6616, + [6785] = 6618, [6786] = 6786, - [6787] = 6730, + [6787] = 6616, [6788] = 6788, - [6789] = 6503, - [6790] = 6790, - [6791] = 6730, + [6789] = 6789, + [6790] = 6618, + [6791] = 6791, [6792] = 6792, [6793] = 6793, [6794] = 6794, - [6795] = 6795, - [6796] = 6796, - [6797] = 6792, - [6798] = 6798, + [6795] = 6793, + [6796] = 477, + [6797] = 6793, + [6798] = 6575, [6799] = 6799, [6800] = 6800, [6801] = 6801, - [6802] = 6794, - [6803] = 6803, + [6802] = 2729, + [6803] = 6793, [6804] = 6804, - [6805] = 6805, - [6806] = 6806, + [6805] = 2959, + [6806] = 6793, [6807] = 6807, - [6808] = 6793, - [6809] = 6794, - [6810] = 6801, - [6811] = 6804, - [6812] = 6792, - [6813] = 6798, - [6814] = 6792, - [6815] = 6804, - [6816] = 6805, - [6817] = 6793, - [6818] = 6798, - [6819] = 6801, - [6820] = 6820, - [6821] = 6804, - [6822] = 6822, - [6823] = 6794, - [6824] = 6794, - [6825] = 6792, - [6826] = 6798, - [6827] = 6805, - [6828] = 6801, - [6829] = 6793, - [6830] = 6830, - [6831] = 6804, - [6832] = 6805, - [6833] = 6793, + [6808] = 6804, + [6809] = 6793, + [6810] = 6810, + [6811] = 6793, + [6812] = 6793, + [6813] = 6793, + [6814] = 6793, + [6815] = 6793, + [6816] = 2960, + [6817] = 6804, + [6818] = 6799, + [6819] = 6793, + [6820] = 6793, + [6821] = 6793, + [6822] = 6799, + [6823] = 6793, + [6824] = 6800, + [6825] = 480, + [6826] = 6793, + [6827] = 478, + [6828] = 6793, + [6829] = 6557, + [6830] = 6793, + [6831] = 486, + [6832] = 6832, + [6833] = 6800, [6834] = 6834, - [6835] = 6835, - [6836] = 6792, - [6837] = 6801, - [6838] = 6798, - [6839] = 6792, - [6840] = 6798, + [6835] = 6793, + [6836] = 475, + [6837] = 6837, + [6838] = 6838, + [6839] = 6793, + [6840] = 6575, [6841] = 6841, - [6842] = 6804, - [6843] = 6805, - [6844] = 6793, - [6845] = 6792, - [6846] = 6801, - [6847] = 6798, - [6848] = 6792, - [6849] = 6849, - [6850] = 6794, - [6851] = 6851, - [6852] = 6841, - [6853] = 6849, - [6854] = 6798, - [6855] = 6801, - [6856] = 6804, + [6842] = 6842, + [6843] = 2624, + [6844] = 6799, + [6845] = 6793, + [6846] = 2961, + [6847] = 6804, + [6848] = 6848, + [6849] = 6793, + [6850] = 6557, + [6851] = 6793, + [6852] = 6590, + [6853] = 2962, + [6854] = 6854, + [6855] = 6590, + [6856] = 6800, [6857] = 6857, - [6858] = 6792, - [6859] = 6798, + [6858] = 6858, + [6859] = 6859, [6860] = 6860, - [6861] = 6804, - [6862] = 6805, + [6861] = 6861, + [6862] = 6862, [6863] = 6863, - [6864] = 6801, - [6865] = 6805, - [6866] = 6792, - [6867] = 6798, - [6868] = 6793, - [6869] = 6804, - [6870] = 6805, - [6871] = 6793, - [6872] = 6793, - [6873] = 6801, - [6874] = 6805, - [6875] = 6875, - [6876] = 6794, - [6877] = 6794, - [6878] = 6794, - [6879] = 6794, - [6880] = 6880, - [6881] = 6881, - [6882] = 6801, - [6883] = 6804, - [6884] = 6884, - [6885] = 6805, - [6886] = 6886, + [6864] = 6864, + [6865] = 6865, + [6866] = 6866, + [6867] = 6867, + [6868] = 6868, + [6869] = 6869, + [6870] = 6866, + [6871] = 6871, + [6872] = 6872, + [6873] = 6859, + [6874] = 6862, + [6875] = 6863, + [6876] = 6876, + [6877] = 6866, + [6878] = 6867, + [6879] = 6871, + [6880] = 6867, + [6881] = 6859, + [6882] = 6862, + [6883] = 6871, + [6884] = 6867, + [6885] = 6871, + [6886] = 6859, [6887] = 6887, - [6888] = 6888, + [6888] = 6863, [6889] = 6889, - [6890] = 6890, - [6891] = 6801, - [6892] = 6892, - [6893] = 6792, - [6894] = 6798, - [6895] = 6794, - [6896] = 6804, - [6897] = 6805, - [6898] = 6793, - [6899] = 6793, - [6900] = 6801, - [6901] = 6793, + [6890] = 6866, + [6891] = 6862, + [6892] = 6863, + [6893] = 6866, + [6894] = 6876, + [6895] = 6871, + [6896] = 6896, + [6897] = 6897, + [6898] = 6876, + [6899] = 6867, + [6900] = 6900, + [6901] = 6859, [6902] = 6902, [6903] = 6903, - [6904] = 6794, - [6905] = 6905, - [6906] = 6906, - [6907] = 6792, - [6908] = 6908, - [6909] = 6801, - [6910] = 6910, - [6911] = 6911, - [6912] = 6801, - [6913] = 6913, - [6914] = 6792, - [6915] = 6798, + [6904] = 6889, + [6905] = 6871, + [6906] = 6859, + [6907] = 6871, + [6908] = 6859, + [6909] = 6863, + [6910] = 6896, + [6911] = 6897, + [6912] = 6863, + [6913] = 6866, + [6914] = 6914, + [6915] = 6863, [6916] = 6916, - [6917] = 6916, - [6918] = 6801, - [6919] = 6804, - [6920] = 6792, - [6921] = 6798, - [6922] = 6805, - [6923] = 6804, - [6924] = 6805, - [6925] = 6801, - [6926] = 6793, - [6927] = 6906, - [6928] = 6793, - [6929] = 6794, - [6930] = 6798, - [6931] = 6875, - [6932] = 6801, - [6933] = 6794, - [6934] = 6804, - [6935] = 6935, - [6936] = 6804, - [6937] = 6805, - [6938] = 6938, - [6939] = 6801, - [6940] = 6940, - [6941] = 6805, - [6942] = 6792, - [6943] = 6798, - [6944] = 6793, - [6945] = 6804, - [6946] = 6801, - [6947] = 6805, - [6948] = 6793, - [6949] = 6794, - [6950] = 6950, - [6951] = 6951, - [6952] = 6794, - [6953] = 6801, - [6954] = 6954, - [6955] = 6955, - [6956] = 6956, - [6957] = 6957, - [6958] = 6958, - [6959] = 6959, - [6960] = 6801, - [6961] = 6961, - [6962] = 6794, - [6963] = 6792, - [6964] = 6792, - [6965] = 6798, - [6966] = 6966, - [6967] = 6801, - [6968] = 6804, - [6969] = 6805, - [6970] = 6793, - [6971] = 6841, - [6972] = 6798, - [6973] = 6794, - [6974] = 6801, - [6975] = 6975, - [6976] = 6804, - [6977] = 6805, - [6978] = 6978, - [6979] = 6793, - [6980] = 6980, - [6981] = 6801, - [6982] = 6982, - [6983] = 6849, - [6984] = 6794, - [6985] = 6985, - [6986] = 6792, - [6987] = 6798, - [6988] = 6801, - [6989] = 6805, - [6990] = 6804, - [6991] = 6805, - [6992] = 6985, - [6993] = 6793, - [6994] = 6881, - [6995] = 6801, - [6996] = 6793, - [6997] = 6794, - [6998] = 6980, - [6999] = 6792, - [7000] = 6957, - [7001] = 6792, - [7002] = 6801, - [7003] = 6798, - [7004] = 6800, - [7005] = 6798, - [7006] = 7006, - [7007] = 6804, - [7008] = 6792, - [7009] = 6801, - [7010] = 6798, + [6917] = 6889, + [6918] = 6866, + [6919] = 6859, + [6920] = 6867, + [6921] = 6871, + [6922] = 6862, + [6923] = 6897, + [6924] = 6867, + [6925] = 6859, + [6926] = 6866, + [6927] = 6889, + [6928] = 6863, + [6929] = 6866, + [6930] = 6871, + [6931] = 6871, + [6932] = 6859, + [6933] = 6897, + [6934] = 6859, + [6935] = 6863, + [6936] = 6862, + [6937] = 6889, + [6938] = 6866, + [6939] = 6863, + [6940] = 6876, + [6941] = 6863, + [6942] = 6866, + [6943] = 6897, + [6944] = 6862, + [6945] = 6876, + [6946] = 6871, + [6947] = 6889, + [6948] = 6859, + [6949] = 6866, + [6950] = 6863, + [6951] = 6866, + [6952] = 6862, + [6953] = 6897, + [6954] = 6876, + [6955] = 6866, + [6956] = 6866, + [6957] = 6889, + [6958] = 6863, + [6959] = 6871, + [6960] = 6859, + [6961] = 6876, + [6962] = 6863, + [6963] = 6897, + [6964] = 6866, + [6965] = 6866, + [6966] = 6867, + [6967] = 6889, + [6968] = 6871, + [6969] = 6859, + [6970] = 6970, + [6971] = 6863, + [6972] = 6862, + [6973] = 6897, + [6974] = 6867, + [6975] = 6866, + [6976] = 6862, + [6977] = 6889, + [6978] = 6871, + [6979] = 6871, + [6980] = 6859, + [6981] = 6876, + [6982] = 6867, + [6983] = 6897, + [6984] = 6863, + [6985] = 6866, + [6986] = 6871, + [6987] = 6889, + [6988] = 6988, + [6989] = 6859, + [6990] = 6859, + [6991] = 6863, + [6992] = 6871, + [6993] = 6897, + [6994] = 6859, + [6995] = 6995, + [6996] = 6866, + [6997] = 6889, + [6998] = 6863, + [6999] = 6866, + [7000] = 6862, + [7001] = 7001, + [7002] = 7002, + [7003] = 6897, + [7004] = 6863, + [7005] = 7005, + [7006] = 6876, + [7007] = 6889, + [7008] = 6871, + [7009] = 6859, + [7010] = 6867, [7011] = 7011, - [7012] = 6804, - [7013] = 6805, - [7014] = 6793, - [7015] = 6792, - [7016] = 6801, - [7017] = 6805, - [7018] = 6794, - [7019] = 7019, - [7020] = 6793, - [7021] = 6798, - [7022] = 6892, - [7023] = 6801, - [7024] = 6792, - [7025] = 6798, - [7026] = 6804, - [7027] = 6804, - [7028] = 6805, - [7029] = 6792, - [7030] = 6801, - [7031] = 6798, - [7032] = 6793, - [7033] = 6804, - [7034] = 6805, - [7035] = 6793, - [7036] = 6804, - [7037] = 6801, - [7038] = 6805, - [7039] = 6794, - [7040] = 6793, - [7041] = 6794, - [7042] = 7042, - [7043] = 6955, - [7044] = 6801, - [7045] = 6805, - [7046] = 6794, - [7047] = 6794, - [7048] = 6793, - [7049] = 7049, - [7050] = 6792, - [7051] = 6801, - [7052] = 6798, - [7053] = 6982, - [7054] = 6804, - [7055] = 6805, - [7056] = 6793, - [7057] = 7057, - [7058] = 6801, - [7059] = 6958, - [7060] = 7060, - [7061] = 6794, - [7062] = 6820, - [7063] = 6906, - [7064] = 6957, - [7065] = 6801, - [7066] = 6795, - [7067] = 6793, - [7068] = 7068, - [7069] = 6792, - [7070] = 6798, - [7071] = 6792, - [7072] = 6801, - [7073] = 6798, - [7074] = 7074, - [7075] = 6804, - [7076] = 7076, - [7077] = 6957, - [7078] = 6794, - [7079] = 6801, - [7080] = 6805, - [7081] = 6793, - [7082] = 6830, - [7083] = 6804, - [7084] = 6794, - [7085] = 6805, - [7086] = 6801, - [7087] = 6793, - [7088] = 6794, - [7089] = 6908, - [7090] = 6794, - [7091] = 7091, - [7092] = 7092, - [7093] = 6801, - [7094] = 6985, - [7095] = 6792, - [7096] = 6888, - [7097] = 6792, - [7098] = 6798, - [7099] = 6798, - [7100] = 6801, - [7101] = 6804, - [7102] = 6805, - [7103] = 6793, - [7104] = 6889, - [7105] = 6957, - [7106] = 6985, - [7107] = 6801, - [7108] = 6794, - [7109] = 7109, - [7110] = 6794, - [7111] = 6794, - [7112] = 6985, - [7113] = 6792, - [7114] = 6801, - [7115] = 6798, - [7116] = 6792, - [7117] = 6798, - [7118] = 7118, - [7119] = 6792, - [7120] = 6798, - [7121] = 6801, - [7122] = 6804, - [7123] = 6804, - [7124] = 6805, - [7125] = 6793, - [7126] = 6804, - [7127] = 6805, - [7128] = 6801, - [7129] = 6794, - [7130] = 6793, - [7131] = 6793, - [7132] = 6804, - [7133] = 6794, - [7134] = 6805, - [7135] = 6801, - [7136] = 6792, - [7137] = 6798, - [7138] = 6793, - [7139] = 6805, - [7140] = 6792, - [7141] = 6798, - [7142] = 6801, - [7143] = 6804, - [7144] = 6804, - [7145] = 6805, - [7146] = 6793, - [7147] = 6793, - [7148] = 6805, - [7149] = 6801, - [7150] = 6794, - [7151] = 6793, - [7152] = 6880, - [7153] = 6910, - [7154] = 7154, - [7155] = 6792, - [7156] = 6801, - [7157] = 6792, - [7158] = 6798, - [7159] = 6798, - [7160] = 6792, - [7161] = 6798, - [7162] = 6804, - [7163] = 6801, - [7164] = 6804, - [7165] = 6805, - [7166] = 6793, - [7167] = 6801, - [7168] = 6805, - [7169] = 6794, - [7170] = 6801, - [7171] = 6793, - [7172] = 6805, - [7173] = 6794, - [7174] = 6794, - [7175] = 6794, - [7176] = 7176, - [7177] = 6801, - [7178] = 6804, - [7179] = 6805, - [7180] = 6793, - [7181] = 6792, - [7182] = 6798, - [7183] = 6792, - [7184] = 6801, - [7185] = 6804, - [7186] = 6805, - [7187] = 6793, - [7188] = 6798, - [7189] = 6880, - [7190] = 6955, - [7191] = 6801, - [7192] = 6794, - [7193] = 6958, - [7194] = 6792, - [7195] = 7195, - [7196] = 7196, - [7197] = 7197, - [7198] = 6801, - [7199] = 6792, - [7200] = 6798, - [7201] = 6792, - [7202] = 6798, - [7203] = 6875, - [7204] = 6980, - [7205] = 6801, - [7206] = 6804, - [7207] = 6805, - [7208] = 6982, - [7209] = 6804, - [7210] = 6805, - [7211] = 7211, - [7212] = 6801, - [7213] = 6793, - [7214] = 6796, - [7215] = 6881, - [7216] = 6794, - [7217] = 6792, - [7218] = 6798, - [7219] = 6800, - [7220] = 6804, - [7221] = 6805, - [7222] = 7222, - [7223] = 7223, + [7012] = 6863, + [7013] = 6897, + [7014] = 6866, + [7015] = 6876, + [7016] = 6871, + [7017] = 6889, + [7018] = 6859, + [7019] = 6866, + [7020] = 6867, + [7021] = 6871, + [7022] = 7022, + [7023] = 6897, + [7024] = 6871, + [7025] = 6859, + [7026] = 6859, + [7027] = 6889, + [7028] = 6863, + [7029] = 6866, + [7030] = 6862, + [7031] = 7031, + [7032] = 6863, + [7033] = 6897, + [7034] = 6866, + [7035] = 6862, + [7036] = 6863, + [7037] = 6889, + [7038] = 6866, + [7039] = 7039, + [7040] = 6862, + [7041] = 6876, + [7042] = 6871, + [7043] = 6897, + [7044] = 6859, + [7045] = 7045, + [7046] = 6863, + [7047] = 6889, + [7048] = 6866, + [7049] = 6862, + [7050] = 6864, + [7051] = 6865, + [7052] = 7052, + [7053] = 6897, + [7054] = 7054, + [7055] = 6858, + [7056] = 6876, + [7057] = 6889, + [7058] = 6867, + [7059] = 6871, + [7060] = 6859, + [7061] = 7061, + [7062] = 6863, + [7063] = 6897, + [7064] = 6866, + [7065] = 6970, + [7066] = 6862, + [7067] = 6889, + [7068] = 6859, + [7069] = 7002, + [7070] = 6876, + [7071] = 6876, + [7072] = 6863, + [7073] = 6897, + [7074] = 6866, + [7075] = 6859, + [7076] = 6889, + [7077] = 7077, + [7078] = 6876, + [7079] = 6863, + [7080] = 7080, + [7081] = 6897, + [7082] = 7039, + [7083] = 6866, + [7084] = 6889, + [7085] = 6867, + [7086] = 7086, + [7087] = 6871, + [7088] = 6859, + [7089] = 6897, + [7090] = 6867, + [7091] = 6871, + [7092] = 6889, + [7093] = 6859, + [7094] = 7094, + [7095] = 6863, + [7096] = 6866, + [7097] = 6897, + [7098] = 6862, + [7099] = 6876, + [7100] = 6889, + [7101] = 7101, + [7102] = 6863, + [7103] = 6876, + [7104] = 7039, + [7105] = 6897, + [7106] = 6866, + [7107] = 7107, + [7108] = 6889, + [7109] = 6889, + [7110] = 7086, + [7111] = 6868, + [7112] = 6862, + [7113] = 6897, + [7114] = 6871, + [7115] = 6859, + [7116] = 6889, + [7117] = 7117, + [7118] = 6876, + [7119] = 7086, + [7120] = 7120, + [7121] = 6897, + [7122] = 7001, + [7123] = 6863, + [7124] = 6889, + [7125] = 6867, + [7126] = 7126, + [7127] = 6867, + [7128] = 6871, + [7129] = 6897, + [7130] = 6859, + [7131] = 7131, + [7132] = 6889, + [7133] = 6867, + [7134] = 6871, + [7135] = 6859, + [7136] = 7052, + [7137] = 6897, + [7138] = 6896, + [7139] = 6897, + [7140] = 6889, + [7141] = 7141, + [7142] = 7142, + [7143] = 6867, + [7144] = 7144, + [7145] = 6897, + [7146] = 6871, + [7147] = 7147, + [7148] = 6889, + [7149] = 7149, + [7150] = 7150, + [7151] = 7151, + [7152] = 6859, + [7153] = 6897, + [7154] = 7141, + [7155] = 6970, + [7156] = 6889, + [7157] = 6863, + [7158] = 7054, + [7159] = 7159, + [7160] = 6863, + [7161] = 6897, + [7162] = 6866, + [7163] = 7163, + [7164] = 6889, + [7165] = 6862, + [7166] = 6866, + [7167] = 6862, + [7168] = 6876, + [7169] = 6897, + [7170] = 6867, + [7171] = 7171, + [7172] = 6889, + [7173] = 7120, + [7174] = 6871, + [7175] = 7175, + [7176] = 6871, + [7177] = 6897, + [7178] = 6863, + [7179] = 6859, + [7180] = 6889, + [7181] = 6860, + [7182] = 6861, + [7183] = 7163, + [7184] = 7184, + [7185] = 6897, + [7186] = 6863, + [7187] = 6876, + [7188] = 6889, + [7189] = 6866, + [7190] = 6864, + [7191] = 6865, + [7192] = 6867, + [7193] = 6897, + [7194] = 6871, + [7195] = 6859, + [7196] = 6889, + [7197] = 6988, + [7198] = 6863, + [7199] = 6866, + [7200] = 6862, + [7201] = 6897, + [7202] = 7202, + [7203] = 6866, + [7204] = 6889, + [7205] = 6876, + [7206] = 6868, + [7207] = 7159, + [7208] = 6862, + [7209] = 6897, + [7210] = 6897, + [7211] = 6869, + [7212] = 6889, + [7213] = 7213, + [7214] = 6862, + [7215] = 7001, + [7216] = 7216, + [7217] = 6897, + [7218] = 6859, + [7219] = 7022, + [7220] = 6889, + [7221] = 6866, + [7222] = 7002, + [7223] = 6876, [7224] = 7224, - [7225] = 6804, - [7226] = 6887, - [7227] = 6820, - [7228] = 6792, - [7229] = 6798, - [7230] = 6792, - [7231] = 6804, - [7232] = 6792, - [7233] = 6805, - [7234] = 6798, - [7235] = 6792, - [7236] = 6798, - [7237] = 6888, - [7238] = 6804, - [7239] = 6805, - [7240] = 7240, - [7241] = 6798, - [7242] = 6793, - [7243] = 6804, - [7244] = 6805, - [7245] = 6798, - [7246] = 6804, - [7247] = 6794, - [7248] = 6805, - [7249] = 6793, - [7250] = 6889, - [7251] = 6792, - [7252] = 6798, - [7253] = 6805, - [7254] = 6804, - [7255] = 6805, - [7256] = 6794, - [7257] = 6804, - [7258] = 6805, - [7259] = 6910, - [7260] = 6794, - [7261] = 6792, - [7262] = 6792, - [7263] = 6793, - [7264] = 7076, - [7265] = 6798, - [7266] = 6798, - [7267] = 6863, - [7268] = 7268, - [7269] = 6804, - [7270] = 6805, - [7271] = 7271, - [7272] = 6908, - [7273] = 7068, - [7274] = 6804, - [7275] = 6805, - [7276] = 6793, - [7277] = 6793, - [7278] = 6792, - [7279] = 6798, - [7280] = 6830, - [7281] = 6804, - [7282] = 6805, - [7283] = 6794, - [7284] = 6978, - [7285] = 6892, - [7286] = 6794, - [7287] = 7287, - [7288] = 6792, - [7289] = 6798, - [7290] = 6905, - [7291] = 6951, - [7292] = 6804, - [7293] = 6805, - [7294] = 6792, - [7295] = 6798, - [7296] = 6978, - [7297] = 6863, - [7298] = 6957, - [7299] = 6792, - [7300] = 6792, - [7301] = 6798, - [7302] = 6798, - [7303] = 6804, - [7304] = 6805, - [7305] = 7305, - [7306] = 6804, - [7307] = 6805, - [7308] = 6793, - [7309] = 6982, - [7310] = 6792, - [7311] = 6798, - [7312] = 7312, - [7313] = 6804, - [7314] = 6805, - [7315] = 6794, - [7316] = 6887, - [7317] = 6801, - [7318] = 6804, - [7319] = 6792, - [7320] = 6798, - [7321] = 6792, - [7322] = 6798, - [7323] = 6880, - [7324] = 6804, - [7325] = 6805, - [7326] = 6804, - [7327] = 6805, - [7328] = 6793, - [7329] = 6805, - [7330] = 6792, - [7331] = 6792, - [7332] = 6798, - [7333] = 6798, - [7334] = 6804, - [7335] = 6805, - [7336] = 6793, - [7337] = 6913, - [7338] = 6794, - [7339] = 6804, - [7340] = 6805, - [7341] = 6793, - [7342] = 6795, - [7343] = 6792, - [7344] = 6798, - [7345] = 6875, - [7346] = 6804, - [7347] = 6805, - [7348] = 6794, - [7349] = 6804, - [7350] = 6794, - [7351] = 6794, - [7352] = 6887, - [7353] = 6792, - [7354] = 6792, - [7355] = 6798, - [7356] = 6798, - [7357] = 6804, - [7358] = 6805, - [7359] = 6820, - [7360] = 6798, - [7361] = 6830, - [7362] = 6804, - [7363] = 6805, - [7364] = 6798, + [7225] = 6897, + [7226] = 7226, + [7227] = 6876, + [7228] = 6889, + [7229] = 7039, + [7230] = 6867, + [7231] = 6871, + [7232] = 6859, + [7233] = 6897, + [7234] = 7086, + [7235] = 6863, + [7236] = 6889, + [7237] = 6866, + [7238] = 6862, + [7239] = 7239, + [7240] = 6863, + [7241] = 6897, + [7242] = 6867, + [7243] = 6871, + [7244] = 6889, + [7245] = 6859, + [7246] = 6876, + [7247] = 6876, + [7248] = 6863, + [7249] = 6897, + [7250] = 6866, + [7251] = 7251, + [7252] = 6889, + [7253] = 6887, + [7254] = 6862, + [7255] = 6866, + [7256] = 6862, + [7257] = 6897, + [7258] = 6876, + [7259] = 7259, + [7260] = 6889, + [7261] = 7101, + [7262] = 6867, + [7263] = 6876, + [7264] = 6867, + [7265] = 6897, + [7266] = 6871, + [7267] = 6859, + [7268] = 6889, + [7269] = 7269, + [7270] = 6863, + [7271] = 7141, + [7272] = 6867, + [7273] = 6897, + [7274] = 6871, + [7275] = 6859, + [7276] = 6889, + [7277] = 7184, + [7278] = 7144, + [7279] = 6866, + [7280] = 6862, + [7281] = 6897, + [7282] = 7141, + [7283] = 6862, + [7284] = 6889, + [7285] = 7163, + [7286] = 6863, + [7287] = 6871, + [7288] = 6867, + [7289] = 6897, + [7290] = 6876, + [7291] = 7291, + [7292] = 6889, + [7293] = 6867, + [7294] = 6988, + [7295] = 6866, + [7296] = 6862, + [7297] = 6897, + [7298] = 6871, + [7299] = 6859, + [7300] = 6889, + [7301] = 7301, + [7302] = 7302, + [7303] = 6871, + [7304] = 6863, + [7305] = 6897, + [7306] = 6876, + [7307] = 6866, + [7308] = 6889, + [7309] = 7309, + [7310] = 6862, + [7311] = 7184, + [7312] = 6859, + [7313] = 6897, + [7314] = 6867, + [7315] = 6876, + [7316] = 6889, + [7317] = 6863, + [7318] = 7318, + [7319] = 7319, + [7320] = 7320, + [7321] = 6897, + [7322] = 7322, + [7323] = 6866, + [7324] = 6889, + [7325] = 6867, + [7326] = 7326, + [7327] = 6862, + [7328] = 6867, + [7329] = 6897, + [7330] = 6871, + [7331] = 6871, + [7332] = 6889, + [7333] = 6859, + [7334] = 7259, + [7335] = 6863, + [7336] = 6866, + [7337] = 6897, + [7338] = 7338, + [7339] = 6862, + [7340] = 6889, + [7341] = 6859, + [7342] = 7342, + [7343] = 7343, + [7344] = 6871, + [7345] = 6897, + [7346] = 7251, + [7347] = 6863, + [7348] = 6889, + [7349] = 6866, + [7350] = 7350, + [7351] = 6862, + [7352] = 6859, + [7353] = 6897, + [7354] = 6876, + [7355] = 7355, + [7356] = 6889, + [7357] = 6876, + [7358] = 6867, + [7359] = 6871, + [7360] = 6887, + [7361] = 6897, + [7362] = 7362, + [7363] = 7363, + [7364] = 6889, [7365] = 7365, - [7366] = 6804, - [7367] = 6805, - [7368] = 6958, - [7369] = 7369, - [7370] = 6792, - [7371] = 6798, - [7372] = 6863, - [7373] = 6978, - [7374] = 6804, - [7375] = 6805, - [7376] = 6793, - [7377] = 6820, - [7378] = 6910, - [7379] = 7379, - [7380] = 6794, - [7381] = 6801, - [7382] = 7382, - [7383] = 6795, - [7384] = 6804, - [7385] = 6796, - [7386] = 6888, - [7387] = 6805, - [7388] = 7076, - [7389] = 6822, - [7390] = 7390, - [7391] = 6863, - [7392] = 7268, - [7393] = 6985, - [7394] = 6792, - [7395] = 6908, - [7396] = 7068, - [7397] = 6798, - [7398] = 6822, - [7399] = 6792, - [7400] = 6951, - [7401] = 6908, - [7402] = 6910, - [7403] = 6801, - [7404] = 6798, - [7405] = 6913, - [7406] = 6804, - [7407] = 6804, - [7408] = 6916, - [7409] = 6906, - [7410] = 6805, - [7411] = 6793, - [7412] = 6793, - [7413] = 6805, - [7414] = 6794, - [7415] = 6793, - [7416] = 7416, - [7417] = 6889, - [7418] = 6955, - [7419] = 6958, - [7420] = 6794, - [7421] = 7421, - [7422] = 7422, - [7423] = 6794, - [7424] = 7424, - [7425] = 6980, - [7426] = 6982, - [7427] = 6841, - [7428] = 6849, - [7429] = 6881, - [7430] = 6792, - [7431] = 6798, - [7432] = 6800, + [7366] = 6859, + [7367] = 7101, + [7368] = 6876, + [7369] = 6897, + [7370] = 7370, + [7371] = 7001, + [7372] = 6889, + [7373] = 7061, + [7374] = 6889, + [7375] = 6863, + [7376] = 7376, + [7377] = 6897, + [7378] = 6867, + [7379] = 6866, + [7380] = 6889, + [7381] = 6869, + [7382] = 6871, + [7383] = 6896, + [7384] = 6859, + [7385] = 6897, + [7386] = 7386, + [7387] = 6863, + [7388] = 6889, + [7389] = 6866, + [7390] = 6862, + [7391] = 6862, + [7392] = 7392, + [7393] = 6897, + [7394] = 7022, + [7395] = 6863, + [7396] = 6889, + [7397] = 6876, + [7398] = 6876, + [7399] = 6866, + [7400] = 6862, + [7401] = 6897, + [7402] = 7163, + [7403] = 6970, + [7404] = 6889, + [7405] = 6867, + [7406] = 6871, + [7407] = 6860, + [7408] = 7052, + [7409] = 6897, + [7410] = 6896, + [7411] = 6897, + [7412] = 6889, + [7413] = 6859, + [7414] = 7144, + [7415] = 6867, + [7416] = 7184, + [7417] = 6867, + [7418] = 6871, + [7419] = 7054, + [7420] = 7159, + [7421] = 6859, + [7422] = 6871, + [7423] = 6863, + [7424] = 6866, + [7425] = 6862, + [7426] = 6988, + [7427] = 6867, + [7428] = 6876, + [7429] = 7061, + [7430] = 6863, + [7431] = 6863, + [7432] = 6866, [7433] = 7433, - [7434] = 6804, - [7435] = 6805, - [7436] = 6793, - [7437] = 6794, - [7438] = 6792, - [7439] = 6794, - [7440] = 6792, - [7441] = 6798, - [7442] = 7442, - [7443] = 7443, - [7444] = 6804, - [7445] = 6805, - [7446] = 6793, - [7447] = 7447, - [7448] = 6798, - [7449] = 6792, - [7450] = 6798, - [7451] = 6888, - [7452] = 6804, - [7453] = 6805, - [7454] = 6793, - [7455] = 6957, - [7456] = 6792, - [7457] = 6794, - [7458] = 6798, - [7459] = 6905, - [7460] = 6804, - [7461] = 6805, - [7462] = 6793, - [7463] = 7463, - [7464] = 6881, - [7465] = 6888, - [7466] = 6889, - [7467] = 6792, - [7468] = 6798, - [7469] = 6794, - [7470] = 6804, - [7471] = 6805, - [7472] = 7268, - [7473] = 6793, - [7474] = 6910, - [7475] = 6794, - [7476] = 6801, - [7477] = 6889, - [7478] = 7076, - [7479] = 6794, - [7480] = 7480, - [7481] = 6863, - [7482] = 7268, - [7483] = 7483, - [7484] = 6830, - [7485] = 6908, - [7486] = 7068, - [7487] = 7487, - [7488] = 7488, - [7489] = 6796, - [7490] = 6951, - [7491] = 6800, - [7492] = 6798, - [7493] = 6955, - [7494] = 6822, - [7495] = 6985, - [7496] = 6792, - [7497] = 6798, - [7498] = 6957, - [7499] = 6804, - [7500] = 6805, - [7501] = 6793, - [7502] = 6792, - [7503] = 6892, - [7504] = 6794, - [7505] = 6798, - [7506] = 6792, - [7507] = 6801, - [7508] = 6792, - [7509] = 6798, - [7510] = 6863, - [7511] = 7268, - [7512] = 6908, - [7513] = 7068, - [7514] = 6985, - [7515] = 6804, - [7516] = 6951, - [7517] = 6805, - [7518] = 6798, - [7519] = 6793, - [7520] = 6792, - [7521] = 6798, - [7522] = 6863, - [7523] = 6905, - [7524] = 6804, - [7525] = 6805, - [7526] = 7526, - [7527] = 7527, - [7528] = 6793, - [7529] = 7529, - [7530] = 6804, - [7531] = 6805, - [7532] = 6793, - [7533] = 6794, - [7534] = 6804, - [7535] = 6804, - [7536] = 7268, - [7537] = 7268, - [7538] = 7268, - [7539] = 7268, - [7540] = 7268, - [7541] = 7268, - [7542] = 7268, - [7543] = 7268, - [7544] = 7268, - [7545] = 7268, - [7546] = 7268, - [7547] = 7268, - [7548] = 7268, - [7549] = 7268, - [7550] = 7268, - [7551] = 7268, - [7552] = 7268, - [7553] = 7268, - [7554] = 7268, - [7555] = 7268, - [7556] = 7268, - [7557] = 7268, - [7558] = 7268, - [7559] = 7268, - [7560] = 7268, - [7561] = 7268, - [7562] = 7268, - [7563] = 7268, - [7564] = 7268, - [7565] = 7268, - [7566] = 7268, - [7567] = 7268, - [7568] = 7268, - [7569] = 7268, - [7570] = 7268, - [7571] = 7268, - [7572] = 7268, - [7573] = 7268, - [7574] = 7268, - [7575] = 7268, - [7576] = 7268, - [7577] = 7268, - [7578] = 7268, - [7579] = 7268, - [7580] = 7268, - [7581] = 7268, - [7582] = 7268, - [7583] = 7268, - [7584] = 7268, - [7585] = 7268, - [7586] = 7268, - [7587] = 7268, - [7588] = 7268, - [7589] = 7268, - [7590] = 7268, - [7591] = 7268, - [7592] = 7268, - [7593] = 7268, - [7594] = 7268, - [7595] = 7268, - [7596] = 7019, - [7597] = 6794, - [7598] = 6916, - [7599] = 6805, - [7600] = 6801, - [7601] = 6792, - [7602] = 6908, - [7603] = 6910, - [7604] = 7019, - [7605] = 6801, - [7606] = 6798, - [7607] = 7019, - [7608] = 7019, - [7609] = 7019, - [7610] = 7019, - [7611] = 7019, - [7612] = 7019, - [7613] = 7019, - [7614] = 7019, - [7615] = 7019, - [7616] = 7019, - [7617] = 7019, - [7618] = 7019, - [7619] = 7019, - [7620] = 7019, - [7621] = 7019, - [7622] = 7019, - [7623] = 7019, - [7624] = 7019, - [7625] = 7019, - [7626] = 7019, - [7627] = 7019, - [7628] = 7019, - [7629] = 7019, - [7630] = 7019, - [7631] = 7019, - [7632] = 7019, - [7633] = 7019, - [7634] = 7019, - [7635] = 7019, - [7636] = 7019, - [7637] = 7019, - [7638] = 7019, - [7639] = 7019, - [7640] = 7019, - [7641] = 7019, - [7642] = 7019, - [7643] = 7019, - [7644] = 7019, - [7645] = 7019, - [7646] = 7019, - [7647] = 7019, - [7648] = 7019, - [7649] = 7019, - [7650] = 7019, - [7651] = 7019, - [7652] = 7019, - [7653] = 7019, - [7654] = 7019, - [7655] = 7019, - [7656] = 7019, - [7657] = 7019, - [7658] = 7019, - [7659] = 7019, - [7660] = 7019, - [7661] = 7019, - [7662] = 7019, - [7663] = 7019, - [7664] = 7019, - [7665] = 7019, - [7666] = 7019, - [7667] = 7019, - [7668] = 7019, - [7669] = 6913, - [7670] = 6980, + [7434] = 6860, + [7435] = 6970, + [7436] = 6861, + [7437] = 6862, + [7438] = 6867, + [7439] = 6871, + [7440] = 6859, + [7441] = 7002, + [7442] = 6863, + [7443] = 6866, + [7444] = 6862, + [7445] = 6867, + [7446] = 6867, + [7447] = 6867, + [7448] = 6876, + [7449] = 6864, + [7450] = 6865, + [7451] = 6876, + [7452] = 6871, + [7453] = 6859, + [7454] = 6868, + [7455] = 6871, + [7456] = 6863, + [7457] = 6869, + [7458] = 6866, + [7459] = 6867, + [7460] = 6871, + [7461] = 6862, + [7462] = 7350, + [7463] = 6859, + [7464] = 6871, + [7465] = 7101, + [7466] = 7433, + [7467] = 6863, + [7468] = 6876, + [7469] = 6866, + [7470] = 7052, + [7471] = 7319, + [7472] = 6862, + [7473] = 6859, + [7474] = 6859, + [7475] = 6876, + [7476] = 6861, + [7477] = 6871, + [7478] = 6871, + [7479] = 6889, + [7480] = 7259, + [7481] = 6876, + [7482] = 6859, + [7483] = 6863, + [7484] = 7259, + [7485] = 6867, + [7486] = 6871, + [7487] = 6859, + [7488] = 6863, + [7489] = 7489, + [7490] = 6863, + [7491] = 7489, + [7492] = 6866, + [7493] = 6862, + [7494] = 6866, + [7495] = 7495, + [7496] = 6876, + [7497] = 7259, + [7498] = 6866, + [7499] = 7126, + [7500] = 6863, + [7501] = 6867, + [7502] = 6871, + [7503] = 7061, + [7504] = 6859, + [7505] = 6862, + [7506] = 6863, + [7507] = 6867, + [7508] = 6871, + [7509] = 6859, + [7510] = 7142, + [7511] = 6863, + [7512] = 6866, + [7513] = 6862, + [7514] = 7514, + [7515] = 6866, + [7516] = 6876, + [7517] = 6862, + [7518] = 6866, + [7519] = 7022, + [7520] = 6862, + [7521] = 6862, + [7522] = 7259, + [7523] = 6867, + [7524] = 6876, + [7525] = 6863, + [7526] = 7126, + [7527] = 6876, + [7528] = 6866, + [7529] = 6862, + [7530] = 6867, + [7531] = 6867, + [7532] = 6871, + [7533] = 6871, + [7534] = 6871, + [7535] = 6859, + [7536] = 6867, + [7537] = 6871, + [7538] = 6859, + [7539] = 6859, + [7540] = 6876, + [7541] = 6876, + [7542] = 6867, + [7543] = 6871, + [7544] = 6863, + [7545] = 6863, + [7546] = 6866, + [7547] = 6862, + [7548] = 6866, + [7549] = 6862, + [7550] = 6876, + [7551] = 6863, + [7552] = 6859, + [7553] = 7251, + [7554] = 6876, + [7555] = 6866, + [7556] = 6863, + [7557] = 6862, + [7558] = 6866, + [7559] = 6876, + [7560] = 6862, + [7561] = 7120, + [7562] = 6867, + [7563] = 6871, + [7564] = 6859, + [7565] = 7142, + [7566] = 6863, + [7567] = 6866, + [7568] = 6862, + [7569] = 6859, + [7570] = 6876, + [7571] = 6876, + [7572] = 6876, + [7573] = 7259, + [7574] = 7259, + [7575] = 6887, + [7576] = 6867, + [7577] = 7577, + [7578] = 7578, + [7579] = 7579, + [7580] = 6871, + [7581] = 7061, + [7582] = 6859, + [7583] = 6863, + [7584] = 6863, + [7585] = 7585, + [7586] = 7350, + [7587] = 7587, + [7588] = 7101, + [7589] = 7101, + [7590] = 7433, + [7591] = 6867, + [7592] = 6871, + [7593] = 7052, + [7594] = 7319, + [7595] = 6859, + [7596] = 6867, + [7597] = 7597, + [7598] = 7489, + [7599] = 6863, + [7600] = 7600, + [7601] = 6866, + [7602] = 6871, + [7603] = 6862, + [7604] = 6889, + [7605] = 6859, + [7606] = 6867, + [7607] = 6866, + [7608] = 6871, + [7609] = 7609, + [7610] = 6863, + [7611] = 6859, + [7612] = 6866, + [7613] = 6876, + [7614] = 6862, + [7615] = 6862, + [7616] = 6866, + [7617] = 6876, + [7618] = 7002, + [7619] = 7061, + [7620] = 7620, + [7621] = 7052, + [7622] = 6970, + [7623] = 6896, + [7624] = 6897, + [7625] = 7144, + [7626] = 6863, + [7627] = 7002, + [7628] = 6867, + [7629] = 6871, + [7630] = 7054, + [7631] = 7631, + [7632] = 6859, + [7633] = 6876, + [7634] = 7159, + [7635] = 6863, + [7636] = 6866, + [7637] = 6862, + [7638] = 6866, + [7639] = 7639, + [7640] = 7640, + [7641] = 6876, + [7642] = 6862, + [7643] = 6862, + [7644] = 7142, + [7645] = 6876, + [7646] = 6859, + [7647] = 6863, + [7648] = 6867, + [7649] = 6860, + [7650] = 6861, + [7651] = 7651, + [7652] = 6876, + [7653] = 6871, + [7654] = 6859, + [7655] = 6867, + [7656] = 6871, + [7657] = 6859, + [7658] = 7039, + [7659] = 7659, + [7660] = 6863, + [7661] = 6866, + [7662] = 6862, + [7663] = 6864, + [7664] = 6865, + [7665] = 6876, + [7666] = 6867, + [7667] = 7667, + [7668] = 7086, + [7669] = 6868, + [7670] = 7061, + [7671] = 6863, + [7672] = 6869, + [7673] = 6866, + [7674] = 6871, + [7675] = 7061, + [7676] = 7350, + [7677] = 6859, + [7678] = 7678, + [7679] = 7101, + [7680] = 7433, + [7681] = 6867, + [7682] = 6871, + [7683] = 7052, + [7684] = 7319, + [7685] = 6859, + [7686] = 7686, + [7687] = 6863, + [7688] = 7489, + [7689] = 6866, + [7690] = 6862, + [7691] = 7691, + [7692] = 7251, + [7693] = 6876, + [7694] = 6859, + [7695] = 6867, + [7696] = 6871, + [7697] = 6876, + [7698] = 6867, + [7699] = 6867, + [7700] = 6859, + [7701] = 7701, + [7702] = 6871, + [7703] = 6867, + [7704] = 6871, + [7705] = 6859, + [7706] = 6863, + [7707] = 6863, + [7708] = 7101, + [7709] = 7433, + [7710] = 7052, + [7711] = 7319, + [7712] = 6866, + [7713] = 6862, + [7714] = 7489, + [7715] = 6866, + [7716] = 6862, + [7717] = 6876, + [7718] = 6859, + [7719] = 6889, + [7720] = 6871, + [7721] = 6863, + [7722] = 6867, + [7723] = 6866, + [7724] = 6876, + [7725] = 6859, + [7726] = 6871, + [7727] = 6867, + [7728] = 6871, + [7729] = 6859, + [7730] = 7120, + [7731] = 6863, + [7732] = 6866, + [7733] = 6862, + [7734] = 7433, + [7735] = 7433, + [7736] = 7433, + [7737] = 7433, + [7738] = 7433, + [7739] = 7433, + [7740] = 7433, + [7741] = 7433, + [7742] = 7433, + [7743] = 7433, + [7744] = 7433, + [7745] = 7433, + [7746] = 7433, + [7747] = 7433, + [7748] = 7433, + [7749] = 7433, + [7750] = 7433, + [7751] = 7433, + [7752] = 7433, + [7753] = 7433, + [7754] = 7433, + [7755] = 7433, + [7756] = 7433, + [7757] = 7433, + [7758] = 7433, + [7759] = 7433, + [7760] = 7433, + [7761] = 7433, + [7762] = 7433, + [7763] = 7433, + [7764] = 7433, + [7765] = 7433, + [7766] = 7433, + [7767] = 7433, + [7768] = 7433, + [7769] = 7433, + [7770] = 7433, + [7771] = 7433, + [7772] = 7433, + [7773] = 7433, + [7774] = 7433, + [7775] = 7433, + [7776] = 7433, + [7777] = 7433, + [7778] = 7433, + [7779] = 7433, + [7780] = 7433, + [7781] = 7433, + [7782] = 7433, + [7783] = 7433, + [7784] = 7433, + [7785] = 7433, + [7786] = 7433, + [7787] = 7433, + [7788] = 7433, + [7789] = 7433, + [7790] = 7433, + [7791] = 7433, + [7792] = 7433, + [7793] = 7433, + [7794] = 6858, + [7795] = 6863, + [7796] = 7796, + [7797] = 6876, + [7798] = 6896, + [7799] = 6897, + [7800] = 7126, + [7801] = 6862, + [7802] = 6858, + [7803] = 6863, + [7804] = 6866, + [7805] = 6858, + [7806] = 6858, + [7807] = 6858, + [7808] = 6858, + [7809] = 6858, + [7810] = 6858, + [7811] = 6858, + [7812] = 6858, + [7813] = 6858, + [7814] = 6858, + [7815] = 6858, + [7816] = 6858, + [7817] = 6858, + [7818] = 6858, + [7819] = 6858, + [7820] = 6858, + [7821] = 6858, + [7822] = 6858, + [7823] = 6858, + [7824] = 6858, + [7825] = 6858, + [7826] = 6858, + [7827] = 6858, + [7828] = 6858, + [7829] = 6858, + [7830] = 6858, + [7831] = 6858, + [7832] = 6858, + [7833] = 6858, + [7834] = 6858, + [7835] = 6858, + [7836] = 6858, + [7837] = 6858, + [7838] = 6858, + [7839] = 6858, + [7840] = 6858, + [7841] = 6858, + [7842] = 6858, + [7843] = 6871, + [7844] = 6858, + [7845] = 6858, + [7846] = 6858, + [7847] = 6858, + [7848] = 6858, + [7849] = 6858, + [7850] = 6858, + [7851] = 6858, + [7852] = 6858, + [7853] = 6858, + [7854] = 6858, + [7855] = 6858, + [7856] = 6858, + [7857] = 6858, + [7858] = 6858, + [7859] = 6858, + [7860] = 6858, + [7861] = 6858, + [7862] = 6858, + [7863] = 6858, + [7864] = 6858, + [7865] = 6858, + [7866] = 6858, + [7867] = 6859, + [7868] = 6859, }; static TSCharacterRange sym__comment_word_character_set_1[] = { @@ -10438,56 +10650,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( - '!', 823, - '"', 791, - '#', 828, - '$', 784, - '%', 650, - '&', 604, - '\'', 494, - '(', 657, - ')', 658, - '*', 827, - '+', 773, - ',', 560, - '-', 771, - '.', 952, - '/', 645, - '0', 947, - ':', 766, - ';', 557, - '<', 610, - '=', 830, - '>', 619, - '?', 840, - '@', 825, - '[', 677, + '!', 829, + '"', 790, + '#', 834, + '$', 783, + '%', 649, + '&', 603, + '\'', 809, + '(', 656, + ')', 657, + '*', 833, + '+', 772, + ',', 559, + '-', 770, + '.', 958, + '/', 644, + '0', 953, + ':', 765, + ';', 556, + '<', 609, + '=', 836, + '>', 618, + '?', 846, + '@', 831, + '[', 676, '\\', 302, - ']', 678, - '^', 598, - '_', 949, - '`', 859, - 'e', 959, - 'i', 958, - '{', 669, - '|', 595, - '}', 781, - '~', 775, + ']', 677, + '^', 597, + '_', 955, + '`', 865, + 'e', 965, + 'i', 964, + '{', 668, + '|', 594, + '}', 780, + '~', 774, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(548); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(547); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 1: if (lookahead == '\n') SKIP(403); END_STATE(); case 2: - if (lookahead == '\n') SKIP(419); + if (lookahead == '\n') SKIP(420); END_STATE(); case 3: - if (lookahead == '\n') SKIP(420); + if (lookahead == '\n') SKIP(419); END_STATE(); case 4: if (lookahead == '\n') SKIP(421); @@ -10497,40 +10709,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 6: ADVANCE_MAP( - '\n', 691, - '!', 673, - '"', 791, - '#', 865, - '$', 784, - '%', 652, - '&', 604, - '\'', 494, - '(', 657, - ')', 658, - '*', 641, - '+', 774, - '-', 772, - '/', 647, - '0', 806, - ';', 558, - '<', 610, - '=', 563, - '>', 619, - '?', 764, + '\n', 690, + '!', 672, + '"', 790, + '#', 871, + '$', 783, + '%', 651, + '&', 603, + '\'', 809, + '(', 656, + ')', 657, + '*', 640, + '+', 773, + '-', 771, + '/', 646, + '0', 812, + ';', 557, + '<', 609, + '=', 562, + '>', 618, + '?', 763, '\\', 308, - '^', 599, - '`', 859, - '|', 595, - '~', 775, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '^', 598, + '`', 865, + '|', 594, + '~', 774, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 7: if (lookahead == '\n') SKIP(405); @@ -10549,78 +10761,78 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 12: ADVANCE_MAP( - '\n', 692, - '!', 673, - '"', 791, - '#', 819, - '$', 784, - '%', 652, - '&', 604, - '\'', 494, - '(', 657, - ')', 658, - '*', 641, - '+', 633, - '-', 636, - '/', 647, - '0', 946, - ';', 558, - '<', 610, - '=', 563, - '>', 619, - '?', 764, - '@', 945, + '\n', 691, + '!', 672, + '"', 790, + '#', 825, + '$', 783, + '%', 651, + '&', 603, + '\'', 809, + '(', 656, + ')', 657, + '*', 640, + '+', 632, + '-', 635, + '/', 646, + '0', 952, + ';', 557, + '<', 609, + '=', 562, + '>', 618, + '?', 763, + '@', 951, '\\', 14, - '^', 599, - '_', 950, - '`', 858, - '|', 595, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '^', 598, + '_', 956, + '`', 864, + '|', 594, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(883); + if (lookahead == '\n') ADVANCE(889); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(883); + if (lookahead == '\n') ADVANCE(889); if (lookahead == '\r') ADVANCE(13); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(12); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(943); + if (lookahead == '\n') ADVANCE(949); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(943); + if (lookahead == '\n') ADVANCE(949); if (lookahead == '\r') ADVANCE(15); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(943); + if (lookahead == '\n') ADVANCE(949); if (lookahead == '\r') ADVANCE(15); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(961); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(967); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(921); + if (lookahead == '\n') ADVANCE(927); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(921); + if (lookahead == '\n') ADVANCE(927); if (lookahead == '\r') ADVANCE(18); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(404); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 20: - if (lookahead == '\n') SKIP(146); + if (lookahead == '\n') SKIP(147); END_STATE(); case 21: if (lookahead == '\n') SKIP(427); @@ -10638,114 +10850,114 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(246); END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(885); + if (lookahead == '\n') SKIP(249); END_STATE(); case 27: - if (lookahead == '\n') ADVANCE(885); - if (lookahead == '\r') ADVANCE(26); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(220); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') ADVANCE(891); END_STATE(); case 28: - if (lookahead == '\n') SKIP(249); + if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\r') ADVANCE(27); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(220); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 29: - if (lookahead == '\n') ADVANCE(889); + if (lookahead == '\n') SKIP(252); END_STATE(); case 30: - if (lookahead == '\n') ADVANCE(889); - if (lookahead == '\r') ADVANCE(29); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(242); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') ADVANCE(895); END_STATE(); case 31: - if (lookahead == '\n') SKIP(252); + if (lookahead == '\n') ADVANCE(895); + if (lookahead == '\r') ADVANCE(30); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(242); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 32: - if (lookahead == '\n') ADVANCE(895); + if (lookahead == '\n') SKIP(255); END_STATE(); case 33: - if (lookahead == '\n') ADVANCE(895); - if (lookahead == '\r') ADVANCE(32); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(251); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') SKIP(258); END_STATE(); case 34: - if (lookahead == '\n') SKIP(255); + if (lookahead == '\n') ADVANCE(899); END_STATE(); case 35: - if (lookahead == '\n') SKIP(258); + if (lookahead == '\n') ADVANCE(899); + if (lookahead == '\r') ADVANCE(34); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(248); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 36: - if (lookahead == '\n') ADVANCE(901); + if (lookahead == '\n') SKIP(261); END_STATE(); case 37: - if (lookahead == '\n') ADVANCE(901); - if (lookahead == '\r') ADVANCE(36); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(260); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') SKIP(460); END_STATE(); case 38: - if (lookahead == '\n') SKIP(261); + if (lookahead == '\n') SKIP(464); END_STATE(); case 39: - if (lookahead == '\n') SKIP(464); + if (lookahead == '\n') ADVANCE(907); END_STATE(); case 40: - if (lookahead == '\n') SKIP(460); + if (lookahead == '\n') ADVANCE(907); + if (lookahead == '\r') ADVANCE(39); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(260); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 41: - if (lookahead == '\n') SKIP(267); + if (lookahead == '\n') SKIP(264); END_STATE(); case 42: - if (lookahead == '\n') ADVANCE(905); + if (lookahead == '\n') ADVANCE(911); END_STATE(); case 43: - if (lookahead == '\n') ADVANCE(905); + if (lookahead == '\n') ADVANCE(911); if (lookahead == '\r') ADVANCE(42); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(266); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 44: - if (lookahead == '\n') ADVANCE(907); + if (lookahead == '\n') SKIP(426); END_STATE(); case 45: - if (lookahead == '\n') ADVANCE(907); - if (lookahead == '\r') ADVANCE(44); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(269); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') ADVANCE(915); END_STATE(); case 46: - if (lookahead == '\n') SKIP(426); + if (lookahead == '\n') ADVANCE(915); + if (lookahead == '\r') ADVANCE(45); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(272); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 47: - if (lookahead == '\n') ADVANCE(911); + if (lookahead == '\n') SKIP(273); END_STATE(); case 48: - if (lookahead == '\n') ADVANCE(911); - if (lookahead == '\r') ADVANCE(47); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(275); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') ADVANCE(918); END_STATE(); case 49: - if (lookahead == '\n') ADVANCE(923); + if (lookahead == '\n') ADVANCE(918); + if (lookahead == '\r') ADVANCE(48); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(277); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 50: - if (lookahead == '\n') ADVANCE(923); - if (lookahead == '\r') ADVANCE(49); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(412); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') ADVANCE(929); END_STATE(); case 51: - if (lookahead == '\n') SKIP(273); + if (lookahead == '\n') ADVANCE(929); + if (lookahead == '\r') ADVANCE(50); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(412); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 52: if (lookahead == '\n') SKIP(473); @@ -10754,682 +10966,682 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(467); END_STATE(); case 54: - if (lookahead == '\n') ADVANCE(925); + if (lookahead == '\n') SKIP(463); END_STATE(); case 55: - if (lookahead == '\n') ADVANCE(925); - if (lookahead == '\r') ADVANCE(54); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(414); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') ADVANCE(931); END_STATE(); case 56: - if (lookahead == '\n') ADVANCE(916); + if (lookahead == '\n') ADVANCE(931); + if (lookahead == '\r') ADVANCE(55); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(414); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 57: - if (lookahead == '\n') ADVANCE(916); - if (lookahead == '\r') ADVANCE(56); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(285); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') ADVANCE(922); END_STATE(); case 58: - if (lookahead == '\n') SKIP(463); + if (lookahead == '\n') ADVANCE(922); + if (lookahead == '\r') ADVANCE(57); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(285); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 59: - if (lookahead == '\n') ADVANCE(926); + if (lookahead == '\n') ADVANCE(932); END_STATE(); case 60: - if (lookahead == '\n') ADVANCE(926); + if (lookahead == '\n') ADVANCE(932); if (lookahead == '\r') ADVANCE(59); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(415); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 61: - if (lookahead == '\n') ADVANCE(933); + if (lookahead == '\n') ADVANCE(939); END_STATE(); case 62: - if (lookahead == '\n') ADVANCE(933); + if (lookahead == '\n') ADVANCE(939); if (lookahead == '\r') ADVANCE(61); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(432); END_STATE(); case 63: - if (lookahead == '\n') ADVANCE(931); + if (lookahead == '\n') SKIP(469); END_STATE(); case 64: - if (lookahead == '\n') ADVANCE(931); - if (lookahead == '\r') ADVANCE(63); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(430); + if (lookahead == '\n') ADVANCE(937); END_STATE(); case 65: - if (lookahead == '\n') SKIP(469); + if (lookahead == '\n') ADVANCE(937); + if (lookahead == '\r') ADVANCE(64); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(430); END_STATE(); case 66: - if (lookahead == '\n') ADVANCE(932); + if (lookahead == '\n') ADVANCE(938); END_STATE(); case 67: - if (lookahead == '\n') ADVANCE(932); + if (lookahead == '\n') ADVANCE(938); if (lookahead == '\r') ADVANCE(66); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(431); END_STATE(); case 68: - if (lookahead == '\n') SKIP(436); + if (lookahead == '\n') ADVANCE(941); END_STATE(); case 69: - if (lookahead == '\n') ADVANCE(935); - END_STATE(); - case 70: - if (lookahead == '\n') ADVANCE(935); - if (lookahead == '\r') ADVANCE(69); + if (lookahead == '\n') ADVANCE(941); + if (lookahead == '\r') ADVANCE(68); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(434); END_STATE(); + case 70: + if (lookahead == '\n') SKIP(436); + END_STATE(); case 71: - if (lookahead == '\n') SKIP(437); + if (lookahead == '\n') SKIP(425); END_STATE(); case 72: - if (lookahead == '\n') SKIP(425); + if (lookahead == '\n') SKIP(437); END_STATE(); case 73: - if (lookahead == '\n') ADVANCE(922); + if (lookahead == '\n') ADVANCE(928); END_STATE(); case 74: - if (lookahead == '\n') ADVANCE(922); + if (lookahead == '\n') ADVANCE(928); if (lookahead == '\r') ADVANCE(73); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(411); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 75: - if (lookahead == '\n') SKIP(443); + if (lookahead == '\n') SKIP(444); END_STATE(); case 76: if (lookahead == '\n') SKIP(298); END_STATE(); case 77: - if (lookahead == '\n') SKIP(439); + if (lookahead == '\n') SKIP(446); END_STATE(); case 78: - if (lookahead == '\n') SKIP(446); + if (lookahead == '\n') SKIP(441); END_STATE(); case 79: - if (lookahead == '\n') ADVANCE(884); + if (lookahead == '\n') SKIP(442); END_STATE(); case 80: - if (lookahead == '\n') ADVANCE(884); - if (lookahead == '\r') ADVANCE(79); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(201); + if (lookahead == '\n') ADVANCE(890); END_STATE(); case 81: - if (lookahead == '\n') SKIP(442); + if (lookahead == '\n') ADVANCE(890); + if (lookahead == '\r') ADVANCE(80); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(201); END_STATE(); case 82: - if (lookahead == '\n') ADVANCE(888); + if (lookahead == '\n') SKIP(443); END_STATE(); case 83: - if (lookahead == '\n') ADVANCE(888); - if (lookahead == '\r') ADVANCE(82); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(241); + if (lookahead == '\n') ADVANCE(894); END_STATE(); case 84: - if (lookahead == '\n') SKIP(85); + if (lookahead == '\n') ADVANCE(894); + if (lookahead == '\r') ADVANCE(83); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(241); END_STATE(); case 85: + if (lookahead == '\n') SKIP(475); + END_STATE(); + case 86: + if (lookahead == '\n') SKIP(87); + END_STATE(); + case 87: ADVANCE_MAP( - '\n', 693, - '!', 509, - '#', 865, - '%', 653, - '&', 603, - '*', 642, - '+', 634, - ',', 559, - '-', 638, - '/', 648, - ';', 556, - '<', 618, - '=', 564, - '>', 623, + '\n', 692, + '!', 508, + '#', 871, + '%', 652, + '&', 602, + '*', 641, + '+', 633, + ',', 558, + '-', 637, + '/', 647, + ';', 555, + '<', 617, + '=', 563, + '>', 622, ); - if (lookahead == '\\') SKIP(367); - if (lookahead == '^') ADVANCE(600); - if (lookahead == '|') ADVANCE(597); + if (lookahead == '\\') SKIP(368); + if (lookahead == '^') ADVANCE(599); + if (lookahead == '|') ADVANCE(596); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(85); + lookahead == ' ') SKIP(87); END_STATE(); - case 86: + case 88: ADVANCE_MAP( - '\n', 693, - '"', 791, - '#', 865, - '$', 788, - '&', 602, - '(', 656, - '+', 503, - ',', 559, - '-', 505, - '0', 812, - ';', 556, + '\n', 692, + '"', 790, + '#', 871, + '$', 787, + '&', 601, + '(', 655, + '+', 502, + ',', 558, + '-', 504, + '0', 818, + ';', 555, ); if (lookahead == '\\') SKIP(381); - if (lookahead == '`') ADVANCE(858); + if (lookahead == '`') ADVANCE(864); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(86); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + lookahead == ' ') SKIP(88); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(820); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(659); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(658); END_STATE(); - case 87: + case 89: ADVANCE_MAP( - '\n', 693, - '#', 865, - '$', 786, + '\n', 692, + '#', 871, + '$', 785, '&', 492, - '(', 657, - '-', 507, - '0', 811, - ':', 765, - '<', 614, - '>', 621, + '(', 656, + '-', 506, + '0', 817, + ':', 764, + '<', 613, + '>', 620, ); - if (lookahead == '\\') SKIP(389); - if (lookahead == '`') ADVANCE(858); - if (lookahead == '|') ADVANCE(519); - if (lookahead == '}') ADVANCE(821); + if (lookahead == '\\') SKIP(390); + if (lookahead == '`') ADVANCE(864); + if (lookahead == '|') ADVANCE(518); + if (lookahead == '}') ADVANCE(827); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(87); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(813); + lookahead == ' ') SKIP(89); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(819); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 88: - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '#') ADVANCE(865); - if (lookahead == '&') ADVANCE(605); - if (lookahead == ';') ADVANCE(557); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '>') ADVANCE(621); + case 90: + if (lookahead == '\n') ADVANCE(692); + if (lookahead == '#') ADVANCE(871); + if (lookahead == '&') ADVANCE(604); + if (lookahead == ';') ADVANCE(556); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '>') ADVANCE(620); if (lookahead == '\\') SKIP(380); - if (lookahead == '`') ADVANCE(513); - if (lookahead == 'e') ADVANCE(517); - if (lookahead == '|') ADVANCE(596); + if (lookahead == '`') ADVANCE(512); + if (lookahead == 'e') ADVANCE(516); + if (lookahead == '|') ADVANCE(595); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(88); + lookahead == ' ') SKIP(90); END_STATE(); - case 89: - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '#') ADVANCE(865); - if (lookahead == '&') ADVANCE(605); - if (lookahead == ';') ADVANCE(557); - if (lookahead == '<') ADVANCE(616); - if (lookahead == '>') ADVANCE(621); + case 91: + if (lookahead == '\n') ADVANCE(692); + if (lookahead == '#') ADVANCE(871); + if (lookahead == '&') ADVANCE(604); + if (lookahead == ';') ADVANCE(556); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '>') ADVANCE(620); if (lookahead == '\\') SKIP(382); - if (lookahead == '`') ADVANCE(513); - if (lookahead == 'e') ADVANCE(517); - if (lookahead == '|') ADVANCE(596); + if (lookahead == '`') ADVANCE(512); + if (lookahead == 'e') ADVANCE(516); + if (lookahead == '|') ADVANCE(595); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(89); + lookahead == ' ') SKIP(91); END_STATE(); - case 90: - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '#') ADVANCE(865); + case 92: + if (lookahead == '\n') ADVANCE(692); + if (lookahead == '#') ADVANCE(871); if (lookahead == '&') ADVANCE(492); - if (lookahead == '<') ADVANCE(614); - if (lookahead == '>') ADVANCE(621); + if (lookahead == '<') ADVANCE(613); + if (lookahead == '>') ADVANCE(620); if (lookahead == '\\') SKIP(392); - if (lookahead == '`') ADVANCE(513); - if (lookahead == '|') ADVANCE(519); + if (lookahead == '`') ADVANCE(512); + if (lookahead == '|') ADVANCE(518); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(90); + lookahead == ' ') SKIP(92); END_STATE(); - case 91: - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '#') ADVANCE(865); - if (lookahead == '&') ADVANCE(602); - if (lookahead == ';') ADVANCE(558); - if (lookahead == '\\') SKIP(395); - if (lookahead == '`') ADVANCE(513); - if (lookahead == 'i') ADVANCE(516); + case 93: + if (lookahead == '\n') ADVANCE(692); + if (lookahead == '#') ADVANCE(871); + if (lookahead == '&') ADVANCE(601); + if (lookahead == ';') ADVANCE(557); + if (lookahead == '\\') SKIP(397); + if (lookahead == '`') ADVANCE(512); + if (lookahead == 'i') ADVANCE(515); if (('[' <= lookahead && lookahead <= ']') || lookahead == '{' || - lookahead == '}') ADVANCE(789); + lookahead == '}') ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(91); - END_STATE(); - case 92: - if (lookahead == '\n') SKIP(475); - END_STATE(); - case 93: - if (lookahead == '\n') ADVANCE(892); + lookahead == ' ') SKIP(93); END_STATE(); case 94: - if (lookahead == '\n') ADVANCE(892); - if (lookahead == '\r') ADVANCE(93); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(247); + if (lookahead == '\n') SKIP(439); END_STATE(); case 95: - if (lookahead == '\n') SKIP(441); + if (lookahead == '\n') ADVANCE(898); END_STATE(); case 96: - if (lookahead == '\n') SKIP(444); + if (lookahead == '\n') ADVANCE(898); + if (lookahead == '\r') ADVANCE(95); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(247); END_STATE(); case 97: - if (lookahead == '\n') ADVANCE(896); + if (lookahead == '\n') SKIP(440); END_STATE(); case 98: - if (lookahead == '\n') ADVANCE(896); - if (lookahead == '\r') ADVANCE(97); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(253); + if (lookahead == '\n') ADVANCE(902); END_STATE(); case 99: - if (lookahead == '\n') SKIP(300); + if (lookahead == '\n') ADVANCE(902); + if (lookahead == '\r') ADVANCE(98); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(253); END_STATE(); case 100: - if (lookahead == '\n') ADVANCE(919); + if (lookahead == '\n') SKIP(300); END_STATE(); case 101: - if (lookahead == '\n') ADVANCE(919); - if (lookahead == '\r') ADVANCE(100); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(291); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') SKIP(476); END_STATE(); case 102: - if (lookahead == '\n') SKIP(476); + if (lookahead == '\n') SKIP(481); END_STATE(); case 103: - if (lookahead == '\n') SKIP(481); + if (lookahead == '\n') ADVANCE(925); END_STATE(); case 104: - if (lookahead == '\n') SKIP(485); + if (lookahead == '\n') ADVANCE(925); + if (lookahead == '\r') ADVANCE(103); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(291); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 105: - if (lookahead == '\n') ADVANCE(936); + if (lookahead == '\n') SKIP(485); END_STATE(); case 106: - if (lookahead == '\n') ADVANCE(936); - if (lookahead == '\r') ADVANCE(105); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(447); + if (lookahead == '\n') ADVANCE(942); END_STATE(); case 107: - if (lookahead == '\n') ADVANCE(904); + if (lookahead == '\n') ADVANCE(942); + if (lookahead == '\r') ADVANCE(106); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(447); END_STATE(); case 108: - if (lookahead == '\n') ADVANCE(904); - if (lookahead == '\r') ADVANCE(107); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(265); + if (lookahead == '\n') ADVANCE(910); END_STATE(); case 109: - if (lookahead == '\n') ADVANCE(929); + if (lookahead == '\n') ADVANCE(910); + if (lookahead == '\r') ADVANCE(108); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(265); END_STATE(); case 110: - if (lookahead == '\n') ADVANCE(929); - if (lookahead == '\r') ADVANCE(109); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(418); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') ADVANCE(943); END_STATE(); case 111: - if (lookahead == '\n') ADVANCE(920); + if (lookahead == '\n') ADVANCE(943); + if (lookahead == '\r') ADVANCE(110); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(448); END_STATE(); case 112: - if (lookahead == '\n') ADVANCE(920); - if (lookahead == '\r') ADVANCE(111); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(293); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') ADVANCE(926); END_STATE(); case 113: - if (lookahead == '\n') ADVANCE(937); + if (lookahead == '\n') ADVANCE(926); + if (lookahead == '\r') ADVANCE(112); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(293); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 114: - if (lookahead == '\n') ADVANCE(937); - if (lookahead == '\r') ADVANCE(113); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(448); + if (lookahead == '\n') ADVANCE(935); END_STATE(); case 115: - if (lookahead == '\n') SKIP(482); + if (lookahead == '\n') ADVANCE(935); + if (lookahead == '\r') ADVANCE(114); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(418); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 116: - if (lookahead == '\n') SKIP(454); + if (lookahead == '\n') SKIP(482); END_STATE(); case 117: - if (lookahead == '\n') SKIP(88); + if (lookahead == '\n') SKIP(454); END_STATE(); case 118: - if (lookahead == '\n') SKIP(86); + if (lookahead == '\n') SKIP(90); END_STATE(); case 119: - if (lookahead == '\n') SKIP(457); + if (lookahead == '\n') SKIP(88); END_STATE(); case 120: - if (lookahead == '\n') SKIP(477); + if (lookahead == '\n') SKIP(457); END_STATE(); case 121: - if (lookahead == '\n') SKIP(489); + if (lookahead == '\n') SKIP(477); END_STATE(); case 122: - if (lookahead == '\n') SKIP(486); + if (lookahead == '\n') SKIP(478); END_STATE(); case 123: - if (lookahead == '\n') SKIP(478); + if (lookahead == '\n') SKIP(486); END_STATE(); case 124: - if (lookahead == '\n') SKIP(87); + if (lookahead == '\n') SKIP(487); END_STATE(); case 125: - if (lookahead == '\n') SKIP(487); + if (lookahead == '\n') SKIP(489); END_STATE(); case 126: - if (lookahead == '\n') SKIP(490); + if (lookahead == '\n') SKIP(89); END_STATE(); case 127: - if (lookahead == '\n') ADVANCE(910); + if (lookahead == '\n') SKIP(490); END_STATE(); case 128: - if (lookahead == '\n') ADVANCE(910); - if (lookahead == '\r') ADVANCE(127); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(274); + if (lookahead == '\n') SKIP(92); END_STATE(); case 129: - if (lookahead == '\n') SKIP(90); + if (lookahead == '\n') ADVANCE(916); END_STATE(); case 130: - if (lookahead == '\n') SKIP(458); + if (lookahead == '\n') ADVANCE(916); + if (lookahead == '\r') ADVANCE(129); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(274); END_STATE(); case 131: - if (lookahead == '\n') ADVANCE(940); + if (lookahead == '\n') ADVANCE(946); END_STATE(); case 132: - if (lookahead == '\n') ADVANCE(940); + if (lookahead == '\n') ADVANCE(946); if (lookahead == '\r') ADVANCE(131); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(451); END_STATE(); case 133: - if (lookahead == '\n') ADVANCE(941); + if (lookahead == '\n') SKIP(458); END_STATE(); case 134: - if (lookahead == '\n') ADVANCE(941); - if (lookahead == '\r') ADVANCE(133); + if (lookahead == '\n') ADVANCE(795); + if (lookahead == '\r') ADVANCE(792); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(453); + lookahead == ' ') ADVANCE(795); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 135: - if (lookahead == '\n') ADVANCE(796); - if (lookahead == '\r') ADVANCE(793); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(796); - if (lookahead != 0) ADVANCE(801); + if (lookahead == '\n') ADVANCE(947); END_STATE(); case 136: - if (lookahead == '\n') ADVANCE(797); - if (lookahead == '\r') ADVANCE(794); + if (lookahead == '\n') ADVANCE(947); + if (lookahead == '\r') ADVANCE(135); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(797); - if (lookahead != 0) ADVANCE(801); + lookahead == ' ') SKIP(453); END_STATE(); case 137: - if (lookahead == '\n') ADVANCE(942); + if (lookahead == '\n') ADVANCE(796); + if (lookahead == '\r') ADVANCE(793); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(796); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 138: - if (lookahead == '\n') ADVANCE(942); - if (lookahead == '\r') ADVANCE(137); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(456); + if (lookahead == '\n') ADVANCE(948); END_STATE(); case 139: - if (lookahead == '\n') SKIP(488); + if (lookahead == '\n') ADVANCE(948); + if (lookahead == '\r') ADVANCE(138); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(456); END_STATE(); case 140: - if (lookahead == '\n') SKIP(91); + if (lookahead == '\n') SKIP(488); END_STATE(); case 141: - if (lookahead == '\n') SKIP(479); + if (lookahead == '\n') SKIP(480); END_STATE(); case 142: - if (lookahead == '\n') SKIP(480); + if (lookahead == '\n') SKIP(479); END_STATE(); case 143: - if (lookahead == '\n') SKIP(491); + if (lookahead == '\n') SKIP(93); END_STATE(); case 144: - if (lookahead == '\n') SKIP(409); + if (lookahead == '\n') SKIP(491); END_STATE(); case 145: - if (lookahead == '\n') SKIP(407); + if (lookahead == '\n') SKIP(409); END_STATE(); case 146: + if (lookahead == '\n') SKIP(407); + END_STATE(); + case 147: ADVANCE_MAP( - '\n', 694, - '!', 954, - '"', 791, - '#', 865, - '$', 784, - '%', 652, - '&', 604, - '\'', 494, - '(', 657, - ')', 658, - '*', 641, - '+', 633, - '-', 636, - '/', 647, - '0', 806, - ';', 558, - '<', 610, - '=', 563, - '>', 619, - '?', 764, + '\n', 693, + '!', 960, + '"', 790, + '#', 871, + '$', 783, + '%', 651, + '&', 603, + '\'', 809, + '(', 656, + ')', 657, + '*', 640, + '+', 632, + '-', 635, + '/', 646, + '0', 812, + ';', 557, + '<', 609, + '=', 562, + '>', 618, + '?', 763, '\\', 317, - '^', 599, - '`', 859, - '|', 595, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '^', 598, + '`', 865, + '|', 594, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(146); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); - END_STATE(); - case 147: - if (lookahead == '\n') SKIP(237); + lookahead == ' ') SKIP(147); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 148: - if (lookahead == '\n') SKIP(428); + if (lookahead == '\n') SKIP(237); END_STATE(); case 149: - if (lookahead == '\n') SKIP(278); + if (lookahead == '\n') SKIP(428); END_STATE(); case 150: - if (lookahead == '\n') SKIP(280); + if (lookahead == '\n') SKIP(278); END_STATE(); case 151: - if (lookahead == '\n') SKIP(282); + if (lookahead == '\n') SKIP(280); END_STATE(); case 152: - if (lookahead == '\n') ADVANCE(887); + if (lookahead == '\n') SKIP(282); END_STATE(); case 153: - if (lookahead == '\n') ADVANCE(887); - if (lookahead == '\r') ADVANCE(152); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(239); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') SKIP(286); END_STATE(); case 154: - if (lookahead == '\n') SKIP(286); + if (lookahead == '\n') ADVANCE(893); END_STATE(); case 155: - if (lookahead == '\n') ADVANCE(891); + if (lookahead == '\n') ADVANCE(893); + if (lookahead == '\r') ADVANCE(154); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(239); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 156: - if (lookahead == '\n') ADVANCE(891); - if (lookahead == '\r') ADVANCE(155); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(245); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') SKIP(290); END_STATE(); case 157: - if (lookahead == '\n') SKIP(290); + if (lookahead == '\n') ADVANCE(897); END_STATE(); case 158: - if (lookahead == '\n') ADVANCE(899); + if (lookahead == '\n') ADVANCE(897); + if (lookahead == '\r') ADVANCE(157); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(245); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 159: - if (lookahead == '\n') ADVANCE(899); - if (lookahead == '\r') ADVANCE(158); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(257); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') SKIP(294); END_STATE(); case 160: - if (lookahead == '\n') SKIP(294); + if (lookahead == '\n') SKIP(284); END_STATE(); case 161: - if (lookahead == '\n') SKIP(284); + if (lookahead == '\n') ADVANCE(905); END_STATE(); case 162: - if (lookahead == '\n') SKIP(288); + if (lookahead == '\n') ADVANCE(905); + if (lookahead == '\r') ADVANCE(161); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(257); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 163: - if (lookahead == '\n') SKIP(465); + if (lookahead == '\n') SKIP(288); END_STATE(); case 164: - if (lookahead == '\n') SKIP(292); + if (lookahead == '\n') SKIP(465); END_STATE(); case 165: - if (lookahead == '\n') ADVANCE(909); + if (lookahead == '\n') SKIP(292); END_STATE(); case 166: - if (lookahead == '\n') ADVANCE(909); - if (lookahead == '\r') ADVANCE(165); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(272); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') ADVANCE(917); END_STATE(); case 167: - if (lookahead == '\n') ADVANCE(914); + if (lookahead == '\n') ADVANCE(917); + if (lookahead == '\r') ADVANCE(166); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(275); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 168: - if (lookahead == '\n') ADVANCE(914); - if (lookahead == '\r') ADVANCE(167); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(281); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') SKIP(299); END_STATE(); case 169: - if (lookahead == '\n') ADVANCE(924); + if (lookahead == '\n') ADVANCE(919); END_STATE(); case 170: - if (lookahead == '\n') ADVANCE(924); + if (lookahead == '\n') ADVANCE(919); if (lookahead == '\r') ADVANCE(169); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(413); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(279); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 171: - if (lookahead == '\n') SKIP(299); + if (lookahead == '\n') ADVANCE(930); END_STATE(); case 172: - if (lookahead == '\n') SKIP(474); + if (lookahead == '\n') ADVANCE(930); + if (lookahead == '\r') ADVANCE(171); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(413); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 173: - if (lookahead == '\n') SKIP(468); + if (lookahead == '\n') SKIP(474); END_STATE(); case 174: - if (lookahead == '\n') ADVANCE(918); + if (lookahead == '\n') SKIP(468); END_STATE(); case 175: - if (lookahead == '\n') ADVANCE(918); - if (lookahead == '\r') ADVANCE(174); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(289); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') SKIP(461); END_STATE(); case 176: - if (lookahead == '\n') SKIP(461); + if (lookahead == '\n') ADVANCE(924); END_STATE(); case 177: - if (lookahead == '\n') ADVANCE(934); + if (lookahead == '\n') ADVANCE(924); + if (lookahead == '\r') ADVANCE(176); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(289); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 178: - if (lookahead == '\n') ADVANCE(934); - if (lookahead == '\r') ADVANCE(177); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(433); + if (lookahead == '\n') ADVANCE(940); END_STATE(); case 179: - if (lookahead == '\n') ADVANCE(930); + if (lookahead == '\n') ADVANCE(940); + if (lookahead == '\r') ADVANCE(178); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(433); END_STATE(); case 180: - if (lookahead == '\n') ADVANCE(930); - if (lookahead == '\r') ADVANCE(179); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(429); + if (lookahead == '\n') SKIP(471); END_STATE(); case 181: - if (lookahead == '\n') SKIP(471); + if (lookahead == '\n') ADVANCE(936); END_STATE(); case 182: - if (lookahead == '\n') SKIP(445); + if (lookahead == '\n') ADVANCE(936); + if (lookahead == '\r') ADVANCE(181); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(429); END_STATE(); case 183: - if (lookahead == '\n') ADVANCE(886); + if (lookahead == '\n') ADVANCE(892); END_STATE(); case 184: - if (lookahead == '\n') ADVANCE(886); + if (lookahead == '\n') ADVANCE(892); if (lookahead == '\r') ADVANCE(183); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(238); END_STATE(); case 185: - if (lookahead == '\n') ADVANCE(890); + if (lookahead == '\n') ADVANCE(896); END_STATE(); case 186: - if (lookahead == '\n') ADVANCE(890); + if (lookahead == '\n') ADVANCE(896); if (lookahead == '\r') ADVANCE(185); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(244); END_STATE(); case 187: - if (lookahead == '\n') ADVANCE(900); + if (lookahead == '\n') SKIP(445); END_STATE(); case 188: - if (lookahead == '\n') ADVANCE(900); - if (lookahead == '\r') ADVANCE(187); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(259); + if (lookahead == '\n') ADVANCE(906); END_STATE(); case 189: - if (lookahead == '\n') SKIP(438); + if (lookahead == '\n') ADVANCE(906); + if (lookahead == '\r') ADVANCE(188); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(259); END_STATE(); case 190: - if (lookahead == '\n') ADVANCE(902); + if (lookahead == '\n') ADVANCE(908); END_STATE(); case 191: - if (lookahead == '\n') ADVANCE(902); + if (lookahead == '\n') ADVANCE(908); if (lookahead == '\r') ADVANCE(190); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(262); @@ -11438,74 +11650,74 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(301); END_STATE(); case 193: - if (lookahead == '\n') ADVANCE(938); + if (lookahead == '\n') ADVANCE(944); END_STATE(); case 194: - if (lookahead == '\n') ADVANCE(938); + if (lookahead == '\n') ADVANCE(944); if (lookahead == '\r') ADVANCE(193); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(449); END_STATE(); case 195: - if (lookahead == '\n') ADVANCE(906); + if (lookahead == '\n') ADVANCE(912); END_STATE(); case 196: - if (lookahead == '\n') ADVANCE(906); + if (lookahead == '\n') ADVANCE(912); if (lookahead == '\r') ADVANCE(195); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(268); END_STATE(); case 197: - if (lookahead == '\n') ADVANCE(939); + if (lookahead == '\n') ADVANCE(945); END_STATE(); case 198: - if (lookahead == '\n') ADVANCE(939); + if (lookahead == '\n') ADVANCE(945); if (lookahead == '\r') ADVANCE(197); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(450); END_STATE(); case 199: - if (lookahead == '\n') SKIP(89); + if (lookahead == '\n') SKIP(91); END_STATE(); case 200: if (lookahead == '\n') SKIP(410); END_STATE(); case 201: ADVANCE_MAP( - '\n', 695, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 557, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 80, - '_', 951, - 'e', 880, - '|', 596, + '\n', 694, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 556, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 81, + '_', 957, + 'e', 886, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(201); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 202: - if (lookahead == '\n') ADVANCE(893); + if (lookahead == '\n') ADVANCE(901); END_STATE(); case 203: - if (lookahead == '\n') ADVANCE(893); + if (lookahead == '\n') ADVANCE(901); if (lookahead == '\r') ADVANCE(202); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(248); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(251); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 204: if (lookahead == '\n') SKIP(295); @@ -11517,14 +11729,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(297); END_STATE(); case 207: - if (lookahead == '\n') ADVANCE(913); + if (lookahead == '\n') ADVANCE(921); END_STATE(); case 208: - if (lookahead == '\n') ADVANCE(913); + if (lookahead == '\n') ADVANCE(921); if (lookahead == '\r') ADVANCE(207); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(279); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(283); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 209: if (lookahead == '\n') SKIP(470); @@ -11533,5128 +11745,5127 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') SKIP(466); END_STATE(); case 211: - if (lookahead == '\n') ADVANCE(894); + if (lookahead == '\n') ADVANCE(900); END_STATE(); case 212: - if (lookahead == '\n') ADVANCE(894); + if (lookahead == '\n') ADVANCE(900); if (lookahead == '\r') ADVANCE(211); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(250); END_STATE(); case 213: - if (lookahead == '\n') ADVANCE(908); + if (lookahead == '\n') ADVANCE(914); END_STATE(); case 214: - if (lookahead == '\n') ADVANCE(908); + if (lookahead == '\n') ADVANCE(914); if (lookahead == '\r') ADVANCE(213); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(271); END_STATE(); case 215: - if (lookahead == '\n') ADVANCE(897); + if (lookahead == '\n') ADVANCE(903); END_STATE(); case 216: - if (lookahead == '\n') ADVANCE(897); + if (lookahead == '\n') ADVANCE(903); if (lookahead == '\r') ADVANCE(215); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(254); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 217: if (lookahead == '\n') SKIP(462); END_STATE(); case 218: - if (lookahead == '\n') ADVANCE(898); + if (lookahead == '\n') ADVANCE(904); END_STATE(); case 219: - if (lookahead == '\n') ADVANCE(898); + if (lookahead == '\n') ADVANCE(904); if (lookahead == '\r') ADVANCE(218); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(256); END_STATE(); case 220: ADVANCE_MAP( - '\n', 696, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 27, - '_', 950, - '`', 858, - 'e', 874, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 695, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 28, + '_', 956, + '`', 864, + 'e', 880, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 221: - if (lookahead == '\n') SKIP(264); + if (lookahead == '\n') SKIP(267); END_STATE(); case 222: - if (lookahead == '\n') ADVANCE(903); + if (lookahead == '\n') SKIP(270); END_STATE(); case 223: - if (lookahead == '\n') ADVANCE(903); - if (lookahead == '\r') ADVANCE(222); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(263); - if (lookahead != 0) ADVANCE(961); + if (lookahead == '\n') ADVANCE(909); END_STATE(); case 224: - if (lookahead == '\n') SKIP(270); + if (lookahead == '\n') ADVANCE(909); + if (lookahead == '\r') ADVANCE(223); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(263); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 225: if (lookahead == '\n') SKIP(276); END_STATE(); case 226: - if (lookahead == '\n') ADVANCE(912); + if (lookahead == '\n') ADVANCE(913); END_STATE(); case 227: - if (lookahead == '\n') ADVANCE(912); + if (lookahead == '\n') ADVANCE(913); if (lookahead == '\r') ADVANCE(226); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(277); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(269); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 228: - if (lookahead == '\n') ADVANCE(915); + if (lookahead == '\n') ADVANCE(920); END_STATE(); case 229: - if (lookahead == '\n') ADVANCE(915); + if (lookahead == '\n') ADVANCE(920); if (lookahead == '\r') ADVANCE(228); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(283); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(281); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 230: if (lookahead == '\n') SKIP(472); END_STATE(); case 231: - if (lookahead == '\n') ADVANCE(927); + if (lookahead == '\n') ADVANCE(933); END_STATE(); case 232: - if (lookahead == '\n') ADVANCE(927); + if (lookahead == '\n') ADVANCE(933); if (lookahead == '\r') ADVANCE(231); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(416); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 233: - if (lookahead == '\n') ADVANCE(917); + if (lookahead == '\n') ADVANCE(923); END_STATE(); case 234: - if (lookahead == '\n') ADVANCE(917); + if (lookahead == '\n') ADVANCE(923); if (lookahead == '\r') ADVANCE(233); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(287); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 235: - if (lookahead == '\n') ADVANCE(928); + if (lookahead == '\n') ADVANCE(934); END_STATE(); case 236: - if (lookahead == '\n') ADVANCE(928); + if (lookahead == '\n') ADVANCE(934); if (lookahead == '\r') ADVANCE(235); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(417); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 237: ADVANCE_MAP( - '\n', 697, - '!', 954, - '"', 791, - '#', 865, - '$', 784, - '%', 652, - '&', 604, - '\'', 494, - '(', 657, - ')', 658, - '*', 641, - '+', 633, - '-', 636, - '/', 647, - '0', 806, - ';', 558, - '<', 610, - '=', 563, - '>', 619, - '?', 764, + '\n', 696, + '!', 960, + '"', 790, + '#', 871, + '$', 783, + '%', 651, + '&', 603, + '\'', 809, + '(', 656, + ')', 657, + '*', 640, + '+', 632, + '-', 635, + '/', 646, + '0', 812, + ';', 557, + '<', 609, + '=', 562, + '>', 618, + '?', 763, '\\', 318, - '^', 599, - '`', 858, - '|', 595, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '^', 598, + '`', 864, + '|', 594, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(237); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 238: ADVANCE_MAP( - '\n', 698, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 557, - '<', 616, - '>', 621, - '?', 763, - '@', 944, + '\n', 697, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 556, + '<', 615, + '>', 620, + '?', 762, + '@', 950, '\\', 184, - '_', 951, - 'e', 880, - '|', 596, + '_', 957, + 'e', 886, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 239: ADVANCE_MAP( - '\n', 699, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 153, - '_', 950, - '`', 858, - 'e', 874, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 698, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 155, + '_', 956, + '`', 864, + 'e', 880, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(239); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 240: ADVANCE_MAP( - '\n', 700, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - '-', 953, - '0', 806, - ';', 557, - '<', 612, - '=', 955, - '>', 620, + '\n', 699, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + '-', 959, + '0', 812, + ';', 556, + '<', 611, + '=', 961, + '>', 619, '\\', 322, - '`', 858, - 'e', 959, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + 'e', 965, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(240); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 241: ADVANCE_MAP( - '\n', 701, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 557, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 83, - '_', 951, - '|', 596, + '\n', 700, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 556, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 84, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(241); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 242: ADVANCE_MAP( - '\n', 702, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 30, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 701, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 31, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(242); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 243: ADVANCE_MAP( - '\n', 703, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - '-', 953, - '0', 806, - ';', 557, - '<', 612, - '=', 955, - '>', 620, + '\n', 702, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + '-', 959, + '0', 812, + ';', 556, + '<', 611, + '=', 961, + '>', 619, '\\', 323, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(243); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 244: ADVANCE_MAP( - '\n', 704, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 558, + '\n', 703, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 556, '<', 615, - '>', 621, - '?', 763, - '@', 944, + '>', 620, + '?', 762, + '@', 950, '\\', 186, - '_', 951, - '|', 596, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(244); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 245: ADVANCE_MAP( - '\n', 705, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, + '\n', 704, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + '*', 642, + '-', 638, + '0', 952, ';', 557, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 156, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 158, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(245); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 246: ADVANCE_MAP( - '\n', 706, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - ')', 658, - '-', 953, - '0', 806, - ';', 558, - '<', 612, - '=', 955, - '>', 620, + '\n', 705, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + ')', 657, + '-', 959, + '0', 812, + ';', 557, + '<', 611, + '=', 961, + '>', 619, '\\', 324, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(246); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 247: ADVANCE_MAP( - '\n', 707, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 94, - '_', 951, - '`', 858, - '|', 596, + '\n', 706, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 96, + '_', 957, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(247); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 248: ADVANCE_MAP( - '\n', 708, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 203, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 707, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + ')', 657, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 35, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(248); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 249: ADVANCE_MAP( - '\n', 709, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '-', 953, - '0', 807, - ';', 557, - '<', 613, - '>', 620, + '\n', 708, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '-', 959, + '0', 813, + ';', 556, + '<', 612, + '>', 619, '\\', 325, - '`', 858, - 'e', 869, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + 'e', 875, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(249); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(815); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(877); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 250: ADVANCE_MAP( - '\n', 710, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, + '\n', 709, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, ';', 557, - '<', 616, - '>', 621, - '?', 763, - '@', 944, - '\\', 212, - '_', 951, - '|', 596, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 212, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(250); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 251: ADVANCE_MAP( - '\n', 711, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - ')', 658, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 33, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 710, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 203, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(251); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if (lookahead != 0) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 252: ADVANCE_MAP( - '\n', 712, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '-', 953, - '0', 807, - ';', 557, - '<', 613, - '>', 620, + '\n', 711, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '-', 959, + '0', 813, + ';', 556, + '<', 612, + '>', 619, '\\', 326, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(252); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(815); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(877); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 253: ADVANCE_MAP( - '\n', 713, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - ')', 658, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 98, - '_', 951, - '|', 596, + '\n', 712, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + ')', 657, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 99, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(253); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 254: ADVANCE_MAP( - '\n', 714, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, + '\n', 713, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, '\\', 216, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(254); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 255: ADVANCE_MAP( - '\n', 715, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 807, - ';', 558, - '<', 613, - '>', 620, + '\n', 714, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 813, + ';', 557, + '<', 612, + '>', 619, '\\', 327, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(255); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(815); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); - if (lookahead != 0) ADVANCE(961); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(877); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 256: ADVANCE_MAP( - '\n', 716, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '<', 616, - '>', 621, - '?', 763, - '@', 944, + '\n', 715, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '<', 615, + '>', 620, + '?', 762, + '@', 950, '\\', 219, - '_', 951, - '|', 596, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(256); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 257: ADVANCE_MAP( - '\n', 717, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 159, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 716, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 162, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(257); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if (lookahead != 0) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 258: ADVANCE_MAP( - '\n', 718, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - ';', 557, - '<', 612, - '>', 620, + '\n', 717, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + ';', 556, + '<', 611, + '>', 619, '\\', 328, - '`', 858, - 'e', 959, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + 'e', 965, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(258); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 259: ADVANCE_MAP( - '\n', 719, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '<', 616, - '>', 621, - '?', 763, - '@', 944, - '\\', 188, - '_', 951, - '`', 858, - '|', 596, + '\n', 718, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '<', 615, + '>', 620, + '?', 762, + '@', 950, + '\\', 189, + '_', 957, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(259); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 260: ADVANCE_MAP( - '\n', 720, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 612, - '>', 620, - '?', 764, - '@', 945, - '\\', 37, - '_', 950, - '`', 858, - 'e', 874, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 719, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 611, + '>', 619, + '?', 763, + '@', 951, + '\\', 40, + '_', 956, + '`', 864, + 'e', 880, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 261: ADVANCE_MAP( - '\n', 721, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - ';', 557, - '<', 612, - '>', 620, + '\n', 720, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + ';', 556, + '<', 611, + '>', 619, '\\', 329, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(261); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 262: ADVANCE_MAP( - '\n', 722, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - ')', 658, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '<', 616, - '>', 621, - '?', 763, - '@', 944, + '\n', 721, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + ')', 657, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '<', 615, + '>', 620, + '?', 762, + '@', 950, '\\', 191, - '_', 951, - '|', 596, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(262); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 263: ADVANCE_MAP( - '\n', 723, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 613, - '>', 620, - '?', 764, - '@', 945, - '\\', 223, - '_', 950, - '`', 858, - 'e', 874, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 722, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 612, + '>', 619, + '?', 763, + '@', 951, + '\\', 224, + '_', 956, + '`', 864, + 'e', 880, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(263); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 264: ADVANCE_MAP( - '\n', 724, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, + '\n', 723, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 812, ';', 557, - '<', 613, - '>', 620, - '\\', 399, - '`', 858, - 'e', 959, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '<', 611, + '>', 619, + '\\', 332, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(264); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 265: ADVANCE_MAP( - '\n', 725, - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '\n', 724, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 108, - '_', 951, - '|', 596, + '*', 639, + '-', 634, + '0', 954, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 109, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(265); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 266: ADVANCE_MAP( - '\n', 726, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 612, - '>', 620, - '?', 764, - '@', 945, + '\n', 725, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 611, + '>', 619, + '?', 763, + '@', 951, '\\', 43, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(266); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 267: ADVANCE_MAP( - '\n', 727, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 806, - ';', 558, + '\n', 726, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + ';', 556, '<', 612, - '>', 620, - '\\', 332, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '>', 619, + '\\', 399, + '`', 864, + 'e', 965, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(267); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0 && + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 268: ADVANCE_MAP( - '\n', 728, - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '\n', 727, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 616, - '>', 621, - '?', 763, - '@', 944, + '*', 639, + '-', 634, + '0', 954, + '<', 615, + '>', 620, + '?', 762, + '@', 950, '\\', 196, - '_', 951, - '|', 596, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(268); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 269: ADVANCE_MAP( - '\n', 729, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '*', 643, - '-', 639, - '0', 946, - ';', 558, + '\n', 728, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 556, '<', 612, - '>', 620, - '?', 764, - '@', 945, - '\\', 45, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '>', 619, + '?', 763, + '@', 951, + '\\', 227, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if (lookahead != 0) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 270: ADVANCE_MAP( - '\n', 730, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - ';', 557, - '<', 613, - '>', 620, + '\n', 729, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + ';', 556, + '<', 612, + '>', 619, '\\', 400, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(270); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 271: ADVANCE_MAP( - '\n', 731, - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '\n', 730, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 614, - '>', 621, - '?', 763, - '@', 944, + '*', 639, + '-', 634, + '0', 954, + '<', 613, + '>', 620, + '?', 762, + '@', 950, '\\', 214, - '_', 951, - '|', 519, + '_', 957, + '|', 518, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(271); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 272: ADVANCE_MAP( - '\n', 732, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 612, - '>', 620, - '?', 764, - '@', 945, - '\\', 166, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 731, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 611, + '>', 619, + '?', 763, + '@', 951, + '\\', 46, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(272); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 273: ADVANCE_MAP( - '\n', 733, - '"', 791, - '#', 865, - '$', 784, + '\n', 732, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - '<', 611, - '>', 620, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + '<', 610, + '>', 619, '\\', 334, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(273); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 274: ADVANCE_MAP( - '\n', 734, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 602, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '?', 763, - '@', 944, - '\\', 128, - '_', 951, - 'i', 879, + '\n', 733, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 601, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '?', 762, + '@', 950, + '\\', 130, + '_', 957, + 'i', 885, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(274); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 275: ADVANCE_MAP( - '\n', 735, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 492, - '\'', 494, - '(', 657, - '*', 643, - '-', 639, - '0', 946, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 48, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 734, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 611, + '>', 619, + '?', 763, + '@', 951, + '\\', 167, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(275); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(961); + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 276: ADVANCE_MAP( - '\n', 736, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 806, - ';', 558, - '<', 613, - '>', 620, + '\n', 735, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 812, + ';', 557, + '<', 612, + '>', 619, '\\', 401, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(276); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 277: ADVANCE_MAP( - '\n', 737, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 613, - '>', 620, - '?', 764, - '@', 945, - '\\', 227, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 736, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 492, + '\'', 809, + '(', 656, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 49, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(277); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(967); END_STATE(); case 278: ADVANCE_MAP( - '\n', 738, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - '-', 953, - '0', 806, - ';', 557, - '<', 612, - '=', 955, - '>', 620, + '\n', 737, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + '-', 959, + '0', 812, + ';', 556, + '<', 611, + '=', 961, + '>', 619, '\\', 337, - '`', 859, - 'e', 959, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 865, + 'e', 965, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(278); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 279: ADVANCE_MAP( - '\n', 739, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 613, - '>', 620, - '?', 764, - '@', 945, - '\\', 208, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 738, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 492, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 170, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(279); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + (lookahead < '&' || '*' < lookahead) && + (lookahead < ';' || ']' < lookahead)) ADVANCE(967); END_STATE(); case 280: ADVANCE_MAP( - '\n', 740, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - '-', 953, - '0', 806, - ';', 557, - '<', 612, - '=', 955, - '>', 620, - '\\', 338, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 739, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + '-', 959, + '0', 812, + ';', 556, + '<', 611, + '=', 961, + '>', 619, + '\\', 339, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(280); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 281: ADVANCE_MAP( - '\n', 741, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, + '\n', 740, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '*', 642, + '-', 638, + '0', 952, + ';', 557, '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 168, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '>', 619, + '?', 763, + '@', 951, + '\\', 229, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(281); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 282: ADVANCE_MAP( - '\n', 742, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - ')', 658, - '-', 953, - '0', 806, - ';', 558, - '<', 612, - '=', 955, - '>', 620, - '\\', 340, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 741, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + ')', 657, + '-', 959, + '0', 812, + ';', 557, + '<', 611, + '=', 961, + '>', 619, + '\\', 341, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(282); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 283: ADVANCE_MAP( - '\n', 743, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 613, - '>', 620, - '?', 764, - '@', 945, - '\\', 229, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 742, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 612, + '>', 619, + '?', 763, + '@', 951, + '\\', 208, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if (lookahead != 0) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 284: ADVANCE_MAP( - '\n', 744, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - ';', 557, - '<', 612, - '>', 620, - '\\', 342, - '`', 859, - 'e', 959, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 743, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + ';', 556, + '<', 611, + '>', 619, + '\\', 343, + '`', 865, + 'e', 965, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(284); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 285: ADVANCE_MAP( - '\n', 745, - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '\n', 744, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 612, - '>', 620, - '?', 764, - '@', 945, - '\\', 57, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '>', 619, + '?', 763, + '@', 951, + '\\', 58, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(285); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 286: ADVANCE_MAP( - '\n', 746, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '-', 953, - '0', 807, - ';', 557, - '<', 613, - '>', 620, - '\\', 343, - '`', 859, - 'e', 869, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 745, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '-', 959, + '0', 813, + ';', 556, + '<', 612, + '>', 619, + '\\', 344, + '`', 865, + 'e', 875, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(286); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(815); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(877); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 287: ADVANCE_MAP( - '\n', 747, - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '\n', 746, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 613, - '>', 620, - '?', 764, - '@', 945, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 612, + '>', 619, + '?', 763, + '@', 951, '\\', 234, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(287); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 288: ADVANCE_MAP( - '\n', 748, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - ';', 557, - '<', 612, - '>', 620, + '\n', 747, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + ';', 556, + '<', 611, + '>', 619, '\\', 345, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(288); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 289: ADVANCE_MAP( - '\n', 749, - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '\n', 748, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 611, - '>', 620, - '?', 764, - '@', 945, - '\\', 175, - '_', 950, - '`', 858, - '|', 519, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 610, + '>', 619, + '?', 763, + '@', 951, + '\\', 177, + '_', 956, + '`', 864, + '|', 518, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 290: ADVANCE_MAP( - '\n', 750, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '-', 953, - '0', 807, - ';', 557, - '<', 613, - '>', 620, + '\n', 749, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '-', 959, + '0', 813, + ';', 556, + '<', 612, + '>', 619, '\\', 346, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(290); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(815); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(877); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 291: ADVANCE_MAP( - '\n', 751, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 602, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 498, - '>', 499, - '?', 764, - '@', 945, - '\\', 101, - '_', 950, - '`', 858, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 750, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 601, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 497, + '>', 498, + '?', 763, + '@', 951, + '\\', 104, + '_', 956, + '`', 864, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(291); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 292: ADVANCE_MAP( - '\n', 752, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 806, - ';', 558, - '<', 612, - '>', 620, - '\\', 348, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 751, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 812, + ';', 557, + '<', 611, + '>', 619, + '\\', 349, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(292); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 293: ADVANCE_MAP( - '\n', 753, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 498, - '>', 499, - '?', 764, - '@', 945, - '\\', 112, - '_', 950, - '`', 858, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 752, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 497, + '>', 498, + '?', 763, + '@', 951, + '\\', 113, + '_', 956, + '`', 864, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(293); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 294: ADVANCE_MAP( - '\n', 754, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 807, - ';', 558, - '<', 613, - '>', 620, - '\\', 349, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 753, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 813, + ';', 557, + '<', 612, + '>', 619, + '\\', 350, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(294); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(815); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); - if (lookahead != 0) ADVANCE(961); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(877); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 295: ADVANCE_MAP( - '\n', 755, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - ';', 557, - '<', 613, - '>', 620, - '\\', 350, - '`', 859, - 'e', 959, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 754, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + ';', 556, + '<', 612, + '>', 619, + '\\', 351, + '`', 865, + 'e', 965, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(295); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 296: ADVANCE_MAP( - '\n', 756, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - ';', 557, - '<', 613, - '>', 620, + '\n', 755, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + ';', 556, + '<', 612, + '>', 619, '\\', 353, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(296); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead)) ADVANCE(961); + (lookahead < '&' || ')' < lookahead)) ADVANCE(967); END_STATE(); case 297: ADVANCE_MAP( - '\n', 757, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 806, - ';', 558, - '<', 613, - '>', 620, + '\n', 756, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 812, + ';', 557, + '<', 612, + '>', 619, '\\', 354, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(297); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 298: ADVANCE_MAP( - '\n', 758, - '"', 791, - '#', 865, - '$', 784, - '&', 602, - '\'', 494, - '(', 657, - '-', 953, - '0', 806, - ';', 558, - '<', 498, - '>', 499, - '\\', 359, - '`', 858, - 'e', 959, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 757, + '"', 790, + '#', 871, + '$', 783, + '&', 601, + '\'', 809, + '(', 656, + '-', 959, + '0', 812, + ';', 557, + '<', 497, + '>', 498, + '\\', 357, + '`', 864, + 'e', 965, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(298); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 299: ADVANCE_MAP( - '\n', 759, - '"', 791, - '#', 865, - '$', 784, + '\n', 758, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - '<', 611, - '>', 620, - '\\', 370, - '`', 859, - '|', 519, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + '<', 610, + '>', 619, + '\\', 371, + '`', 865, + '|', 518, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(299); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 300: ADVANCE_MAP( - '\n', 760, - '"', 791, - '#', 865, - '$', 784, - '&', 602, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - ';', 558, - '<', 498, - '>', 499, + '\n', 759, + '"', 790, + '#', 871, + '$', 783, + '&', 601, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + ';', 557, + '<', 497, + '>', 498, '\\', 373, - '`', 858, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(300); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 301: ADVANCE_MAP( - '\n', 761, - '"', 791, - '#', 865, - '$', 784, - '&', 602, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - ';', 558, - '<', 498, - '>', 499, + '\n', 760, + '"', 790, + '#', 871, + '$', 783, + '&', 601, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + ';', 557, + '<', 497, + '>', 498, '\\', 383, - '`', 859, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 865, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(301); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 302: if (lookahead == '\r') SKIP(1); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(403); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 303: - if (lookahead == '\r') ADVANCE(792); + if (lookahead == '\r') ADVANCE(791); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(798); - if (lookahead != 0) ADVANCE(801); + lookahead == ' ') ADVANCE(797); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 304: - if (lookahead == '\r') ADVANCE(802); - if (lookahead != 0) ADVANCE(801); + if (lookahead == '\r') ADVANCE(801); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 305: if (lookahead == '\r') SKIP(2); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(419); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(420); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 306: if (lookahead == '\r') SKIP(3); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(420); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(419); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 307: if (lookahead == '\r') SKIP(4); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(421); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 308: if (lookahead == '\r') SKIP(5); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(6); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 309: if (lookahead == '\r') SKIP(7); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(405); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 310: if (lookahead == '\r') SKIP(8); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(423); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 311: if (lookahead == '\r') SKIP(9); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(424); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 312: - if (lookahead == '\r') SKIP(144); + if (lookahead == '\r') SKIP(10); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(409); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(406); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 313: - if (lookahead == '\r') SKIP(200); + if (lookahead == '\r') SKIP(145); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(410); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(409); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 314: - if (lookahead == '\r') SKIP(10); + if (lookahead == '\r') SKIP(200); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(406); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(410); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 315: - if (lookahead == '\r') SKIP(145); + if (lookahead == '\r') SKIP(11); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(407); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(408); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 316: - if (lookahead == '\r') SKIP(11); + if (lookahead == '\r') SKIP(146); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(408); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(407); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 317: if (lookahead == '\r') SKIP(20); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(146); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(147); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 318: - if (lookahead == '\r') SKIP(147); + if (lookahead == '\r') SKIP(148); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(237); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 319: if (lookahead == '\r') SKIP(21); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(427); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 320: - if (lookahead == '\r') SKIP(148); + if (lookahead == '\r') SKIP(149); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(428); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 321: if (lookahead == '\r') SKIP(22); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(422); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 322: if (lookahead == '\r') SKIP(23); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(240); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 323: if (lookahead == '\r') SKIP(24); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(243); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 324: if (lookahead == '\r') SKIP(25); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(246); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 325: - if (lookahead == '\r') SKIP(28); + if (lookahead == '\r') SKIP(26); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(249); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 326: - if (lookahead == '\r') SKIP(31); + if (lookahead == '\r') SKIP(29); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(252); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 327: - if (lookahead == '\r') SKIP(34); + if (lookahead == '\r') SKIP(32); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(255); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 328: - if (lookahead == '\r') SKIP(35); + if (lookahead == '\r') SKIP(33); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(258); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 329: - if (lookahead == '\r') SKIP(38); + if (lookahead == '\r') SKIP(36); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(261); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 330: - if (lookahead == '\r') SKIP(39); + if (lookahead == '\r') SKIP(37); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(464); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(460); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 331: - if (lookahead == '\r') SKIP(40); + if (lookahead == '\r') SKIP(38); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(460); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(464); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 332: if (lookahead == '\r') SKIP(41); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(267); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(264); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 333: - if (lookahead == '\r') SKIP(46); + if (lookahead == '\r') SKIP(44); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(426); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 334: - if (lookahead == '\r') SKIP(51); + if (lookahead == '\r') SKIP(47); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(273); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 335: if (lookahead == '\r') SKIP(52); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(473); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 336: if (lookahead == '\r') SKIP(53); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(467); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 337: - if (lookahead == '\r') SKIP(149); + if (lookahead == '\r') SKIP(150); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(278); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 338: - if (lookahead == '\r') SKIP(150); + if (lookahead == '\r') SKIP(54); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(280); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(463); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 339: - if (lookahead == '\r') SKIP(58); + if (lookahead == '\r') SKIP(151); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(463); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(280); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 340: - if (lookahead == '\r') SKIP(151); + if (lookahead == '\r') SKIP(175); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(282); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(461); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 341: - if (lookahead == '\r') SKIP(176); + if (lookahead == '\r') SKIP(152); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(461); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(282); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 342: - if (lookahead == '\r') SKIP(161); + if (lookahead == '\r') SKIP(63); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(284); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(469); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 343: - if (lookahead == '\r') SKIP(154); + if (lookahead == '\r') SKIP(160); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(286); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(284); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 344: - if (lookahead == '\r') SKIP(65); + if (lookahead == '\r') SKIP(153); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(469); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(286); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 345: - if (lookahead == '\r') SKIP(162); + if (lookahead == '\r') SKIP(163); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(288); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 346: - if (lookahead == '\r') SKIP(157); + if (lookahead == '\r') SKIP(156); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(290); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 347: - if (lookahead == '\r') SKIP(68); + if (lookahead == '\r') SKIP(70); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(436); END_STATE(); case 348: - if (lookahead == '\r') SKIP(164); + if (lookahead == '\r') SKIP(71); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(292); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(425); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 349: - if (lookahead == '\r') SKIP(160); + if (lookahead == '\r') SKIP(165); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(294); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(292); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 350: - if (lookahead == '\r') SKIP(204); + if (lookahead == '\r') SKIP(159); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(295); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(294); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 351: - if (lookahead == '\r') SKIP(71); + if (lookahead == '\r') SKIP(204); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(437); + lookahead == ' ') SKIP(295); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 352: if (lookahead == '\r') SKIP(72); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(425); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(437); END_STATE(); case 353: if (lookahead == '\r') SKIP(205); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(296); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 354: if (lookahead == '\r') SKIP(206); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(297); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 355: - if (lookahead == '\r') SKIP(163); + if (lookahead == '\r') SKIP(164); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(465); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 356: if (lookahead == '\r') SKIP(75); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(443); + lookahead == ' ') SKIP(444); END_STATE(); case 357: - if (lookahead == '\r') SKIP(173); + if (lookahead == '\r') SKIP(76); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(468); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(298); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 358: - if (lookahead == '\r') SKIP(210); + if (lookahead == '\r') SKIP(174); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(466); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(468); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 359: - if (lookahead == '\r') SKIP(76); + if (lookahead == '\r') SKIP(210); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(298); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(466); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 360: - if (lookahead == '\r') SKIP(172); + if (lookahead == '\r') SKIP(77); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(474); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(446); END_STATE(); case 361: - if (lookahead == '\r') SKIP(77); + if (lookahead == '\r') SKIP(173); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(439); + lookahead == ' ') SKIP(474); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 362: if (lookahead == '\r') SKIP(78); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(446); + lookahead == ' ') SKIP(441); END_STATE(); case 363: - if (lookahead == '\r') SKIP(182); + if (lookahead == '\r') SKIP(79); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(445); + lookahead == ' ') SKIP(442); END_STATE(); case 364: if (lookahead == '\r') SKIP(209); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(470); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 365: - if (lookahead == '\r') SKIP(181); + if (lookahead == '\r') SKIP(180); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(471); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 366: - if (lookahead == '\r') SKIP(81); + if (lookahead == '\r') SKIP(82); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(442); + lookahead == ' ') SKIP(443); END_STATE(); case 367: - if (lookahead == '\r') SKIP(84); + if (lookahead == '\r') SKIP(85); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(85); + lookahead == ' ') SKIP(475); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 368: - if (lookahead == '\r') SKIP(92); + if (lookahead == '\r') SKIP(86); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(475); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(87); END_STATE(); case 369: - if (lookahead == '\r') SKIP(95); + if (lookahead == '\r') SKIP(94); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(441); + lookahead == ' ') SKIP(439); END_STATE(); case 370: - if (lookahead == '\r') SKIP(171); + if (lookahead == '\r') SKIP(97); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(299); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(440); END_STATE(); case 371: - if (lookahead == '\r') SKIP(96); + if (lookahead == '\r') SKIP(168); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(444); + lookahead == ' ') SKIP(299); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 372: - if (lookahead == '\r') SKIP(189); + if (lookahead == '\r') SKIP(187); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(438); + lookahead == ' ') SKIP(445); END_STATE(); case 373: - if (lookahead == '\r') SKIP(99); + if (lookahead == '\r') SKIP(100); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(300); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 374: - if (lookahead == '\r') SKIP(217); + if (lookahead == '\r') SKIP(101); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(462); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(476); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 375: - if (lookahead == '\r') SKIP(102); + if (lookahead == '\r') SKIP(217); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(476); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(462); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 376: - if (lookahead == '\r') SKIP(103); + if (lookahead == '\r') SKIP(102); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(481); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 377: - if (lookahead == '\r') SKIP(104); + if (lookahead == '\r') SKIP(105); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(485); END_STATE(); case 378: - if (lookahead == '\r') SKIP(115); + if (lookahead == '\r') SKIP(116); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(482); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 379: - if (lookahead == '\r') SKIP(116); + if (lookahead == '\r') SKIP(117); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(454); END_STATE(); case 380: - if (lookahead == '\r') SKIP(117); + if (lookahead == '\r') SKIP(118); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(88); + lookahead == ' ') SKIP(90); END_STATE(); case 381: - if (lookahead == '\r') SKIP(118); + if (lookahead == '\r') SKIP(119); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(86); + lookahead == ' ') SKIP(88); END_STATE(); case 382: if (lookahead == '\r') SKIP(199); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(89); + lookahead == ' ') SKIP(91); END_STATE(); case 383: if (lookahead == '\r') SKIP(192); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(301); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 384: - if (lookahead == '\r') SKIP(119); + if (lookahead == '\r') SKIP(120); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(457); END_STATE(); case 385: - if (lookahead == '\r') SKIP(120); + if (lookahead == '\r') SKIP(121); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(477); END_STATE(); case 386: - if (lookahead == '\r') SKIP(121); + if (lookahead == '\r') SKIP(122); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(489); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(478); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 387: - if (lookahead == '\r') SKIP(122); + if (lookahead == '\r') SKIP(123); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(486); END_STATE(); case 388: - if (lookahead == '\r') SKIP(123); + if (lookahead == '\r') SKIP(124); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(478); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(487); END_STATE(); case 389: - if (lookahead == '\r') SKIP(124); + if (lookahead == '\r') SKIP(125); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(87); + lookahead == ' ') SKIP(489); END_STATE(); case 390: - if (lookahead == '\r') SKIP(125); + if (lookahead == '\r') SKIP(126); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(487); + lookahead == ' ') SKIP(89); END_STATE(); case 391: - if (lookahead == '\r') SKIP(126); + if (lookahead == '\r') SKIP(127); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(490); END_STATE(); case 392: - if (lookahead == '\r') SKIP(129); + if (lookahead == '\r') SKIP(128); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(90); + lookahead == ' ') SKIP(92); END_STATE(); case 393: - if (lookahead == '\r') SKIP(130); + if (lookahead == '\r') SKIP(133); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(458); END_STATE(); case 394: - if (lookahead == '\r') SKIP(139); + if (lookahead == '\r') SKIP(140); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(488); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 395: - if (lookahead == '\r') SKIP(140); + if (lookahead == '\r') SKIP(141); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(91); + lookahead == ' ') SKIP(480); END_STATE(); case 396: - if (lookahead == '\r') SKIP(141); + if (lookahead == '\r') SKIP(142); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(479); END_STATE(); case 397: - if (lookahead == '\r') SKIP(142); + if (lookahead == '\r') SKIP(143); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(480); + lookahead == ' ') SKIP(93); END_STATE(); case 398: - if (lookahead == '\r') SKIP(143); + if (lookahead == '\r') SKIP(144); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(491); END_STATE(); case 399: if (lookahead == '\r') SKIP(221); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(264); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(267); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 400: - if (lookahead == '\r') SKIP(224); + if (lookahead == '\r') SKIP(222); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(270); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 401: if (lookahead == '\r') SKIP(225); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(276); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 402: if (lookahead == '\r') SKIP(230); if (('\t' <= lookahead && lookahead <= '\f') || lookahead == ' ') SKIP(472); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 403: ADVANCE_MAP( - '!', 673, - '"', 791, - '#', 819, - '$', 784, - '%', 650, - '&', 604, - '\'', 494, - '(', 657, - ')', 658, - '*', 641, - '+', 773, - ',', 560, - '-', 771, - '/', 645, - '0', 947, - ':', 768, - ';', 557, - '<', 610, - '=', 566, - '>', 619, - '?', 764, - '@', 945, - '[', 677, + '!', 672, + '"', 790, + '#', 825, + '$', 783, + '%', 649, + '&', 603, + '\'', 809, + '(', 656, + ')', 657, + '*', 640, + '+', 772, + ',', 559, + '-', 770, + '/', 644, + '0', 953, + ':', 767, + ';', 556, + '<', 609, + '=', 565, + '>', 618, + '?', 763, + '@', 951, + '[', 676, '\\', 302, - ']', 678, - '^', 598, - '_', 949, - '`', 859, - 'e', 959, - 'i', 958, - '{', 669, - '|', 595, - '}', 821, - '~', 775, + ']', 677, + '^', 597, + '_', 955, + '`', 865, + 'e', 965, + 'i', 964, + '{', 668, + '|', 594, + '}', 827, + '~', 774, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(403); - if (lookahead != 0) ADVANCE(961); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 404: ADVANCE_MAP( - '!', 673, - '"', 791, - '#', 819, - '$', 784, - '%', 652, - '&', 604, - '\'', 494, - '(', 657, - '*', 641, - '+', 633, - '-', 636, - '/', 647, - '0', 946, - '<', 610, - '=', 563, - '>', 619, - '?', 764, - '@', 945, + '!', 672, + '"', 790, + '#', 825, + '$', 783, + '%', 651, + '&', 603, + '\'', 809, + '(', 656, + '*', 640, + '+', 632, + '-', 635, + '/', 646, + '0', 952, + '<', 609, + '=', 562, + '>', 618, + '?', 763, + '@', 951, '\\', 19, - ']', 678, - '^', 599, - '_', 950, - '`', 858, - '|', 595, - '[', 789, - '{', 789, - '}', 789, + ']', 677, + '^', 598, + '_', 956, + '`', 864, + '|', 594, + '[', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(404); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); - if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(876); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); + if (('A' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '}' < lookahead)) ADVANCE(961); + (lookahead < ';' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 405: ADVANCE_MAP( - '!', 673, - '"', 791, - '#', 865, - '$', 784, - '%', 652, - '&', 604, - '\'', 494, - '(', 657, - '*', 641, - '+', 774, - '-', 772, - '/', 647, - '0', 806, - '<', 610, - '=', 563, - '>', 619, - '?', 764, + '!', 672, + '"', 790, + '#', 871, + '$', 783, + '%', 651, + '&', 603, + '\'', 809, + '(', 656, + '*', 640, + '+', 773, + '-', 771, + '/', 646, + '0', 812, + '<', 609, + '=', 562, + '>', 618, + '?', 763, '\\', 309, - ']', 678, - '^', 599, - '`', 859, - '|', 595, - '~', 775, - '[', 789, - '{', 789, - '}', 789, + ']', 677, + '^', 598, + '`', 865, + '|', 594, + '~', 774, + '[', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(405); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(961); + (lookahead < ';' || '?' < lookahead)) ADVANCE(967); END_STATE(); case 406: ADVANCE_MAP( - '!', 673, - '"', 791, - '#', 865, - '$', 784, - '%', 652, - '&', 603, - '\'', 494, - '(', 657, - ')', 658, - '*', 641, - '+', 774, - '-', 772, - '/', 647, - '0', 806, - '<', 617, - '=', 563, - '>', 622, - '?', 764, - '\\', 314, - '^', 599, - '`', 859, - '|', 597, - '~', 775, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '!', 672, + '"', 790, + '#', 871, + '$', 783, + '%', 651, + '&', 602, + '\'', 809, + '(', 656, + ')', 657, + '*', 640, + '+', 773, + '-', 771, + '/', 646, + '0', 812, + '<', 616, + '=', 562, + '>', 621, + '?', 763, + '\\', 312, + '^', 598, + '`', 865, + '|', 596, + '~', 774, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(406); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < ';' || '?' < lookahead)) ADVANCE(961); + (lookahead < ';' || '?' < lookahead)) ADVANCE(967); END_STATE(); case 407: ADVANCE_MAP( - '!', 673, - '"', 791, - '#', 865, - '$', 784, - '%', 652, - '&', 603, - '\'', 494, - '(', 657, - ')', 502, - '*', 641, - '+', 774, - '-', 772, - '/', 647, - '0', 806, - '<', 617, - '=', 563, - '>', 622, - '?', 764, - '\\', 315, - '^', 599, - '`', 859, - '|', 597, - '~', 775, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '!', 672, + '"', 790, + '#', 871, + '$', 783, + '%', 651, + '&', 602, + '\'', 809, + '(', 656, + ')', 501, + '*', 640, + '+', 773, + '-', 771, + '/', 646, + '0', 812, + '<', 616, + '=', 562, + '>', 621, + '?', 763, + '\\', 316, + '^', 598, + '`', 865, + '|', 596, + '~', 774, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(407); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < ';' || '?' < lookahead)) ADVANCE(961); + (lookahead < ';' || '?' < lookahead)) ADVANCE(967); END_STATE(); case 408: ADVANCE_MAP( - '!', 673, - '"', 791, - '#', 865, - '$', 784, - '%', 652, - '&', 603, - '\'', 494, - '(', 657, - '*', 641, - '+', 774, - '-', 772, - '/', 647, - '0', 806, - ':', 768, - '<', 617, - '=', 563, - '>', 622, - '?', 764, - '\\', 316, - '^', 599, - '`', 859, - '|', 597, - '~', 775, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '!', 672, + '"', 790, + '#', 871, + '$', 783, + '%', 651, + '&', 602, + '\'', 809, + '(', 656, + '*', 640, + '+', 773, + '-', 771, + '/', 646, + '0', 812, + ':', 767, + '<', 616, + '=', 562, + '>', 621, + '?', 763, + '\\', 315, + '^', 598, + '`', 865, + '|', 596, + '~', 774, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(408); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < '/' || '?' < lookahead)) ADVANCE(961); + (lookahead < '/' || '?' < lookahead)) ADVANCE(967); END_STATE(); case 409: ADVANCE_MAP( - '!', 673, - '"', 791, - '#', 865, - '$', 784, - '%', 652, - '&', 603, - '\'', 494, - '(', 657, - '*', 641, - '+', 774, - '-', 772, - '/', 647, - '0', 806, - '<', 617, - '=', 563, - '>', 622, - '?', 764, - '\\', 312, - ']', 678, - '^', 599, - '`', 859, - '|', 597, - '~', 775, - '[', 789, - '{', 789, - '}', 789, + '!', 672, + '"', 790, + '#', 871, + '$', 783, + '%', 651, + '&', 602, + '\'', 809, + '(', 656, + '*', 640, + '+', 773, + '-', 771, + '/', 646, + '0', 812, + '<', 616, + '=', 562, + '>', 621, + '?', 763, + '\\', 313, + ']', 789, + '^', 598, + '`', 865, + '|', 596, + '~', 774, + '[', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(409); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(961); + (lookahead < ';' || '?' < lookahead)) ADVANCE(967); END_STATE(); case 410: ADVANCE_MAP( - '!', 673, - '"', 791, - '#', 865, - '$', 784, - '%', 652, - '&', 603, - '\'', 494, - '(', 657, - '*', 641, - '+', 774, - '-', 772, - '/', 647, - '0', 806, - '<', 617, - '=', 563, - '>', 622, - '?', 764, - '\\', 313, - ']', 790, - '^', 599, - '`', 859, - '|', 597, - '~', 775, - '[', 789, - '{', 789, - '}', 789, + '!', 672, + '"', 790, + '#', 871, + '$', 783, + '%', 651, + '&', 602, + '\'', 809, + '(', 656, + '*', 640, + '+', 773, + '-', 771, + '/', 646, + '0', 812, + '<', 616, + '=', 562, + '>', 621, + '?', 763, + '\\', 314, + ']', 677, + '^', 598, + '`', 865, + '|', 596, + '~', 774, + '[', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(410); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(961); + (lookahead < ';' || '?' < lookahead)) ADVANCE(967); END_STATE(); case 411: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 511, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 611, - '>', 620, - '?', 764, - '@', 945, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 510, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 610, + '>', 619, + '?', 763, + '@', 951, '\\', 74, - '_', 950, - '`', 858, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '_', 956, + '`', 864, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(411); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 412: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 657, - '*', 643, - '-', 639, - '0', 946, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 50, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\'', 809, + '(', 656, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 51, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(412); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(961); + (lookahead < ';' || ']' < lookahead)) ADVANCE(967); END_STATE(); case 413: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 170, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 172, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(413); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead)) ADVANCE(961); + (lookahead < ';' || ']' < lookahead)) ADVANCE(967); END_STATE(); case 414: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 612, - '>', 620, - '?', 764, - '@', 945, - '\\', 55, - ']', 678, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - '{', 789, - '}', 789, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '>', 619, + '?', 763, + '@', 951, + '\\', 56, + ']', 677, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(414); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 415: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 612, - '>', 620, - '?', 764, - '@', 945, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '>', 619, + '?', 763, + '@', 951, '\\', 60, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(415); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 416: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 613, - '>', 620, - '?', 764, - '@', 945, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 612, + '>', 619, + '?', 763, + '@', 951, '\\', 232, - ']', 678, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - '{', 789, - '}', 789, + ']', 677, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(416); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 417: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 613, - '>', 620, - '?', 764, - '@', 945, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 612, + '>', 619, + '?', 763, + '@', 951, '\\', 236, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(417); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 418: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '\'', 494, - '(', 497, - ')', 658, - '*', 643, - '-', 639, - '0', 946, - '<', 498, - '>', 499, - '?', 764, - '@', 945, - '\\', 110, - '_', 950, - '`', 858, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '\'', 809, + '(', 496, + ')', 657, + '*', 642, + '-', 638, + '0', 952, + '<', 497, + '>', 498, + '?', 763, + '@', 951, + '\\', 115, + '_', 956, + '`', 864, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(418); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 419: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 865, - '$', 784, - '&', 511, - '\'', 494, - '(', 657, - ')', 658, - '-', 953, - '0', 806, - ';', 493, - '<', 611, - '>', 620, - '[', 677, - '\\', 305, - '`', 858, - '{', 669, - '|', 593, - ']', 789, - '}', 789, + '!', 674, + '"', 790, + '#', 871, + '$', 783, + '&', 510, + '\'', 809, + '(', 656, + ')', 657, + '+', 773, + '-', 771, + '0', 812, + '<', 610, + '>', 619, + '[', 676, + '\\', 306, + '`', 864, + '{', 668, + '|', 592, + '~', 774, + ']', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(419); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0 && + lookahead != ';' && + lookahead != '<') ADVANCE(967); END_STATE(); case 420: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 865, - '$', 784, - '&', 511, - '\'', 494, - '(', 657, - ')', 502, - '+', 774, - '-', 772, - '0', 806, - '<', 611, - '>', 620, - '[', 677, - '\\', 306, - '`', 858, - '{', 669, - '|', 594, - '~', 775, - ']', 789, - '}', 789, + '!', 674, + '"', 790, + '#', 871, + '$', 783, + '&', 510, + '\'', 809, + '(', 656, + ')', 657, + '-', 959, + '0', 812, + ';', 493, + '<', 610, + '>', 619, + '[', 676, + '\\', 305, + '`', 864, + '{', 668, + '|', 593, + ']', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(420); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0 && - lookahead != ';' && - lookahead != '<') ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 421: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 865, - '$', 784, - '&', 511, - '\'', 494, - '(', 657, - '+', 774, - '-', 772, - '0', 806, - '<', 611, - '>', 620, - '[', 677, + '!', 674, + '"', 790, + '#', 871, + '$', 783, + '&', 510, + '\'', 809, + '(', 656, + ')', 501, + '+', 773, + '-', 771, + '0', 812, + '<', 610, + '>', 619, + '[', 676, '\\', 307, - ']', 678, - '`', 858, - '{', 669, - '}', 789, - '~', 775, + ']', 677, + '`', 864, + '{', 668, + '}', 788, + '~', 774, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(421); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && - (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(961); + (lookahead < '{' || '~' < lookahead)) ADVANCE(967); END_STATE(); case 422: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 865, - '$', 784, - '&', 511, - '\'', 494, - '(', 657, - '+', 774, - '-', 772, - '0', 806, - '<', 611, - '>', 620, - '[', 677, + '!', 674, + '"', 790, + '#', 871, + '$', 783, + '&', 510, + '\'', 809, + '(', 656, + '+', 773, + '-', 771, + '0', 812, + '<', 610, + '>', 619, + '[', 676, '\\', 321, - '`', 858, - '~', 775, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + '~', 774, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(422); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(961); + (lookahead < '{' || '~' < lookahead)) ADVANCE(967); END_STATE(); case 423: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 865, - '$', 784, - '&', 511, - '\'', 494, - '(', 657, - '-', 953, - '0', 806, + '!', 674, + '"', 790, + '#', 871, + '$', 783, + '&', 510, + '\'', 809, + '(', 656, + '-', 959, + '0', 812, ';', 493, - '<', 611, - '>', 620, - '[', 677, + '<', 610, + '>', 619, + '[', 676, '\\', 310, - '`', 858, - 'e', 959, - '{', 669, - ']', 789, - '}', 789, + '`', 864, + 'e', 965, + '{', 668, + ']', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(423); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 424: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 865, - '$', 784, - '&', 511, - '\'', 494, - '(', 657, - '-', 953, - '0', 806, - '<', 611, - '>', 620, - '[', 677, + '!', 674, + '"', 790, + '#', 871, + '$', 783, + '&', 510, + '\'', 809, + '(', 656, + '-', 959, + '0', 812, + '<', 610, + '>', 619, + '[', 676, '\\', 311, - ']', 789, - '`', 858, - '{', 669, - '}', 670, + ']', 788, + '`', 864, + '{', 668, + '}', 669, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(424); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 425: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 865, - '$', 784, - '\'', 494, - '(', 657, - ')', 502, - '+', 774, - '-', 772, - '0', 806, - '<', 498, - '>', 499, - '\\', 352, - '`', 858, - '~', 775, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '!', 674, + '"', 790, + '#', 871, + '$', 783, + '\'', 809, + '(', 656, + ')', 501, + '+', 773, + '-', 771, + '0', 812, + '<', 497, + '>', 498, + '\\', 348, + '`', 864, + '~', 774, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(961); + (lookahead < '{' || '~' < lookahead)) ADVANCE(967); END_STATE(); case 426: ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 865, - '$', 784, - '\'', 494, - '(', 657, - ')', 502, - '+', 774, - '-', 772, - '0', 807, - '<', 498, - '>', 499, + '!', 674, + '"', 790, + '#', 871, + '$', 783, + '\'', 809, + '(', 656, + ')', 501, + '+', 773, + '-', 771, + '0', 813, + '<', 497, + '>', 498, '\\', 333, - '`', 858, - '~', 775, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + '~', 774, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(426); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(815); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(877); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '_' || '~' < lookahead)) ADVANCE(961); + (lookahead < '_' || '~' < lookahead)) ADVANCE(967); END_STATE(); case 427: ADVANCE_MAP( - '!', 954, - '"', 791, - '#', 865, - '$', 784, - '%', 652, - '&', 604, - '\'', 494, - '(', 657, - '*', 641, - '+', 633, - '-', 636, - '/', 647, - '0', 806, - '<', 610, - '=', 563, - '>', 619, - '?', 764, + '!', 960, + '"', 790, + '#', 871, + '$', 783, + '%', 651, + '&', 603, + '\'', 809, + '(', 656, + '*', 640, + '+', 632, + '-', 635, + '/', 646, + '0', 812, + '<', 609, + '=', 562, + '>', 618, + '?', 763, '\\', 319, - ']', 678, - '^', 599, - '`', 859, - '|', 595, - '[', 789, - '{', 789, - '}', 789, + ']', 677, + '^', 598, + '`', 865, + '|', 594, + '[', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(427); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(961); + (lookahead < ';' || '?' < lookahead)) ADVANCE(967); END_STATE(); case 428: ADVANCE_MAP( - '!', 954, - '"', 791, - '#', 865, - '$', 784, - '%', 652, - '&', 604, - '\'', 494, - '(', 657, - '*', 641, - '+', 633, - '-', 636, - '/', 647, - '0', 806, - '<', 610, - '=', 563, - '>', 619, - '?', 764, + '!', 960, + '"', 790, + '#', 871, + '$', 783, + '%', 651, + '&', 603, + '\'', 809, + '(', 656, + '*', 640, + '+', 632, + '-', 635, + '/', 646, + '0', 812, + '<', 609, + '=', 562, + '>', 618, + '?', 763, '\\', 320, - ']', 678, - '^', 599, - '`', 858, - '|', 595, - '[', 789, - '{', 789, - '}', 789, + ']', 677, + '^', 598, + '`', 864, + '|', 594, + '[', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(428); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '?' < lookahead)) ADVANCE(961); + (lookahead < ';' || '?' < lookahead)) ADVANCE(967); END_STATE(); case 429: ADVANCE_MAP( - '!', 674, - '"', 791, - '#', 819, - '$', 783, - '%', 653, - '&', 603, - ')', 658, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '0', 948, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '@', 944, - '\\', 180, - '^', 600, - '_', 951, - '|', 597, + '!', 673, + '"', 790, + '#', 825, + '$', 782, + '%', 652, + '&', 602, + ')', 657, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 954, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '@', 950, + '\\', 182, + '^', 599, + '_', 957, + '|', 596, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(429); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 430: ADVANCE_MAP( - '!', 674, - '"', 791, - '#', 819, - '$', 783, - '%', 653, - '&', 603, - ')', 502, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '0', 948, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '@', 944, - '\\', 64, - '^', 600, - '_', 951, - '|', 597, + '!', 673, + '"', 790, + '#', 825, + '$', 782, + '%', 652, + '&', 602, + ')', 501, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 954, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '@', 950, + '\\', 65, + '^', 599, + '_', 957, + '|', 596, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(430); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 431: ADVANCE_MAP( - '!', 674, - '"', 791, - '#', 819, - '$', 783, - '%', 653, - '&', 603, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '0', 948, - ':', 765, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '@', 944, + '!', 673, + '"', 790, + '#', 825, + '$', 782, + '%', 652, + '&', 602, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 954, + ':', 764, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '@', 950, '\\', 67, - '^', 600, - '_', 951, - '|', 597, + '^', 599, + '_', 957, + '|', 596, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(431); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 432: ADVANCE_MAP( - '!', 674, - '"', 791, - '#', 819, - '$', 783, - '%', 653, - '&', 603, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '0', 948, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '@', 944, + '!', 673, + '"', 790, + '#', 825, + '$', 782, + '%', 652, + '&', 602, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 954, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '@', 950, '\\', 62, - ']', 678, - '^', 600, - '_', 951, - '|', 597, + ']', 677, + '^', 599, + '_', 957, + '|', 596, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(432); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 433: ADVANCE_MAP( - '!', 674, - '"', 791, - '#', 819, - '$', 783, - '%', 653, - '&', 603, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '0', 948, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '@', 944, - '\\', 178, - ']', 512, - '^', 600, - '_', 951, - '|', 597, + '!', 673, + '"', 790, + '#', 825, + '$', 782, + '%', 652, + '&', 602, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 954, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '@', 950, + '\\', 179, + ']', 511, + '^', 599, + '_', 957, + '|', 596, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(433); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 434: ADVANCE_MAP( - '!', 674, - '"', 791, - '#', 819, - '$', 783, - '%', 653, - '&', 603, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '0', 948, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '@', 944, - '\\', 70, - '^', 600, - '_', 951, - '|', 597, + '!', 673, + '"', 790, + '#', 825, + '$', 782, + '%', 652, + '&', 602, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 954, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '@', 950, + '\\', 69, + '^', 599, + '_', 957, + '|', 596, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(434); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 435: ADVANCE_MAP( - '!', 509, - '"', 791, - '#', 865, - '$', 788, - '%', 653, - '&', 603, - ')', 502, - '*', 642, - '+', 634, - ',', 559, - '-', 637, - '.', 506, - '/', 648, - ':', 765, + '!', 508, + '"', 790, + '#', 871, + '$', 787, + '%', 652, + '&', 602, + ')', 501, + '*', 641, + '+', 633, + ',', 558, + '-', 636, + '.', 505, + '/', 647, + ':', 764, ';', 493, - '<', 618, - '=', 565, - '>', 623, - '?', 763, + '<', 617, + '=', 564, + '>', 622, + '?', 762, ); if (lookahead == '\\') SKIP(347); - if (lookahead == ']') ADVANCE(790); - if (lookahead == '^') ADVANCE(600); - if (lookahead == '`') ADVANCE(858); - if (lookahead == 'e') ADVANCE(517); - if (lookahead == 'i') ADVANCE(516); - if (lookahead == '|') ADVANCE(597); + if (lookahead == ']') ADVANCE(789); + if (lookahead == '^') ADVANCE(599); + if (lookahead == '`') ADVANCE(864); + if (lookahead == 'e') ADVANCE(516); + if (lookahead == 'i') ADVANCE(515); + if (lookahead == '|') ADVANCE(596); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(436); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(778); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(777); END_STATE(); case 436: ADVANCE_MAP( - '!', 509, - '"', 791, - '#', 865, - '$', 788, - '%', 653, - '&', 603, - ')', 502, - '*', 642, - '+', 634, - ',', 559, - '-', 637, - '/', 648, - ':', 765, + '!', 508, + '"', 790, + '#', 871, + '$', 787, + '%', 652, + '&', 602, + ')', 501, + '*', 641, + '+', 633, + ',', 558, + '-', 636, + '/', 647, + ':', 764, ';', 493, - '<', 618, - '=', 565, - '>', 623, - '?', 763, + '<', 617, + '=', 564, + '>', 622, + '?', 762, ); if (lookahead == '\\') SKIP(347); - if (lookahead == ']') ADVANCE(790); - if (lookahead == '^') ADVANCE(600); - if (lookahead == '`') ADVANCE(858); - if (lookahead == 'e') ADVANCE(517); - if (lookahead == 'i') ADVANCE(516); - if (lookahead == '|') ADVANCE(597); + if (lookahead == ']') ADVANCE(789); + if (lookahead == '^') ADVANCE(599); + if (lookahead == '`') ADVANCE(864); + if (lookahead == 'e') ADVANCE(516); + if (lookahead == 'i') ADVANCE(515); + if (lookahead == '|') ADVANCE(596); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(436); END_STATE(); case 437: ADVANCE_MAP( - '!', 509, - '"', 791, - '#', 865, - '$', 501, - '%', 653, - '&', 603, - '(', 497, - ')', 658, - '*', 642, - '+', 634, - ',', 559, - '-', 637, - '/', 648, - '<', 618, - '=', 565, - '>', 623, - '?', 763, + '!', 508, + '"', 790, + '#', 871, + '$', 500, + '%', 652, + '&', 602, + '(', 496, + ')', 657, + '*', 641, + '+', 633, + ',', 558, + '-', 636, + '/', 647, + '<', 617, + '=', 564, + '>', 622, + '?', 762, ); - if (lookahead == '\\') SKIP(351); - if (lookahead == ']') ADVANCE(678); - if (lookahead == '^') ADVANCE(600); - if (lookahead == '`') ADVANCE(858); - if (lookahead == '|') ADVANCE(597); + if (lookahead == '\\') SKIP(352); + if (lookahead == ']') ADVANCE(677); + if (lookahead == '^') ADVANCE(599); + if (lookahead == '`') ADVANCE(864); + if (lookahead == '|') ADVANCE(596); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(437); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('A' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 438: ADVANCE_MAP( - '!', 509, - '#', 865, - '%', 653, - '&', 603, - ')', 658, - '*', 642, - '+', 634, - ',', 559, - '-', 638, - '/', 648, - '<', 618, - '=', 564, - '>', 623, + '!', 508, + '#', 871, + '%', 652, + '&', 602, + ')', 657, + '*', 641, + '+', 633, + ',', 558, + '-', 637, + '/', 647, + '<', 617, + '=', 563, + '>', 622, ); - if (lookahead == '\\') SKIP(372); - if (lookahead == '^') ADVANCE(600); - if (lookahead == '|') ADVANCE(597); + if (lookahead == '\\') SKIP(369); + if (lookahead == '^') ADVANCE(599); + if (lookahead == '|') ADVANCE(596); + if (lookahead == '}') ADVANCE(780); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(438); + lookahead == ' ') SKIP(439); END_STATE(); case 439: ADVANCE_MAP( - '!', 509, - '#', 865, - '%', 653, - '&', 603, - ')', 658, - '*', 642, - '+', 634, + '!', 508, + '#', 871, + '%', 652, + '&', 602, + ')', 657, + '*', 641, + '+', 633, + ',', 558, '-', 637, - '/', 648, - ':', 765, - '<', 618, - '=', 565, - '>', 623, - '?', 763, + '/', 647, + '<', 617, + '=', 563, + '>', 622, ); - if (lookahead == '\\') SKIP(361); - if (lookahead == '^') ADVANCE(600); - if (lookahead == '`') ADVANCE(513); - if (lookahead == '|') ADVANCE(597); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (lookahead == '\\') SKIP(369); + if (lookahead == '^') ADVANCE(599); + if (lookahead == '|') ADVANCE(596); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(439); END_STATE(); case 440: ADVANCE_MAP( - '!', 509, - '#', 865, - '%', 653, - '&', 603, - ')', 658, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '[', 676, + '!', 508, + '#', 871, + '%', 652, + '&', 602, + ')', 657, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '[', 675, ); - if (lookahead == '\\') SKIP(369); - if (lookahead == '^') ADVANCE(600); - if (lookahead == '|') ADVANCE(597); - if (lookahead == '}') ADVANCE(781); + if (lookahead == '\\') SKIP(370); + if (lookahead == '^') ADVANCE(599); + if (lookahead == '|') ADVANCE(596); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(441); + lookahead == ' ') SKIP(440); END_STATE(); case 441: ADVANCE_MAP( - '!', 509, - '#', 865, - '%', 653, - '&', 603, - ')', 658, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '[', 676, + '!', 508, + '#', 871, + '%', 652, + '&', 602, + ')', 657, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '<', 617, + '=', 564, + '>', 622, + '?', 762, ); - if (lookahead == '\\') SKIP(369); - if (lookahead == '^') ADVANCE(600); - if (lookahead == '|') ADVANCE(597); + if (lookahead == '\\') SKIP(362); + if (lookahead == ']') ADVANCE(677); + if (lookahead == '^') ADVANCE(599); + if (lookahead == '`') ADVANCE(512); + if (lookahead == '|') ADVANCE(596); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(441); END_STATE(); case 442: ADVANCE_MAP( - '!', 509, - '#', 865, - '%', 653, - '&', 603, - ')', 502, - '*', 642, - '+', 634, - ',', 559, - '-', 637, - '/', 648, - ':', 765, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '[', 676, + '!', 508, + '#', 871, + '%', 652, + '&', 602, + ')', 657, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '<', 617, + '=', 564, + '>', 622, + '?', 762, ); - if (lookahead == '\\') SKIP(366); - if (lookahead == ']') ADVANCE(678); - if (lookahead == '^') ADVANCE(600); - if (lookahead == '`') ADVANCE(513); - if (lookahead == '|') ADVANCE(597); - if (lookahead == '}') ADVANCE(821); + if (lookahead == '\\') SKIP(363); + if (lookahead == '^') ADVANCE(599); + if (lookahead == '`') ADVANCE(512); + if (lookahead == '|') ADVANCE(596); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(442); END_STATE(); case 443: ADVANCE_MAP( - '!', 509, - '#', 865, - '%', 653, - '&', 603, - ')', 502, - '*', 642, - '+', 634, - ',', 559, - '-', 637, - '/', 648, - ':', 765, - '<', 618, - '=', 565, - '>', 623, - '?', 763, + '!', 508, + '#', 871, + '%', 652, + '&', 602, + ')', 501, + '*', 641, + '+', 633, + ',', 558, + '-', 636, + '/', 647, + ':', 764, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '[', 675, ); - if (lookahead == '\\') SKIP(356); - if (lookahead == ']') ADVANCE(790); - if (lookahead == '^') ADVANCE(600); - if (lookahead == '`') ADVANCE(513); - if (lookahead == '|') ADVANCE(597); - if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (lookahead == '\\') SKIP(366); + if (lookahead == ']') ADVANCE(677); + if (lookahead == '^') ADVANCE(599); + if (lookahead == '`') ADVANCE(512); + if (lookahead == '|') ADVANCE(596); + if (lookahead == '}') ADVANCE(827); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(443); END_STATE(); case 444: ADVANCE_MAP( - '!', 509, - '#', 865, - '%', 653, - '&', 603, - ')', 502, - '*', 642, - '+', 634, - ',', 559, - '-', 638, - '/', 648, - '<', 618, + '!', 508, + '#', 871, + '%', 652, + '&', 602, + ')', 501, + '*', 641, + '+', 633, + ',', 558, + '-', 636, + '/', 647, + ':', 764, + '<', 617, '=', 564, - '>', 623, + '>', 622, + '?', 762, ); - if (lookahead == '\\') SKIP(371); - if (lookahead == '^') ADVANCE(600); - if (lookahead == '|') ADVANCE(597); + if (lookahead == '\\') SKIP(356); + if (lookahead == ']') ADVANCE(789); + if (lookahead == '^') ADVANCE(599); + if (lookahead == '`') ADVANCE(512); + if (lookahead == '|') ADVANCE(596); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(444); END_STATE(); case 445: ADVANCE_MAP( - '!', 509, - '#', 865, - '%', 653, - '&', 603, - ')', 502, - '*', 642, - '+', 634, + '!', 508, + '#', 871, + '%', 652, + '&', 602, + ')', 501, + '*', 641, + '+', 633, + ',', 558, '-', 637, - '/', 648, - ':', 765, - '<', 618, - '=', 565, - '>', 623, - '?', 763, + '/', 647, + '<', 617, + '=', 563, + '>', 622, ); - if (lookahead == '\\') SKIP(363); - if (lookahead == '^') ADVANCE(600); - if (lookahead == '`') ADVANCE(513); - if (lookahead == '|') ADVANCE(597); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (lookahead == '\\') SKIP(372); + if (lookahead == '^') ADVANCE(599); + if (lookahead == '|') ADVANCE(596); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(445); END_STATE(); case 446: ADVANCE_MAP( - '!', 509, - '#', 865, - '%', 653, - '&', 603, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '<', 618, - '=', 565, - '>', 623, - '?', 763, + '!', 508, + '#', 871, + '%', 652, + '&', 602, + ')', 501, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + ':', 764, + '<', 617, + '=', 564, + '>', 622, + '?', 762, ); - if (lookahead == '\\') SKIP(362); - if (lookahead == ']') ADVANCE(678); - if (lookahead == '^') ADVANCE(600); - if (lookahead == '`') ADVANCE(513); - if (lookahead == '|') ADVANCE(597); - if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (lookahead == '\\') SKIP(360); + if (lookahead == '^') ADVANCE(599); + if (lookahead == '`') ADVANCE(512); + if (lookahead == '|') ADVANCE(596); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(446); END_STATE(); case 447: ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 106, - ']', 678, - '_', 951, - '|', 596, + '*', 639, + '-', 634, + '0', 954, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 107, + ']', 677, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(447); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 448: ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 114, - '_', 951, - '|', 596, + '*', 639, + '-', 634, + '0', 954, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 111, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(448); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 449: ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 616, - '>', 621, - '?', 763, - '@', 944, + '*', 639, + '-', 634, + '0', 954, + '<', 615, + '>', 620, + '?', 762, + '@', 950, '\\', 194, - ']', 678, - '_', 951, - '|', 596, + ']', 677, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(449); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 450: ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 616, - '>', 621, - '?', 763, - '@', 944, + '*', 639, + '-', 634, + '0', 954, + '<', 615, + '>', 620, + '?', 762, + '@', 950, '\\', 198, - '_', 951, - '|', 596, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(450); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 451: ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, - ')', 658, - '*', 640, - '-', 635, - '0', 948, - '?', 763, - '@', 944, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + ')', 657, + '*', 639, + '-', 634, + '0', 954, + '?', 762, + '@', 950, '\\', 132, - '_', 951, - '|', 593, + '_', 957, + '|', 592, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(451); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 452: ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '*', 640, - '-', 635, - '0', 948, - '?', 763, - '@', 944, - '\\', 135, - '_', 951, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '*', 639, + '-', 634, + '0', 954, + '?', 762, + '@', 950, + '\\', 134, + '_', 957, ); if (lookahead == '\n' || lookahead == '\r') SKIP(452); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(796); + lookahead == ' ') ADVANCE(795); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); if (lookahead != 0 && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(801); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(800); END_STATE(); case 453: ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '*', 640, - '-', 635, - '0', 948, - '?', 763, - '@', 944, - '\\', 134, - '_', 951, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '*', 639, + '-', 634, + '0', 954, + '?', 762, + '@', 950, + '\\', 136, + '_', 957, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(453); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 454: ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 865, - '$', 788, + '!', 671, + '"', 790, + '#', 871, + '$', 787, '&', 492, - '(', 656, - '+', 774, - '-', 772, - '0', 811, - '<', 615, - '>', 621, + '(', 655, + '+', 773, + '-', 771, + '0', 817, + '<', 614, + '>', 620, ); if (lookahead == '\\') SKIP(379); - if (lookahead == ']') ADVANCE(678); - if (lookahead == '`') ADVANCE(858); - if (lookahead == '|') ADVANCE(596); - if (lookahead == '~') ADVANCE(775); + if (lookahead == ']') ADVANCE(677); + if (lookahead == '`') ADVANCE(864); + if (lookahead == '|') ADVANCE(595); + if (lookahead == '~') ADVANCE(774); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(454); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(813); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(819); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 455: ADVANCE_MAP( - '!', 672, - '#', 819, - '$', 783, - '*', 640, - '-', 635, - '0', 948, - '?', 763, - '@', 944, - '\\', 136, - '_', 951, + '!', 671, + '#', 825, + '$', 782, + '*', 639, + '-', 634, + '0', 954, + '?', 762, + '@', 950, + '\\', 137, + '_', 957, ); if (lookahead == '\n' || lookahead == '\r') SKIP(455); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(797); + lookahead == ' ') ADVANCE(796); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(801); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(800); END_STATE(); case 456: ADVANCE_MAP( - '!', 672, - '#', 819, - '$', 783, - '*', 640, - '-', 635, - '0', 948, - '?', 763, - '@', 944, - '\\', 138, - '_', 951, + '!', 671, + '#', 825, + '$', 782, + '*', 639, + '-', 634, + '0', 954, + '?', 762, + '@', 950, + '\\', 139, + '_', 957, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(456); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 457: ADVANCE_MAP( - '!', 672, - '#', 819, - '$', 787, - '*', 640, - '-', 635, - '0', 948, - '?', 763, - '@', 944, + '!', 671, + '#', 825, + '$', 786, + '*', 639, + '-', 634, + '0', 954, + '?', 762, + '@', 950, ); if (lookahead == '\\') SKIP(384); - if (lookahead == '_') ADVANCE(951); - if (lookahead == '`') ADVANCE(858); - if (lookahead == '}') ADVANCE(821); + if (lookahead == '_') ADVANCE(957); + if (lookahead == '`') ADVANCE(864); + if (lookahead == '}') ADVANCE(827); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(457); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 458: ADVANCE_MAP( - '!', 672, - '#', 819, - '$', 787, - '*', 640, - '-', 635, - '0', 948, - '?', 763, - '@', 944, + '!', 671, + '#', 825, + '$', 786, + '*', 639, + '-', 634, + '0', 954, + '?', 762, + '@', 950, ); if (lookahead == '\\') SKIP(393); - if (lookahead == '_') ADVANCE(951); - if (lookahead == '`') ADVANCE(858); + if (lookahead == '_') ADVANCE(957); + if (lookahead == '`') ADVANCE(864); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(458); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 459: ADVANCE_MAP( - '!', 822, - '#', 828, - '$', 787, - '*', 640, - '-', 635, - '0', 948, - '=', 829, - '?', 763, - '@', 944, + '!', 828, + '#', 834, + '$', 786, + '*', 639, + '-', 634, + '0', 954, + '=', 835, + '?', 762, + '@', 950, ); if (lookahead == '\\') SKIP(384); - if (lookahead == '_') ADVANCE(951); - if (lookahead == '`') ADVANCE(858); - if (lookahead == '}') ADVANCE(821); + if (lookahead == '_') ADVANCE(957); + if (lookahead == '`') ADVANCE(864); + if (lookahead == '}') ADVANCE(827); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(457); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 460: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, - '&', 511, - '\'', 494, - '(', 657, - '-', 953, - '0', 806, - '<', 611, - '>', 620, - '[', 677, - '\\', 331, - '`', 858, - ']', 789, - '{', 789, - '}', 789, + '"', 790, + '#', 871, + '$', 783, + '&', 510, + '\'', 809, + '(', 656, + '-', 959, + '0', 812, + '<', 610, + '>', 619, + '[', 676, + '\\', 330, + '`', 864, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(460); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 461: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, - '&', 511, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 806, - '<', 611, - '>', 620, - '\\', 341, - '`', 858, - '|', 593, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '"', 790, + '#', 871, + '$', 783, + '&', 510, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 812, + '<', 610, + '>', 619, + '\\', 340, + '`', 864, + '|', 592, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(461); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 462: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, - '&', 511, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 806, - '<', 611, - '>', 620, - '\\', 374, - '`', 859, - '|', 593, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '"', 790, + '#', 871, + '$', 783, + '&', 510, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 812, + '<', 610, + '>', 619, + '\\', 375, + '`', 865, + '|', 592, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(462); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 463: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 657, - ')', 658, - '-', 953, - '0', 806, - '<', 612, - '>', 620, - '\\', 339, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\'', 809, + '(', 656, + ')', 657, + '-', 959, + '0', 812, + '<', 611, + '>', 619, + '\\', 338, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(463); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 464: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 657, - '-', 953, - '0', 806, - '<', 612, - '=', 955, - '>', 620, - '\\', 330, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\'', 809, + '(', 656, + '-', 959, + '0', 812, + '<', 611, + '=', 961, + '>', 619, + '\\', 331, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(464); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && - (lookahead < ';' || '>' < lookahead)) ADVANCE(961); + (lookahead < ';' || '>' < lookahead)) ADVANCE(967); END_STATE(); case 465: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 657, - '-', 953, - '0', 806, - '<', 612, - '=', 955, - '>', 620, + '\'', 809, + '(', 656, + '-', 959, + '0', 812, + '<', 611, + '=', 961, + '>', 619, '\\', 355, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(465); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && - (lookahead < ';' || '>' < lookahead)) ADVANCE(961); + (lookahead < ';' || '>' < lookahead)) ADVANCE(967); END_STATE(); case 466: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 806, - '<', 612, - '>', 620, - '\\', 358, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 812, + '<', 611, + '>', 619, + '\\', 359, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(466); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 467: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - '<', 612, - '>', 620, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + '<', 611, + '>', 619, '\\', 336, - ']', 678, - '`', 858, - '|', 596, - '[', 789, - '{', 789, - '}', 789, + ']', 677, + '`', 864, + '|', 595, + '[', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(467); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 468: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - '<', 612, - '>', 620, - '\\', 357, - ']', 678, - '`', 859, - '|', 596, - '[', 789, - '{', 789, - '}', 789, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + '<', 611, + '>', 619, + '\\', 358, + ']', 677, + '`', 865, + '|', 595, + '[', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(468); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 469: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - '<', 613, - '>', 620, - '\\', 344, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + '<', 612, + '>', 619, + '\\', 342, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(469); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 470: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - '<', 613, - '>', 620, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + '<', 612, + '>', 619, '\\', 364, - ']', 678, - '`', 859, - '|', 596, - '[', 789, - '{', 789, - '}', 789, + ']', 677, + '`', 865, + '|', 595, + '[', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(470); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 471: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - '<', 613, - '>', 620, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + '<', 612, + '>', 619, '\\', 365, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(471); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 472: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - '<', 613, - '>', 620, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + '<', 612, + '>', 619, '\\', 402, - ']', 678, - '`', 858, - '|', 596, - '[', 789, - '{', 789, - '}', 789, + ']', 677, + '`', 864, + '|', 595, + '[', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(472); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 473: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '-', 953, - '0', 807, - '<', 613, - '>', 620, + '\'', 809, + '(', 496, + '-', 959, + '0', 813, + '<', 612, + '>', 619, '\\', 335, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(473); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(815); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(877); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 474: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, + '"', 790, + '#', 871, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '-', 953, - '0', 807, - '<', 613, - '>', 620, - '\\', 360, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\'', 809, + '(', 496, + '-', 959, + '0', 813, + '<', 612, + '>', 619, + '\\', 361, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(474); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(815); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(877); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && - lookahead != '<') ADVANCE(961); + lookahead != '<') ADVANCE(967); END_STATE(); case 475: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, - '\'', 494, - '(', 657, - '-', 953, - '0', 806, - '<', 498, - '>', 499, - '\\', 368, - '`', 858, - 'e', 959, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '"', 790, + '#', 871, + '$', 783, + '\'', 809, + '(', 656, + '-', 959, + '0', 812, + '<', 497, + '>', 498, + '\\', 367, + '`', 864, + 'e', 965, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(475); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 476: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 784, - '\'', 494, - '(', 657, - '-', 953, - '0', 806, - '<', 498, - '>', 499, - '\\', 375, - '`', 858, - '}', 821, - '[', 789, - ']', 789, - '{', 789, + '"', 790, + '#', 871, + '$', 783, + '\'', 809, + '(', 656, + '-', 959, + '0', 812, + '<', 497, + '>', 498, + '\\', 374, + '`', 864, + '}', 827, + '[', 788, + ']', 788, + '{', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(476); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 477: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 788, + '"', 790, + '#', 871, + '$', 787, '&', 492, - '(', 656, - ')', 502, - '+', 504, - '-', 505, - '0', 812, - '<', 616, - '=', 562, - '>', 621, + '(', 655, + ')', 501, + '+', 503, + '-', 504, + '0', 818, + '<', 615, + '=', 561, + '>', 620, ); if (lookahead == '\\') SKIP(385); - if (lookahead == ']') ADVANCE(678); - if (lookahead == '`') ADVANCE(858); - if (lookahead == '|') ADVANCE(596); + if (lookahead == ']') ADVANCE(677); + if (lookahead == '`') ADVANCE(864); + if (lookahead == '|') ADVANCE(595); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(477); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(820); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(659); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(658); END_STATE(); case 478: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 785, - '\'', 494, - '(', 656, - ')', 658, - ';', 556, - '<', 498, - '>', 499, - '\\', 388, - '`', 858, - '{', 669, - '|', 593, - '}', 821, + '"', 790, + '#', 871, + '$', 784, + '\'', 809, + '(', 655, + ')', 657, + ';', 555, + '<', 497, + '>', 498, + '\\', 386, + '`', 864, + '{', 668, + '|', 592, + '}', 827, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(478); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && - (lookahead < '[' || ']' < lookahead)) ADVANCE(961); + (lookahead < '[' || ']' < lookahead)) ADVANCE(967); END_STATE(); case 479: ADVANCE_MAP( - '"', 791, - '#', 865, - '$', 500, - '%', 649, - '*', 640, - '+', 632, - '-', 635, - '/', 644, - ':', 765, + '"', 790, + '#', 871, + '$', 499, + '%', 648, + '*', 639, + '+', 631, + '-', 634, + '/', 643, + ':', 764, ); if (lookahead == '\\') SKIP(396); - if (lookahead == '`') ADVANCE(858); - if (lookahead == '}') ADVANCE(821); + if (lookahead == '`') ADVANCE(864); + if (lookahead == '}') ADVANCE(827); if (('[' <= lookahead && lookahead <= ']') || - lookahead == '{') ADVANCE(789); + lookahead == '{') ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(479); END_STATE(); case 480: - if (lookahead == '"') ADVANCE(791); - if (lookahead == '#') ADVANCE(865); - if (lookahead == '\'') ADVANCE(494); - if (lookahead == ')') ADVANCE(658); - if (lookahead == '\\') SKIP(397); - if (lookahead == '}') ADVANCE(821); + if (lookahead == '"') ADVANCE(790); + if (lookahead == '#') ADVANCE(871); + if (lookahead == '\'') ADVANCE(809); + if (lookahead == ')') ADVANCE(657); + if (lookahead == '\\') SKIP(395); + if (lookahead == '}') ADVANCE(827); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(845); + lookahead == ' ') ADVANCE(851); END_STATE(); case 481: ADVANCE_MAP( - '"', 791, - '#', 866, - '$', 784, - '\'', 494, - '(', 657, - '-', 953, - '0', 806, - '<', 498, - '>', 499, + '"', 790, + '#', 872, + '$', 783, + '\'', 809, + '(', 656, + '-', 959, + '0', 812, + '<', 497, + '>', 498, '\\', 376, - '`', 858, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '`', 864, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(481); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 482: ADVANCE_MAP( - '"', 791, - '#', 866, - '$', 784, - '\'', 494, - '(', 497, - '-', 953, - '0', 806, - '<', 498, - '>', 499, + '"', 790, + '#', 872, + '$', 783, + '\'', 809, + '(', 496, + '-', 959, + '0', 812, + '<', 497, + '>', 498, '\\', 378, - ']', 678, - '`', 858, - '[', 789, - '{', 789, - '}', 789, + ']', 677, + '`', 864, + '[', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(482); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); if (lookahead != 0 && (lookahead < '&' || ')' < lookahead) && lookahead != ';' && lookahead != '<' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 483: - if (lookahead == '"') ADVANCE(791); - if (lookahead == '#') ADVANCE(800); - if (lookahead == '$') ADVANCE(786); - if (lookahead == '(') ADVANCE(799); + if (lookahead == '"') ADVANCE(790); + if (lookahead == '#') ADVANCE(799); + if (lookahead == '$') ADVANCE(785); + if (lookahead == '(') ADVANCE(798); if (lookahead == '\\') ADVANCE(303); - if (lookahead == '`') ADVANCE(858); + if (lookahead == '`') ADVANCE(864); if (lookahead == '\n' || lookahead == '\r') SKIP(483); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(798); - if (lookahead != 0) ADVANCE(801); + lookahead == ' ') ADVANCE(797); + if (lookahead != 0) ADVANCE(800); END_STATE(); case 484: ADVANCE_MAP( - '#', 819, - '%', 651, - '*', 826, - '+', 836, - ',', 561, - '-', 833, - '/', 646, - ':', 767, - '=', 829, - '?', 839, - '@', 824, - '[', 676, + '#', 825, + '%', 650, + '*', 832, + '+', 842, + ',', 560, + '-', 839, + '/', 645, + ':', 766, + '=', 835, + '?', 845, + '@', 830, + '[', 675, ); if (lookahead == '\\') SKIP(377); - if (lookahead == '^') ADVANCE(601); - if (lookahead == '}') ADVANCE(821); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '}') ADVANCE(827); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(485); END_STATE(); case 485: - if (lookahead == '#') ADVANCE(819); - if (lookahead == '%') ADVANCE(651); - if (lookahead == ',') ADVANCE(561); - if (lookahead == '/') ADVANCE(646); - if (lookahead == ':') ADVANCE(765); - if (lookahead == '[') ADVANCE(676); + if (lookahead == '#') ADVANCE(825); + if (lookahead == '%') ADVANCE(650); + if (lookahead == ',') ADVANCE(560); + if (lookahead == '/') ADVANCE(645); + if (lookahead == ':') ADVANCE(764); + if (lookahead == '[') ADVANCE(675); if (lookahead == '\\') SKIP(377); - if (lookahead == '^') ADVANCE(601); - if (lookahead == '}') ADVANCE(821); + if (lookahead == '^') ADVANCE(600); + if (lookahead == '}') ADVANCE(827); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(485); END_STATE(); case 486: - if (lookahead == '#') ADVANCE(865); - if (lookahead == '$') ADVANCE(518); + if (lookahead == '#') ADVANCE(871); + if (lookahead == '$') ADVANCE(517); if (lookahead == '&') ADVANCE(492); - if (lookahead == '-') ADVANCE(507); - if (lookahead == '0') ADVANCE(811); - if (lookahead == '<') ADVANCE(616); - if (lookahead == '>') ADVANCE(621); + if (lookahead == '-') ADVANCE(506); + if (lookahead == '0') ADVANCE(817); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '>') ADVANCE(620); if (lookahead == '\\') SKIP(387); - if (lookahead == '`') ADVANCE(513); - if (lookahead == '|') ADVANCE(596); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + if (lookahead == ']') ADVANCE(677); + if (lookahead == '`') ADVANCE(512); + if (lookahead == '|') ADVANCE(595); + if (lookahead == '[' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(486); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(813); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(819); if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 487: ADVANCE_MAP( - '#', 865, - '%', 649, + '#', 871, + '%', 648, '&', 492, - '*', 640, - '+', 632, - '-', 635, - '/', 644, + '*', 639, + '+', 631, + '-', 634, + '/', 643, '<', 615, - '>', 621, + '>', 620, ); - if (lookahead == '\\') SKIP(390); - if (lookahead == '`') ADVANCE(513); - if (lookahead == '|') ADVANCE(596); + if (lookahead == '\\') SKIP(388); + if (lookahead == '`') ADVANCE(512); + if (lookahead == '|') ADVANCE(595); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(487); END_STATE(); case 488: ADVANCE_MAP( - '#', 865, - '&', 511, - '(', 657, - '<', 614, - '>', 621, - '[', 677, + '#', 871, + '&', 510, + '(', 656, + '<', 613, + '>', 620, + '[', 676, '\\', 394, - '{', 669, + '{', 668, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(488); @@ -16665,2023 +16876,2010 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '<' && (lookahead < '[' || ']' < lookahead) && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(961); + (lookahead < '{' || '}' < lookahead)) ADVANCE(967); END_STATE(); case 489: - ADVANCE_MAP( - '#', 865, - '&', 492, - '<', 615, - '>', 621, - '\\', 386, - ']', 678, - '`', 513, - '|', 596, - '[', 789, - '{', 789, - '}', 789, - ); + if (lookahead == '#') ADVANCE(871); + if (lookahead == '&') ADVANCE(492); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '\\') SKIP(389); + if (lookahead == '`') ADVANCE(512); + if (lookahead == '|') ADVANCE(595); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(489); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '&' || ')' < lookahead) && - lookahead != ';' && - lookahead != '<') ADVANCE(961); END_STATE(); case 490: - if (lookahead == '#') ADVANCE(865); + if (lookahead == '#') ADVANCE(871); if (lookahead == '&') ADVANCE(492); - if (lookahead == '<') ADVANCE(616); - if (lookahead == '>') ADVANCE(621); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '>') ADVANCE(620); if (lookahead == '\\') SKIP(391); - if (lookahead == ']') ADVANCE(678); - if (lookahead == '`') ADVANCE(513); - if (lookahead == '|') ADVANCE(596); + if (lookahead == ']') ADVANCE(677); + if (lookahead == '`') ADVANCE(512); + if (lookahead == '|') ADVANCE(595); if (lookahead == '[' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(490); END_STATE(); case 491: - if (lookahead == '#') ADVANCE(865); - if (lookahead == '+') ADVANCE(510); - if (lookahead == '/') ADVANCE(644); - if (lookahead == '=') ADVANCE(562); - if (lookahead == '[') ADVANCE(676); + if (lookahead == '#') ADVANCE(871); + if (lookahead == '+') ADVANCE(509); + if (lookahead == '/') ADVANCE(643); + if (lookahead == '=') ADVANCE(561); + if (lookahead == '[') ADVANCE(675); if (lookahead == '\\') SKIP(398); - if (lookahead == '`') ADVANCE(513); - if (lookahead == '}') ADVANCE(821); + if (lookahead == '`') ADVANCE(512); + if (lookahead == '}') ADVANCE(827); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(491); END_STATE(); case 492: - if (lookahead == '&') ADVANCE(591); - if (lookahead == '>') ADVANCE(683); + if (lookahead == '&') ADVANCE(590); + if (lookahead == '>') ADVANCE(682); END_STATE(); case 493: - if (lookahead == '&') ADVANCE(667); - if (lookahead == ';') ADVANCE(666); + if (lookahead == '&') ADVANCE(666); + if (lookahead == ';') ADVANCE(665); END_STATE(); case 494: - if (lookahead == '\'') ADVANCE(803); + if (lookahead == '\'') ADVANCE(810); + if (lookahead == '\\') ADVANCE(495); if (lookahead != 0) ADVANCE(494); END_STATE(); case 495: - if (lookahead == '\'') ADVANCE(804); - if (lookahead == '\\') ADVANCE(496); - if (lookahead != 0) ADVANCE(495); + if (lookahead == '\'') ADVANCE(811); + if (lookahead == '\\') ADVANCE(495); + if (lookahead != 0) ADVANCE(494); END_STATE(); case 496: - if (lookahead == '\'') ADVANCE(805); - if (lookahead == '\\') ADVANCE(496); - if (lookahead != 0) ADVANCE(495); + if (lookahead == '(') ADVANCE(553); END_STATE(); case 497: - if (lookahead == '(') ADVANCE(554); + if (lookahead == '(') ADVANCE(867); END_STATE(); case 498: - if (lookahead == '(') ADVANCE(861); + if (lookahead == '(') ADVANCE(868); END_STATE(); case 499: if (lookahead == '(') ADVANCE(862); + if (lookahead == '`') ADVANCE(866); END_STATE(); case 500: - if (lookahead == '(') ADVANCE(856); - if (lookahead == '`') ADVANCE(860); + if (lookahead == '(') ADVANCE(862); + if (lookahead == '`') ADVANCE(866); + if (lookahead == '{') ADVANCE(826); END_STATE(); case 501: - if (lookahead == '(') ADVANCE(856); - if (lookahead == '`') ADVANCE(860); - if (lookahead == '{') ADVANCE(820); + if (lookahead == ')') ADVANCE(554); END_STATE(); case 502: - if (lookahead == ')') ADVANCE(555); + if (lookahead == '+') ADVANCE(566); END_STATE(); case 503: - if (lookahead == '+') ADVANCE(567); + if (lookahead == '+') ADVANCE(566); + if (lookahead == '=') ADVANCE(570); END_STATE(); case 504: - if (lookahead == '+') ADVANCE(567); - if (lookahead == '=') ADVANCE(571); + if (lookahead == '-') ADVANCE(568); + if (lookahead == '0') ADVANCE(818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(820); END_STATE(); case 505: - if (lookahead == '-') ADVANCE(569); - if (lookahead == '0') ADVANCE(812); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead == '.') ADVANCE(778); END_STATE(); case 506: - if (lookahead == '.') ADVANCE(779); + if (lookahead == '0') ADVANCE(818); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(820); END_STATE(); case 507: - if (lookahead == '0') ADVANCE(812); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead == '<') ADVANCE(761); END_STATE(); case 508: - if (lookahead == '<') ADVANCE(762); + if (lookahead == '=') ADVANCE(607); END_STATE(); case 509: - if (lookahead == '=') ADVANCE(608); + if (lookahead == '=') ADVANCE(570); END_STATE(); case 510: - if (lookahead == '=') ADVANCE(571); + if (lookahead == '>') ADVANCE(682); END_STATE(); case 511: - if (lookahead == '>') ADVANCE(683); + if (lookahead == ']') ADVANCE(679); END_STATE(); case 512: - if (lookahead == ']') ADVANCE(680); + if (lookahead == '`') ADVANCE(781); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(512); END_STATE(); case 513: - if (lookahead == '`') ADVANCE(782); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(513); + if (lookahead == 'a') ADVANCE(514); END_STATE(); case 514: - if (lookahead == 'a') ADVANCE(515); + if (lookahead == 'c') ADVANCE(659); END_STATE(); case 515: - if (lookahead == 'c') ADVANCE(660); + if (lookahead == 'n') ADVANCE(550); END_STATE(); case 516: - if (lookahead == 'n') ADVANCE(551); + if (lookahead == 's') ADVANCE(513); END_STATE(); case 517: - if (lookahead == 's') ADVANCE(514); + if (lookahead == '{') ADVANCE(826); END_STATE(); case 518: - if (lookahead == '{') ADVANCE(820); + if (lookahead == '|') ADVANCE(588); END_STATE(); case 519: - if (lookahead == '|') ADVANCE(589); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); END_STATE(); case 520: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(967); END_STATE(); case 521: - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(961); + if (eof) ADVANCE(549); + if (lookahead == '\n') ADVANCE(692); + if (lookahead == '#') ADVANCE(871); + if (lookahead == '&') ADVANCE(604); + if (lookahead == ')') ADVANCE(657); + if (lookahead == ';') ADVANCE(557); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '\\') SKIP(543); + if (lookahead == '`') ADVANCE(865); + if (lookahead == '|') ADVANCE(595); + if (('[' <= lookahead && lookahead <= ']') || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(521); END_STATE(); case 522: - if (eof) ADVANCE(550); - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '#') ADVANCE(865); - if (lookahead == '&') ADVANCE(605); - if (lookahead == ')') ADVANCE(658); - if (lookahead == ';') ADVANCE(558); - if (lookahead == '<') ADVANCE(615); - if (lookahead == '>') ADVANCE(621); - if (lookahead == '\\') SKIP(544); - if (lookahead == '`') ADVANCE(859); - if (lookahead == '|') ADVANCE(596); + if (eof) ADVANCE(549); + if (lookahead == '\n') ADVANCE(692); + if (lookahead == '#') ADVANCE(871); + if (lookahead == '&') ADVANCE(604); + if (lookahead == ')') ADVANCE(657); + if (lookahead == ';') ADVANCE(557); + if (lookahead == '<') ADVANCE(614); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '\\') SKIP(545); + if (lookahead == '`') ADVANCE(864); + if (lookahead == '|') ADVANCE(595); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(522); END_STATE(); case 523: - if (eof) ADVANCE(550); - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '#') ADVANCE(865); - if (lookahead == '&') ADVANCE(605); - if (lookahead == ')') ADVANCE(658); - if (lookahead == ';') ADVANCE(558); + if (eof) ADVANCE(549); + if (lookahead == '\n') ADVANCE(692); + if (lookahead == '#') ADVANCE(871); + if (lookahead == '&') ADVANCE(604); + if (lookahead == ')') ADVANCE(657); + if (lookahead == ';') ADVANCE(557); if (lookahead == '<') ADVANCE(615); - if (lookahead == '>') ADVANCE(621); - if (lookahead == '\\') SKIP(546); - if (lookahead == '`') ADVANCE(858); - if (lookahead == '|') ADVANCE(596); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '\\') SKIP(544); + if (lookahead == '`') ADVANCE(865); + if (lookahead == '|') ADVANCE(595); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(523); END_STATE(); case 524: - if (eof) ADVANCE(550); - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '#') ADVANCE(865); - if (lookahead == '&') ADVANCE(605); - if (lookahead == ')') ADVANCE(658); - if (lookahead == ';') ADVANCE(558); - if (lookahead == '<') ADVANCE(616); - if (lookahead == '>') ADVANCE(621); - if (lookahead == '\\') SKIP(545); - if (lookahead == '`') ADVANCE(859); - if (lookahead == '|') ADVANCE(596); + if (eof) ADVANCE(549); + if (lookahead == '\n') ADVANCE(692); + if (lookahead == '#') ADVANCE(871); + if (lookahead == '&') ADVANCE(604); + if (lookahead == ')') ADVANCE(657); + if (lookahead == ';') ADVANCE(557); + if (lookahead == '<') ADVANCE(615); + if (lookahead == '>') ADVANCE(620); + if (lookahead == '\\') SKIP(546); + if (lookahead == '`') ADVANCE(864); + if (lookahead == '|') ADVANCE(595); if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(788); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(524); END_STATE(); case 525: - if (eof) ADVANCE(550); - if (lookahead == '\n') ADVANCE(693); - if (lookahead == '#') ADVANCE(865); - if (lookahead == '&') ADVANCE(605); - if (lookahead == ')') ADVANCE(658); - if (lookahead == ';') ADVANCE(558); - if (lookahead == '<') ADVANCE(616); - if (lookahead == '>') ADVANCE(621); - if (lookahead == '\\') SKIP(547); - if (lookahead == '`') ADVANCE(858); - if (lookahead == '|') ADVANCE(596); - if (('[' <= lookahead && lookahead <= ']') || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(789); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(525); + if (eof) ADVANCE(549); + if (lookahead == '\n') SKIP(521); END_STATE(); case 526: - if (eof) ADVANCE(550); - if (lookahead == '\n') SKIP(522); + if (eof) ADVANCE(549); + if (lookahead == '\n') SKIP(523); END_STATE(); case 527: - if (eof) ADVANCE(550); - if (lookahead == '\n') SKIP(524); + if (eof) ADVANCE(549); + if (lookahead == '\n') SKIP(522); END_STATE(); case 528: - if (eof) ADVANCE(550); - if (lookahead == '\n') SKIP(523); + if (eof) ADVANCE(549); + if (lookahead == '\n') SKIP(524); END_STATE(); case 529: - if (eof) ADVANCE(550); - if (lookahead == '\n') SKIP(525); - END_STATE(); - case 530: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( '\n', 704, - '!', 672, - '"', 791, - '#', 819, + '!', 674, + '"', 790, + '#', 825, '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '<', 615, - '>', 621, + '&', 604, + '\'', 809, + '(', 656, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 611, + '=', 961, + '>', 619, '?', 763, - '@', 944, - '\\', 186, - '_', 951, - '|', 596, + '@', 951, + '\\', 158, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(530); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + lookahead == ' ') SKIP(529); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); + if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); + END_STATE(); + case 530: + if (eof) ADVANCE(549); + ADVANCE_MAP( + '\n', 705, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + ')', 657, + '-', 959, + '0', 812, + ';', 557, + '<', 611, + '=', 961, + '>', 619, + '\\', 324, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, + ); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(530); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 531: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( - '\n', 706, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - ')', 658, - '-', 953, - '0', 806, - ';', 558, - '<', 612, - '=', 955, + '\n', 709, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '<', 614, '>', 620, - '\\', 324, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '?', 762, + '@', 950, + '\\', 212, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(531); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 532: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( - '\n', 708, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 203, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 713, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 216, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(532); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 533: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( '\n', 714, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 558, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 813, + ';', 557, '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 216, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '>', 619, + '\\', 327, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(533); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(815); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(877); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 534: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( '\n', 715, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 807, - ';', 558, - '<', 613, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '<', 615, '>', 620, - '\\', 327, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '?', 762, + '@', 950, + '\\', 219, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(534); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 535: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( - '\n', 716, - '!', 672, - '"', 791, - '#', 819, + '\n', 723, + '"', 790, + '#', 871, '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '<', 616, - '>', 621, - '?', 763, - '@', 944, - '\\', 219, - '_', 951, - '|', 596, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 812, + ';', 557, + '<', 611, + '>', 619, + '\\', 332, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(535); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 536: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( - '\n', 727, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 806, - ';', 558, - '<', 612, - '>', 620, - '\\', 332, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 734, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 611, + '>', 619, + '?', 763, + '@', 951, + '\\', 167, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(536); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 537: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( - '\n', 732, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 558, + '\n', 735, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 812, + ';', 557, '<', 612, - '>', 620, - '?', 764, - '@', 945, - '\\', 166, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '>', 619, + '\\', 401, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(537); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 538: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( - '\n', 736, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 806, - ';', 558, - '<', 613, - '>', 620, - '\\', 401, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 741, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + ')', 657, + '-', 959, + '0', 812, + ';', 557, + '<', 611, + '=', 961, + '>', 619, + '\\', 341, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(538); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 539: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( - '\n', 739, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 613, - '>', 620, - '?', 764, - '@', 945, + '\n', 742, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 612, + '>', 619, + '?', 763, + '@', 951, '\\', 208, - '_', 950, - '`', 858, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '_', 956, + '`', 864, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(539); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead)) ADVANCE(961); + (lookahead < '&' || '*' < lookahead)) ADVANCE(967); END_STATE(); case 540: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( - '\n', 742, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - ')', 658, - '-', 953, - '0', 806, - ';', 558, - '<', 612, - '=', 955, - '>', 620, - '\\', 340, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 751, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 812, + ';', 557, + '<', 611, + '>', 619, + '\\', 349, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(540); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 541: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( - '\n', 752, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 806, - ';', 558, + '\n', 753, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 813, + ';', 557, '<', 612, - '>', 620, - '\\', 348, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '>', 619, + '\\', 350, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(541); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(815); + if (('A' <= lookahead && lookahead <= 'Z') || + ('_' <= lookahead && lookahead <= 'z')) ADVANCE(877); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 542: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( - '\n', 754, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 807, - ';', 558, - '<', 613, - '>', 620, - '\\', 349, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, + '\n', 756, + '"', 790, + '#', 871, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '-', 959, + '0', 812, + ';', 557, + '<', 612, + '>', 619, + '\\', 354, + '`', 865, + '|', 595, + '[', 788, + ']', 788, + '{', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(542); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(809); - if (('A' <= lookahead && lookahead <= 'Z') || - ('_' <= lookahead && lookahead <= 'z')) ADVANCE(871); - if (lookahead != 0) ADVANCE(961); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); case 543: - if (eof) ADVANCE(550); - ADVANCE_MAP( - '\n', 757, - '"', 791, - '#', 865, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '-', 953, - '0', 806, - ';', 558, - '<', 613, - '>', 620, - '\\', 354, - '`', 859, - '|', 596, - '[', 789, - ']', 789, - '{', 789, - '}', 789, - ); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(543); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + if (eof) ADVANCE(549); + if (lookahead == '\r') SKIP(525); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') SKIP(521); END_STATE(); case 544: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); if (lookahead == '\r') SKIP(526); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(522); + lookahead == ' ') SKIP(523); END_STATE(); case 545: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); if (lookahead == '\r') SKIP(527); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(524); + lookahead == ' ') SKIP(522); END_STATE(); case 546: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); if (lookahead == '\r') SKIP(528); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(523); + lookahead == ' ') SKIP(524); END_STATE(); case 547: - if (eof) ADVANCE(550); - if (lookahead == '\r') SKIP(529); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(525); - END_STATE(); - case 548: - if (eof) ADVANCE(550); + if (eof) ADVANCE(549); ADVANCE_MAP( - '!', 673, - '"', 791, - '#', 819, - '$', 784, - '%', 650, - '&', 604, - '\'', 494, - '(', 657, - ')', 658, - '*', 641, - '+', 773, - ',', 560, - '-', 771, - '/', 645, - '0', 947, - ':', 768, - ';', 557, - '<', 610, - '=', 566, - '>', 619, - '?', 764, - '@', 945, - '[', 677, + '!', 672, + '"', 790, + '#', 825, + '$', 783, + '%', 649, + '&', 603, + '\'', 809, + '(', 656, + ')', 657, + '*', 640, + '+', 772, + ',', 559, + '-', 770, + '/', 644, + '0', 953, + ':', 767, + ';', 556, + '<', 609, + '=', 565, + '>', 618, + '?', 763, + '@', 951, + '[', 676, '\\', 302, - ']', 678, - '^', 598, - '_', 949, - '`', 859, - 'e', 959, - 'i', 958, - '{', 669, - '|', 595, - '}', 821, - '~', 775, + ']', 677, + '^', 597, + '_', 955, + '`', 865, + 'e', 965, + 'i', 964, + '{', 668, + '|', 594, + '}', 827, + '~', 774, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(548); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(547); + if (lookahead != 0) ADVANCE(967); END_STATE(); - case 549: - if (eof) ADVANCE(550); + case 548: + if (eof) ADVANCE(549); ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 865, - '$', 784, - '&', 511, - '\'', 494, - '(', 657, - ')', 658, - '-', 953, - '0', 806, + '!', 674, + '"', 790, + '#', 871, + '$', 783, + '&', 510, + '\'', 809, + '(', 656, + ')', 657, + '-', 959, + '0', 812, ';', 493, - '<', 611, - '>', 620, - '[', 677, + '<', 610, + '>', 619, + '[', 676, '\\', 305, - '`', 858, - '{', 669, + '`', 864, + '{', 668, '|', 593, - ']', 789, - '}', 789, + ']', 788, + '}', 788, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(549); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if (lookahead != 0) ADVANCE(961); + lookahead == ' ') SKIP(548); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if (lookahead != 0) ADVANCE(967); END_STATE(); - case 550: + case 549: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 551: + case 550: ACCEPT_TOKEN(anon_sym_in); END_STATE(); - case 552: + case 551: ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 553: + case 552: ACCEPT_TOKEN(anon_sym_in); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 554: + case 553: ACCEPT_TOKEN(anon_sym_LPAREN_LPAREN); END_STATE(); - case 555: + case 554: ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); END_STATE(); + case 555: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); case 556: ACCEPT_TOKEN(anon_sym_SEMI); + if (lookahead == '&') ADVANCE(666); + if (lookahead == ';') ADVANCE(665); END_STATE(); case 557: ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == '&') ADVANCE(667); - if (lookahead == ';') ADVANCE(666); + if (lookahead == ';') ADVANCE(664); END_STATE(); case 558: - ACCEPT_TOKEN(anon_sym_SEMI); - if (lookahead == ';') ADVANCE(665); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 559: ACCEPT_TOKEN(anon_sym_COMMA); + if (lookahead == ',') ADVANCE(859); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 560: ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == ',') ADVANCE(853); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == ',') ADVANCE(858); END_STATE(); case 561: - ACCEPT_TOKEN(anon_sym_COMMA); - if (lookahead == ',') ADVANCE(852); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 562: ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(606); + if (lookahead == '\\') ADVANCE(520); + if (lookahead == '~') ADVANCE(681); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 563: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(607); - if (lookahead == '\\') ADVANCE(521); - if (lookahead == '~') ADVANCE(682); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '=') ADVANCE(605); END_STATE(); case 564: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(606); + if (lookahead == '=') ADVANCE(605); + if (lookahead == '~') ADVANCE(680); END_STATE(); case 565: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(606); - if (lookahead == '~') ADVANCE(681); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 566: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 567: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 568: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); case 569: ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 570: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 571: ACCEPT_TOKEN(anon_sym_PLUS_EQ); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 572: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 573: ACCEPT_TOKEN(anon_sym_DASH_EQ); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 574: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 575: ACCEPT_TOKEN(anon_sym_STAR_EQ); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 576: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 577: ACCEPT_TOKEN(anon_sym_SLASH_EQ); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 578: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); END_STATE(); case 579: ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 580: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); END_STATE(); case 581: ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 582: - ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); END_STATE(); case 583: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); END_STATE(); case 584: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + ACCEPT_TOKEN(anon_sym_AMP_EQ); END_STATE(); case 585: - ACCEPT_TOKEN(anon_sym_AMP_EQ); + ACCEPT_TOKEN(anon_sym_CARET_EQ); END_STATE(); case 586: ACCEPT_TOKEN(anon_sym_CARET_EQ); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 587: - ACCEPT_TOKEN(anon_sym_CARET_EQ); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_PIPE_EQ); END_STATE(); case 588: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 589: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_DASHo); END_STATE(); case 590: - ACCEPT_TOKEN(anon_sym_DASHo); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 591: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_DASHa); END_STATE(); case 592: - ACCEPT_TOKEN(anon_sym_DASHa); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 593: ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '&') ADVANCE(670); END_STATE(); case 594: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(671); + if (lookahead == '&') ADVANCE(670); + if (lookahead == '=') ADVANCE(587); + if (lookahead == '|') ADVANCE(588); END_STATE(); case 595: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(671); - if (lookahead == '=') ADVANCE(588); - if (lookahead == '|') ADVANCE(589); + if (lookahead == '&') ADVANCE(670); + if (lookahead == '|') ADVANCE(588); END_STATE(); case 596: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '&') ADVANCE(671); - if (lookahead == '|') ADVANCE(589); + if (lookahead == '=') ADVANCE(587); + if (lookahead == '|') ADVANCE(588); END_STATE(); case 597: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(588); - if (lookahead == '|') ADVANCE(589); + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(586); + if (lookahead == '\\') ADVANCE(520); + if (lookahead == '^') ADVANCE(861); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 598: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(587); - if (lookahead == '\\') ADVANCE(521); - if (lookahead == '^') ADVANCE(855); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '=') ADVANCE(586); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 599: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(587); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '=') ADVANCE(585); END_STATE(); case 600: ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(586); + if (lookahead == '^') ADVANCE(860); END_STATE(); case 601: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(854); + ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); case 602: ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(590); + if (lookahead == '=') ADVANCE(584); END_STATE(); case 603: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(591); - if (lookahead == '=') ADVANCE(585); + if (lookahead == '&') ADVANCE(590); + if (lookahead == '=') ADVANCE(584); + if (lookahead == '>') ADVANCE(682); END_STATE(); case 604: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(591); - if (lookahead == '=') ADVANCE(585); - if (lookahead == '>') ADVANCE(683); + if (lookahead == '&') ADVANCE(590); + if (lookahead == '>') ADVANCE(682); END_STATE(); case 605: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(591); - if (lookahead == '>') ADVANCE(683); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 606: ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 607: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 608: ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 609: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '&') ADVANCE(684); + if (lookahead == '(') ADVANCE(867); + if (lookahead == '<') ADVANCE(627); + if (lookahead == '=') ADVANCE(623); END_STATE(); case 610: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(685); - if (lookahead == '(') ADVANCE(861); - if (lookahead == '<') ADVANCE(628); - if (lookahead == '=') ADVANCE(624); + if (lookahead == '&') ADVANCE(684); + if (lookahead == '(') ADVANCE(867); + if (lookahead == '<') ADVANCE(507); END_STATE(); case 611: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(685); - if (lookahead == '(') ADVANCE(861); - if (lookahead == '<') ADVANCE(508); + if (lookahead == '&') ADVANCE(684); + if (lookahead == '(') ADVANCE(867); + if (lookahead == '<') ADVANCE(626); END_STATE(); case 612: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(685); - if (lookahead == '(') ADVANCE(861); - if (lookahead == '<') ADVANCE(627); + if (lookahead == '&') ADVANCE(684); + if (lookahead == '(') ADVANCE(867); + if (lookahead == '<') ADVANCE(625); END_STATE(); case 613: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(685); - if (lookahead == '(') ADVANCE(861); - if (lookahead == '<') ADVANCE(626); + if (lookahead == '&') ADVANCE(684); + if (lookahead == '<') ADVANCE(507); END_STATE(); case 614: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(685); - if (lookahead == '<') ADVANCE(508); + if (lookahead == '&') ADVANCE(684); + if (lookahead == '<') ADVANCE(626); END_STATE(); case 615: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(685); - if (lookahead == '<') ADVANCE(627); + if (lookahead == '&') ADVANCE(684); + if (lookahead == '<') ADVANCE(625); END_STATE(); case 616: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '&') ADVANCE(685); - if (lookahead == '<') ADVANCE(626); + if (lookahead == '(') ADVANCE(867); + if (lookahead == '<') ADVANCE(628); + if (lookahead == '=') ADVANCE(623); END_STATE(); case 617: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '(') ADVANCE(861); - if (lookahead == '<') ADVANCE(629); - if (lookahead == '=') ADVANCE(624); + if (lookahead == '<') ADVANCE(628); + if (lookahead == '=') ADVANCE(623); END_STATE(); case 618: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(629); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '&') ADVANCE(685); + if (lookahead == '(') ADVANCE(868); if (lookahead == '=') ADVANCE(624); + if (lookahead == '>') ADVANCE(630); + if (lookahead == '|') ADVANCE(686); END_STATE(); case 619: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(686); - if (lookahead == '(') ADVANCE(862); - if (lookahead == '=') ADVANCE(625); - if (lookahead == '>') ADVANCE(631); - if (lookahead == '|') ADVANCE(687); + if (lookahead == '&') ADVANCE(685); + if (lookahead == '(') ADVANCE(868); + if (lookahead == '>') ADVANCE(629); + if (lookahead == '|') ADVANCE(686); END_STATE(); case 620: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(686); - if (lookahead == '(') ADVANCE(862); - if (lookahead == '>') ADVANCE(630); - if (lookahead == '|') ADVANCE(687); + if (lookahead == '&') ADVANCE(685); + if (lookahead == '>') ADVANCE(629); + if (lookahead == '|') ADVANCE(686); END_STATE(); case 621: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '&') ADVANCE(686); + if (lookahead == '(') ADVANCE(868); + if (lookahead == '=') ADVANCE(624); if (lookahead == '>') ADVANCE(630); - if (lookahead == '|') ADVANCE(687); END_STATE(); case 622: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '(') ADVANCE(862); - if (lookahead == '=') ADVANCE(625); - if (lookahead == '>') ADVANCE(631); + if (lookahead == '=') ADVANCE(624); + if (lookahead == '>') ADVANCE(630); END_STATE(); case 623: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(625); - if (lookahead == '>') ADVANCE(631); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 624: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 625: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '-') ADVANCE(689); END_STATE(); case 626: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(690); + if (lookahead == '-') ADVANCE(689); + if (lookahead == '<') ADVANCE(761); END_STATE(); case 627: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(690); - if (lookahead == '<') ADVANCE(762); + if (lookahead == '-') ADVANCE(689); + if (lookahead == '<') ADVANCE(761); + if (lookahead == '=') ADVANCE(582); END_STATE(); case 628: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '-') ADVANCE(690); - if (lookahead == '<') ADVANCE(762); - if (lookahead == '=') ADVANCE(583); + if (lookahead == '=') ADVANCE(582); END_STATE(); case 629: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(583); + ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); case 630: ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(583); END_STATE(); case 631: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(584); + ACCEPT_TOKEN(anon_sym_PLUS); END_STATE(); case 632: ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(567); + if (lookahead == '=') ADVANCE(571); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 633: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(568); - if (lookahead == '=') ADVANCE(572); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '+') ADVANCE(566); + if (lookahead == '=') ADVANCE(570); END_STATE(); case 634: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(567); - if (lookahead == '=') ADVANCE(571); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 635: ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(569); + if (lookahead == '0') ADVANCE(812); + if (lookahead == '=') ADVANCE(573); + if (lookahead == '\\') ADVANCE(520); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 636: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(570); - if (lookahead == '0') ADVANCE(806); - if (lookahead == '=') ADVANCE(574); - if (lookahead == '\\') ADVANCE(521); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '-') ADVANCE(568); + if (lookahead == '=') ADVANCE(572); END_STATE(); case 637: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(569); - if (lookahead == '=') ADVANCE(573); + if (lookahead == '-') ADVANCE(568); + if (lookahead == '=') ADVANCE(572); + if (lookahead == 'a') ADVANCE(591); + if (lookahead == 'o') ADVANCE(589); END_STATE(); case 638: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(569); - if (lookahead == '=') ADVANCE(573); - if (lookahead == 'a') ADVANCE(592); - if (lookahead == 'o') ADVANCE(590); + if (lookahead == '0') ADVANCE(812); + if (lookahead == '\\') ADVANCE(520); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 639: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '0') ADVANCE(806); - if (lookahead == '\\') ADVANCE(521); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_STAR); END_STATE(); case 640: ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(653); + if (lookahead == '=') ADVANCE(575); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 641: ACCEPT_TOKEN(anon_sym_STAR); if (lookahead == '*') ADVANCE(654); - if (lookahead == '=') ADVANCE(576); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '=') ADVANCE(574); END_STATE(); case 642: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(655); - if (lookahead == '=') ADVANCE(575); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 643: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); case 644: ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '#') ADVANCE(855); + if (lookahead == '%') ADVANCE(857); + if (lookahead == '/') ADVANCE(853); + if (lookahead == '=') ADVANCE(577); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(967); END_STATE(); case 645: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(849); - if (lookahead == '%') ADVANCE(851); - if (lookahead == '/') ADVANCE(847); - if (lookahead == '=') ADVANCE(578); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); + if (lookahead == '#') ADVANCE(854); + if (lookahead == '%') ADVANCE(856); + if (lookahead == '/') ADVANCE(852); END_STATE(); case 646: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '#') ADVANCE(848); - if (lookahead == '%') ADVANCE(850); - if (lookahead == '/') ADVANCE(846); + if (lookahead == '=') ADVANCE(577); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 647: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(578); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '=') ADVANCE(576); END_STATE(); case 648: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '=') ADVANCE(577); + ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); case 649: ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '%') ADVANCE(850); + if (lookahead == '=') ADVANCE(579); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 650: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(844); - if (lookahead == '=') ADVANCE(580); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '%') ADVANCE(849); END_STATE(); case 651: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '%') ADVANCE(843); + if (lookahead == '=') ADVANCE(579); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 652: ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(580); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '=') ADVANCE(578); END_STATE(); case 653: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(579); + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(581); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 654: ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(582); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '=') ADVANCE(580); END_STATE(); case 655: - ACCEPT_TOKEN(anon_sym_STAR_STAR); - if (lookahead == '=') ADVANCE(581); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 656: ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '(') ADVANCE(553); END_STATE(); case 657: - ACCEPT_TOKEN(anon_sym_LPAREN); - if (lookahead == '(') ADVANCE(554); - END_STATE(); - case 658: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 659: + case 658: ACCEPT_TOKEN(aux_sym__c_word_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(659); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(658); END_STATE(); - case 660: + case 659: ACCEPT_TOKEN(anon_sym_esac); END_STATE(); - case 661: + case 660: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(521); + if (lookahead == '\\') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(877); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 662: + case 661: ACCEPT_TOKEN(anon_sym_esac); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 663: + case 662: ACCEPT_TOKEN(anon_sym_esac); if (lookahead == '\\') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 664: + case 663: ACCEPT_TOKEN(anon_sym_esac); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); + END_STATE(); + case 664: + ACCEPT_TOKEN(anon_sym_SEMI_SEMI); END_STATE(); case 665: ACCEPT_TOKEN(anon_sym_SEMI_SEMI); + if (lookahead == '&') ADVANCE(667); END_STATE(); case 666: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI); - if (lookahead == '&') ADVANCE(668); + ACCEPT_TOKEN(anon_sym_SEMI_AMP); END_STATE(); case 667: - ACCEPT_TOKEN(anon_sym_SEMI_AMP); + ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); END_STATE(); case 668: - ACCEPT_TOKEN(anon_sym_SEMI_SEMI_AMP); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 669: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 670: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_PIPE_AMP); END_STATE(); case 671: - ACCEPT_TOKEN(anon_sym_PIPE_AMP); + ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); case 672: ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(608); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 673: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(609); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '=') ADVANCE(607); END_STATE(); case 674: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(608); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 675: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 676: ACCEPT_TOKEN(anon_sym_LBRACK); + if (lookahead == '[') ADVANCE(678); END_STATE(); case 677: - ACCEPT_TOKEN(anon_sym_LBRACK); - if (lookahead == '[') ADVANCE(679); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 678: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); END_STATE(); case 679: - ACCEPT_TOKEN(anon_sym_LBRACK_LBRACK); + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); END_STATE(); case 680: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 681: ACCEPT_TOKEN(anon_sym_EQ_TILDE); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_AMP_GT); + if (lookahead == '>') ADVANCE(683); END_STATE(); case 683: - ACCEPT_TOKEN(anon_sym_AMP_GT); - if (lookahead == '>') ADVANCE(684); + ACCEPT_TOKEN(anon_sym_AMP_GT_GT); END_STATE(); case 684: - ACCEPT_TOKEN(anon_sym_AMP_GT_GT); + ACCEPT_TOKEN(anon_sym_LT_AMP); + if (lookahead == '-') ADVANCE(687); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_LT_AMP); + ACCEPT_TOKEN(anon_sym_GT_AMP); if (lookahead == '-') ADVANCE(688); END_STATE(); case 686: - ACCEPT_TOKEN(anon_sym_GT_AMP); - if (lookahead == '-') ADVANCE(689); + ACCEPT_TOKEN(anon_sym_GT_PIPE); END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_GT_PIPE); + ACCEPT_TOKEN(anon_sym_LT_AMP_DASH); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_LT_AMP_DASH); + ACCEPT_TOKEN(anon_sym_GT_AMP_DASH); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_GT_AMP_DASH); + ACCEPT_TOKEN(anon_sym_LT_LT_DASH); END_STATE(); case 690: - ACCEPT_TOKEN(anon_sym_LT_LT_DASH); + ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); + if (lookahead == '\n') ADVANCE(690); + if (lookahead == '+') ADVANCE(773); + if (lookahead == '-') ADVANCE(771); + if (lookahead == '\\') ADVANCE(308); + if (lookahead == '~') ADVANCE(774); END_STATE(); case 691: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(691); - if (lookahead == '+') ADVANCE(774); - if (lookahead == '-') ADVANCE(772); - if (lookahead == '\\') ADVANCE(308); - if (lookahead == '~') ADVANCE(775); + if (lookahead == '\\') ADVANCE(14); END_STATE(); case 692: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(692); - if (lookahead == '\\') ADVANCE(14); END_STATE(); case 693: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(693); + if (lookahead == '\\') ADVANCE(317); END_STATE(); case 694: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(694); - if (lookahead == '\\') ADVANCE(317); + if (lookahead == '\\') ADVANCE(81); END_STATE(); case 695: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(695); - if (lookahead == '\\') ADVANCE(80); + if (lookahead == '\\') ADVANCE(28); END_STATE(); case 696: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(696); - if (lookahead == '\\') ADVANCE(27); + if (lookahead == '\\') ADVANCE(318); END_STATE(); case 697: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(697); - if (lookahead == '\\') ADVANCE(318); + if (lookahead == '\\') ADVANCE(184); END_STATE(); case 698: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(698); - if (lookahead == '\\') ADVANCE(184); + if (lookahead == '\\') ADVANCE(155); END_STATE(); case 699: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(699); - if (lookahead == '\\') ADVANCE(153); + if (lookahead == '\\') ADVANCE(322); END_STATE(); case 700: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(700); - if (lookahead == '\\') ADVANCE(322); + if (lookahead == '\\') ADVANCE(84); END_STATE(); case 701: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(701); - if (lookahead == '\\') ADVANCE(83); + if (lookahead == '\\') ADVANCE(31); END_STATE(); case 702: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(702); - if (lookahead == '\\') ADVANCE(30); + if (lookahead == '\\') ADVANCE(323); END_STATE(); case 703: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(703); - if (lookahead == '\\') ADVANCE(323); + if (lookahead == '\\') ADVANCE(186); END_STATE(); case 704: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(704); - if (lookahead == '\\') ADVANCE(186); + if (lookahead == '\\') ADVANCE(158); END_STATE(); case 705: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(705); - if (lookahead == '\\') ADVANCE(156); + if (lookahead == '\\') ADVANCE(324); END_STATE(); case 706: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(706); - if (lookahead == '\\') ADVANCE(324); + if (lookahead == '\\') ADVANCE(96); END_STATE(); case 707: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(707); - if (lookahead == '\\') ADVANCE(94); + if (lookahead == '\\') ADVANCE(35); END_STATE(); case 708: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(708); - if (lookahead == '\\') ADVANCE(203); + if (lookahead == '\\') ADVANCE(325); END_STATE(); case 709: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(709); - if (lookahead == '\\') ADVANCE(325); + if (lookahead == '\\') ADVANCE(212); END_STATE(); case 710: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(710); - if (lookahead == '\\') ADVANCE(212); + if (lookahead == '\\') ADVANCE(203); END_STATE(); case 711: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(711); - if (lookahead == '\\') ADVANCE(33); + if (lookahead == '\\') ADVANCE(326); END_STATE(); case 712: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(712); - if (lookahead == '\\') ADVANCE(326); + if (lookahead == '\\') ADVANCE(99); END_STATE(); case 713: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(713); - if (lookahead == '\\') ADVANCE(98); + if (lookahead == '\\') ADVANCE(216); END_STATE(); case 714: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(714); - if (lookahead == '\\') ADVANCE(216); + if (lookahead == '\\') ADVANCE(327); END_STATE(); case 715: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(715); - if (lookahead == '\\') ADVANCE(327); + if (lookahead == '\\') ADVANCE(219); END_STATE(); case 716: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(716); - if (lookahead == '\\') ADVANCE(219); + if (lookahead == '\\') ADVANCE(162); END_STATE(); case 717: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(717); - if (lookahead == '\\') ADVANCE(159); + if (lookahead == '\\') ADVANCE(328); END_STATE(); case 718: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(718); - if (lookahead == '\\') ADVANCE(328); + if (lookahead == '\\') ADVANCE(189); END_STATE(); case 719: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(719); - if (lookahead == '\\') ADVANCE(188); + if (lookahead == '\\') ADVANCE(40); END_STATE(); case 720: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(720); - if (lookahead == '\\') ADVANCE(37); + if (lookahead == '\\') ADVANCE(329); END_STATE(); case 721: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(721); - if (lookahead == '\\') ADVANCE(329); + if (lookahead == '\\') ADVANCE(191); END_STATE(); case 722: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(722); - if (lookahead == '\\') ADVANCE(191); + if (lookahead == '\\') ADVANCE(224); END_STATE(); case 723: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(723); - if (lookahead == '\\') ADVANCE(223); + if (lookahead == '\\') ADVANCE(332); END_STATE(); case 724: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(724); - if (lookahead == '\\') ADVANCE(399); + if (lookahead == '\\') ADVANCE(109); END_STATE(); case 725: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(725); - if (lookahead == '\\') ADVANCE(108); + if (lookahead == '\\') ADVANCE(43); END_STATE(); case 726: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(726); - if (lookahead == '\\') ADVANCE(43); + if (lookahead == '\\') ADVANCE(399); END_STATE(); case 727: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(727); - if (lookahead == '\\') ADVANCE(332); + if (lookahead == '\\') ADVANCE(196); END_STATE(); case 728: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(728); - if (lookahead == '\\') ADVANCE(196); + if (lookahead == '\\') ADVANCE(227); END_STATE(); case 729: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(729); - if (lookahead == '\\') ADVANCE(45); + if (lookahead == '\\') ADVANCE(400); END_STATE(); case 730: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(730); - if (lookahead == '\\') ADVANCE(400); + if (lookahead == '\\') ADVANCE(214); END_STATE(); case 731: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(731); - if (lookahead == '\\') ADVANCE(214); + if (lookahead == '\\') ADVANCE(46); END_STATE(); case 732: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(732); - if (lookahead == '\\') ADVANCE(166); + if (lookahead == '\\') ADVANCE(334); END_STATE(); case 733: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(733); - if (lookahead == '\\') ADVANCE(334); + if (lookahead == '\\') ADVANCE(130); END_STATE(); case 734: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(734); - if (lookahead == '\\') ADVANCE(128); + if (lookahead == '\\') ADVANCE(167); END_STATE(); case 735: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(735); - if (lookahead == '\\') ADVANCE(48); + if (lookahead == '\\') ADVANCE(401); END_STATE(); case 736: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(736); - if (lookahead == '\\') ADVANCE(401); + if (lookahead == '\\') ADVANCE(49); END_STATE(); case 737: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(737); - if (lookahead == '\\') ADVANCE(227); + if (lookahead == '\\') ADVANCE(337); END_STATE(); case 738: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(738); - if (lookahead == '\\') ADVANCE(337); + if (lookahead == '\\') ADVANCE(170); END_STATE(); case 739: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(739); - if (lookahead == '\\') ADVANCE(208); + if (lookahead == '\\') ADVANCE(339); END_STATE(); case 740: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(740); - if (lookahead == '\\') ADVANCE(338); + if (lookahead == '\\') ADVANCE(229); END_STATE(); case 741: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(741); - if (lookahead == '\\') ADVANCE(168); + if (lookahead == '\\') ADVANCE(341); END_STATE(); case 742: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(742); - if (lookahead == '\\') ADVANCE(340); + if (lookahead == '\\') ADVANCE(208); END_STATE(); case 743: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(743); - if (lookahead == '\\') ADVANCE(229); + if (lookahead == '\\') ADVANCE(343); END_STATE(); case 744: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(744); - if (lookahead == '\\') ADVANCE(342); + if (lookahead == '\\') ADVANCE(58); END_STATE(); case 745: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(745); - if (lookahead == '\\') ADVANCE(57); + if (lookahead == '\\') ADVANCE(344); END_STATE(); case 746: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(746); - if (lookahead == '\\') ADVANCE(343); + if (lookahead == '\\') ADVANCE(234); END_STATE(); case 747: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(747); - if (lookahead == '\\') ADVANCE(234); + if (lookahead == '\\') ADVANCE(345); END_STATE(); case 748: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(748); - if (lookahead == '\\') ADVANCE(345); + if (lookahead == '\\') ADVANCE(177); END_STATE(); case 749: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(749); - if (lookahead == '\\') ADVANCE(175); + if (lookahead == '\\') ADVANCE(346); END_STATE(); case 750: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(750); - if (lookahead == '\\') ADVANCE(346); + if (lookahead == '\\') ADVANCE(104); END_STATE(); case 751: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(751); - if (lookahead == '\\') ADVANCE(101); + if (lookahead == '\\') ADVANCE(349); END_STATE(); case 752: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(752); - if (lookahead == '\\') ADVANCE(348); + if (lookahead == '\\') ADVANCE(113); END_STATE(); case 753: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(753); - if (lookahead == '\\') ADVANCE(112); + if (lookahead == '\\') ADVANCE(350); END_STATE(); case 754: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(754); - if (lookahead == '\\') ADVANCE(349); + if (lookahead == '\\') ADVANCE(351); END_STATE(); case 755: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(755); - if (lookahead == '\\') ADVANCE(350); + if (lookahead == '\\') ADVANCE(353); END_STATE(); case 756: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(756); - if (lookahead == '\\') ADVANCE(353); + if (lookahead == '\\') ADVANCE(354); END_STATE(); case 757: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(757); - if (lookahead == '\\') ADVANCE(354); + if (lookahead == '\\') ADVANCE(357); END_STATE(); case 758: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(758); - if (lookahead == '\\') ADVANCE(359); + if (lookahead == '\\') ADVANCE(371); END_STATE(); case 759: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(759); - if (lookahead == '\\') ADVANCE(370); + if (lookahead == '\\') ADVANCE(373); END_STATE(); case 760: ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); if (lookahead == '\n') ADVANCE(760); - if (lookahead == '\\') ADVANCE(373); + if (lookahead == '\\') ADVANCE(383); END_STATE(); case 761: - ACCEPT_TOKEN(aux_sym_heredoc_redirect_token1); - if (lookahead == '\n') ADVANCE(761); - if (lookahead == '\\') ADVANCE(383); + ACCEPT_TOKEN(anon_sym_LT_LT_LT); END_STATE(); case 762: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 763: ACCEPT_TOKEN(anon_sym_QMARK); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 764: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 765: ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '+') ADVANCE(844); + if (lookahead == '-') ADVANCE(841); + if (lookahead == '=') ADVANCE(838); + if (lookahead == '?') ADVANCE(848); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 766: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(838); - if (lookahead == '-') ADVANCE(835); - if (lookahead == '=') ADVANCE(832); - if (lookahead == '?') ADVANCE(842); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '+') ADVANCE(843); + if (lookahead == '-') ADVANCE(840); + if (lookahead == '=') ADVANCE(837); + if (lookahead == '?') ADVANCE(847); END_STATE(); case 767: ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '+') ADVANCE(837); - if (lookahead == '-') ADVANCE(834); - if (lookahead == '=') ADVANCE(831); - if (lookahead == '?') ADVANCE(841); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 768: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); END_STATE(); case 769: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + ACCEPT_TOKEN(anon_sym_DASH_DASH2); END_STATE(); case 770: - ACCEPT_TOKEN(anon_sym_DASH_DASH2); + ACCEPT_TOKEN(anon_sym_DASH2); END_STATE(); case 771: ACCEPT_TOKEN(anon_sym_DASH2); + if (lookahead == '-') ADVANCE(769); END_STATE(); case 772: - ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(770); + ACCEPT_TOKEN(anon_sym_PLUS2); END_STATE(); case 773: ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '+') ADVANCE(768); END_STATE(); case 774: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(769); + ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); case 775: - ACCEPT_TOKEN(anon_sym_TILDE); + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); END_STATE(); case 776: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN_LPAREN); + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACK); END_STATE(); case 777: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACK); + ACCEPT_TOKEN(aux_sym_brace_expression_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(777); END_STATE(); case 778: - ACCEPT_TOKEN(aux_sym_brace_expression_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(778); + ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); case 779: ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 780: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_RBRACE2); END_STATE(); case 781: - ACCEPT_TOKEN(anon_sym_RBRACE2); + ACCEPT_TOKEN(aux_sym_concatenation_token1); END_STATE(); case 782: - ACCEPT_TOKEN(aux_sym_concatenation_token1); + ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); case 783: ACCEPT_TOKEN(anon_sym_DOLLAR); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(863); + if (lookahead == '[') ADVANCE(776); + if (lookahead == '`') ADVANCE(866); + if (lookahead == '{') ADVANCE(826); END_STATE(); case 784: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(495); - if (lookahead == '(') ADVANCE(857); - if (lookahead == '[') ADVANCE(777); - if (lookahead == '`') ADVANCE(860); - if (lookahead == '{') ADVANCE(820); + if (lookahead == '\'') ADVANCE(494); + if (lookahead == '(') ADVANCE(862); + if (lookahead == '`') ADVANCE(866); + if (lookahead == '{') ADVANCE(826); END_STATE(); case 785: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '\'') ADVANCE(495); - if (lookahead == '(') ADVANCE(856); - if (lookahead == '`') ADVANCE(860); - if (lookahead == '{') ADVANCE(820); + if (lookahead == '(') ADVANCE(863); + if (lookahead == '[') ADVANCE(776); + if (lookahead == '`') ADVANCE(866); + if (lookahead == '{') ADVANCE(826); END_STATE(); case 786: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(857); - if (lookahead == '[') ADVANCE(777); - if (lookahead == '`') ADVANCE(860); - if (lookahead == '{') ADVANCE(820); + if (lookahead == '(') ADVANCE(862); + if (lookahead == '`') ADVANCE(866); END_STATE(); case 787: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(856); - if (lookahead == '`') ADVANCE(860); + if (lookahead == '(') ADVANCE(862); + if (lookahead == '`') ADVANCE(866); + if (lookahead == '{') ADVANCE(826); END_STATE(); case 788: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '(') ADVANCE(856); - if (lookahead == '`') ADVANCE(860); - if (lookahead == '{') ADVANCE(820); + ACCEPT_TOKEN(sym__special_character); END_STATE(); case 789: ACCEPT_TOKEN(sym__special_character); + if (lookahead == ']') ADVANCE(679); END_STATE(); case 790: - ACCEPT_TOKEN(sym__special_character); - if (lookahead == ']') ADVANCE(680); - END_STATE(); - case 791: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 792: + case 791: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(798); + if (lookahead == '\n') ADVANCE(797); if (lookahead == '\\') ADVANCE(304); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(801); + lookahead != '`') ADVANCE(800); END_STATE(); - case 793: + case 792: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(796); + if (lookahead == '\n') ADVANCE(795); if (lookahead == '\\') ADVANCE(304); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(801); + lookahead != '`') ADVANCE(800); END_STATE(); - case 794: + case 793: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(797); + if (lookahead == '\n') ADVANCE(796); if (lookahead == '\\') ADVANCE(304); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(801); + lookahead != '`') ADVANCE(800); END_STATE(); - case 795: + case 794: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\n') ADVANCE(801); - if (lookahead == '\\') ADVANCE(863); + if (lookahead == '\n') ADVANCE(800); + if (lookahead == '\\') ADVANCE(869); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(800); + lookahead != '`') ADVANCE(799); END_STATE(); - case 796: + case 795: ACCEPT_TOKEN(sym_string_content); ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '*', 640, - '-', 635, - '0', 948, - '?', 763, - '@', 944, - '\\', 135, - '_', 951, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '*', 639, + '-', 634, + '0', 954, + '?', 762, + '@', 950, + '\\', 134, + '_', 957, ); if (lookahead == '\n' || lookahead == '\r') SKIP(452); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(796); + lookahead == ' ') ADVANCE(795); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); if (lookahead != 0 && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(801); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(800); END_STATE(); - case 797: + case 796: ACCEPT_TOKEN(sym_string_content); ADVANCE_MAP( - '!', 672, - '#', 819, - '$', 783, - '*', 640, - '-', 635, - '0', 948, - '?', 763, - '@', 944, - '\\', 136, - '_', 951, + '!', 671, + '#', 825, + '$', 782, + '*', 639, + '-', 634, + '0', 954, + '?', 762, + '@', 950, + '\\', 137, + '_', 957, ); if (lookahead == '\n' || lookahead == '\r') SKIP(455); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(797); + lookahead == ' ') ADVANCE(796); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && - (lookahead < '_' || 'z' < lookahead)) ADVANCE(801); + (lookahead < '_' || 'z' < lookahead)) ADVANCE(800); END_STATE(); - case 798: + case 797: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '"') ADVANCE(791); - if (lookahead == '#') ADVANCE(800); - if (lookahead == '$') ADVANCE(786); - if (lookahead == '(') ADVANCE(799); + if (lookahead == '"') ADVANCE(790); + if (lookahead == '#') ADVANCE(799); + if (lookahead == '$') ADVANCE(785); + if (lookahead == '(') ADVANCE(798); if (lookahead == '\\') ADVANCE(303); - if (lookahead == '`') ADVANCE(858); + if (lookahead == '`') ADVANCE(864); if (lookahead == '\n' || lookahead == '\r') SKIP(483); if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(798); - if (lookahead != 0) ADVANCE(801); + lookahead == ' ') ADVANCE(797); + if (lookahead != 0) ADVANCE(800); END_STATE(); - case 799: + case 798: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '(') ADVANCE(554); + if (lookahead == '(') ADVANCE(553); if (lookahead == '\\') ADVANCE(304); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(801); + lookahead != '`') ADVANCE(800); END_STATE(); - case 800: + case 799: ACCEPT_TOKEN(sym_string_content); - if (lookahead == '\\') ADVANCE(863); + if (lookahead == '\\') ADVANCE(869); if (lookahead != 0 && lookahead != '\n' && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(800); + lookahead != '`') ADVANCE(799); END_STATE(); - case 801: + case 800: ACCEPT_TOKEN(sym_string_content); if (lookahead == '\\') ADVANCE(304); if (lookahead != 0 && @@ -18689,2461 +18887,2509 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(801); + lookahead != '`') ADVANCE(800); END_STATE(); - case 802: + case 801: ACCEPT_TOKEN(sym_string_content); if (lookahead == '\\') ADVANCE(304); if (lookahead != 0 && lookahead != '\r' && lookahead != '"' && lookahead != '$' && - lookahead != '`') ADVANCE(801); + lookahead != '`') ADVANCE(800); + END_STATE(); + case 802: + ACCEPT_TOKEN(sym_raw_string_content); + if (lookahead == '\n') ADVANCE(806); + if (lookahead == '\\') ADVANCE(808); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(807); END_STATE(); case 803: - ACCEPT_TOKEN(sym_raw_string); + ACCEPT_TOKEN(sym_raw_string_content); + if (lookahead == '\n') ADVANCE(807); + if (lookahead == '\\') ADVANCE(804); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(803); END_STATE(); case 804: - ACCEPT_TOKEN(sym_ansi_c_string); + ACCEPT_TOKEN(sym_raw_string_content); + if (lookahead == '\n') ADVANCE(807); + if (lookahead == '\\') ADVANCE(804); + if (lookahead != 0) ADVANCE(803); END_STATE(); case 805: - ACCEPT_TOKEN(sym_ansi_c_string); - if (lookahead == '\'') ADVANCE(804); - if (lookahead == '\\') ADVANCE(496); - if (lookahead != 0) ADVANCE(495); + ACCEPT_TOKEN(sym_raw_string_content); + if (lookahead == '\r') ADVANCE(802); + if (lookahead == '\\') ADVANCE(808); + if (('\t' <= lookahead && lookahead <= '\f') || + lookahead == ' ') ADVANCE(806); + if (lookahead != 0) ADVANCE(807); END_STATE(); case 806: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(817); - if (lookahead == '\\') ADVANCE(521); - if (lookahead == 'x') ADVANCE(960); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(808); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(sym_raw_string_content); + if (lookahead == '#') ADVANCE(803); + if (lookahead == '\\') ADVANCE(805); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(806); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(807); END_STATE(); case 807: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(817); - if (lookahead == '\\') ADVANCE(521); - if (lookahead == 'x') ADVANCE(870); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(809); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(sym_raw_string_content); + if (lookahead == '\\') ADVANCE(808); + if (lookahead != 0 && + lookahead != '\'') ADVANCE(807); END_STATE(); case 808: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(817); - if (lookahead == '\\') ADVANCE(521); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(808); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(sym_raw_string_content); + if (lookahead == '\\') ADVANCE(808); + if (lookahead != 0) ADVANCE(807); END_STATE(); case 809: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(817); - if (lookahead == '\\') ADVANCE(521); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(809); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); case 810: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(817); - if (lookahead == '\\') ADVANCE(17); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(sym_ansi_c_string); END_STATE(); case 811: - ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(818); - if (lookahead == 'x') ADVANCE(881); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(813); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ACCEPT_TOKEN(sym_ansi_c_string); + if (lookahead == '\'') ADVANCE(810); + if (lookahead == '\\') ADVANCE(495); + if (lookahead != 0) ADVANCE(494); END_STATE(); case 812: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(818); - if (lookahead == 'x') ADVANCE(520); + if (lookahead == '#') ADVANCE(823); + if (lookahead == '\\') ADVANCE(520); + if (lookahead == 'x') ADVANCE(966); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(814); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(967); END_STATE(); case 813: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(818); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(813); + if (lookahead == '#') ADVANCE(823); + if (lookahead == '\\') ADVANCE(520); + if (lookahead == 'x') ADVANCE(876); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(815); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(877); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(967); END_STATE(); case 814: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '#') ADVANCE(818); + if (lookahead == '#') ADVANCE(823); + if (lookahead == '\\') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(814); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(967); END_STATE(); case 815: ACCEPT_TOKEN(aux_sym_number_token1); - if (lookahead == '\\') ADVANCE(521); - if (('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + if (lookahead == '#') ADVANCE(823); + if (lookahead == '\\') ADVANCE(520); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(815); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(877); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(967); END_STATE(); case 816: ACCEPT_TOKEN(aux_sym_number_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + if (lookahead == '#') ADVANCE(823); + if (lookahead == '\\') ADVANCE(17); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(816); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(967); END_STATE(); case 817: - ACCEPT_TOKEN(aux_sym_number_token2); - if (lookahead == '\\') ADVANCE(521); - if (('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(824); + if (lookahead == 'x') ADVANCE(887); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(819); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(815); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 818: - ACCEPT_TOKEN(aux_sym_number_token2); - if (('0' <= lookahead && lookahead <= '9') || - ('@' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(816); + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(824); + if (lookahead == 'x') ADVANCE(519); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); END_STATE(); case 819: - ACCEPT_TOKEN(anon_sym_POUND); + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(819); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); case 820: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '#') ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(820); END_STATE(); case 821: - ACCEPT_TOKEN(anon_sym_RBRACE3); + ACCEPT_TOKEN(aux_sym_number_token1); + if (lookahead == '\\') ADVANCE(520); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(821); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 822: - ACCEPT_TOKEN(anon_sym_BANG2); + ACCEPT_TOKEN(aux_sym_number_token1); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(822); END_STATE(); case 823: - ACCEPT_TOKEN(anon_sym_BANG2); - if (lookahead == '=') ADVANCE(609); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(aux_sym_number_token2); + if (lookahead == '\\') ADVANCE(520); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(821); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 824: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(aux_sym_number_token2); + if (('0' <= lookahead && lookahead <= '9') || + ('@' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(822); END_STATE(); case 825: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); case 826: - ACCEPT_TOKEN(anon_sym_STAR2); + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); case 827: - ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(654); - if (lookahead == '=') ADVANCE(576); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_RBRACE3); END_STATE(); case 828: - ACCEPT_TOKEN(anon_sym_POUND2); + ACCEPT_TOKEN(anon_sym_BANG2); END_STATE(); case 829: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(anon_sym_BANG2); + if (lookahead == '=') ADVANCE(608); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 830: - ACCEPT_TOKEN(anon_sym_EQ2); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 831: - ACCEPT_TOKEN(anon_sym_COLON_EQ); + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 832: - ACCEPT_TOKEN(anon_sym_COLON_EQ); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_STAR2); END_STATE(); case 833: - ACCEPT_TOKEN(anon_sym_DASH3); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(653); + if (lookahead == '=') ADVANCE(575); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 834: - ACCEPT_TOKEN(anon_sym_COLON_DASH); + ACCEPT_TOKEN(anon_sym_POUND2); END_STATE(); case 835: - ACCEPT_TOKEN(anon_sym_COLON_DASH); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 836: - ACCEPT_TOKEN(anon_sym_PLUS3); + ACCEPT_TOKEN(anon_sym_EQ2); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 837: - ACCEPT_TOKEN(anon_sym_COLON_PLUS); + ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); case 838: - ACCEPT_TOKEN(anon_sym_COLON_PLUS); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_COLON_EQ); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 839: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(anon_sym_DASH3); END_STATE(); case 840: - ACCEPT_TOKEN(anon_sym_QMARK2); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_COLON_DASH); END_STATE(); case 841: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); + ACCEPT_TOKEN(anon_sym_COLON_DASH); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 842: - ACCEPT_TOKEN(anon_sym_COLON_QMARK); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_PLUS3); END_STATE(); case 843: - ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); + ACCEPT_TOKEN(anon_sym_COLON_PLUS); END_STATE(); case 844: - ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ACCEPT_TOKEN(anon_sym_COLON_PLUS); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); case 845: + ACCEPT_TOKEN(anon_sym_QMARK2); + END_STATE(); + case 846: + ACCEPT_TOKEN(anon_sym_QMARK2); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); + END_STATE(); + case 847: + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + END_STATE(); + case 848: + ACCEPT_TOKEN(anon_sym_COLON_QMARK); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); + END_STATE(); + case 849: + ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); + END_STATE(); + case 850: + ACCEPT_TOKEN(anon_sym_PERCENT_PERCENT); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); + END_STATE(); + case 851: ACCEPT_TOKEN(aux_sym__expansion_regex_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(845); + lookahead == ' ') ADVANCE(851); END_STATE(); - case 846: + case 852: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); - case 847: + case 853: ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 848: + case 854: ACCEPT_TOKEN(anon_sym_SLASH_POUND); END_STATE(); - case 849: + case 855: ACCEPT_TOKEN(anon_sym_SLASH_POUND); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 850: + case 856: ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); END_STATE(); - case 851: + case 857: ACCEPT_TOKEN(anon_sym_SLASH_PERCENT); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 852: + case 858: ACCEPT_TOKEN(anon_sym_COMMA_COMMA); END_STATE(); - case 853: + case 859: ACCEPT_TOKEN(anon_sym_COMMA_COMMA); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 854: + case 860: ACCEPT_TOKEN(anon_sym_CARET_CARET); END_STATE(); - case 855: + case 861: ACCEPT_TOKEN(anon_sym_CARET_CARET); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 856: + case 862: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 857: + case 863: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '(') ADVANCE(776); + if (lookahead == '(') ADVANCE(775); END_STATE(); - case 858: + case 864: ACCEPT_TOKEN(anon_sym_BQUOTE); END_STATE(); - case 859: + case 865: ACCEPT_TOKEN(anon_sym_BQUOTE); - if (lookahead == '`') ADVANCE(782); + if (lookahead == '`') ADVANCE(781); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(513); + lookahead == ' ') ADVANCE(512); END_STATE(); - case 860: + case 866: ACCEPT_TOKEN(anon_sym_DOLLAR_BQUOTE); END_STATE(); - case 861: + case 867: ACCEPT_TOKEN(anon_sym_LT_LPAREN); END_STATE(); - case 862: + case 868: ACCEPT_TOKEN(anon_sym_GT_LPAREN); END_STATE(); - case 863: + case 869: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(801); - if (lookahead == '\r') ADVANCE(795); - if (lookahead != 0) ADVANCE(800); + if (lookahead == '\n') ADVANCE(800); + if (lookahead == '\r') ADVANCE(794); + if (lookahead != 0) ADVANCE(799); END_STATE(); - case 864: + case 870: ACCEPT_TOKEN(sym_comment); if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r')) ADVANCE(865); + (0x0b <= lookahead && lookahead <= '\r')) ADVANCE(871); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(866); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(872); END_STATE(); - case 865: + case 871: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(865); + lookahead != '\n') ADVANCE(871); END_STATE(); - case 866: + case 872: ACCEPT_TOKEN(sym__comment_word); - if (lookahead == '\\') ADVANCE(864); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(866); + if (lookahead == '\\') ADVANCE(870); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(872); END_STATE(); - case 867: + case 873: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(521); - if (lookahead == 'a') ADVANCE(868); + if (lookahead == '\\') ADVANCE(520); + if (lookahead == 'a') ADVANCE(874); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(871); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(877); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 868: + case 874: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(521); - if (lookahead == 'c') ADVANCE(661); + if (lookahead == '\\') ADVANCE(520); + if (lookahead == 'c') ADVANCE(660); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(877); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 869: + case 875: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(521); - if (lookahead == 's') ADVANCE(867); + if (lookahead == '\\') ADVANCE(520); + if (lookahead == 's') ADVANCE(873); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(877); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 870: + case 876: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(521); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(809); + if (lookahead == '\\') ADVANCE(520); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(815); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(877); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 871: + case 877: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == '\\') ADVANCE(521); + if (lookahead == '\\') ADVANCE(520); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(871); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(877); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 872: + case 878: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(17); - if (lookahead == 'a') ADVANCE(873); + if (lookahead == 'a') ADVANCE(879); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 873: + case 879: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(17); - if (lookahead == 'c') ADVANCE(663); + if (lookahead == 'c') ADVANCE(662); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 874: + case 880: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(17); - if (lookahead == 's') ADVANCE(872); + if (lookahead == 's') ADVANCE(878); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 875: + case 881: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(17); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 876: + case 882: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (lookahead == '\\') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 877: + case 883: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'a') ADVANCE(878); + if (lookahead == 'a') ADVANCE(884); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 878: + case 884: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'c') ADVANCE(664); + if (lookahead == 'c') ADVANCE(663); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 879: + case 885: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 'n') ADVANCE(553); + if (lookahead == 'n') ADVANCE(552); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 880: + case 886: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (lookahead == 's') ADVANCE(877); + if (lookahead == 's') ADVANCE(883); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 881: + case 887: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(813); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(819); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 882: + case 888: ACCEPT_TOKEN(aux_sym__simple_variable_name_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 883: + case 889: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 692, - '!', 673, - '"', 791, - '#', 819, - '$', 784, - '%', 652, - '&', 604, - '\'', 494, - '(', 657, - ')', 658, - '*', 641, - '+', 633, - '-', 636, - '/', 647, - '0', 946, - ';', 558, - '<', 610, - '=', 563, - '>', 619, - '?', 764, - '@', 945, + '\n', 691, + '!', 672, + '"', 790, + '#', 825, + '$', 783, + '%', 651, + '&', 603, + '\'', 809, + '(', 656, + ')', 657, + '*', 640, + '+', 632, + '-', 635, + '/', 646, + '0', 952, + ';', 557, + '<', 609, + '=', 562, + '>', 618, + '?', 763, + '@', 951, '\\', 14, - '^', 599, - '_', 950, - '`', 858, - '|', 595, + '^', 598, + '_', 956, + '`', 864, + '|', 594, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < ';' || '}' < lookahead)) ADVANCE(961); + (lookahead < ';' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 884: + case 890: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 695, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 557, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 80, - '_', 951, - 'e', 880, - '|', 596, + '\n', 694, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 556, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 81, + '_', 957, + 'e', 886, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(201); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 885: + case 891: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 696, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 27, - '_', 950, - '`', 858, - 'e', 874, - '|', 596, + '\n', 695, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 28, + '_', 956, + '`', 864, + 'e', 880, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(220); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 886: + case 892: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 698, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 557, - '<', 616, - '>', 621, - '?', 763, - '@', 944, + '\n', 697, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 556, + '<', 615, + '>', 620, + '?', 762, + '@', 950, '\\', 184, - '_', 951, - 'e', 880, - '|', 596, + '_', 957, + 'e', 886, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(238); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 887: + case 893: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 699, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 153, - '_', 950, - '`', 858, - 'e', 874, - '|', 596, + '\n', 698, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 155, + '_', 956, + '`', 864, + 'e', 880, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(239); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 888: + case 894: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 701, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 557, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 83, - '_', 951, - '|', 596, + '\n', 700, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 556, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 84, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(241); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 889: + case 895: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 702, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 30, - '_', 950, - '`', 858, - '|', 596, + '\n', 701, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 31, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(242); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 890: + case 896: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 704, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 558, + '\n', 703, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 556, '<', 615, - '>', 621, - '?', 763, - '@', 944, + '>', 620, + '?', 762, + '@', 950, '\\', 186, - '_', 951, - '|', 596, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(244); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 891: + case 897: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 705, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, + '\n', 704, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + '*', 642, + '-', 638, + '0', 952, ';', 557, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 156, - '_', 950, - '`', 858, - '|', 596, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 158, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(245); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 892: + case 898: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 707, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 94, - '_', 951, - '`', 858, - '|', 596, + '\n', 706, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 96, + '_', 957, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(247); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 893: + case 899: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 708, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 203, - '_', 950, - '`', 858, - '|', 596, + '\n', 707, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 656, + ')', 657, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 35, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(248); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 894: + case 900: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 710, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, + '\n', 709, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, ';', 557, - '<', 616, - '>', 621, - '?', 763, - '@', 944, + '<', 614, + '>', 620, + '?', 762, + '@', 950, '\\', 212, - '_', 951, - '|', 596, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(250); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 895: + case 901: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 711, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 657, - ')', 658, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 33, - '_', 950, - '`', 858, - '|', 596, + '\n', 710, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 203, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(251); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 896: + case 902: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 713, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - ')', 658, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 98, - '_', 951, - '|', 596, + '\n', 712, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + ')', 657, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 99, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(253); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 897: + case 903: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 714, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, + '\n', 713, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, '\\', 216, - '_', 950, - '`', 858, - '|', 596, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(254); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 898: + case 904: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 716, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '<', 616, - '>', 621, - '?', 763, - '@', 944, + '\n', 715, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '<', 615, + '>', 620, + '?', 762, + '@', 950, '\\', 219, - '_', 951, - '|', 596, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(256); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 899: + case 905: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 717, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 159, - '_', 950, - '`', 858, - '|', 596, + '\n', 716, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 162, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(257); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 900: + case 906: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 719, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '<', 616, - '>', 621, - '?', 763, - '@', 944, - '\\', 188, - '_', 951, - '`', 858, - '|', 596, + '\n', 718, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '<', 615, + '>', 620, + '?', 762, + '@', 950, + '\\', 189, + '_', 957, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(259); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 901: + case 907: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 720, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 612, - '>', 620, - '?', 764, - '@', 945, - '\\', 37, - '_', 950, - '`', 858, - 'e', 874, - '|', 596, + '\n', 719, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 611, + '>', 619, + '?', 763, + '@', 951, + '\\', 40, + '_', 956, + '`', 864, + 'e', 880, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(260); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 902: + case 908: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 722, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 605, - ')', 658, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '<', 616, - '>', 621, - '?', 763, - '@', 944, + '\n', 721, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 604, + ')', 657, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '<', 615, + '>', 620, + '?', 762, + '@', 950, '\\', 191, - '_', 951, - '|', 596, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(262); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 903: + case 909: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 723, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 613, - '>', 620, - '?', 764, - '@', 945, - '\\', 223, - '_', 950, - '`', 858, - 'e', 874, - '|', 596, + '\n', 722, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 612, + '>', 619, + '?', 763, + '@', 951, + '\\', 224, + '_', 956, + '`', 864, + 'e', 880, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(263); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 904: + case 910: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 725, - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '\n', 724, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 108, - '_', 951, - '|', 596, + '*', 639, + '-', 634, + '0', 954, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 109, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(265); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 905: + case 911: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 726, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 612, - '>', 620, - '?', 764, - '@', 945, + '\n', 725, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 556, + '<', 611, + '>', 619, + '?', 763, + '@', 951, '\\', 43, - '_', 950, - '`', 858, - '|', 596, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(266); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 906: + case 912: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 728, - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '\n', 727, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 616, - '>', 621, - '?', 763, - '@', 944, + '*', 639, + '-', 634, + '0', 954, + '<', 615, + '>', 620, + '?', 762, + '@', 950, '\\', 196, - '_', 951, - '|', 596, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(268); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 907: + case 913: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 729, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '*', 643, - '-', 639, - '0', 946, - ';', 558, + '\n', 728, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 556, '<', 612, - '>', 620, - '?', 764, - '@', 945, - '\\', 45, - '_', 950, - '`', 858, - '|', 596, + '>', 619, + '?', 763, + '@', 951, + '\\', 227, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 908: + case 914: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 731, - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '\n', 730, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 614, - '>', 621, - '?', 763, - '@', 944, + '*', 639, + '-', 634, + '0', 954, + '<', 613, + '>', 620, + '?', 762, + '@', 950, '\\', 214, - '_', 951, - '|', 519, + '_', 957, + '|', 518, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(271); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 909: + case 915: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 732, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 612, - '>', 620, - '?', 764, - '@', 945, - '\\', 166, - '_', 950, - '`', 858, - '|', 596, + '\n', 731, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 611, + '>', 619, + '?', 763, + '@', 951, + '\\', 46, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(272); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 910: + case 916: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 734, - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '&', 602, - '*', 640, - '-', 635, - '0', 948, - ';', 558, - '?', 763, - '@', 944, - '\\', 128, - '_', 951, - 'i', 879, + '\n', 733, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '&', 601, + '*', 639, + '-', 634, + '0', 954, + ';', 557, + '?', 762, + '@', 950, + '\\', 130, + '_', 957, + 'i', 885, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(274); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 911: + case 917: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 735, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 492, - '\'', 494, - '(', 657, - '*', 643, - '-', 639, - '0', 946, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 48, - '_', 950, - '`', 858, - '|', 596, + '\n', 734, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 611, + '>', 619, + '?', 763, + '@', 951, + '\\', 167, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(275); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 912: + case 918: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 737, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 557, - '<', 613, - '>', 620, - '?', 764, - '@', 945, - '\\', 227, - '_', 950, - '`', 858, - '|', 596, + '\n', 736, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 492, + '\'', 809, + '(', 656, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 49, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(277); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 913: + case 919: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 739, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 613, - '>', 620, - '?', 764, - '@', 945, - '\\', 208, - '_', 950, - '`', 858, - '|', 596, + '\n', 738, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 492, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 170, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(279); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && - (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < ';' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 914: + case 920: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 741, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, + '\n', 740, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + ')', 657, + '*', 642, + '-', 638, + '0', 952, + ';', 557, '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 168, - '_', 950, - '`', 858, - '|', 596, + '>', 619, + '?', 763, + '@', 951, + '\\', 229, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(281); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && - (lookahead < '&' || '*' < lookahead) && - (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '>' || ']' < lookahead) && + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 915: + case 921: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 743, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 605, - '\'', 494, - '(', 497, - ')', 658, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 613, - '>', 620, - '?', 764, - '@', 945, - '\\', 229, - '_', 950, - '`', 858, - '|', 596, + '\n', 742, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 604, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 612, + '>', 619, + '?', 763, + '@', 951, + '\\', 208, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(283); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && + (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 916: + case 922: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 745, - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '\n', 744, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 612, - '>', 620, - '?', 764, - '@', 945, - '\\', 57, - '_', 950, - '`', 858, - '|', 596, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '>', 619, + '?', 763, + '@', 951, + '\\', 58, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(285); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 917: + case 923: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 747, - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '\n', 746, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 613, - '>', 620, - '?', 764, - '@', 945, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 612, + '>', 619, + '?', 763, + '@', 951, '\\', 234, - '_', 950, - '`', 858, - '|', 596, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(287); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 918: + case 924: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 749, - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '\n', 748, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 611, - '>', 620, - '?', 764, - '@', 945, - '\\', 175, - '_', 950, - '`', 858, - '|', 519, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 610, + '>', 619, + '?', 763, + '@', 951, + '\\', 177, + '_', 956, + '`', 864, + '|', 518, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(289); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 919: + case 925: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 751, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 602, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - ';', 558, - '<', 498, - '>', 499, - '?', 764, - '@', 945, - '\\', 101, - '_', 950, - '`', 858, + '\n', 750, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 601, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + ';', 557, + '<', 497, + '>', 498, + '?', 763, + '@', 951, + '\\', 104, + '_', 956, + '`', 864, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(291); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 920: + case 926: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '\n', 753, - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 498, - '>', 499, - '?', 764, - '@', 945, - '\\', 112, - '_', 950, - '`', 858, + '\n', 752, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 497, + '>', 498, + '?', 763, + '@', 951, + '\\', 113, + '_', 956, + '`', 864, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(293); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 921: + case 927: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 673, - '"', 791, - '#', 819, - '$', 784, - '%', 652, - '&', 604, - '\'', 494, - '(', 657, - '*', 641, - '+', 633, - '-', 636, - '/', 647, - '0', 946, - '<', 610, - '=', 563, - '>', 619, - '?', 764, - '@', 945, + '!', 672, + '"', 790, + '#', 825, + '$', 783, + '%', 651, + '&', 603, + '\'', 809, + '(', 656, + '*', 640, + '+', 632, + '-', 635, + '/', 646, + '0', 952, + '<', 609, + '=', 562, + '>', 618, + '?', 763, + '@', 951, '\\', 19, - ']', 678, - '^', 599, - '_', 950, - '`', 858, - '|', 595, + ']', 677, + '^', 598, + '_', 956, + '`', 864, + '|', 594, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(404); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < ' ' || '+' < lookahead) && - (lookahead < ';' || '}' < lookahead)) ADVANCE(961); + (lookahead < ';' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 922: + case 928: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '&', 511, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 611, - '>', 620, - '?', 764, - '@', 945, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '&', 510, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 610, + '>', 619, + '?', 763, + '@', 951, '\\', 74, - '_', 950, - '`', 858, + '_', 956, + '`', 864, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(411); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 923: + case 929: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 657, - '*', 643, - '-', 639, - '0', 946, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 50, - '_', 950, - '`', 858, - '|', 596, + '\'', 809, + '(', 656, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 51, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(412); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 924: + case 930: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 612, - '=', 955, - '>', 620, - '?', 764, - '@', 945, - '\\', 170, - '_', 950, - '`', 858, - '|', 596, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '=', 961, + '>', 619, + '?', 763, + '@', 951, + '\\', 172, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(413); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && (lookahead < ';' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 925: + case 931: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 612, - '>', 620, - '?', 764, - '@', 945, - '\\', 55, - ']', 678, - '_', 950, - '`', 858, - '|', 596, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '>', 619, + '?', 763, + '@', 951, + '\\', 56, + ']', 677, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(414); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 926: + case 932: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 612, - '>', 620, - '?', 764, - '@', 945, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 611, + '>', 619, + '?', 763, + '@', 951, '\\', 60, - '_', 950, - '`', 858, - '|', 596, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(415); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 927: + case 933: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 613, - '>', 620, - '?', 764, - '@', 945, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 612, + '>', 619, + '?', 763, + '@', 951, '\\', 232, - ']', 678, - '_', 950, - '`', 858, - '|', 596, + ']', 677, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(416); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 928: + case 934: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, + '!', 674, + '"', 790, + '#', 825, + '$', 783, '&', 492, - '\'', 494, - '(', 497, - '*', 643, - '-', 639, - '0', 946, - '<', 613, - '>', 620, - '?', 764, - '@', 945, + '\'', 809, + '(', 496, + '*', 642, + '-', 638, + '0', 952, + '<', 612, + '>', 619, + '?', 763, + '@', 951, '\\', 236, - '_', 950, - '`', 858, - '|', 596, + '_', 956, + '`', 864, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(417); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 929: + case 935: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 675, - '"', 791, - '#', 819, - '$', 784, - '\'', 494, - '(', 497, - ')', 658, - '*', 643, - '-', 639, - '0', 946, - '<', 498, - '>', 499, - '?', 764, - '@', 945, - '\\', 110, - '_', 950, - '`', 858, + '!', 674, + '"', 790, + '#', 825, + '$', 783, + '\'', 809, + '(', 496, + ')', 657, + '*', 642, + '-', 638, + '0', 952, + '<', 497, + '>', 498, + '?', 763, + '@', 951, + '\\', 115, + '_', 956, + '`', 864, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(418); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); if (lookahead != 0 && (lookahead < '&' || '*' < lookahead) && lookahead != ';' && lookahead != '<' && (lookahead < '>' || ']' < lookahead) && - (lookahead < '_' || '}' < lookahead)) ADVANCE(961); + (lookahead < '_' || '}' < lookahead)) ADVANCE(967); END_STATE(); - case 930: + case 936: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 674, - '"', 791, - '#', 819, - '$', 783, - '%', 653, - '&', 603, - ')', 658, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '0', 948, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '@', 944, - '\\', 180, - '^', 600, - '_', 951, - '|', 597, + '!', 673, + '"', 790, + '#', 825, + '$', 782, + '%', 652, + '&', 602, + ')', 657, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 954, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '@', 950, + '\\', 182, + '^', 599, + '_', 957, + '|', 596, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(429); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 931: + case 937: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 674, - '"', 791, - '#', 819, - '$', 783, - '%', 653, - '&', 603, - ')', 502, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '0', 948, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '@', 944, - '\\', 64, - '^', 600, - '_', 951, - '|', 597, + '!', 673, + '"', 790, + '#', 825, + '$', 782, + '%', 652, + '&', 602, + ')', 501, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 954, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '@', 950, + '\\', 65, + '^', 599, + '_', 957, + '|', 596, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(430); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 932: + case 938: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 674, - '"', 791, - '#', 819, - '$', 783, - '%', 653, - '&', 603, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '0', 948, - ':', 765, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '@', 944, + '!', 673, + '"', 790, + '#', 825, + '$', 782, + '%', 652, + '&', 602, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 954, + ':', 764, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '@', 950, '\\', 67, - '^', 600, - '_', 951, - '|', 597, + '^', 599, + '_', 957, + '|', 596, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(431); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 933: + case 939: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 674, - '"', 791, - '#', 819, - '$', 783, - '%', 653, - '&', 603, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '0', 948, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '@', 944, + '!', 673, + '"', 790, + '#', 825, + '$', 782, + '%', 652, + '&', 602, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 954, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '@', 950, '\\', 62, - ']', 678, - '^', 600, - '_', 951, - '|', 597, + ']', 677, + '^', 599, + '_', 957, + '|', 596, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(432); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 934: + case 940: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 674, - '"', 791, - '#', 819, - '$', 783, - '%', 653, - '&', 603, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '0', 948, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '@', 944, - '\\', 178, - ']', 512, - '^', 600, - '_', 951, - '|', 597, + '!', 673, + '"', 790, + '#', 825, + '$', 782, + '%', 652, + '&', 602, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 954, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '@', 950, + '\\', 179, + ']', 511, + '^', 599, + '_', 957, + '|', 596, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(433); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 935: + case 941: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 674, - '"', 791, - '#', 819, - '$', 783, - '%', 653, - '&', 603, - '*', 642, - '+', 634, - '-', 637, - '/', 648, - '0', 948, - '<', 618, - '=', 565, - '>', 623, - '?', 763, - '@', 944, - '\\', 70, - '^', 600, - '_', 951, - '|', 597, + '!', 673, + '"', 790, + '#', 825, + '$', 782, + '%', 652, + '&', 602, + '*', 641, + '+', 633, + '-', 636, + '/', 647, + '0', 954, + '<', 617, + '=', 564, + '>', 622, + '?', 762, + '@', 950, + '\\', 69, + '^', 599, + '_', 957, + '|', 596, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(434); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 936: + case 942: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 106, - ']', 678, - '_', 951, - '|', 596, + '*', 639, + '-', 634, + '0', 954, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 107, + ']', 677, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(447); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 937: + case 943: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 615, - '>', 621, - '?', 763, - '@', 944, - '\\', 114, - '_', 951, - '|', 596, + '*', 639, + '-', 634, + '0', 954, + '<', 614, + '>', 620, + '?', 762, + '@', 950, + '\\', 111, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(448); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 938: + case 944: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 616, - '>', 621, - '?', 763, - '@', 944, + '*', 639, + '-', 634, + '0', 954, + '<', 615, + '>', 620, + '?', 762, + '@', 950, '\\', 194, - ']', 678, - '_', 951, - '|', 596, + ']', 677, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(449); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 939: + case 945: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, + '!', 671, + '"', 790, + '#', 825, + '$', 782, '&', 492, - '*', 640, - '-', 635, - '0', 948, - '<', 616, - '>', 621, - '?', 763, - '@', 944, + '*', 639, + '-', 634, + '0', 954, + '<', 615, + '>', 620, + '?', 762, + '@', 950, '\\', 198, - '_', 951, - '|', 596, + '_', 957, + '|', 595, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(450); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 940: + case 946: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, - ')', 658, - '*', 640, - '-', 635, - '0', 948, - '?', 763, - '@', 944, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + ')', 657, + '*', 639, + '-', 634, + '0', 954, + '?', 762, + '@', 950, '\\', 132, - '_', 951, - '|', 593, + '_', 957, + '|', 592, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(451); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 941: + case 947: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 672, - '"', 791, - '#', 819, - '$', 783, - '*', 640, - '-', 635, - '0', 948, - '?', 763, - '@', 944, - '\\', 134, - '_', 951, + '!', 671, + '"', 790, + '#', 825, + '$', 782, + '*', 639, + '-', 634, + '0', 954, + '?', 762, + '@', 950, + '\\', 136, + '_', 957, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(453); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 942: + case 948: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); ADVANCE_MAP( - '!', 672, - '#', 819, - '$', 783, - '*', 640, - '-', 635, - '0', 948, - '?', 763, - '@', 944, - '\\', 138, - '_', 951, + '!', 671, + '#', 825, + '$', 782, + '*', 639, + '-', 634, + '0', 954, + '?', 762, + '@', 950, + '\\', 139, + '_', 957, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(456); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 943: + case 949: ACCEPT_TOKEN(aux_sym__multiline_variable_name_token1); if (lookahead == '\\') ADVANCE(16); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(943); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(949); END_STATE(); - case 944: + case 950: ACCEPT_TOKEN(anon_sym_AT2); END_STATE(); - case 945: + case 951: ACCEPT_TOKEN(anon_sym_AT2); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 946: + case 952: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '#') ADVANCE(817); + if (lookahead == '#') ADVANCE(823); if (lookahead == '\\') ADVANCE(17); - if (lookahead == 'x') ADVANCE(875); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(810); + if (lookahead == 'x') ADVANCE(881); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(816); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if ((!eof && set_contains(sym_word_character_set_1, 11, lookahead))) ADVANCE(967); END_STATE(); - case 947: + case 953: ACCEPT_TOKEN(anon_sym_0); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 948: + case 954: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 949: + case 955: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 950: + case 956: ACCEPT_TOKEN(anon_sym__); if (lookahead == '\\') ADVANCE(17); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(876); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 951: + case 957: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(882); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(888); END_STATE(); - case 952: + case 958: ACCEPT_TOKEN(sym_word); - if (lookahead == '.') ADVANCE(780); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '.') ADVANCE(779); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 953: + case 959: ACCEPT_TOKEN(sym_word); - if (lookahead == '0') ADVANCE(806); - if (lookahead == '\\') ADVANCE(521); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(808); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '0') ADVANCE(812); + if (lookahead == '\\') ADVANCE(520); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(814); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 954: + case 960: ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(609); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '=') ADVANCE(608); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 955: + case 961: ACCEPT_TOKEN(sym_word); - if (lookahead == '=') ADVANCE(607); - if (lookahead == '\\') ADVANCE(521); - if (lookahead == '~') ADVANCE(682); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '=') ADVANCE(606); + if (lookahead == '\\') ADVANCE(520); + if (lookahead == '~') ADVANCE(681); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 956: + case 962: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(521); - if (lookahead == 'a') ADVANCE(957); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if (lookahead == 'a') ADVANCE(963); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 957: + case 963: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(521); - if (lookahead == 'c') ADVANCE(662); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if (lookahead == 'c') ADVANCE(661); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 958: + case 964: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(521); - if (lookahead == 'n') ADVANCE(552); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if (lookahead == 'n') ADVANCE(551); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 959: + case 965: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(521); - if (lookahead == 's') ADVANCE(956); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if (lookahead == 's') ADVANCE(962); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 960: + case 966: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(521); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(808); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(814); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); - case 961: + case 967: ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') ADVANCE(521); - if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(961); + if (lookahead == '\\') ADVANCE(520); + if ((!eof && set_contains(sym__comment_word_character_set_1, 12, lookahead))) ADVANCE(967); END_STATE(); default: return false; @@ -21499,9 +21745,9 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 549, .external_lex_state = 2}, - [2] = {.lex_state = 420, .external_lex_state = 2}, - [3] = {.lex_state = 420, .external_lex_state = 2}, + [1] = {.lex_state = 548, .external_lex_state = 2}, + [2] = {.lex_state = 419, .external_lex_state = 2}, + [3] = {.lex_state = 419, .external_lex_state = 2}, [4] = {.lex_state = 421, .external_lex_state = 3}, [5] = {.lex_state = 421, .external_lex_state = 3}, [6] = {.lex_state = 421, .external_lex_state = 3}, @@ -21512,14 +21758,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [11] = {.lex_state = 421, .external_lex_state = 3}, [12] = {.lex_state = 6, .external_lex_state = 4}, [13] = {.lex_state = 405, .external_lex_state = 5}, - [14] = {.lex_state = 549, .external_lex_state = 2}, - [15] = {.lex_state = 549, .external_lex_state = 2}, - [16] = {.lex_state = 549, .external_lex_state = 2}, - [17] = {.lex_state = 549, .external_lex_state = 2}, - [18] = {.lex_state = 549, .external_lex_state = 2}, - [19] = {.lex_state = 549, .external_lex_state = 2}, - [20] = {.lex_state = 549, .external_lex_state = 2}, - [21] = {.lex_state = 549, .external_lex_state = 2}, + [14] = {.lex_state = 548, .external_lex_state = 2}, + [15] = {.lex_state = 548, .external_lex_state = 2}, + [16] = {.lex_state = 548, .external_lex_state = 2}, + [17] = {.lex_state = 548, .external_lex_state = 2}, + [18] = {.lex_state = 548, .external_lex_state = 2}, + [19] = {.lex_state = 548, .external_lex_state = 2}, + [20] = {.lex_state = 548, .external_lex_state = 2}, + [21] = {.lex_state = 548, .external_lex_state = 2}, [22] = {.lex_state = 423, .external_lex_state = 6}, [23] = {.lex_state = 423, .external_lex_state = 6}, [24] = {.lex_state = 423, .external_lex_state = 6}, @@ -21532,466 +21778,466 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [31] = {.lex_state = 423, .external_lex_state = 6}, [32] = {.lex_state = 423, .external_lex_state = 6}, [33] = {.lex_state = 423, .external_lex_state = 6}, - [34] = {.lex_state = 549, .external_lex_state = 2}, - [35] = {.lex_state = 549, .external_lex_state = 2}, - [36] = {.lex_state = 549, .external_lex_state = 2}, - [37] = {.lex_state = 549, .external_lex_state = 2}, - [38] = {.lex_state = 549, .external_lex_state = 2}, - [39] = {.lex_state = 549, .external_lex_state = 2}, - [40] = {.lex_state = 549, .external_lex_state = 2}, - [41] = {.lex_state = 549, .external_lex_state = 2}, - [42] = {.lex_state = 549, .external_lex_state = 2}, - [43] = {.lex_state = 549, .external_lex_state = 2}, - [44] = {.lex_state = 549, .external_lex_state = 2}, - [45] = {.lex_state = 549, .external_lex_state = 2}, - [46] = {.lex_state = 549, .external_lex_state = 2}, - [47] = {.lex_state = 549, .external_lex_state = 2}, - [48] = {.lex_state = 549, .external_lex_state = 2}, - [49] = {.lex_state = 549, .external_lex_state = 2}, - [50] = {.lex_state = 549, .external_lex_state = 2}, - [51] = {.lex_state = 549, .external_lex_state = 2}, - [52] = {.lex_state = 549, .external_lex_state = 2}, - [53] = {.lex_state = 549, .external_lex_state = 2}, - [54] = {.lex_state = 549, .external_lex_state = 2}, - [55] = {.lex_state = 549, .external_lex_state = 2}, - [56] = {.lex_state = 549, .external_lex_state = 2}, - [57] = {.lex_state = 549, .external_lex_state = 2}, - [58] = {.lex_state = 549, .external_lex_state = 2}, - [59] = {.lex_state = 549, .external_lex_state = 2}, - [60] = {.lex_state = 549, .external_lex_state = 2}, - [61] = {.lex_state = 549, .external_lex_state = 2}, - [62] = {.lex_state = 549, .external_lex_state = 2}, - [63] = {.lex_state = 549, .external_lex_state = 2}, - [64] = {.lex_state = 549, .external_lex_state = 2}, - [65] = {.lex_state = 549, .external_lex_state = 2}, - [66] = {.lex_state = 549, .external_lex_state = 2}, - [67] = {.lex_state = 549, .external_lex_state = 2}, - [68] = {.lex_state = 549, .external_lex_state = 2}, + [34] = {.lex_state = 548, .external_lex_state = 2}, + [35] = {.lex_state = 548, .external_lex_state = 2}, + [36] = {.lex_state = 548, .external_lex_state = 2}, + [37] = {.lex_state = 548, .external_lex_state = 2}, + [38] = {.lex_state = 548, .external_lex_state = 2}, + [39] = {.lex_state = 548, .external_lex_state = 2}, + [40] = {.lex_state = 548, .external_lex_state = 2}, + [41] = {.lex_state = 548, .external_lex_state = 2}, + [42] = {.lex_state = 548, .external_lex_state = 2}, + [43] = {.lex_state = 548, .external_lex_state = 2}, + [44] = {.lex_state = 548, .external_lex_state = 2}, + [45] = {.lex_state = 548, .external_lex_state = 2}, + [46] = {.lex_state = 548, .external_lex_state = 2}, + [47] = {.lex_state = 548, .external_lex_state = 2}, + [48] = {.lex_state = 548, .external_lex_state = 2}, + [49] = {.lex_state = 548, .external_lex_state = 2}, + [50] = {.lex_state = 548, .external_lex_state = 2}, + [51] = {.lex_state = 548, .external_lex_state = 2}, + [52] = {.lex_state = 548, .external_lex_state = 2}, + [53] = {.lex_state = 548, .external_lex_state = 2}, + [54] = {.lex_state = 548, .external_lex_state = 2}, + [55] = {.lex_state = 548, .external_lex_state = 2}, + [56] = {.lex_state = 548, .external_lex_state = 2}, + [57] = {.lex_state = 548, .external_lex_state = 2}, + [58] = {.lex_state = 548, .external_lex_state = 2}, + [59] = {.lex_state = 548, .external_lex_state = 2}, + [60] = {.lex_state = 548, .external_lex_state = 2}, + [61] = {.lex_state = 548, .external_lex_state = 2}, + [62] = {.lex_state = 424, .external_lex_state = 2}, + [63] = {.lex_state = 548, .external_lex_state = 2}, + [64] = {.lex_state = 548, .external_lex_state = 2}, + [65] = {.lex_state = 424, .external_lex_state = 2}, + [66] = {.lex_state = 548, .external_lex_state = 2}, + [67] = {.lex_state = 548, .external_lex_state = 2}, + [68] = {.lex_state = 424, .external_lex_state = 2}, [69] = {.lex_state = 424, .external_lex_state = 2}, - [70] = {.lex_state = 424, .external_lex_state = 2}, - [71] = {.lex_state = 424, .external_lex_state = 2}, - [72] = {.lex_state = 549, .external_lex_state = 2}, + [70] = {.lex_state = 548, .external_lex_state = 2}, + [71] = {.lex_state = 548, .external_lex_state = 2}, + [72] = {.lex_state = 548, .external_lex_state = 2}, [73] = {.lex_state = 424, .external_lex_state = 2}, - [74] = {.lex_state = 424, .external_lex_state = 2}, - [75] = {.lex_state = 549, .external_lex_state = 2}, - [76] = {.lex_state = 549, .external_lex_state = 2}, - [77] = {.lex_state = 424, .external_lex_state = 2}, - [78] = {.lex_state = 549, .external_lex_state = 2}, + [74] = {.lex_state = 548, .external_lex_state = 2}, + [75] = {.lex_state = 424, .external_lex_state = 2}, + [76] = {.lex_state = 548, .external_lex_state = 2}, + [77] = {.lex_state = 548, .external_lex_state = 2}, + [78] = {.lex_state = 548, .external_lex_state = 2}, [79] = {.lex_state = 424, .external_lex_state = 2}, - [80] = {.lex_state = 549, .external_lex_state = 2}, - [81] = {.lex_state = 549, .external_lex_state = 2}, - [82] = {.lex_state = 424, .external_lex_state = 2}, - [83] = {.lex_state = 424, .external_lex_state = 2}, - [84] = {.lex_state = 549, .external_lex_state = 2}, - [85] = {.lex_state = 549, .external_lex_state = 2}, - [86] = {.lex_state = 549, .external_lex_state = 2}, + [80] = {.lex_state = 424, .external_lex_state = 2}, + [81] = {.lex_state = 548, .external_lex_state = 2}, + [82] = {.lex_state = 548, .external_lex_state = 2}, + [83] = {.lex_state = 548, .external_lex_state = 2}, + [84] = {.lex_state = 548, .external_lex_state = 2}, + [85] = {.lex_state = 424, .external_lex_state = 2}, + [86] = {.lex_state = 548, .external_lex_state = 2}, [87] = {.lex_state = 424, .external_lex_state = 2}, - [88] = {.lex_state = 424, .external_lex_state = 2}, - [89] = {.lex_state = 549, .external_lex_state = 2}, - [90] = {.lex_state = 549, .external_lex_state = 2}, + [88] = {.lex_state = 548, .external_lex_state = 2}, + [89] = {.lex_state = 548, .external_lex_state = 2}, + [90] = {.lex_state = 424, .external_lex_state = 2}, [91] = {.lex_state = 424, .external_lex_state = 2}, - [92] = {.lex_state = 424, .external_lex_state = 2}, - [93] = {.lex_state = 549, .external_lex_state = 2}, - [94] = {.lex_state = 549, .external_lex_state = 2}, + [92] = {.lex_state = 548, .external_lex_state = 2}, + [93] = {.lex_state = 548, .external_lex_state = 2}, + [94] = {.lex_state = 424, .external_lex_state = 2}, [95] = {.lex_state = 424, .external_lex_state = 2}, - [96] = {.lex_state = 424, .external_lex_state = 2}, - [97] = {.lex_state = 549, .external_lex_state = 2}, - [98] = {.lex_state = 549, .external_lex_state = 2}, + [96] = {.lex_state = 548, .external_lex_state = 2}, + [97] = {.lex_state = 548, .external_lex_state = 2}, + [98] = {.lex_state = 424, .external_lex_state = 2}, [99] = {.lex_state = 424, .external_lex_state = 2}, - [100] = {.lex_state = 424, .external_lex_state = 2}, - [101] = {.lex_state = 549, .external_lex_state = 2}, - [102] = {.lex_state = 549, .external_lex_state = 2}, - [103] = {.lex_state = 549, .external_lex_state = 2}, - [104] = {.lex_state = 549, .external_lex_state = 2}, - [105] = {.lex_state = 549, .external_lex_state = 2}, - [106] = {.lex_state = 549, .external_lex_state = 2}, - [107] = {.lex_state = 549, .external_lex_state = 2}, - [108] = {.lex_state = 549, .external_lex_state = 2}, - [109] = {.lex_state = 549, .external_lex_state = 2}, - [110] = {.lex_state = 549, .external_lex_state = 2}, - [111] = {.lex_state = 549, .external_lex_state = 2}, - [112] = {.lex_state = 549, .external_lex_state = 2}, - [113] = {.lex_state = 549, .external_lex_state = 2}, - [114] = {.lex_state = 549, .external_lex_state = 2}, - [115] = {.lex_state = 549, .external_lex_state = 2}, - [116] = {.lex_state = 549, .external_lex_state = 2}, - [117] = {.lex_state = 549, .external_lex_state = 2}, - [118] = {.lex_state = 549, .external_lex_state = 2}, - [119] = {.lex_state = 549, .external_lex_state = 2}, - [120] = {.lex_state = 549, .external_lex_state = 2}, - [121] = {.lex_state = 549, .external_lex_state = 2}, - [122] = {.lex_state = 549, .external_lex_state = 2}, - [123] = {.lex_state = 549, .external_lex_state = 2}, - [124] = {.lex_state = 549, .external_lex_state = 2}, - [125] = {.lex_state = 549, .external_lex_state = 2}, - [126] = {.lex_state = 549, .external_lex_state = 2}, - [127] = {.lex_state = 549, .external_lex_state = 2}, - [128] = {.lex_state = 549, .external_lex_state = 2}, - [129] = {.lex_state = 549, .external_lex_state = 2}, - [130] = {.lex_state = 549, .external_lex_state = 2}, - [131] = {.lex_state = 549, .external_lex_state = 2}, - [132] = {.lex_state = 549, .external_lex_state = 2}, - [133] = {.lex_state = 549, .external_lex_state = 2}, - [134] = {.lex_state = 549, .external_lex_state = 2}, - [135] = {.lex_state = 549, .external_lex_state = 2}, - [136] = {.lex_state = 549, .external_lex_state = 2}, - [137] = {.lex_state = 549, .external_lex_state = 2}, - [138] = {.lex_state = 549, .external_lex_state = 2}, - [139] = {.lex_state = 549, .external_lex_state = 2}, - [140] = {.lex_state = 549, .external_lex_state = 2}, - [141] = {.lex_state = 549, .external_lex_state = 2}, - [142] = {.lex_state = 549, .external_lex_state = 2}, - [143] = {.lex_state = 549, .external_lex_state = 2}, - [144] = {.lex_state = 549, .external_lex_state = 2}, - [145] = {.lex_state = 549, .external_lex_state = 2}, - [146] = {.lex_state = 549, .external_lex_state = 2}, - [147] = {.lex_state = 549, .external_lex_state = 2}, - [148] = {.lex_state = 549, .external_lex_state = 2}, - [149] = {.lex_state = 549, .external_lex_state = 2}, - [150] = {.lex_state = 549, .external_lex_state = 2}, - [151] = {.lex_state = 549, .external_lex_state = 2}, - [152] = {.lex_state = 549, .external_lex_state = 2}, - [153] = {.lex_state = 549, .external_lex_state = 2}, - [154] = {.lex_state = 549, .external_lex_state = 2}, - [155] = {.lex_state = 549, .external_lex_state = 2}, - [156] = {.lex_state = 549, .external_lex_state = 2}, - [157] = {.lex_state = 549, .external_lex_state = 2}, - [158] = {.lex_state = 549, .external_lex_state = 2}, - [159] = {.lex_state = 549, .external_lex_state = 2}, - [160] = {.lex_state = 549, .external_lex_state = 2}, - [161] = {.lex_state = 549, .external_lex_state = 2}, - [162] = {.lex_state = 549, .external_lex_state = 2}, - [163] = {.lex_state = 549, .external_lex_state = 2}, - [164] = {.lex_state = 549, .external_lex_state = 2}, - [165] = {.lex_state = 549, .external_lex_state = 2}, - [166] = {.lex_state = 549, .external_lex_state = 2}, - [167] = {.lex_state = 549, .external_lex_state = 2}, - [168] = {.lex_state = 549, .external_lex_state = 2}, - [169] = {.lex_state = 549, .external_lex_state = 2}, - [170] = {.lex_state = 549, .external_lex_state = 2}, - [171] = {.lex_state = 549, .external_lex_state = 2}, - [172] = {.lex_state = 549, .external_lex_state = 2}, - [173] = {.lex_state = 549, .external_lex_state = 2}, - [174] = {.lex_state = 549, .external_lex_state = 2}, - [175] = {.lex_state = 549, .external_lex_state = 2}, - [176] = {.lex_state = 549, .external_lex_state = 2}, - [177] = {.lex_state = 549, .external_lex_state = 2}, - [178] = {.lex_state = 549, .external_lex_state = 2}, - [179] = {.lex_state = 549, .external_lex_state = 2}, - [180] = {.lex_state = 549, .external_lex_state = 2}, - [181] = {.lex_state = 549, .external_lex_state = 2}, - [182] = {.lex_state = 549, .external_lex_state = 2}, - [183] = {.lex_state = 549, .external_lex_state = 2}, - [184] = {.lex_state = 549, .external_lex_state = 2}, - [185] = {.lex_state = 549, .external_lex_state = 2}, - [186] = {.lex_state = 549, .external_lex_state = 2}, - [187] = {.lex_state = 549, .external_lex_state = 2}, - [188] = {.lex_state = 549, .external_lex_state = 2}, - [189] = {.lex_state = 549, .external_lex_state = 2}, - [190] = {.lex_state = 549, .external_lex_state = 2}, - [191] = {.lex_state = 549, .external_lex_state = 2}, - [192] = {.lex_state = 549, .external_lex_state = 2}, - [193] = {.lex_state = 549, .external_lex_state = 2}, - [194] = {.lex_state = 549, .external_lex_state = 2}, - [195] = {.lex_state = 549, .external_lex_state = 2}, - [196] = {.lex_state = 549, .external_lex_state = 2}, - [197] = {.lex_state = 549, .external_lex_state = 2}, - [198] = {.lex_state = 549, .external_lex_state = 2}, - [199] = {.lex_state = 549, .external_lex_state = 2}, - [200] = {.lex_state = 549, .external_lex_state = 2}, - [201] = {.lex_state = 549, .external_lex_state = 2}, - [202] = {.lex_state = 549, .external_lex_state = 2}, - [203] = {.lex_state = 549, .external_lex_state = 2}, - [204] = {.lex_state = 549, .external_lex_state = 2}, - [205] = {.lex_state = 549, .external_lex_state = 2}, - [206] = {.lex_state = 549, .external_lex_state = 2}, - [207] = {.lex_state = 549, .external_lex_state = 2}, - [208] = {.lex_state = 549, .external_lex_state = 2}, - [209] = {.lex_state = 549, .external_lex_state = 2}, - [210] = {.lex_state = 549, .external_lex_state = 2}, - [211] = {.lex_state = 549, .external_lex_state = 2}, - [212] = {.lex_state = 549, .external_lex_state = 2}, - [213] = {.lex_state = 549, .external_lex_state = 2}, - [214] = {.lex_state = 549, .external_lex_state = 2}, - [215] = {.lex_state = 549, .external_lex_state = 2}, - [216] = {.lex_state = 549, .external_lex_state = 2}, - [217] = {.lex_state = 549, .external_lex_state = 2}, - [218] = {.lex_state = 549, .external_lex_state = 2}, - [219] = {.lex_state = 549, .external_lex_state = 2}, - [220] = {.lex_state = 549, .external_lex_state = 2}, - [221] = {.lex_state = 549, .external_lex_state = 2}, - [222] = {.lex_state = 549, .external_lex_state = 2}, - [223] = {.lex_state = 549, .external_lex_state = 2}, - [224] = {.lex_state = 549, .external_lex_state = 2}, - [225] = {.lex_state = 549, .external_lex_state = 2}, - [226] = {.lex_state = 549, .external_lex_state = 2}, - [227] = {.lex_state = 549, .external_lex_state = 2}, - [228] = {.lex_state = 549, .external_lex_state = 2}, - [229] = {.lex_state = 549, .external_lex_state = 2}, - [230] = {.lex_state = 549, .external_lex_state = 2}, - [231] = {.lex_state = 549, .external_lex_state = 2}, - [232] = {.lex_state = 549, .external_lex_state = 2}, - [233] = {.lex_state = 549, .external_lex_state = 2}, - [234] = {.lex_state = 549, .external_lex_state = 2}, - [235] = {.lex_state = 549, .external_lex_state = 2}, - [236] = {.lex_state = 549, .external_lex_state = 2}, - [237] = {.lex_state = 549, .external_lex_state = 2}, - [238] = {.lex_state = 549, .external_lex_state = 2}, - [239] = {.lex_state = 549, .external_lex_state = 2}, - [240] = {.lex_state = 549, .external_lex_state = 2}, - [241] = {.lex_state = 549, .external_lex_state = 2}, - [242] = {.lex_state = 549, .external_lex_state = 2}, - [243] = {.lex_state = 549, .external_lex_state = 2}, - [244] = {.lex_state = 549, .external_lex_state = 2}, - [245] = {.lex_state = 549, .external_lex_state = 2}, - [246] = {.lex_state = 549, .external_lex_state = 2}, - [247] = {.lex_state = 549, .external_lex_state = 2}, - [248] = {.lex_state = 549, .external_lex_state = 2}, - [249] = {.lex_state = 549, .external_lex_state = 2}, - [250] = {.lex_state = 549, .external_lex_state = 2}, - [251] = {.lex_state = 549, .external_lex_state = 2}, - [252] = {.lex_state = 549, .external_lex_state = 2}, - [253] = {.lex_state = 549, .external_lex_state = 2}, - [254] = {.lex_state = 549, .external_lex_state = 2}, - [255] = {.lex_state = 549, .external_lex_state = 2}, - [256] = {.lex_state = 549, .external_lex_state = 2}, - [257] = {.lex_state = 549, .external_lex_state = 2}, - [258] = {.lex_state = 549, .external_lex_state = 2}, - [259] = {.lex_state = 549, .external_lex_state = 2}, - [260] = {.lex_state = 549, .external_lex_state = 2}, - [261] = {.lex_state = 549, .external_lex_state = 2}, - [262] = {.lex_state = 549, .external_lex_state = 2}, - [263] = {.lex_state = 549, .external_lex_state = 2}, - [264] = {.lex_state = 549, .external_lex_state = 2}, - [265] = {.lex_state = 549, .external_lex_state = 2}, - [266] = {.lex_state = 549, .external_lex_state = 2}, - [267] = {.lex_state = 549, .external_lex_state = 2}, - [268] = {.lex_state = 549, .external_lex_state = 2}, - [269] = {.lex_state = 549, .external_lex_state = 2}, - [270] = {.lex_state = 549, .external_lex_state = 2}, - [271] = {.lex_state = 549, .external_lex_state = 2}, - [272] = {.lex_state = 549, .external_lex_state = 2}, - [273] = {.lex_state = 549, .external_lex_state = 2}, - [274] = {.lex_state = 549, .external_lex_state = 2}, - [275] = {.lex_state = 549, .external_lex_state = 2}, - [276] = {.lex_state = 549, .external_lex_state = 2}, - [277] = {.lex_state = 549, .external_lex_state = 2}, - [278] = {.lex_state = 549, .external_lex_state = 2}, - [279] = {.lex_state = 549, .external_lex_state = 2}, - [280] = {.lex_state = 549, .external_lex_state = 2}, - [281] = {.lex_state = 549, .external_lex_state = 2}, - [282] = {.lex_state = 549, .external_lex_state = 2}, - [283] = {.lex_state = 549, .external_lex_state = 2}, - [284] = {.lex_state = 549, .external_lex_state = 2}, - [285] = {.lex_state = 549, .external_lex_state = 2}, - [286] = {.lex_state = 549, .external_lex_state = 2}, - [287] = {.lex_state = 549, .external_lex_state = 2}, - [288] = {.lex_state = 549, .external_lex_state = 2}, - [289] = {.lex_state = 549, .external_lex_state = 2}, - [290] = {.lex_state = 549, .external_lex_state = 2}, - [291] = {.lex_state = 549, .external_lex_state = 2}, - [292] = {.lex_state = 549, .external_lex_state = 2}, - [293] = {.lex_state = 549, .external_lex_state = 2}, - [294] = {.lex_state = 549, .external_lex_state = 2}, - [295] = {.lex_state = 549, .external_lex_state = 2}, - [296] = {.lex_state = 549, .external_lex_state = 2}, - [297] = {.lex_state = 549, .external_lex_state = 2}, - [298] = {.lex_state = 549, .external_lex_state = 2}, - [299] = {.lex_state = 549, .external_lex_state = 2}, - [300] = {.lex_state = 549, .external_lex_state = 2}, - [301] = {.lex_state = 549, .external_lex_state = 2}, - [302] = {.lex_state = 549, .external_lex_state = 2}, - [303] = {.lex_state = 549, .external_lex_state = 2}, - [304] = {.lex_state = 549, .external_lex_state = 2}, - [305] = {.lex_state = 549, .external_lex_state = 2}, - [306] = {.lex_state = 549, .external_lex_state = 2}, - [307] = {.lex_state = 549, .external_lex_state = 2}, - [308] = {.lex_state = 549, .external_lex_state = 2}, - [309] = {.lex_state = 549, .external_lex_state = 2}, - [310] = {.lex_state = 549, .external_lex_state = 2}, - [311] = {.lex_state = 549, .external_lex_state = 2}, - [312] = {.lex_state = 549, .external_lex_state = 2}, - [313] = {.lex_state = 549, .external_lex_state = 2}, - [314] = {.lex_state = 549, .external_lex_state = 2}, - [315] = {.lex_state = 549, .external_lex_state = 2}, - [316] = {.lex_state = 549, .external_lex_state = 2}, - [317] = {.lex_state = 549, .external_lex_state = 2}, - [318] = {.lex_state = 549, .external_lex_state = 2}, - [319] = {.lex_state = 549, .external_lex_state = 2}, - [320] = {.lex_state = 549, .external_lex_state = 2}, - [321] = {.lex_state = 549, .external_lex_state = 2}, - [322] = {.lex_state = 549, .external_lex_state = 2}, - [323] = {.lex_state = 549, .external_lex_state = 2}, - [324] = {.lex_state = 549, .external_lex_state = 2}, - [325] = {.lex_state = 549, .external_lex_state = 2}, - [326] = {.lex_state = 549, .external_lex_state = 2}, - [327] = {.lex_state = 549, .external_lex_state = 2}, - [328] = {.lex_state = 549, .external_lex_state = 2}, - [329] = {.lex_state = 549, .external_lex_state = 2}, - [330] = {.lex_state = 549, .external_lex_state = 2}, - [331] = {.lex_state = 549, .external_lex_state = 2}, - [332] = {.lex_state = 549, .external_lex_state = 2}, - [333] = {.lex_state = 549, .external_lex_state = 2}, - [334] = {.lex_state = 549, .external_lex_state = 2}, - [335] = {.lex_state = 549, .external_lex_state = 2}, - [336] = {.lex_state = 549, .external_lex_state = 2}, - [337] = {.lex_state = 549, .external_lex_state = 2}, - [338] = {.lex_state = 549, .external_lex_state = 2}, - [339] = {.lex_state = 549, .external_lex_state = 2}, - [340] = {.lex_state = 549, .external_lex_state = 2}, - [341] = {.lex_state = 549, .external_lex_state = 2}, - [342] = {.lex_state = 549, .external_lex_state = 2}, - [343] = {.lex_state = 549, .external_lex_state = 2}, - [344] = {.lex_state = 549, .external_lex_state = 2}, - [345] = {.lex_state = 549, .external_lex_state = 2}, - [346] = {.lex_state = 549, .external_lex_state = 2}, - [347] = {.lex_state = 549, .external_lex_state = 2}, - [348] = {.lex_state = 549, .external_lex_state = 2}, - [349] = {.lex_state = 549, .external_lex_state = 2}, - [350] = {.lex_state = 549, .external_lex_state = 2}, - [351] = {.lex_state = 549, .external_lex_state = 2}, - [352] = {.lex_state = 549, .external_lex_state = 2}, - [353] = {.lex_state = 549, .external_lex_state = 2}, - [354] = {.lex_state = 549, .external_lex_state = 2}, - [355] = {.lex_state = 549, .external_lex_state = 2}, - [356] = {.lex_state = 549, .external_lex_state = 2}, - [357] = {.lex_state = 549, .external_lex_state = 2}, - [358] = {.lex_state = 549, .external_lex_state = 2}, - [359] = {.lex_state = 549, .external_lex_state = 2}, - [360] = {.lex_state = 549, .external_lex_state = 2}, - [361] = {.lex_state = 549, .external_lex_state = 2}, - [362] = {.lex_state = 549, .external_lex_state = 2}, - [363] = {.lex_state = 549, .external_lex_state = 2}, - [364] = {.lex_state = 549, .external_lex_state = 2}, - [365] = {.lex_state = 549, .external_lex_state = 2}, - [366] = {.lex_state = 549, .external_lex_state = 2}, - [367] = {.lex_state = 549, .external_lex_state = 2}, - [368] = {.lex_state = 549, .external_lex_state = 2}, - [369] = {.lex_state = 549, .external_lex_state = 2}, - [370] = {.lex_state = 549, .external_lex_state = 2}, - [371] = {.lex_state = 549, .external_lex_state = 2}, - [372] = {.lex_state = 549, .external_lex_state = 2}, - [373] = {.lex_state = 549, .external_lex_state = 2}, - [374] = {.lex_state = 549, .external_lex_state = 2}, - [375] = {.lex_state = 549, .external_lex_state = 2}, - [376] = {.lex_state = 549, .external_lex_state = 2}, - [377] = {.lex_state = 549, .external_lex_state = 2}, - [378] = {.lex_state = 549, .external_lex_state = 2}, - [379] = {.lex_state = 549, .external_lex_state = 2}, - [380] = {.lex_state = 549, .external_lex_state = 2}, - [381] = {.lex_state = 549, .external_lex_state = 2}, - [382] = {.lex_state = 549, .external_lex_state = 2}, - [383] = {.lex_state = 549, .external_lex_state = 2}, - [384] = {.lex_state = 549, .external_lex_state = 2}, - [385] = {.lex_state = 549, .external_lex_state = 2}, - [386] = {.lex_state = 549, .external_lex_state = 2}, - [387] = {.lex_state = 549, .external_lex_state = 2}, - [388] = {.lex_state = 549, .external_lex_state = 2}, - [389] = {.lex_state = 549, .external_lex_state = 2}, - [390] = {.lex_state = 549, .external_lex_state = 2}, - [391] = {.lex_state = 549, .external_lex_state = 2}, - [392] = {.lex_state = 549, .external_lex_state = 2}, - [393] = {.lex_state = 549, .external_lex_state = 2}, - [394] = {.lex_state = 549, .external_lex_state = 2}, - [395] = {.lex_state = 549, .external_lex_state = 2}, - [396] = {.lex_state = 549, .external_lex_state = 2}, - [397] = {.lex_state = 549, .external_lex_state = 2}, - [398] = {.lex_state = 549, .external_lex_state = 2}, - [399] = {.lex_state = 549, .external_lex_state = 2}, - [400] = {.lex_state = 549, .external_lex_state = 2}, - [401] = {.lex_state = 549, .external_lex_state = 2}, - [402] = {.lex_state = 549, .external_lex_state = 2}, - [403] = {.lex_state = 549, .external_lex_state = 2}, - [404] = {.lex_state = 549, .external_lex_state = 2}, - [405] = {.lex_state = 549, .external_lex_state = 2}, - [406] = {.lex_state = 549, .external_lex_state = 2}, - [407] = {.lex_state = 549, .external_lex_state = 2}, - [408] = {.lex_state = 549, .external_lex_state = 2}, - [409] = {.lex_state = 549, .external_lex_state = 2}, - [410] = {.lex_state = 549, .external_lex_state = 2}, - [411] = {.lex_state = 549, .external_lex_state = 2}, - [412] = {.lex_state = 549, .external_lex_state = 2}, - [413] = {.lex_state = 549, .external_lex_state = 2}, - [414] = {.lex_state = 549, .external_lex_state = 2}, - [415] = {.lex_state = 549, .external_lex_state = 2}, - [416] = {.lex_state = 549, .external_lex_state = 2}, - [417] = {.lex_state = 549, .external_lex_state = 2}, - [418] = {.lex_state = 549, .external_lex_state = 2}, - [419] = {.lex_state = 549, .external_lex_state = 2}, - [420] = {.lex_state = 549, .external_lex_state = 2}, - [421] = {.lex_state = 549, .external_lex_state = 2}, - [422] = {.lex_state = 549, .external_lex_state = 2}, - [423] = {.lex_state = 549, .external_lex_state = 2}, - [424] = {.lex_state = 549, .external_lex_state = 2}, - [425] = {.lex_state = 549, .external_lex_state = 2}, - [426] = {.lex_state = 549, .external_lex_state = 2}, - [427] = {.lex_state = 549, .external_lex_state = 2}, - [428] = {.lex_state = 549, .external_lex_state = 2}, - [429] = {.lex_state = 549, .external_lex_state = 2}, - [430] = {.lex_state = 549, .external_lex_state = 2}, - [431] = {.lex_state = 549, .external_lex_state = 2}, - [432] = {.lex_state = 549, .external_lex_state = 2}, - [433] = {.lex_state = 549, .external_lex_state = 2}, - [434] = {.lex_state = 549, .external_lex_state = 2}, - [435] = {.lex_state = 549, .external_lex_state = 2}, - [436] = {.lex_state = 549, .external_lex_state = 2}, - [437] = {.lex_state = 549, .external_lex_state = 2}, - [438] = {.lex_state = 549, .external_lex_state = 2}, - [439] = {.lex_state = 549, .external_lex_state = 2}, - [440] = {.lex_state = 549, .external_lex_state = 2}, - [441] = {.lex_state = 549, .external_lex_state = 2}, - [442] = {.lex_state = 549, .external_lex_state = 2}, - [443] = {.lex_state = 549, .external_lex_state = 2}, - [444] = {.lex_state = 549, .external_lex_state = 2}, - [445] = {.lex_state = 549, .external_lex_state = 2}, - [446] = {.lex_state = 549, .external_lex_state = 2}, - [447] = {.lex_state = 549, .external_lex_state = 2}, - [448] = {.lex_state = 549, .external_lex_state = 2}, - [449] = {.lex_state = 549, .external_lex_state = 2}, - [450] = {.lex_state = 549, .external_lex_state = 2}, - [451] = {.lex_state = 409, .external_lex_state = 7}, - [452] = {.lex_state = 410, .external_lex_state = 8}, - [453] = {.lex_state = 409, .external_lex_state = 7}, - [454] = {.lex_state = 409, .external_lex_state = 7}, - [455] = {.lex_state = 409, .external_lex_state = 7}, - [456] = {.lex_state = 409, .external_lex_state = 7}, - [457] = {.lex_state = 406, .external_lex_state = 8}, - [458] = {.lex_state = 407, .external_lex_state = 8}, - [459] = {.lex_state = 409, .external_lex_state = 7}, - [460] = {.lex_state = 408, .external_lex_state = 8}, - [461] = {.lex_state = 409, .external_lex_state = 7}, - [462] = {.lex_state = 409, .external_lex_state = 7}, - [463] = {.lex_state = 406, .external_lex_state = 8}, + [100] = {.lex_state = 548, .external_lex_state = 2}, + [101] = {.lex_state = 548, .external_lex_state = 2}, + [102] = {.lex_state = 548, .external_lex_state = 2}, + [103] = {.lex_state = 548, .external_lex_state = 2}, + [104] = {.lex_state = 548, .external_lex_state = 2}, + [105] = {.lex_state = 548, .external_lex_state = 2}, + [106] = {.lex_state = 548, .external_lex_state = 2}, + [107] = {.lex_state = 548, .external_lex_state = 2}, + [108] = {.lex_state = 548, .external_lex_state = 2}, + [109] = {.lex_state = 548, .external_lex_state = 2}, + [110] = {.lex_state = 548, .external_lex_state = 2}, + [111] = {.lex_state = 548, .external_lex_state = 2}, + [112] = {.lex_state = 548, .external_lex_state = 2}, + [113] = {.lex_state = 548, .external_lex_state = 2}, + [114] = {.lex_state = 424, .external_lex_state = 2}, + [115] = {.lex_state = 548, .external_lex_state = 2}, + [116] = {.lex_state = 548, .external_lex_state = 2}, + [117] = {.lex_state = 548, .external_lex_state = 2}, + [118] = {.lex_state = 548, .external_lex_state = 2}, + [119] = {.lex_state = 548, .external_lex_state = 2}, + [120] = {.lex_state = 548, .external_lex_state = 2}, + [121] = {.lex_state = 548, .external_lex_state = 2}, + [122] = {.lex_state = 548, .external_lex_state = 2}, + [123] = {.lex_state = 548, .external_lex_state = 2}, + [124] = {.lex_state = 548, .external_lex_state = 2}, + [125] = {.lex_state = 548, .external_lex_state = 2}, + [126] = {.lex_state = 548, .external_lex_state = 2}, + [127] = {.lex_state = 548, .external_lex_state = 2}, + [128] = {.lex_state = 548, .external_lex_state = 2}, + [129] = {.lex_state = 548, .external_lex_state = 2}, + [130] = {.lex_state = 548, .external_lex_state = 2}, + [131] = {.lex_state = 548, .external_lex_state = 2}, + [132] = {.lex_state = 548, .external_lex_state = 2}, + [133] = {.lex_state = 548, .external_lex_state = 2}, + [134] = {.lex_state = 548, .external_lex_state = 2}, + [135] = {.lex_state = 548, .external_lex_state = 2}, + [136] = {.lex_state = 548, .external_lex_state = 2}, + [137] = {.lex_state = 548, .external_lex_state = 2}, + [138] = {.lex_state = 548, .external_lex_state = 2}, + [139] = {.lex_state = 548, .external_lex_state = 2}, + [140] = {.lex_state = 548, .external_lex_state = 2}, + [141] = {.lex_state = 548, .external_lex_state = 2}, + [142] = {.lex_state = 548, .external_lex_state = 2}, + [143] = {.lex_state = 548, .external_lex_state = 2}, + [144] = {.lex_state = 548, .external_lex_state = 2}, + [145] = {.lex_state = 548, .external_lex_state = 2}, + [146] = {.lex_state = 548, .external_lex_state = 2}, + [147] = {.lex_state = 548, .external_lex_state = 2}, + [148] = {.lex_state = 548, .external_lex_state = 2}, + [149] = {.lex_state = 548, .external_lex_state = 2}, + [150] = {.lex_state = 548, .external_lex_state = 2}, + [151] = {.lex_state = 548, .external_lex_state = 2}, + [152] = {.lex_state = 548, .external_lex_state = 2}, + [153] = {.lex_state = 548, .external_lex_state = 2}, + [154] = {.lex_state = 548, .external_lex_state = 2}, + [155] = {.lex_state = 548, .external_lex_state = 2}, + [156] = {.lex_state = 548, .external_lex_state = 2}, + [157] = {.lex_state = 548, .external_lex_state = 2}, + [158] = {.lex_state = 548, .external_lex_state = 2}, + [159] = {.lex_state = 548, .external_lex_state = 2}, + [160] = {.lex_state = 548, .external_lex_state = 2}, + [161] = {.lex_state = 548, .external_lex_state = 2}, + [162] = {.lex_state = 548, .external_lex_state = 2}, + [163] = {.lex_state = 548, .external_lex_state = 2}, + [164] = {.lex_state = 548, .external_lex_state = 2}, + [165] = {.lex_state = 548, .external_lex_state = 2}, + [166] = {.lex_state = 548, .external_lex_state = 2}, + [167] = {.lex_state = 548, .external_lex_state = 2}, + [168] = {.lex_state = 548, .external_lex_state = 2}, + [169] = {.lex_state = 548, .external_lex_state = 2}, + [170] = {.lex_state = 548, .external_lex_state = 2}, + [171] = {.lex_state = 548, .external_lex_state = 2}, + [172] = {.lex_state = 548, .external_lex_state = 2}, + [173] = {.lex_state = 548, .external_lex_state = 2}, + [174] = {.lex_state = 548, .external_lex_state = 2}, + [175] = {.lex_state = 548, .external_lex_state = 2}, + [176] = {.lex_state = 548, .external_lex_state = 2}, + [177] = {.lex_state = 548, .external_lex_state = 2}, + [178] = {.lex_state = 548, .external_lex_state = 2}, + [179] = {.lex_state = 548, .external_lex_state = 2}, + [180] = {.lex_state = 548, .external_lex_state = 2}, + [181] = {.lex_state = 548, .external_lex_state = 2}, + [182] = {.lex_state = 548, .external_lex_state = 2}, + [183] = {.lex_state = 548, .external_lex_state = 2}, + [184] = {.lex_state = 548, .external_lex_state = 2}, + [185] = {.lex_state = 548, .external_lex_state = 2}, + [186] = {.lex_state = 548, .external_lex_state = 2}, + [187] = {.lex_state = 548, .external_lex_state = 2}, + [188] = {.lex_state = 548, .external_lex_state = 2}, + [189] = {.lex_state = 548, .external_lex_state = 2}, + [190] = {.lex_state = 548, .external_lex_state = 2}, + [191] = {.lex_state = 548, .external_lex_state = 2}, + [192] = {.lex_state = 548, .external_lex_state = 2}, + [193] = {.lex_state = 548, .external_lex_state = 2}, + [194] = {.lex_state = 548, .external_lex_state = 2}, + [195] = {.lex_state = 548, .external_lex_state = 2}, + [196] = {.lex_state = 548, .external_lex_state = 2}, + [197] = {.lex_state = 548, .external_lex_state = 2}, + [198] = {.lex_state = 548, .external_lex_state = 2}, + [199] = {.lex_state = 548, .external_lex_state = 2}, + [200] = {.lex_state = 548, .external_lex_state = 2}, + [201] = {.lex_state = 548, .external_lex_state = 2}, + [202] = {.lex_state = 548, .external_lex_state = 2}, + [203] = {.lex_state = 548, .external_lex_state = 2}, + [204] = {.lex_state = 548, .external_lex_state = 2}, + [205] = {.lex_state = 548, .external_lex_state = 2}, + [206] = {.lex_state = 548, .external_lex_state = 2}, + [207] = {.lex_state = 548, .external_lex_state = 2}, + [208] = {.lex_state = 548, .external_lex_state = 2}, + [209] = {.lex_state = 548, .external_lex_state = 2}, + [210] = {.lex_state = 548, .external_lex_state = 2}, + [211] = {.lex_state = 548, .external_lex_state = 2}, + [212] = {.lex_state = 548, .external_lex_state = 2}, + [213] = {.lex_state = 548, .external_lex_state = 2}, + [214] = {.lex_state = 548, .external_lex_state = 2}, + [215] = {.lex_state = 548, .external_lex_state = 2}, + [216] = {.lex_state = 548, .external_lex_state = 2}, + [217] = {.lex_state = 548, .external_lex_state = 2}, + [218] = {.lex_state = 548, .external_lex_state = 2}, + [219] = {.lex_state = 548, .external_lex_state = 2}, + [220] = {.lex_state = 548, .external_lex_state = 2}, + [221] = {.lex_state = 548, .external_lex_state = 2}, + [222] = {.lex_state = 548, .external_lex_state = 2}, + [223] = {.lex_state = 548, .external_lex_state = 2}, + [224] = {.lex_state = 548, .external_lex_state = 2}, + [225] = {.lex_state = 548, .external_lex_state = 2}, + [226] = {.lex_state = 548, .external_lex_state = 2}, + [227] = {.lex_state = 548, .external_lex_state = 2}, + [228] = {.lex_state = 548, .external_lex_state = 2}, + [229] = {.lex_state = 548, .external_lex_state = 2}, + [230] = {.lex_state = 548, .external_lex_state = 2}, + [231] = {.lex_state = 548, .external_lex_state = 2}, + [232] = {.lex_state = 548, .external_lex_state = 2}, + [233] = {.lex_state = 548, .external_lex_state = 2}, + [234] = {.lex_state = 548, .external_lex_state = 2}, + [235] = {.lex_state = 548, .external_lex_state = 2}, + [236] = {.lex_state = 548, .external_lex_state = 2}, + [237] = {.lex_state = 548, .external_lex_state = 2}, + [238] = {.lex_state = 548, .external_lex_state = 2}, + [239] = {.lex_state = 548, .external_lex_state = 2}, + [240] = {.lex_state = 548, .external_lex_state = 2}, + [241] = {.lex_state = 548, .external_lex_state = 2}, + [242] = {.lex_state = 548, .external_lex_state = 2}, + [243] = {.lex_state = 548, .external_lex_state = 2}, + [244] = {.lex_state = 548, .external_lex_state = 2}, + [245] = {.lex_state = 548, .external_lex_state = 2}, + [246] = {.lex_state = 548, .external_lex_state = 2}, + [247] = {.lex_state = 548, .external_lex_state = 2}, + [248] = {.lex_state = 548, .external_lex_state = 2}, + [249] = {.lex_state = 548, .external_lex_state = 2}, + [250] = {.lex_state = 548, .external_lex_state = 2}, + [251] = {.lex_state = 548, .external_lex_state = 2}, + [252] = {.lex_state = 548, .external_lex_state = 2}, + [253] = {.lex_state = 548, .external_lex_state = 2}, + [254] = {.lex_state = 548, .external_lex_state = 2}, + [255] = {.lex_state = 548, .external_lex_state = 2}, + [256] = {.lex_state = 548, .external_lex_state = 2}, + [257] = {.lex_state = 548, .external_lex_state = 2}, + [258] = {.lex_state = 548, .external_lex_state = 2}, + [259] = {.lex_state = 548, .external_lex_state = 2}, + [260] = {.lex_state = 548, .external_lex_state = 2}, + [261] = {.lex_state = 548, .external_lex_state = 2}, + [262] = {.lex_state = 548, .external_lex_state = 2}, + [263] = {.lex_state = 548, .external_lex_state = 2}, + [264] = {.lex_state = 548, .external_lex_state = 2}, + [265] = {.lex_state = 548, .external_lex_state = 2}, + [266] = {.lex_state = 548, .external_lex_state = 2}, + [267] = {.lex_state = 548, .external_lex_state = 2}, + [268] = {.lex_state = 548, .external_lex_state = 2}, + [269] = {.lex_state = 548, .external_lex_state = 2}, + [270] = {.lex_state = 548, .external_lex_state = 2}, + [271] = {.lex_state = 548, .external_lex_state = 2}, + [272] = {.lex_state = 548, .external_lex_state = 2}, + [273] = {.lex_state = 548, .external_lex_state = 2}, + [274] = {.lex_state = 548, .external_lex_state = 2}, + [275] = {.lex_state = 548, .external_lex_state = 2}, + [276] = {.lex_state = 548, .external_lex_state = 2}, + [277] = {.lex_state = 548, .external_lex_state = 2}, + [278] = {.lex_state = 548, .external_lex_state = 2}, + [279] = {.lex_state = 548, .external_lex_state = 2}, + [280] = {.lex_state = 548, .external_lex_state = 2}, + [281] = {.lex_state = 548, .external_lex_state = 2}, + [282] = {.lex_state = 548, .external_lex_state = 2}, + [283] = {.lex_state = 548, .external_lex_state = 2}, + [284] = {.lex_state = 548, .external_lex_state = 2}, + [285] = {.lex_state = 548, .external_lex_state = 2}, + [286] = {.lex_state = 548, .external_lex_state = 2}, + [287] = {.lex_state = 548, .external_lex_state = 2}, + [288] = {.lex_state = 548, .external_lex_state = 2}, + [289] = {.lex_state = 548, .external_lex_state = 2}, + [290] = {.lex_state = 548, .external_lex_state = 2}, + [291] = {.lex_state = 548, .external_lex_state = 2}, + [292] = {.lex_state = 548, .external_lex_state = 2}, + [293] = {.lex_state = 548, .external_lex_state = 2}, + [294] = {.lex_state = 548, .external_lex_state = 2}, + [295] = {.lex_state = 548, .external_lex_state = 2}, + [296] = {.lex_state = 548, .external_lex_state = 2}, + [297] = {.lex_state = 548, .external_lex_state = 2}, + [298] = {.lex_state = 548, .external_lex_state = 2}, + [299] = {.lex_state = 548, .external_lex_state = 2}, + [300] = {.lex_state = 548, .external_lex_state = 2}, + [301] = {.lex_state = 548, .external_lex_state = 2}, + [302] = {.lex_state = 548, .external_lex_state = 2}, + [303] = {.lex_state = 548, .external_lex_state = 2}, + [304] = {.lex_state = 548, .external_lex_state = 2}, + [305] = {.lex_state = 548, .external_lex_state = 2}, + [306] = {.lex_state = 548, .external_lex_state = 2}, + [307] = {.lex_state = 548, .external_lex_state = 2}, + [308] = {.lex_state = 548, .external_lex_state = 2}, + [309] = {.lex_state = 548, .external_lex_state = 2}, + [310] = {.lex_state = 548, .external_lex_state = 2}, + [311] = {.lex_state = 548, .external_lex_state = 2}, + [312] = {.lex_state = 548, .external_lex_state = 2}, + [313] = {.lex_state = 548, .external_lex_state = 2}, + [314] = {.lex_state = 548, .external_lex_state = 2}, + [315] = {.lex_state = 548, .external_lex_state = 2}, + [316] = {.lex_state = 548, .external_lex_state = 2}, + [317] = {.lex_state = 548, .external_lex_state = 2}, + [318] = {.lex_state = 548, .external_lex_state = 2}, + [319] = {.lex_state = 548, .external_lex_state = 2}, + [320] = {.lex_state = 548, .external_lex_state = 2}, + [321] = {.lex_state = 548, .external_lex_state = 2}, + [322] = {.lex_state = 548, .external_lex_state = 2}, + [323] = {.lex_state = 548, .external_lex_state = 2}, + [324] = {.lex_state = 548, .external_lex_state = 2}, + [325] = {.lex_state = 548, .external_lex_state = 2}, + [326] = {.lex_state = 548, .external_lex_state = 2}, + [327] = {.lex_state = 548, .external_lex_state = 2}, + [328] = {.lex_state = 548, .external_lex_state = 2}, + [329] = {.lex_state = 548, .external_lex_state = 2}, + [330] = {.lex_state = 548, .external_lex_state = 2}, + [331] = {.lex_state = 548, .external_lex_state = 2}, + [332] = {.lex_state = 548, .external_lex_state = 2}, + [333] = {.lex_state = 548, .external_lex_state = 2}, + [334] = {.lex_state = 548, .external_lex_state = 2}, + [335] = {.lex_state = 548, .external_lex_state = 2}, + [336] = {.lex_state = 548, .external_lex_state = 2}, + [337] = {.lex_state = 548, .external_lex_state = 2}, + [338] = {.lex_state = 548, .external_lex_state = 2}, + [339] = {.lex_state = 548, .external_lex_state = 2}, + [340] = {.lex_state = 548, .external_lex_state = 2}, + [341] = {.lex_state = 548, .external_lex_state = 2}, + [342] = {.lex_state = 548, .external_lex_state = 2}, + [343] = {.lex_state = 548, .external_lex_state = 2}, + [344] = {.lex_state = 548, .external_lex_state = 2}, + [345] = {.lex_state = 548, .external_lex_state = 2}, + [346] = {.lex_state = 548, .external_lex_state = 2}, + [347] = {.lex_state = 548, .external_lex_state = 2}, + [348] = {.lex_state = 548, .external_lex_state = 2}, + [349] = {.lex_state = 548, .external_lex_state = 2}, + [350] = {.lex_state = 548, .external_lex_state = 2}, + [351] = {.lex_state = 548, .external_lex_state = 2}, + [352] = {.lex_state = 548, .external_lex_state = 2}, + [353] = {.lex_state = 548, .external_lex_state = 2}, + [354] = {.lex_state = 548, .external_lex_state = 2}, + [355] = {.lex_state = 548, .external_lex_state = 2}, + [356] = {.lex_state = 548, .external_lex_state = 2}, + [357] = {.lex_state = 548, .external_lex_state = 2}, + [358] = {.lex_state = 548, .external_lex_state = 2}, + [359] = {.lex_state = 548, .external_lex_state = 2}, + [360] = {.lex_state = 548, .external_lex_state = 2}, + [361] = {.lex_state = 548, .external_lex_state = 2}, + [362] = {.lex_state = 548, .external_lex_state = 2}, + [363] = {.lex_state = 548, .external_lex_state = 2}, + [364] = {.lex_state = 548, .external_lex_state = 2}, + [365] = {.lex_state = 548, .external_lex_state = 2}, + [366] = {.lex_state = 548, .external_lex_state = 2}, + [367] = {.lex_state = 548, .external_lex_state = 2}, + [368] = {.lex_state = 548, .external_lex_state = 2}, + [369] = {.lex_state = 548, .external_lex_state = 2}, + [370] = {.lex_state = 548, .external_lex_state = 2}, + [371] = {.lex_state = 548, .external_lex_state = 2}, + [372] = {.lex_state = 548, .external_lex_state = 2}, + [373] = {.lex_state = 548, .external_lex_state = 2}, + [374] = {.lex_state = 548, .external_lex_state = 2}, + [375] = {.lex_state = 548, .external_lex_state = 2}, + [376] = {.lex_state = 548, .external_lex_state = 2}, + [377] = {.lex_state = 548, .external_lex_state = 2}, + [378] = {.lex_state = 548, .external_lex_state = 2}, + [379] = {.lex_state = 548, .external_lex_state = 2}, + [380] = {.lex_state = 548, .external_lex_state = 2}, + [381] = {.lex_state = 548, .external_lex_state = 2}, + [382] = {.lex_state = 548, .external_lex_state = 2}, + [383] = {.lex_state = 548, .external_lex_state = 2}, + [384] = {.lex_state = 548, .external_lex_state = 2}, + [385] = {.lex_state = 548, .external_lex_state = 2}, + [386] = {.lex_state = 548, .external_lex_state = 2}, + [387] = {.lex_state = 548, .external_lex_state = 2}, + [388] = {.lex_state = 548, .external_lex_state = 2}, + [389] = {.lex_state = 548, .external_lex_state = 2}, + [390] = {.lex_state = 548, .external_lex_state = 2}, + [391] = {.lex_state = 548, .external_lex_state = 2}, + [392] = {.lex_state = 548, .external_lex_state = 2}, + [393] = {.lex_state = 548, .external_lex_state = 2}, + [394] = {.lex_state = 548, .external_lex_state = 2}, + [395] = {.lex_state = 548, .external_lex_state = 2}, + [396] = {.lex_state = 548, .external_lex_state = 2}, + [397] = {.lex_state = 548, .external_lex_state = 2}, + [398] = {.lex_state = 548, .external_lex_state = 2}, + [399] = {.lex_state = 548, .external_lex_state = 2}, + [400] = {.lex_state = 548, .external_lex_state = 2}, + [401] = {.lex_state = 548, .external_lex_state = 2}, + [402] = {.lex_state = 548, .external_lex_state = 2}, + [403] = {.lex_state = 548, .external_lex_state = 2}, + [404] = {.lex_state = 548, .external_lex_state = 2}, + [405] = {.lex_state = 548, .external_lex_state = 2}, + [406] = {.lex_state = 548, .external_lex_state = 2}, + [407] = {.lex_state = 548, .external_lex_state = 2}, + [408] = {.lex_state = 548, .external_lex_state = 2}, + [409] = {.lex_state = 548, .external_lex_state = 2}, + [410] = {.lex_state = 548, .external_lex_state = 2}, + [411] = {.lex_state = 548, .external_lex_state = 2}, + [412] = {.lex_state = 548, .external_lex_state = 2}, + [413] = {.lex_state = 548, .external_lex_state = 2}, + [414] = {.lex_state = 548, .external_lex_state = 2}, + [415] = {.lex_state = 548, .external_lex_state = 2}, + [416] = {.lex_state = 548, .external_lex_state = 2}, + [417] = {.lex_state = 548, .external_lex_state = 2}, + [418] = {.lex_state = 548, .external_lex_state = 2}, + [419] = {.lex_state = 548, .external_lex_state = 2}, + [420] = {.lex_state = 548, .external_lex_state = 2}, + [421] = {.lex_state = 548, .external_lex_state = 2}, + [422] = {.lex_state = 548, .external_lex_state = 2}, + [423] = {.lex_state = 548, .external_lex_state = 2}, + [424] = {.lex_state = 548, .external_lex_state = 2}, + [425] = {.lex_state = 548, .external_lex_state = 2}, + [426] = {.lex_state = 548, .external_lex_state = 2}, + [427] = {.lex_state = 548, .external_lex_state = 2}, + [428] = {.lex_state = 548, .external_lex_state = 2}, + [429] = {.lex_state = 548, .external_lex_state = 2}, + [430] = {.lex_state = 548, .external_lex_state = 2}, + [431] = {.lex_state = 548, .external_lex_state = 2}, + [432] = {.lex_state = 548, .external_lex_state = 2}, + [433] = {.lex_state = 548, .external_lex_state = 2}, + [434] = {.lex_state = 548, .external_lex_state = 2}, + [435] = {.lex_state = 548, .external_lex_state = 2}, + [436] = {.lex_state = 548, .external_lex_state = 2}, + [437] = {.lex_state = 548, .external_lex_state = 2}, + [438] = {.lex_state = 548, .external_lex_state = 2}, + [439] = {.lex_state = 548, .external_lex_state = 2}, + [440] = {.lex_state = 548, .external_lex_state = 2}, + [441] = {.lex_state = 548, .external_lex_state = 2}, + [442] = {.lex_state = 548, .external_lex_state = 2}, + [443] = {.lex_state = 548, .external_lex_state = 2}, + [444] = {.lex_state = 548, .external_lex_state = 2}, + [445] = {.lex_state = 548, .external_lex_state = 2}, + [446] = {.lex_state = 548, .external_lex_state = 2}, + [447] = {.lex_state = 548, .external_lex_state = 2}, + [448] = {.lex_state = 548, .external_lex_state = 2}, + [449] = {.lex_state = 548, .external_lex_state = 2}, + [450] = {.lex_state = 548, .external_lex_state = 2}, + [451] = {.lex_state = 406, .external_lex_state = 7}, + [452] = {.lex_state = 409, .external_lex_state = 7}, + [453] = {.lex_state = 410, .external_lex_state = 8}, + [454] = {.lex_state = 410, .external_lex_state = 8}, + [455] = {.lex_state = 408, .external_lex_state = 7}, + [456] = {.lex_state = 410, .external_lex_state = 8}, + [457] = {.lex_state = 410, .external_lex_state = 8}, + [458] = {.lex_state = 410, .external_lex_state = 8}, + [459] = {.lex_state = 410, .external_lex_state = 8}, + [460] = {.lex_state = 410, .external_lex_state = 8}, + [461] = {.lex_state = 410, .external_lex_state = 8}, + [462] = {.lex_state = 407, .external_lex_state = 7}, + [463] = {.lex_state = 406, .external_lex_state = 7}, [464] = {.lex_state = 12, .external_lex_state = 9}, [465] = {.lex_state = 12, .external_lex_state = 9}, [466] = {.lex_state = 404, .external_lex_state = 10}, [467] = {.lex_state = 404, .external_lex_state = 10}, - [468] = {.lex_state = 146, .external_lex_state = 4}, - [469] = {.lex_state = 146, .external_lex_state = 4}, - [470] = {.lex_state = 146, .external_lex_state = 4}, - [471] = {.lex_state = 146, .external_lex_state = 4}, - [472] = {.lex_state = 146, .external_lex_state = 4}, - [473] = {.lex_state = 146, .external_lex_state = 4}, - [474] = {.lex_state = 146, .external_lex_state = 4}, - [475] = {.lex_state = 146, .external_lex_state = 4}, - [476] = {.lex_state = 146, .external_lex_state = 4}, - [477] = {.lex_state = 146, .external_lex_state = 4}, - [478] = {.lex_state = 146, .external_lex_state = 4}, - [479] = {.lex_state = 146, .external_lex_state = 4}, - [480] = {.lex_state = 146, .external_lex_state = 4}, - [481] = {.lex_state = 146, .external_lex_state = 4}, - [482] = {.lex_state = 146, .external_lex_state = 4}, - [483] = {.lex_state = 146, .external_lex_state = 4}, - [484] = {.lex_state = 146, .external_lex_state = 4}, - [485] = {.lex_state = 146, .external_lex_state = 4}, - [486] = {.lex_state = 146, .external_lex_state = 4}, - [487] = {.lex_state = 146, .external_lex_state = 4}, - [488] = {.lex_state = 146, .external_lex_state = 4}, - [489] = {.lex_state = 146, .external_lex_state = 4}, - [490] = {.lex_state = 146, .external_lex_state = 4}, - [491] = {.lex_state = 146, .external_lex_state = 4}, - [492] = {.lex_state = 146, .external_lex_state = 4}, - [493] = {.lex_state = 237, .external_lex_state = 11}, + [468] = {.lex_state = 147, .external_lex_state = 4}, + [469] = {.lex_state = 147, .external_lex_state = 4}, + [470] = {.lex_state = 147, .external_lex_state = 4}, + [471] = {.lex_state = 147, .external_lex_state = 4}, + [472] = {.lex_state = 147, .external_lex_state = 4}, + [473] = {.lex_state = 147, .external_lex_state = 4}, + [474] = {.lex_state = 147, .external_lex_state = 4}, + [475] = {.lex_state = 147, .external_lex_state = 4}, + [476] = {.lex_state = 147, .external_lex_state = 4}, + [477] = {.lex_state = 147, .external_lex_state = 4}, + [478] = {.lex_state = 147, .external_lex_state = 4}, + [479] = {.lex_state = 147, .external_lex_state = 4}, + [480] = {.lex_state = 147, .external_lex_state = 4}, + [481] = {.lex_state = 147, .external_lex_state = 4}, + [482] = {.lex_state = 147, .external_lex_state = 4}, + [483] = {.lex_state = 147, .external_lex_state = 4}, + [484] = {.lex_state = 147, .external_lex_state = 4}, + [485] = {.lex_state = 147, .external_lex_state = 4}, + [486] = {.lex_state = 147, .external_lex_state = 4}, + [487] = {.lex_state = 147, .external_lex_state = 4}, + [488] = {.lex_state = 147, .external_lex_state = 4}, + [489] = {.lex_state = 147, .external_lex_state = 4}, + [490] = {.lex_state = 147, .external_lex_state = 4}, + [491] = {.lex_state = 147, .external_lex_state = 4}, + [492] = {.lex_state = 147, .external_lex_state = 4}, + [493] = {.lex_state = 147, .external_lex_state = 4}, [494] = {.lex_state = 237, .external_lex_state = 11}, [495] = {.lex_state = 237, .external_lex_state = 11}, [496] = {.lex_state = 427, .external_lex_state = 5}, @@ -22000,7 +22246,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [499] = {.lex_state = 427, .external_lex_state = 5}, [500] = {.lex_state = 427, .external_lex_state = 5}, [501] = {.lex_state = 427, .external_lex_state = 5}, - [502] = {.lex_state = 427, .external_lex_state = 5}, + [502] = {.lex_state = 237, .external_lex_state = 11}, [503] = {.lex_state = 427, .external_lex_state = 5}, [504] = {.lex_state = 427, .external_lex_state = 5}, [505] = {.lex_state = 427, .external_lex_state = 5}, @@ -22020,3555 +22266,3555 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [519] = {.lex_state = 427, .external_lex_state = 5}, [520] = {.lex_state = 427, .external_lex_state = 5}, [521] = {.lex_state = 427, .external_lex_state = 5}, - [522] = {.lex_state = 428, .external_lex_state = 12}, - [523] = {.lex_state = 428, .external_lex_state = 12}, + [522] = {.lex_state = 427, .external_lex_state = 5}, + [523] = {.lex_state = 427, .external_lex_state = 5}, [524] = {.lex_state = 428, .external_lex_state = 12}, [525] = {.lex_state = 428, .external_lex_state = 12}, [526] = {.lex_state = 422, .external_lex_state = 2}, - [527] = {.lex_state = 422, .external_lex_state = 2}, - [528] = {.lex_state = 240, .external_lex_state = 13}, - [529] = {.lex_state = 240, .external_lex_state = 13}, - [530] = {.lex_state = 243, .external_lex_state = 11}, - [531] = {.lex_state = 243, .external_lex_state = 11}, - [532] = {.lex_state = 240, .external_lex_state = 14}, - [533] = {.lex_state = 531, .external_lex_state = 11}, - [534] = {.lex_state = 531, .external_lex_state = 11}, - [535] = {.lex_state = 240, .external_lex_state = 14}, + [527] = {.lex_state = 428, .external_lex_state = 12}, + [528] = {.lex_state = 422, .external_lex_state = 2}, + [529] = {.lex_state = 428, .external_lex_state = 12}, + [530] = {.lex_state = 240, .external_lex_state = 13}, + [531] = {.lex_state = 240, .external_lex_state = 13}, + [532] = {.lex_state = 243, .external_lex_state = 11}, + [533] = {.lex_state = 243, .external_lex_state = 11}, + [534] = {.lex_state = 240, .external_lex_state = 14}, + [535] = {.lex_state = 530, .external_lex_state = 11}, [536] = {.lex_state = 240, .external_lex_state = 14}, - [537] = {.lex_state = 220, .external_lex_state = 15}, - [538] = {.lex_state = 220, .external_lex_state = 15}, - [539] = {.lex_state = 531, .external_lex_state = 11}, - [540] = {.lex_state = 531, .external_lex_state = 11}, - [541] = {.lex_state = 249, .external_lex_state = 16}, - [542] = {.lex_state = 249, .external_lex_state = 16}, - [543] = {.lex_state = 243, .external_lex_state = 17}, - [544] = {.lex_state = 249, .external_lex_state = 16}, - [545] = {.lex_state = 531, .external_lex_state = 11}, - [546] = {.lex_state = 531, .external_lex_state = 11}, - [547] = {.lex_state = 243, .external_lex_state = 17}, - [548] = {.lex_state = 239, .external_lex_state = 18}, - [549] = {.lex_state = 239, .external_lex_state = 18}, - [550] = {.lex_state = 242, .external_lex_state = 9}, - [551] = {.lex_state = 242, .external_lex_state = 9}, - [552] = {.lex_state = 531, .external_lex_state = 11}, - [553] = {.lex_state = 531, .external_lex_state = 11}, - [554] = {.lex_state = 243, .external_lex_state = 17}, - [555] = {.lex_state = 245, .external_lex_state = 19}, - [556] = {.lex_state = 531, .external_lex_state = 17}, - [557] = {.lex_state = 252, .external_lex_state = 20}, - [558] = {.lex_state = 532, .external_lex_state = 9}, - [559] = {.lex_state = 251, .external_lex_state = 9}, - [560] = {.lex_state = 251, .external_lex_state = 9}, - [561] = {.lex_state = 531, .external_lex_state = 17}, - [562] = {.lex_state = 252, .external_lex_state = 20}, - [563] = {.lex_state = 531, .external_lex_state = 17}, - [564] = {.lex_state = 531, .external_lex_state = 17}, - [565] = {.lex_state = 245, .external_lex_state = 19}, - [566] = {.lex_state = 252, .external_lex_state = 20}, - [567] = {.lex_state = 531, .external_lex_state = 17}, - [568] = {.lex_state = 532, .external_lex_state = 9}, - [569] = {.lex_state = 531, .external_lex_state = 17}, - [570] = {.lex_state = 534, .external_lex_state = 20}, - [571] = {.lex_state = 531, .external_lex_state = 17}, - [572] = {.lex_state = 531, .external_lex_state = 17}, - [573] = {.lex_state = 534, .external_lex_state = 20}, - [574] = {.lex_state = 534, .external_lex_state = 20}, - [575] = {.lex_state = 534, .external_lex_state = 20}, - [576] = {.lex_state = 532, .external_lex_state = 9}, - [577] = {.lex_state = 534, .external_lex_state = 20}, - [578] = {.lex_state = 533, .external_lex_state = 19}, - [579] = {.lex_state = 533, .external_lex_state = 19}, - [580] = {.lex_state = 532, .external_lex_state = 9}, - [581] = {.lex_state = 257, .external_lex_state = 19}, - [582] = {.lex_state = 257, .external_lex_state = 19}, - [583] = {.lex_state = 258, .external_lex_state = 16}, - [584] = {.lex_state = 258, .external_lex_state = 16}, - [585] = {.lex_state = 258, .external_lex_state = 16}, - [586] = {.lex_state = 534, .external_lex_state = 20}, - [587] = {.lex_state = 531, .external_lex_state = 17}, - [588] = {.lex_state = 531, .external_lex_state = 17}, - [589] = {.lex_state = 531, .external_lex_state = 17}, - [590] = {.lex_state = 260, .external_lex_state = 16}, - [591] = {.lex_state = 533, .external_lex_state = 19}, - [592] = {.lex_state = 258, .external_lex_state = 16}, - [593] = {.lex_state = 258, .external_lex_state = 16}, - [594] = {.lex_state = 260, .external_lex_state = 16}, - [595] = {.lex_state = 260, .external_lex_state = 16}, - [596] = {.lex_state = 258, .external_lex_state = 21}, - [597] = {.lex_state = 258, .external_lex_state = 21}, - [598] = {.lex_state = 261, .external_lex_state = 20}, - [599] = {.lex_state = 533, .external_lex_state = 19}, - [600] = {.lex_state = 249, .external_lex_state = 21}, - [601] = {.lex_state = 534, .external_lex_state = 20}, - [602] = {.lex_state = 258, .external_lex_state = 21}, - [603] = {.lex_state = 534, .external_lex_state = 20}, + [537] = {.lex_state = 240, .external_lex_state = 14}, + [538] = {.lex_state = 530, .external_lex_state = 11}, + [539] = {.lex_state = 530, .external_lex_state = 11}, + [540] = {.lex_state = 530, .external_lex_state = 11}, + [541] = {.lex_state = 249, .external_lex_state = 15}, + [542] = {.lex_state = 249, .external_lex_state = 15}, + [543] = {.lex_state = 249, .external_lex_state = 15}, + [544] = {.lex_state = 243, .external_lex_state = 16}, + [545] = {.lex_state = 220, .external_lex_state = 17}, + [546] = {.lex_state = 530, .external_lex_state = 11}, + [547] = {.lex_state = 530, .external_lex_state = 11}, + [548] = {.lex_state = 530, .external_lex_state = 11}, + [549] = {.lex_state = 220, .external_lex_state = 17}, + [550] = {.lex_state = 530, .external_lex_state = 11}, + [551] = {.lex_state = 243, .external_lex_state = 16}, + [552] = {.lex_state = 243, .external_lex_state = 16}, + [553] = {.lex_state = 252, .external_lex_state = 18}, + [554] = {.lex_state = 530, .external_lex_state = 16}, + [555] = {.lex_state = 252, .external_lex_state = 18}, + [556] = {.lex_state = 530, .external_lex_state = 16}, + [557] = {.lex_state = 530, .external_lex_state = 16}, + [558] = {.lex_state = 239, .external_lex_state = 19}, + [559] = {.lex_state = 239, .external_lex_state = 19}, + [560] = {.lex_state = 242, .external_lex_state = 9}, + [561] = {.lex_state = 242, .external_lex_state = 9}, + [562] = {.lex_state = 530, .external_lex_state = 16}, + [563] = {.lex_state = 530, .external_lex_state = 16}, + [564] = {.lex_state = 252, .external_lex_state = 18}, + [565] = {.lex_state = 530, .external_lex_state = 16}, + [566] = {.lex_state = 529, .external_lex_state = 9}, + [567] = {.lex_state = 533, .external_lex_state = 18}, + [568] = {.lex_state = 533, .external_lex_state = 18}, + [569] = {.lex_state = 533, .external_lex_state = 18}, + [570] = {.lex_state = 529, .external_lex_state = 9}, + [571] = {.lex_state = 530, .external_lex_state = 16}, + [572] = {.lex_state = 258, .external_lex_state = 15}, + [573] = {.lex_state = 258, .external_lex_state = 15}, + [574] = {.lex_state = 258, .external_lex_state = 15}, + [575] = {.lex_state = 530, .external_lex_state = 16}, + [576] = {.lex_state = 248, .external_lex_state = 9}, + [577] = {.lex_state = 533, .external_lex_state = 18}, + [578] = {.lex_state = 251, .external_lex_state = 20}, + [579] = {.lex_state = 251, .external_lex_state = 20}, + [580] = {.lex_state = 533, .external_lex_state = 18}, + [581] = {.lex_state = 533, .external_lex_state = 18}, + [582] = {.lex_state = 530, .external_lex_state = 16}, + [583] = {.lex_state = 530, .external_lex_state = 16}, + [584] = {.lex_state = 530, .external_lex_state = 16}, + [585] = {.lex_state = 248, .external_lex_state = 9}, + [586] = {.lex_state = 532, .external_lex_state = 20}, + [587] = {.lex_state = 261, .external_lex_state = 18}, + [588] = {.lex_state = 249, .external_lex_state = 21}, + [589] = {.lex_state = 257, .external_lex_state = 20}, + [590] = {.lex_state = 257, .external_lex_state = 20}, + [591] = {.lex_state = 258, .external_lex_state = 15}, + [592] = {.lex_state = 258, .external_lex_state = 21}, + [593] = {.lex_state = 258, .external_lex_state = 21}, + [594] = {.lex_state = 261, .external_lex_state = 18}, + [595] = {.lex_state = 258, .external_lex_state = 21}, + [596] = {.lex_state = 249, .external_lex_state = 21}, + [597] = {.lex_state = 258, .external_lex_state = 15}, + [598] = {.lex_state = 533, .external_lex_state = 18}, + [599] = {.lex_state = 261, .external_lex_state = 18}, + [600] = {.lex_state = 533, .external_lex_state = 18}, + [601] = {.lex_state = 533, .external_lex_state = 18}, + [602] = {.lex_state = 533, .external_lex_state = 18}, + [603] = {.lex_state = 533, .external_lex_state = 18}, [604] = {.lex_state = 249, .external_lex_state = 21}, - [605] = {.lex_state = 549, .external_lex_state = 2}, - [606] = {.lex_state = 534, .external_lex_state = 20}, - [607] = {.lex_state = 249, .external_lex_state = 21}, - [608] = {.lex_state = 534, .external_lex_state = 20}, - [609] = {.lex_state = 260, .external_lex_state = 16}, - [610] = {.lex_state = 261, .external_lex_state = 20}, - [611] = {.lex_state = 243, .external_lex_state = 11}, - [612] = {.lex_state = 534, .external_lex_state = 20}, - [613] = {.lex_state = 243, .external_lex_state = 11}, - [614] = {.lex_state = 261, .external_lex_state = 20}, - [615] = {.lex_state = 264, .external_lex_state = 21}, - [616] = {.lex_state = 252, .external_lex_state = 22}, - [617] = {.lex_state = 464, .external_lex_state = 23}, - [618] = {.lex_state = 460, .external_lex_state = 2}, - [619] = {.lex_state = 264, .external_lex_state = 21}, - [620] = {.lex_state = 264, .external_lex_state = 21}, - [621] = {.lex_state = 460, .external_lex_state = 2}, - [622] = {.lex_state = 258, .external_lex_state = 21}, - [623] = {.lex_state = 258, .external_lex_state = 21}, - [624] = {.lex_state = 423, .external_lex_state = 6}, - [625] = {.lex_state = 536, .external_lex_state = 20}, - [626] = {.lex_state = 261, .external_lex_state = 20}, - [627] = {.lex_state = 261, .external_lex_state = 20}, - [628] = {.lex_state = 460, .external_lex_state = 2}, - [629] = {.lex_state = 261, .external_lex_state = 22}, - [630] = {.lex_state = 423, .external_lex_state = 6}, - [631] = {.lex_state = 549, .external_lex_state = 2}, - [632] = {.lex_state = 261, .external_lex_state = 22}, - [633] = {.lex_state = 261, .external_lex_state = 22}, - [634] = {.lex_state = 464, .external_lex_state = 23}, - [635] = {.lex_state = 536, .external_lex_state = 20}, - [636] = {.lex_state = 263, .external_lex_state = 16}, - [637] = {.lex_state = 263, .external_lex_state = 16}, - [638] = {.lex_state = 263, .external_lex_state = 16}, - [639] = {.lex_state = 263, .external_lex_state = 16}, - [640] = {.lex_state = 536, .external_lex_state = 20}, - [641] = {.lex_state = 263, .external_lex_state = 16}, - [642] = {.lex_state = 263, .external_lex_state = 16}, - [643] = {.lex_state = 536, .external_lex_state = 20}, - [644] = {.lex_state = 536, .external_lex_state = 20}, - [645] = {.lex_state = 266, .external_lex_state = 20}, - [646] = {.lex_state = 266, .external_lex_state = 20}, - [647] = {.lex_state = 266, .external_lex_state = 20}, - [648] = {.lex_state = 266, .external_lex_state = 20}, - [649] = {.lex_state = 460, .external_lex_state = 2}, - [650] = {.lex_state = 460, .external_lex_state = 2}, - [651] = {.lex_state = 536, .external_lex_state = 20}, - [652] = {.lex_state = 252, .external_lex_state = 22}, - [653] = {.lex_state = 549, .external_lex_state = 2}, - [654] = {.lex_state = 460, .external_lex_state = 2}, - [655] = {.lex_state = 460, .external_lex_state = 2}, - [656] = {.lex_state = 252, .external_lex_state = 22}, - [657] = {.lex_state = 460, .external_lex_state = 2}, - [658] = {.lex_state = 269, .external_lex_state = 20}, - [659] = {.lex_state = 536, .external_lex_state = 22}, - [660] = {.lex_state = 536, .external_lex_state = 22}, - [661] = {.lex_state = 536, .external_lex_state = 22}, - [662] = {.lex_state = 269, .external_lex_state = 20}, - [663] = {.lex_state = 269, .external_lex_state = 20}, - [664] = {.lex_state = 426, .external_lex_state = 24}, - [665] = {.lex_state = 264, .external_lex_state = 21}, - [666] = {.lex_state = 264, .external_lex_state = 21}, - [667] = {.lex_state = 536, .external_lex_state = 22}, - [668] = {.lex_state = 534, .external_lex_state = 22}, - [669] = {.lex_state = 536, .external_lex_state = 20}, - [670] = {.lex_state = 536, .external_lex_state = 20}, - [671] = {.lex_state = 534, .external_lex_state = 22}, - [672] = {.lex_state = 270, .external_lex_state = 22}, - [673] = {.lex_state = 270, .external_lex_state = 22}, - [674] = {.lex_state = 270, .external_lex_state = 22}, - [675] = {.lex_state = 261, .external_lex_state = 22}, - [676] = {.lex_state = 261, .external_lex_state = 22}, - [677] = {.lex_state = 426, .external_lex_state = 24}, - [678] = {.lex_state = 534, .external_lex_state = 22}, - [679] = {.lex_state = 426, .external_lex_state = 24}, - [680] = {.lex_state = 537, .external_lex_state = 20}, - [681] = {.lex_state = 537, .external_lex_state = 20}, - [682] = {.lex_state = 537, .external_lex_state = 20}, - [683] = {.lex_state = 275, .external_lex_state = 9}, - [684] = {.lex_state = 275, .external_lex_state = 9}, - [685] = {.lex_state = 269, .external_lex_state = 20}, - [686] = {.lex_state = 536, .external_lex_state = 22}, - [687] = {.lex_state = 536, .external_lex_state = 20}, - [688] = {.lex_state = 536, .external_lex_state = 22}, - [689] = {.lex_state = 277, .external_lex_state = 20}, - [690] = {.lex_state = 277, .external_lex_state = 20}, - [691] = {.lex_state = 277, .external_lex_state = 20}, - [692] = {.lex_state = 277, .external_lex_state = 20}, - [693] = {.lex_state = 426, .external_lex_state = 24}, - [694] = {.lex_state = 277, .external_lex_state = 20}, - [695] = {.lex_state = 277, .external_lex_state = 20}, - [696] = {.lex_state = 536, .external_lex_state = 20}, - [697] = {.lex_state = 534, .external_lex_state = 22}, - [698] = {.lex_state = 536, .external_lex_state = 20}, - [699] = {.lex_state = 426, .external_lex_state = 24}, - [700] = {.lex_state = 536, .external_lex_state = 20}, - [701] = {.lex_state = 536, .external_lex_state = 20}, - [702] = {.lex_state = 426, .external_lex_state = 24}, - [703] = {.lex_state = 534, .external_lex_state = 22}, - [704] = {.lex_state = 426, .external_lex_state = 24}, - [705] = {.lex_state = 534, .external_lex_state = 22}, - [706] = {.lex_state = 243, .external_lex_state = 17}, - [707] = {.lex_state = 243, .external_lex_state = 17}, - [708] = {.lex_state = 243, .external_lex_state = 17}, - [709] = {.lex_state = 537, .external_lex_state = 20}, - [710] = {.lex_state = 539, .external_lex_state = 20}, + [605] = {.lex_state = 532, .external_lex_state = 20}, + [606] = {.lex_state = 243, .external_lex_state = 11}, + [607] = {.lex_state = 529, .external_lex_state = 9}, + [608] = {.lex_state = 529, .external_lex_state = 9}, + [609] = {.lex_state = 243, .external_lex_state = 11}, + [610] = {.lex_state = 460, .external_lex_state = 2}, + [611] = {.lex_state = 258, .external_lex_state = 21}, + [612] = {.lex_state = 258, .external_lex_state = 21}, + [613] = {.lex_state = 464, .external_lex_state = 22}, + [614] = {.lex_state = 260, .external_lex_state = 15}, + [615] = {.lex_state = 535, .external_lex_state = 18}, + [616] = {.lex_state = 252, .external_lex_state = 23}, + [617] = {.lex_state = 535, .external_lex_state = 18}, + [618] = {.lex_state = 261, .external_lex_state = 18}, + [619] = {.lex_state = 535, .external_lex_state = 18}, + [620] = {.lex_state = 261, .external_lex_state = 18}, + [621] = {.lex_state = 261, .external_lex_state = 23}, + [622] = {.lex_state = 260, .external_lex_state = 15}, + [623] = {.lex_state = 261, .external_lex_state = 23}, + [624] = {.lex_state = 460, .external_lex_state = 2}, + [625] = {.lex_state = 267, .external_lex_state = 21}, + [626] = {.lex_state = 535, .external_lex_state = 18}, + [627] = {.lex_state = 260, .external_lex_state = 15}, + [628] = {.lex_state = 261, .external_lex_state = 23}, + [629] = {.lex_state = 252, .external_lex_state = 23}, + [630] = {.lex_state = 460, .external_lex_state = 2}, + [631] = {.lex_state = 460, .external_lex_state = 2}, + [632] = {.lex_state = 267, .external_lex_state = 21}, + [633] = {.lex_state = 460, .external_lex_state = 2}, + [634] = {.lex_state = 548, .external_lex_state = 2}, + [635] = {.lex_state = 532, .external_lex_state = 20}, + [636] = {.lex_state = 535, .external_lex_state = 18}, + [637] = {.lex_state = 460, .external_lex_state = 2}, + [638] = {.lex_state = 460, .external_lex_state = 2}, + [639] = {.lex_state = 267, .external_lex_state = 21}, + [640] = {.lex_state = 460, .external_lex_state = 2}, + [641] = {.lex_state = 260, .external_lex_state = 15}, + [642] = {.lex_state = 532, .external_lex_state = 20}, + [643] = {.lex_state = 252, .external_lex_state = 23}, + [644] = {.lex_state = 464, .external_lex_state = 22}, + [645] = {.lex_state = 535, .external_lex_state = 18}, + [646] = {.lex_state = 533, .external_lex_state = 23}, + [647] = {.lex_state = 535, .external_lex_state = 18}, + [648] = {.lex_state = 263, .external_lex_state = 15}, + [649] = {.lex_state = 263, .external_lex_state = 15}, + [650] = {.lex_state = 263, .external_lex_state = 15}, + [651] = {.lex_state = 263, .external_lex_state = 15}, + [652] = {.lex_state = 263, .external_lex_state = 15}, + [653] = {.lex_state = 263, .external_lex_state = 15}, + [654] = {.lex_state = 266, .external_lex_state = 18}, + [655] = {.lex_state = 266, .external_lex_state = 18}, + [656] = {.lex_state = 533, .external_lex_state = 23}, + [657] = {.lex_state = 266, .external_lex_state = 18}, + [658] = {.lex_state = 266, .external_lex_state = 18}, + [659] = {.lex_state = 426, .external_lex_state = 24}, + [660] = {.lex_state = 426, .external_lex_state = 24}, + [661] = {.lex_state = 423, .external_lex_state = 6}, + [662] = {.lex_state = 426, .external_lex_state = 24}, + [663] = {.lex_state = 533, .external_lex_state = 23}, + [664] = {.lex_state = 535, .external_lex_state = 18}, + [665] = {.lex_state = 535, .external_lex_state = 18}, + [666] = {.lex_state = 426, .external_lex_state = 24}, + [667] = {.lex_state = 533, .external_lex_state = 23}, + [668] = {.lex_state = 426, .external_lex_state = 24}, + [669] = {.lex_state = 426, .external_lex_state = 24}, + [670] = {.lex_state = 243, .external_lex_state = 16}, + [671] = {.lex_state = 533, .external_lex_state = 23}, + [672] = {.lex_state = 548, .external_lex_state = 2}, + [673] = {.lex_state = 535, .external_lex_state = 23}, + [674] = {.lex_state = 533, .external_lex_state = 23}, + [675] = {.lex_state = 535, .external_lex_state = 23}, + [676] = {.lex_state = 548, .external_lex_state = 2}, + [677] = {.lex_state = 535, .external_lex_state = 23}, + [678] = {.lex_state = 535, .external_lex_state = 23}, + [679] = {.lex_state = 535, .external_lex_state = 23}, + [680] = {.lex_state = 267, .external_lex_state = 21}, + [681] = {.lex_state = 267, .external_lex_state = 21}, + [682] = {.lex_state = 270, .external_lex_state = 23}, + [683] = {.lex_state = 270, .external_lex_state = 23}, + [684] = {.lex_state = 270, .external_lex_state = 23}, + [685] = {.lex_state = 426, .external_lex_state = 24}, + [686] = {.lex_state = 261, .external_lex_state = 23}, + [687] = {.lex_state = 261, .external_lex_state = 23}, + [688] = {.lex_state = 423, .external_lex_state = 6}, + [689] = {.lex_state = 535, .external_lex_state = 18}, + [690] = {.lex_state = 535, .external_lex_state = 18}, + [691] = {.lex_state = 535, .external_lex_state = 18}, + [692] = {.lex_state = 535, .external_lex_state = 18}, + [693] = {.lex_state = 243, .external_lex_state = 16}, + [694] = {.lex_state = 243, .external_lex_state = 16}, + [695] = {.lex_state = 535, .external_lex_state = 23}, + [696] = {.lex_state = 269, .external_lex_state = 18}, + [697] = {.lex_state = 535, .external_lex_state = 23}, + [698] = {.lex_state = 535, .external_lex_state = 23}, + [699] = {.lex_state = 535, .external_lex_state = 23}, + [700] = {.lex_state = 272, .external_lex_state = 18}, + [701] = {.lex_state = 535, .external_lex_state = 23}, + [702] = {.lex_state = 273, .external_lex_state = 25}, + [703] = {.lex_state = 273, .external_lex_state = 25}, + [704] = {.lex_state = 269, .external_lex_state = 18}, + [705] = {.lex_state = 426, .external_lex_state = 24}, + [706] = {.lex_state = 273, .external_lex_state = 25}, + [707] = {.lex_state = 273, .external_lex_state = 25}, + [708] = {.lex_state = 273, .external_lex_state = 25}, + [709] = {.lex_state = 273, .external_lex_state = 25}, + [710] = {.lex_state = 273, .external_lex_state = 25}, [711] = {.lex_state = 426, .external_lex_state = 24}, - [712] = {.lex_state = 426, .external_lex_state = 24}, - [713] = {.lex_state = 539, .external_lex_state = 20}, - [714] = {.lex_state = 412, .external_lex_state = 25}, - [715] = {.lex_state = 412, .external_lex_state = 25}, - [716] = {.lex_state = 426, .external_lex_state = 24}, - [717] = {.lex_state = 539, .external_lex_state = 20}, - [718] = {.lex_state = 536, .external_lex_state = 22}, - [719] = {.lex_state = 273, .external_lex_state = 26}, - [720] = {.lex_state = 536, .external_lex_state = 22}, - [721] = {.lex_state = 537, .external_lex_state = 20}, - [722] = {.lex_state = 537, .external_lex_state = 20}, - [723] = {.lex_state = 273, .external_lex_state = 26}, - [724] = {.lex_state = 536, .external_lex_state = 22}, - [725] = {.lex_state = 273, .external_lex_state = 26}, - [726] = {.lex_state = 281, .external_lex_state = 19}, - [727] = {.lex_state = 281, .external_lex_state = 19}, - [728] = {.lex_state = 283, .external_lex_state = 20}, - [729] = {.lex_state = 539, .external_lex_state = 20}, - [730] = {.lex_state = 426, .external_lex_state = 24}, - [731] = {.lex_state = 464, .external_lex_state = 27}, - [732] = {.lex_state = 283, .external_lex_state = 20}, - [733] = {.lex_state = 283, .external_lex_state = 20}, - [734] = {.lex_state = 536, .external_lex_state = 22}, - [735] = {.lex_state = 538, .external_lex_state = 22}, - [736] = {.lex_state = 273, .external_lex_state = 26}, - [737] = {.lex_state = 273, .external_lex_state = 26}, - [738] = {.lex_state = 273, .external_lex_state = 26}, - [739] = {.lex_state = 273, .external_lex_state = 26}, - [740] = {.lex_state = 534, .external_lex_state = 22}, - [741] = {.lex_state = 539, .external_lex_state = 20}, - [742] = {.lex_state = 283, .external_lex_state = 20}, - [743] = {.lex_state = 536, .external_lex_state = 22}, - [744] = {.lex_state = 536, .external_lex_state = 22}, - [745] = {.lex_state = 426, .external_lex_state = 24}, - [746] = {.lex_state = 536, .external_lex_state = 22}, - [747] = {.lex_state = 464, .external_lex_state = 27}, - [748] = {.lex_state = 270, .external_lex_state = 22}, - [749] = {.lex_state = 534, .external_lex_state = 22}, - [750] = {.lex_state = 538, .external_lex_state = 22}, - [751] = {.lex_state = 283, .external_lex_state = 20}, - [752] = {.lex_state = 538, .external_lex_state = 22}, - [753] = {.lex_state = 534, .external_lex_state = 22}, - [754] = {.lex_state = 270, .external_lex_state = 22}, - [755] = {.lex_state = 464, .external_lex_state = 27}, - [756] = {.lex_state = 283, .external_lex_state = 20}, - [757] = {.lex_state = 273, .external_lex_state = 26}, - [758] = {.lex_state = 534, .external_lex_state = 22}, - [759] = {.lex_state = 273, .external_lex_state = 26}, - [760] = {.lex_state = 426, .external_lex_state = 24}, - [761] = {.lex_state = 538, .external_lex_state = 22}, - [762] = {.lex_state = 538, .external_lex_state = 22}, - [763] = {.lex_state = 252, .external_lex_state = 20}, - [764] = {.lex_state = 426, .external_lex_state = 24}, - [765] = {.lex_state = 252, .external_lex_state = 20}, - [766] = {.lex_state = 538, .external_lex_state = 22}, - [767] = {.lex_state = 534, .external_lex_state = 22}, - [768] = {.lex_state = 536, .external_lex_state = 22}, - [769] = {.lex_state = 536, .external_lex_state = 22}, - [770] = {.lex_state = 252, .external_lex_state = 20}, - [771] = {.lex_state = 537, .external_lex_state = 20}, - [772] = {.lex_state = 537, .external_lex_state = 20}, - [773] = {.lex_state = 539, .external_lex_state = 20}, - [774] = {.lex_state = 273, .external_lex_state = 26}, - [775] = {.lex_state = 536, .external_lex_state = 20}, - [776] = {.lex_state = 536, .external_lex_state = 20}, - [777] = {.lex_state = 426, .external_lex_state = 24}, - [778] = {.lex_state = 538, .external_lex_state = 22}, - [779] = {.lex_state = 538, .external_lex_state = 22}, - [780] = {.lex_state = 539, .external_lex_state = 20}, - [781] = {.lex_state = 413, .external_lex_state = 28}, - [782] = {.lex_state = 413, .external_lex_state = 28}, - [783] = {.lex_state = 473, .external_lex_state = 29}, - [784] = {.lex_state = 538, .external_lex_state = 22}, - [785] = {.lex_state = 539, .external_lex_state = 20}, - [786] = {.lex_state = 539, .external_lex_state = 20}, - [787] = {.lex_state = 538, .external_lex_state = 22}, - [788] = {.lex_state = 538, .external_lex_state = 22}, - [789] = {.lex_state = 538, .external_lex_state = 22}, - [790] = {.lex_state = 536, .external_lex_state = 22}, - [791] = {.lex_state = 536, .external_lex_state = 22}, - [792] = {.lex_state = 539, .external_lex_state = 20}, - [793] = {.lex_state = 539, .external_lex_state = 20}, - [794] = {.lex_state = 538, .external_lex_state = 22}, - [795] = {.lex_state = 549, .external_lex_state = 2}, - [796] = {.lex_state = 536, .external_lex_state = 22}, - [797] = {.lex_state = 536, .external_lex_state = 22}, - [798] = {.lex_state = 538, .external_lex_state = 22}, - [799] = {.lex_state = 549, .external_lex_state = 2}, - [800] = {.lex_state = 538, .external_lex_state = 22}, - [801] = {.lex_state = 549, .external_lex_state = 2}, - [802] = {.lex_state = 539, .external_lex_state = 20}, - [803] = {.lex_state = 473, .external_lex_state = 29}, - [804] = {.lex_state = 473, .external_lex_state = 29}, - [805] = {.lex_state = 424, .external_lex_state = 2}, - [806] = {.lex_state = 261, .external_lex_state = 20}, - [807] = {.lex_state = 467, .external_lex_state = 30}, - [808] = {.lex_state = 258, .external_lex_state = 16}, - [809] = {.lex_state = 258, .external_lex_state = 16}, - [810] = {.lex_state = 258, .external_lex_state = 16}, - [811] = {.lex_state = 538, .external_lex_state = 22}, - [812] = {.lex_state = 467, .external_lex_state = 30}, - [813] = {.lex_state = 278, .external_lex_state = 31}, - [814] = {.lex_state = 261, .external_lex_state = 20}, - [815] = {.lex_state = 278, .external_lex_state = 31}, - [816] = {.lex_state = 278, .external_lex_state = 31}, - [817] = {.lex_state = 549, .external_lex_state = 2}, - [818] = {.lex_state = 278, .external_lex_state = 31}, - [819] = {.lex_state = 258, .external_lex_state = 16}, - [820] = {.lex_state = 261, .external_lex_state = 20}, - [821] = {.lex_state = 549, .external_lex_state = 2}, + [712] = {.lex_state = 269, .external_lex_state = 18}, + [713] = {.lex_state = 426, .external_lex_state = 24}, + [714] = {.lex_state = 537, .external_lex_state = 23}, + [715] = {.lex_state = 537, .external_lex_state = 23}, + [716] = {.lex_state = 535, .external_lex_state = 23}, + [717] = {.lex_state = 535, .external_lex_state = 23}, + [718] = {.lex_state = 269, .external_lex_state = 18}, + [719] = {.lex_state = 537, .external_lex_state = 23}, + [720] = {.lex_state = 537, .external_lex_state = 23}, + [721] = {.lex_state = 535, .external_lex_state = 23}, + [722] = {.lex_state = 535, .external_lex_state = 23}, + [723] = {.lex_state = 272, .external_lex_state = 18}, + [724] = {.lex_state = 535, .external_lex_state = 18}, + [725] = {.lex_state = 464, .external_lex_state = 26}, + [726] = {.lex_state = 269, .external_lex_state = 18}, + [727] = {.lex_state = 273, .external_lex_state = 25}, + [728] = {.lex_state = 464, .external_lex_state = 26}, + [729] = {.lex_state = 464, .external_lex_state = 26}, + [730] = {.lex_state = 536, .external_lex_state = 18}, + [731] = {.lex_state = 536, .external_lex_state = 18}, + [732] = {.lex_state = 533, .external_lex_state = 23}, + [733] = {.lex_state = 270, .external_lex_state = 23}, + [734] = {.lex_state = 270, .external_lex_state = 23}, + [735] = {.lex_state = 537, .external_lex_state = 23}, + [736] = {.lex_state = 537, .external_lex_state = 23}, + [737] = {.lex_state = 269, .external_lex_state = 18}, + [738] = {.lex_state = 533, .external_lex_state = 23}, + [739] = {.lex_state = 426, .external_lex_state = 24}, + [740] = {.lex_state = 426, .external_lex_state = 24}, + [741] = {.lex_state = 426, .external_lex_state = 24}, + [742] = {.lex_state = 426, .external_lex_state = 24}, + [743] = {.lex_state = 536, .external_lex_state = 18}, + [744] = {.lex_state = 536, .external_lex_state = 18}, + [745] = {.lex_state = 277, .external_lex_state = 9}, + [746] = {.lex_state = 277, .external_lex_state = 9}, + [747] = {.lex_state = 533, .external_lex_state = 23}, + [748] = {.lex_state = 535, .external_lex_state = 23}, + [749] = {.lex_state = 533, .external_lex_state = 23}, + [750] = {.lex_state = 426, .external_lex_state = 24}, + [751] = {.lex_state = 272, .external_lex_state = 18}, + [752] = {.lex_state = 533, .external_lex_state = 23}, + [753] = {.lex_state = 252, .external_lex_state = 18}, + [754] = {.lex_state = 252, .external_lex_state = 18}, + [755] = {.lex_state = 273, .external_lex_state = 25}, + [756] = {.lex_state = 252, .external_lex_state = 18}, + [757] = {.lex_state = 273, .external_lex_state = 25}, + [758] = {.lex_state = 535, .external_lex_state = 18}, + [759] = {.lex_state = 272, .external_lex_state = 18}, + [760] = {.lex_state = 536, .external_lex_state = 18}, + [761] = {.lex_state = 537, .external_lex_state = 23}, + [762] = {.lex_state = 535, .external_lex_state = 23}, + [763] = {.lex_state = 279, .external_lex_state = 20}, + [764] = {.lex_state = 535, .external_lex_state = 23}, + [765] = {.lex_state = 537, .external_lex_state = 23}, + [766] = {.lex_state = 537, .external_lex_state = 23}, + [767] = {.lex_state = 281, .external_lex_state = 18}, + [768] = {.lex_state = 281, .external_lex_state = 18}, + [769] = {.lex_state = 412, .external_lex_state = 27}, + [770] = {.lex_state = 412, .external_lex_state = 27}, + [771] = {.lex_state = 539, .external_lex_state = 18}, + [772] = {.lex_state = 539, .external_lex_state = 18}, + [773] = {.lex_state = 281, .external_lex_state = 18}, + [774] = {.lex_state = 281, .external_lex_state = 18}, + [775] = {.lex_state = 536, .external_lex_state = 18}, + [776] = {.lex_state = 537, .external_lex_state = 23}, + [777] = {.lex_state = 473, .external_lex_state = 28}, + [778] = {.lex_state = 281, .external_lex_state = 18}, + [779] = {.lex_state = 279, .external_lex_state = 20}, + [780] = {.lex_state = 536, .external_lex_state = 18}, + [781] = {.lex_state = 537, .external_lex_state = 23}, + [782] = {.lex_state = 537, .external_lex_state = 23}, + [783] = {.lex_state = 473, .external_lex_state = 28}, + [784] = {.lex_state = 537, .external_lex_state = 23}, + [785] = {.lex_state = 535, .external_lex_state = 23}, + [786] = {.lex_state = 535, .external_lex_state = 23}, + [787] = {.lex_state = 281, .external_lex_state = 18}, + [788] = {.lex_state = 539, .external_lex_state = 18}, + [789] = {.lex_state = 539, .external_lex_state = 18}, + [790] = {.lex_state = 473, .external_lex_state = 28}, + [791] = {.lex_state = 539, .external_lex_state = 18}, + [792] = {.lex_state = 537, .external_lex_state = 23}, + [793] = {.lex_state = 539, .external_lex_state = 18}, + [794] = {.lex_state = 537, .external_lex_state = 23}, + [795] = {.lex_state = 536, .external_lex_state = 18}, + [796] = {.lex_state = 537, .external_lex_state = 23}, + [797] = {.lex_state = 548, .external_lex_state = 2}, + [798] = {.lex_state = 548, .external_lex_state = 2}, + [799] = {.lex_state = 548, .external_lex_state = 2}, + [800] = {.lex_state = 539, .external_lex_state = 18}, + [801] = {.lex_state = 539, .external_lex_state = 18}, + [802] = {.lex_state = 539, .external_lex_state = 18}, + [803] = {.lex_state = 539, .external_lex_state = 18}, + [804] = {.lex_state = 467, .external_lex_state = 29}, + [805] = {.lex_state = 467, .external_lex_state = 29}, + [806] = {.lex_state = 413, .external_lex_state = 30}, + [807] = {.lex_state = 413, .external_lex_state = 30}, + [808] = {.lex_state = 537, .external_lex_state = 23}, + [809] = {.lex_state = 537, .external_lex_state = 23}, + [810] = {.lex_state = 539, .external_lex_state = 18}, + [811] = {.lex_state = 539, .external_lex_state = 18}, + [812] = {.lex_state = 537, .external_lex_state = 23}, + [813] = {.lex_state = 424, .external_lex_state = 2}, + [814] = {.lex_state = 261, .external_lex_state = 18}, + [815] = {.lex_state = 467, .external_lex_state = 29}, + [816] = {.lex_state = 261, .external_lex_state = 18}, + [817] = {.lex_state = 261, .external_lex_state = 18}, + [818] = {.lex_state = 258, .external_lex_state = 15}, + [819] = {.lex_state = 258, .external_lex_state = 15}, + [820] = {.lex_state = 548, .external_lex_state = 2}, + [821] = {.lex_state = 548, .external_lex_state = 2}, [822] = {.lex_state = 278, .external_lex_state = 31}, [823] = {.lex_state = 278, .external_lex_state = 31}, - [824] = {.lex_state = 278, .external_lex_state = 31}, - [825] = {.lex_state = 538, .external_lex_state = 22}, - [826] = {.lex_state = 467, .external_lex_state = 30}, - [827] = {.lex_state = 538, .external_lex_state = 22}, - [828] = {.lex_state = 549, .external_lex_state = 2}, - [829] = {.lex_state = 538, .external_lex_state = 22}, - [830] = {.lex_state = 252, .external_lex_state = 22}, - [831] = {.lex_state = 467, .external_lex_state = 32}, - [832] = {.lex_state = 278, .external_lex_state = 33}, - [833] = {.lex_state = 278, .external_lex_state = 31}, - [834] = {.lex_state = 261, .external_lex_state = 22}, - [835] = {.lex_state = 261, .external_lex_state = 22}, - [836] = {.lex_state = 278, .external_lex_state = 31}, - [837] = {.lex_state = 414, .external_lex_state = 30}, - [838] = {.lex_state = 278, .external_lex_state = 31}, - [839] = {.lex_state = 278, .external_lex_state = 31}, - [840] = {.lex_state = 278, .external_lex_state = 31}, - [841] = {.lex_state = 414, .external_lex_state = 30}, - [842] = {.lex_state = 278, .external_lex_state = 31}, - [843] = {.lex_state = 278, .external_lex_state = 31}, - [844] = {.lex_state = 261, .external_lex_state = 22}, - [845] = {.lex_state = 414, .external_lex_state = 30}, - [846] = {.lex_state = 261, .external_lex_state = 20}, - [847] = {.lex_state = 414, .external_lex_state = 30}, - [848] = {.lex_state = 278, .external_lex_state = 31}, - [849] = {.lex_state = 278, .external_lex_state = 31}, - [850] = {.lex_state = 278, .external_lex_state = 33}, - [851] = {.lex_state = 278, .external_lex_state = 33}, - [852] = {.lex_state = 278, .external_lex_state = 33}, - [853] = {.lex_state = 278, .external_lex_state = 31}, - [854] = {.lex_state = 278, .external_lex_state = 31}, - [855] = {.lex_state = 278, .external_lex_state = 33}, - [856] = {.lex_state = 280, .external_lex_state = 4}, - [857] = {.lex_state = 280, .external_lex_state = 4}, - [858] = {.lex_state = 280, .external_lex_state = 4}, - [859] = {.lex_state = 280, .external_lex_state = 4}, - [860] = {.lex_state = 278, .external_lex_state = 31}, - [861] = {.lex_state = 261, .external_lex_state = 20}, + [824] = {.lex_state = 258, .external_lex_state = 15}, + [825] = {.lex_state = 467, .external_lex_state = 29}, + [826] = {.lex_state = 278, .external_lex_state = 31}, + [827] = {.lex_state = 278, .external_lex_state = 31}, + [828] = {.lex_state = 278, .external_lex_state = 31}, + [829] = {.lex_state = 278, .external_lex_state = 31}, + [830] = {.lex_state = 258, .external_lex_state = 15}, + [831] = {.lex_state = 548, .external_lex_state = 2}, + [832] = {.lex_state = 467, .external_lex_state = 32}, + [833] = {.lex_state = 463, .external_lex_state = 28}, + [834] = {.lex_state = 261, .external_lex_state = 18}, + [835] = {.lex_state = 261, .external_lex_state = 23}, + [836] = {.lex_state = 463, .external_lex_state = 28}, + [837] = {.lex_state = 463, .external_lex_state = 28}, + [838] = {.lex_state = 261, .external_lex_state = 23}, + [839] = {.lex_state = 252, .external_lex_state = 23}, + [840] = {.lex_state = 261, .external_lex_state = 23}, + [841] = {.lex_state = 467, .external_lex_state = 29}, + [842] = {.lex_state = 252, .external_lex_state = 23}, + [843] = {.lex_state = 467, .external_lex_state = 32}, + [844] = {.lex_state = 467, .external_lex_state = 32}, + [845] = {.lex_state = 278, .external_lex_state = 31}, + [846] = {.lex_state = 252, .external_lex_state = 23}, + [847] = {.lex_state = 261, .external_lex_state = 18}, + [848] = {.lex_state = 278, .external_lex_state = 33}, + [849] = {.lex_state = 261, .external_lex_state = 18}, + [850] = {.lex_state = 280, .external_lex_state = 4}, + [851] = {.lex_state = 261, .external_lex_state = 18}, + [852] = {.lex_state = 473, .external_lex_state = 34}, + [853] = {.lex_state = 461, .external_lex_state = 35}, + [854] = {.lex_state = 472, .external_lex_state = 32}, + [855] = {.lex_state = 461, .external_lex_state = 35}, + [856] = {.lex_state = 261, .external_lex_state = 18}, + [857] = {.lex_state = 270, .external_lex_state = 23}, + [858] = {.lex_state = 278, .external_lex_state = 31}, + [859] = {.lex_state = 278, .external_lex_state = 31}, + [860] = {.lex_state = 270, .external_lex_state = 23}, + [861] = {.lex_state = 278, .external_lex_state = 31}, [862] = {.lex_state = 278, .external_lex_state = 31}, [863] = {.lex_state = 278, .external_lex_state = 31}, - [864] = {.lex_state = 278, .external_lex_state = 31}, + [864] = {.lex_state = 472, .external_lex_state = 32}, [865] = {.lex_state = 278, .external_lex_state = 31}, - [866] = {.lex_state = 280, .external_lex_state = 4}, - [867] = {.lex_state = 278, .external_lex_state = 33}, - [868] = {.lex_state = 278, .external_lex_state = 33}, - [869] = {.lex_state = 278, .external_lex_state = 31}, + [866] = {.lex_state = 278, .external_lex_state = 31}, + [867] = {.lex_state = 278, .external_lex_state = 31}, + [868] = {.lex_state = 414, .external_lex_state = 29}, + [869] = {.lex_state = 414, .external_lex_state = 29}, [870] = {.lex_state = 278, .external_lex_state = 31}, [871] = {.lex_state = 278, .external_lex_state = 31}, - [872] = {.lex_state = 280, .external_lex_state = 4}, + [872] = {.lex_state = 278, .external_lex_state = 33}, [873] = {.lex_state = 278, .external_lex_state = 33}, - [874] = {.lex_state = 261, .external_lex_state = 20}, - [875] = {.lex_state = 285, .external_lex_state = 20}, - [876] = {.lex_state = 285, .external_lex_state = 20}, - [877] = {.lex_state = 252, .external_lex_state = 22}, - [878] = {.lex_state = 278, .external_lex_state = 33}, - [879] = {.lex_state = 278, .external_lex_state = 33}, - [880] = {.lex_state = 261, .external_lex_state = 20}, - [881] = {.lex_state = 463, .external_lex_state = 29}, - [882] = {.lex_state = 463, .external_lex_state = 29}, - [883] = {.lex_state = 463, .external_lex_state = 29}, - [884] = {.lex_state = 278, .external_lex_state = 33}, - [885] = {.lex_state = 252, .external_lex_state = 22}, - [886] = {.lex_state = 278, .external_lex_state = 33}, - [887] = {.lex_state = 467, .external_lex_state = 32}, - [888] = {.lex_state = 467, .external_lex_state = 32}, - [889] = {.lex_state = 285, .external_lex_state = 20}, - [890] = {.lex_state = 285, .external_lex_state = 20}, - [891] = {.lex_state = 467, .external_lex_state = 30}, - [892] = {.lex_state = 467, .external_lex_state = 30}, - [893] = {.lex_state = 261, .external_lex_state = 20}, - [894] = {.lex_state = 261, .external_lex_state = 20}, - [895] = {.lex_state = 280, .external_lex_state = 4}, - [896] = {.lex_state = 540, .external_lex_state = 4}, - [897] = {.lex_state = 278, .external_lex_state = 33}, - [898] = {.lex_state = 280, .external_lex_state = 34}, + [874] = {.lex_state = 473, .external_lex_state = 34}, + [875] = {.lex_state = 278, .external_lex_state = 31}, + [876] = {.lex_state = 278, .external_lex_state = 31}, + [877] = {.lex_state = 278, .external_lex_state = 33}, + [878] = {.lex_state = 280, .external_lex_state = 4}, + [879] = {.lex_state = 280, .external_lex_state = 4}, + [880] = {.lex_state = 280, .external_lex_state = 4}, + [881] = {.lex_state = 278, .external_lex_state = 31}, + [882] = {.lex_state = 278, .external_lex_state = 31}, + [883] = {.lex_state = 278, .external_lex_state = 31}, + [884] = {.lex_state = 278, .external_lex_state = 31}, + [885] = {.lex_state = 278, .external_lex_state = 31}, + [886] = {.lex_state = 280, .external_lex_state = 4}, + [887] = {.lex_state = 278, .external_lex_state = 33}, + [888] = {.lex_state = 473, .external_lex_state = 34}, + [889] = {.lex_state = 278, .external_lex_state = 31}, + [890] = {.lex_state = 278, .external_lex_state = 31}, + [891] = {.lex_state = 278, .external_lex_state = 31}, + [892] = {.lex_state = 472, .external_lex_state = 32}, + [893] = {.lex_state = 270, .external_lex_state = 23}, + [894] = {.lex_state = 461, .external_lex_state = 35}, + [895] = {.lex_state = 461, .external_lex_state = 35}, + [896] = {.lex_state = 280, .external_lex_state = 4}, + [897] = {.lex_state = 463, .external_lex_state = 28}, + [898] = {.lex_state = 463, .external_lex_state = 28}, [899] = {.lex_state = 278, .external_lex_state = 33}, - [900] = {.lex_state = 278, .external_lex_state = 33}, - [901] = {.lex_state = 280, .external_lex_state = 34}, - [902] = {.lex_state = 280, .external_lex_state = 4}, - [903] = {.lex_state = 280, .external_lex_state = 4}, - [904] = {.lex_state = 280, .external_lex_state = 4}, + [900] = {.lex_state = 467, .external_lex_state = 32}, + [901] = {.lex_state = 467, .external_lex_state = 32}, + [902] = {.lex_state = 278, .external_lex_state = 33}, + [903] = {.lex_state = 461, .external_lex_state = 35}, + [904] = {.lex_state = 285, .external_lex_state = 18}, [905] = {.lex_state = 280, .external_lex_state = 4}, - [906] = {.lex_state = 280, .external_lex_state = 4}, - [907] = {.lex_state = 278, .external_lex_state = 33}, - [908] = {.lex_state = 278, .external_lex_state = 33}, - [909] = {.lex_state = 280, .external_lex_state = 4}, - [910] = {.lex_state = 540, .external_lex_state = 4}, - [911] = {.lex_state = 280, .external_lex_state = 4}, - [912] = {.lex_state = 540, .external_lex_state = 4}, - [913] = {.lex_state = 536, .external_lex_state = 20}, - [914] = {.lex_state = 280, .external_lex_state = 34}, + [906] = {.lex_state = 285, .external_lex_state = 18}, + [907] = {.lex_state = 461, .external_lex_state = 35}, + [908] = {.lex_state = 414, .external_lex_state = 29}, + [909] = {.lex_state = 414, .external_lex_state = 29}, + [910] = {.lex_state = 278, .external_lex_state = 33}, + [911] = {.lex_state = 285, .external_lex_state = 18}, + [912] = {.lex_state = 261, .external_lex_state = 18}, + [913] = {.lex_state = 278, .external_lex_state = 33}, + [914] = {.lex_state = 461, .external_lex_state = 35}, [915] = {.lex_state = 278, .external_lex_state = 33}, [916] = {.lex_state = 278, .external_lex_state = 33}, - [917] = {.lex_state = 280, .external_lex_state = 34}, - [918] = {.lex_state = 280, .external_lex_state = 34}, - [919] = {.lex_state = 280, .external_lex_state = 34}, - [920] = {.lex_state = 280, .external_lex_state = 4}, - [921] = {.lex_state = 280, .external_lex_state = 4}, - [922] = {.lex_state = 415, .external_lex_state = 29}, - [923] = {.lex_state = 415, .external_lex_state = 29}, - [924] = {.lex_state = 280, .external_lex_state = 4}, - [925] = {.lex_state = 280, .external_lex_state = 4}, - [926] = {.lex_state = 278, .external_lex_state = 33}, - [927] = {.lex_state = 278, .external_lex_state = 33}, - [928] = {.lex_state = 278, .external_lex_state = 33}, + [917] = {.lex_state = 463, .external_lex_state = 34}, + [918] = {.lex_state = 463, .external_lex_state = 34}, + [919] = {.lex_state = 261, .external_lex_state = 23}, + [920] = {.lex_state = 261, .external_lex_state = 23}, + [921] = {.lex_state = 463, .external_lex_state = 34}, + [922] = {.lex_state = 285, .external_lex_state = 18}, + [923] = {.lex_state = 278, .external_lex_state = 33}, + [924] = {.lex_state = 461, .external_lex_state = 35}, + [925] = {.lex_state = 538, .external_lex_state = 4}, + [926] = {.lex_state = 538, .external_lex_state = 4}, + [927] = {.lex_state = 287, .external_lex_state = 18}, + [928] = {.lex_state = 538, .external_lex_state = 4}, [929] = {.lex_state = 278, .external_lex_state = 33}, - [930] = {.lex_state = 278, .external_lex_state = 33}, - [931] = {.lex_state = 287, .external_lex_state = 20}, - [932] = {.lex_state = 287, .external_lex_state = 20}, - [933] = {.lex_state = 278, .external_lex_state = 33}, - [934] = {.lex_state = 278, .external_lex_state = 33}, - [935] = {.lex_state = 278, .external_lex_state = 33}, - [936] = {.lex_state = 287, .external_lex_state = 20}, - [937] = {.lex_state = 287, .external_lex_state = 20}, - [938] = {.lex_state = 280, .external_lex_state = 4}, - [939] = {.lex_state = 280, .external_lex_state = 4}, - [940] = {.lex_state = 280, .external_lex_state = 4}, - [941] = {.lex_state = 280, .external_lex_state = 4}, - [942] = {.lex_state = 280, .external_lex_state = 4}, - [943] = {.lex_state = 280, .external_lex_state = 4}, - [944] = {.lex_state = 280, .external_lex_state = 4}, - [945] = {.lex_state = 280, .external_lex_state = 4}, - [946] = {.lex_state = 287, .external_lex_state = 20}, - [947] = {.lex_state = 287, .external_lex_state = 20}, - [948] = {.lex_state = 540, .external_lex_state = 4}, - [949] = {.lex_state = 473, .external_lex_state = 35}, - [950] = {.lex_state = 461, .external_lex_state = 36}, - [951] = {.lex_state = 536, .external_lex_state = 20}, - [952] = {.lex_state = 536, .external_lex_state = 20}, - [953] = {.lex_state = 473, .external_lex_state = 35}, - [954] = {.lex_state = 540, .external_lex_state = 4}, - [955] = {.lex_state = 536, .external_lex_state = 20}, - [956] = {.lex_state = 278, .external_lex_state = 33}, - [957] = {.lex_state = 473, .external_lex_state = 35}, + [930] = {.lex_state = 280, .external_lex_state = 4}, + [931] = {.lex_state = 538, .external_lex_state = 4}, + [932] = {.lex_state = 280, .external_lex_state = 4}, + [933] = {.lex_state = 535, .external_lex_state = 18}, + [934] = {.lex_state = 280, .external_lex_state = 4}, + [935] = {.lex_state = 535, .external_lex_state = 18}, + [936] = {.lex_state = 280, .external_lex_state = 4}, + [937] = {.lex_state = 280, .external_lex_state = 4}, + [938] = {.lex_state = 538, .external_lex_state = 4}, + [939] = {.lex_state = 538, .external_lex_state = 4}, + [940] = {.lex_state = 240, .external_lex_state = 13}, + [941] = {.lex_state = 535, .external_lex_state = 18}, + [942] = {.lex_state = 538, .external_lex_state = 4}, + [943] = {.lex_state = 535, .external_lex_state = 18}, + [944] = {.lex_state = 538, .external_lex_state = 4}, + [945] = {.lex_state = 538, .external_lex_state = 4}, + [946] = {.lex_state = 287, .external_lex_state = 18}, + [947] = {.lex_state = 280, .external_lex_state = 36}, + [948] = {.lex_state = 280, .external_lex_state = 36}, + [949] = {.lex_state = 280, .external_lex_state = 36}, + [950] = {.lex_state = 538, .external_lex_state = 4}, + [951] = {.lex_state = 280, .external_lex_state = 36}, + [952] = {.lex_state = 280, .external_lex_state = 36}, + [953] = {.lex_state = 280, .external_lex_state = 36}, + [954] = {.lex_state = 535, .external_lex_state = 18}, + [955] = {.lex_state = 287, .external_lex_state = 18}, + [956] = {.lex_state = 538, .external_lex_state = 4}, + [957] = {.lex_state = 280, .external_lex_state = 36}, [958] = {.lex_state = 472, .external_lex_state = 32}, [959] = {.lex_state = 472, .external_lex_state = 32}, - [960] = {.lex_state = 467, .external_lex_state = 32}, - [961] = {.lex_state = 467, .external_lex_state = 32}, - [962] = {.lex_state = 270, .external_lex_state = 22}, - [963] = {.lex_state = 270, .external_lex_state = 22}, - [964] = {.lex_state = 270, .external_lex_state = 22}, - [965] = {.lex_state = 472, .external_lex_state = 32}, - [966] = {.lex_state = 540, .external_lex_state = 4}, - [967] = {.lex_state = 540, .external_lex_state = 4}, - [968] = {.lex_state = 432, .external_lex_state = 37}, - [969] = {.lex_state = 432, .external_lex_state = 37}, - [970] = {.lex_state = 463, .external_lex_state = 29}, - [971] = {.lex_state = 463, .external_lex_state = 29}, - [972] = {.lex_state = 461, .external_lex_state = 36}, - [973] = {.lex_state = 540, .external_lex_state = 4}, - [974] = {.lex_state = 463, .external_lex_state = 35}, - [975] = {.lex_state = 463, .external_lex_state = 35}, - [976] = {.lex_state = 463, .external_lex_state = 35}, - [977] = {.lex_state = 461, .external_lex_state = 36}, - [978] = {.lex_state = 240, .external_lex_state = 13}, - [979] = {.lex_state = 540, .external_lex_state = 4}, - [980] = {.lex_state = 540, .external_lex_state = 4}, - [981] = {.lex_state = 540, .external_lex_state = 4}, - [982] = {.lex_state = 540, .external_lex_state = 4}, - [983] = {.lex_state = 536, .external_lex_state = 20}, - [984] = {.lex_state = 461, .external_lex_state = 36}, - [985] = {.lex_state = 540, .external_lex_state = 4}, - [986] = {.lex_state = 536, .external_lex_state = 20}, - [987] = {.lex_state = 280, .external_lex_state = 34}, - [988] = {.lex_state = 280, .external_lex_state = 34}, - [989] = {.lex_state = 536, .external_lex_state = 20}, - [990] = {.lex_state = 280, .external_lex_state = 34}, - [991] = {.lex_state = 280, .external_lex_state = 34}, - [992] = {.lex_state = 461, .external_lex_state = 36}, - [993] = {.lex_state = 280, .external_lex_state = 34}, - [994] = {.lex_state = 280, .external_lex_state = 34}, - [995] = {.lex_state = 415, .external_lex_state = 29}, - [996] = {.lex_state = 415, .external_lex_state = 29}, - [997] = {.lex_state = 240, .external_lex_state = 13}, - [998] = {.lex_state = 416, .external_lex_state = 30}, - [999] = {.lex_state = 416, .external_lex_state = 30}, - [1000] = {.lex_state = 278, .external_lex_state = 33}, - [1001] = {.lex_state = 461, .external_lex_state = 36}, - [1002] = {.lex_state = 540, .external_lex_state = 4}, - [1003] = {.lex_state = 536, .external_lex_state = 20}, - [1004] = {.lex_state = 461, .external_lex_state = 36}, - [1005] = {.lex_state = 278, .external_lex_state = 33}, - [1006] = {.lex_state = 278, .external_lex_state = 33}, - [1007] = {.lex_state = 261, .external_lex_state = 22}, - [1008] = {.lex_state = 261, .external_lex_state = 22}, - [1009] = {.lex_state = 461, .external_lex_state = 36}, - [1010] = {.lex_state = 540, .external_lex_state = 4}, - [1011] = {.lex_state = 540, .external_lex_state = 34}, - [1012] = {.lex_state = 280, .external_lex_state = 34}, - [1013] = {.lex_state = 280, .external_lex_state = 34}, - [1014] = {.lex_state = 280, .external_lex_state = 34}, - [1015] = {.lex_state = 280, .external_lex_state = 34}, - [1016] = {.lex_state = 280, .external_lex_state = 34}, - [1017] = {.lex_state = 280, .external_lex_state = 34}, - [1018] = {.lex_state = 280, .external_lex_state = 34}, - [1019] = {.lex_state = 430, .external_lex_state = 38}, - [1020] = {.lex_state = 430, .external_lex_state = 38}, - [1021] = {.lex_state = 280, .external_lex_state = 34}, - [1022] = {.lex_state = 280, .external_lex_state = 34}, - [1023] = {.lex_state = 280, .external_lex_state = 34}, - [1024] = {.lex_state = 540, .external_lex_state = 34}, - [1025] = {.lex_state = 536, .external_lex_state = 20}, - [1026] = {.lex_state = 280, .external_lex_state = 34}, - [1027] = {.lex_state = 280, .external_lex_state = 34}, - [1028] = {.lex_state = 540, .external_lex_state = 34}, - [1029] = {.lex_state = 540, .external_lex_state = 34}, - [1030] = {.lex_state = 417, .external_lex_state = 29}, - [1031] = {.lex_state = 417, .external_lex_state = 29}, - [1032] = {.lex_state = 536, .external_lex_state = 20}, - [1033] = {.lex_state = 280, .external_lex_state = 34}, - [1034] = {.lex_state = 536, .external_lex_state = 20}, - [1035] = {.lex_state = 536, .external_lex_state = 20}, - [1036] = {.lex_state = 536, .external_lex_state = 20}, - [1037] = {.lex_state = 540, .external_lex_state = 34}, - [1038] = {.lex_state = 540, .external_lex_state = 34}, - [1039] = {.lex_state = 540, .external_lex_state = 34}, - [1040] = {.lex_state = 540, .external_lex_state = 34}, - [1041] = {.lex_state = 433, .external_lex_state = 38}, - [1042] = {.lex_state = 433, .external_lex_state = 38}, - [1043] = {.lex_state = 472, .external_lex_state = 32}, - [1044] = {.lex_state = 472, .external_lex_state = 32}, - [1045] = {.lex_state = 540, .external_lex_state = 34}, - [1046] = {.lex_state = 540, .external_lex_state = 34}, - [1047] = {.lex_state = 536, .external_lex_state = 20}, - [1048] = {.lex_state = 540, .external_lex_state = 4}, - [1049] = {.lex_state = 540, .external_lex_state = 4}, - [1050] = {.lex_state = 540, .external_lex_state = 34}, - [1051] = {.lex_state = 280, .external_lex_state = 34}, - [1052] = {.lex_state = 540, .external_lex_state = 34}, - [1053] = {.lex_state = 284, .external_lex_state = 39}, + [960] = {.lex_state = 280, .external_lex_state = 36}, + [961] = {.lex_state = 415, .external_lex_state = 28}, + [962] = {.lex_state = 415, .external_lex_state = 28}, + [963] = {.lex_state = 240, .external_lex_state = 13}, + [964] = {.lex_state = 416, .external_lex_state = 29}, + [965] = {.lex_state = 416, .external_lex_state = 29}, + [966] = {.lex_state = 278, .external_lex_state = 33}, + [967] = {.lex_state = 278, .external_lex_state = 33}, + [968] = {.lex_state = 278, .external_lex_state = 33}, + [969] = {.lex_state = 280, .external_lex_state = 4}, + [970] = {.lex_state = 278, .external_lex_state = 33}, + [971] = {.lex_state = 278, .external_lex_state = 33}, + [972] = {.lex_state = 278, .external_lex_state = 33}, + [973] = {.lex_state = 280, .external_lex_state = 4}, + [974] = {.lex_state = 278, .external_lex_state = 33}, + [975] = {.lex_state = 278, .external_lex_state = 33}, + [976] = {.lex_state = 278, .external_lex_state = 33}, + [977] = {.lex_state = 535, .external_lex_state = 18}, + [978] = {.lex_state = 280, .external_lex_state = 4}, + [979] = {.lex_state = 280, .external_lex_state = 4}, + [980] = {.lex_state = 538, .external_lex_state = 4}, + [981] = {.lex_state = 280, .external_lex_state = 4}, + [982] = {.lex_state = 535, .external_lex_state = 18}, + [983] = {.lex_state = 280, .external_lex_state = 4}, + [984] = {.lex_state = 280, .external_lex_state = 4}, + [985] = {.lex_state = 278, .external_lex_state = 33}, + [986] = {.lex_state = 278, .external_lex_state = 33}, + [987] = {.lex_state = 280, .external_lex_state = 4}, + [988] = {.lex_state = 280, .external_lex_state = 4}, + [989] = {.lex_state = 287, .external_lex_state = 18}, + [990] = {.lex_state = 280, .external_lex_state = 4}, + [991] = {.lex_state = 280, .external_lex_state = 4}, + [992] = {.lex_state = 432, .external_lex_state = 37}, + [993] = {.lex_state = 432, .external_lex_state = 37}, + [994] = {.lex_state = 280, .external_lex_state = 36}, + [995] = {.lex_state = 278, .external_lex_state = 33}, + [996] = {.lex_state = 278, .external_lex_state = 33}, + [997] = {.lex_state = 280, .external_lex_state = 36}, + [998] = {.lex_state = 280, .external_lex_state = 36}, + [999] = {.lex_state = 280, .external_lex_state = 36}, + [1000] = {.lex_state = 280, .external_lex_state = 4}, + [1001] = {.lex_state = 280, .external_lex_state = 4}, + [1002] = {.lex_state = 415, .external_lex_state = 28}, + [1003] = {.lex_state = 415, .external_lex_state = 28}, + [1004] = {.lex_state = 280, .external_lex_state = 4}, + [1005] = {.lex_state = 535, .external_lex_state = 18}, + [1006] = {.lex_state = 280, .external_lex_state = 4}, + [1007] = {.lex_state = 278, .external_lex_state = 33}, + [1008] = {.lex_state = 278, .external_lex_state = 33}, + [1009] = {.lex_state = 278, .external_lex_state = 33}, + [1010] = {.lex_state = 278, .external_lex_state = 33}, + [1011] = {.lex_state = 469, .external_lex_state = 34}, + [1012] = {.lex_state = 278, .external_lex_state = 33}, + [1013] = {.lex_state = 469, .external_lex_state = 34}, + [1014] = {.lex_state = 469, .external_lex_state = 34}, + [1015] = {.lex_state = 287, .external_lex_state = 18}, + [1016] = {.lex_state = 287, .external_lex_state = 18}, + [1017] = {.lex_state = 463, .external_lex_state = 34}, + [1018] = {.lex_state = 463, .external_lex_state = 34}, + [1019] = {.lex_state = 270, .external_lex_state = 23}, + [1020] = {.lex_state = 270, .external_lex_state = 23}, + [1021] = {.lex_state = 278, .external_lex_state = 33}, + [1022] = {.lex_state = 538, .external_lex_state = 4}, + [1023] = {.lex_state = 538, .external_lex_state = 4}, + [1024] = {.lex_state = 538, .external_lex_state = 4}, + [1025] = {.lex_state = 433, .external_lex_state = 38}, + [1026] = {.lex_state = 243, .external_lex_state = 11}, + [1027] = {.lex_state = 284, .external_lex_state = 39}, + [1028] = {.lex_state = 538, .external_lex_state = 36}, + [1029] = {.lex_state = 280, .external_lex_state = 36}, + [1030] = {.lex_state = 538, .external_lex_state = 36}, + [1031] = {.lex_state = 538, .external_lex_state = 36}, + [1032] = {.lex_state = 538, .external_lex_state = 36}, + [1033] = {.lex_state = 535, .external_lex_state = 18}, + [1034] = {.lex_state = 538, .external_lex_state = 4}, + [1035] = {.lex_state = 538, .external_lex_state = 4}, + [1036] = {.lex_state = 538, .external_lex_state = 4}, + [1037] = {.lex_state = 538, .external_lex_state = 4}, + [1038] = {.lex_state = 538, .external_lex_state = 36}, + [1039] = {.lex_state = 538, .external_lex_state = 36}, + [1040] = {.lex_state = 240, .external_lex_state = 13}, + [1041] = {.lex_state = 538, .external_lex_state = 4}, + [1042] = {.lex_state = 538, .external_lex_state = 36}, + [1043] = {.lex_state = 538, .external_lex_state = 4}, + [1044] = {.lex_state = 284, .external_lex_state = 39}, + [1045] = {.lex_state = 284, .external_lex_state = 39}, + [1046] = {.lex_state = 284, .external_lex_state = 39}, + [1047] = {.lex_state = 280, .external_lex_state = 36}, + [1048] = {.lex_state = 280, .external_lex_state = 36}, + [1049] = {.lex_state = 286, .external_lex_state = 39}, + [1050] = {.lex_state = 286, .external_lex_state = 39}, + [1051] = {.lex_state = 286, .external_lex_state = 39}, + [1052] = {.lex_state = 284, .external_lex_state = 39}, + [1053] = {.lex_state = 280, .external_lex_state = 36}, [1054] = {.lex_state = 284, .external_lex_state = 39}, - [1055] = {.lex_state = 280, .external_lex_state = 34}, - [1056] = {.lex_state = 540, .external_lex_state = 4}, - [1057] = {.lex_state = 540, .external_lex_state = 4}, - [1058] = {.lex_state = 540, .external_lex_state = 4}, - [1059] = {.lex_state = 286, .external_lex_state = 39}, - [1060] = {.lex_state = 286, .external_lex_state = 39}, - [1061] = {.lex_state = 540, .external_lex_state = 4}, - [1062] = {.lex_state = 284, .external_lex_state = 39}, - [1063] = {.lex_state = 540, .external_lex_state = 4}, - [1064] = {.lex_state = 284, .external_lex_state = 39}, - [1065] = {.lex_state = 429, .external_lex_state = 38}, - [1066] = {.lex_state = 429, .external_lex_state = 38}, - [1067] = {.lex_state = 540, .external_lex_state = 34}, - [1068] = {.lex_state = 469, .external_lex_state = 35}, - [1069] = {.lex_state = 540, .external_lex_state = 34}, - [1070] = {.lex_state = 469, .external_lex_state = 35}, - [1071] = {.lex_state = 540, .external_lex_state = 34}, - [1072] = {.lex_state = 469, .external_lex_state = 35}, - [1073] = {.lex_state = 240, .external_lex_state = 13}, - [1074] = {.lex_state = 463, .external_lex_state = 35}, - [1075] = {.lex_state = 540, .external_lex_state = 34}, - [1076] = {.lex_state = 463, .external_lex_state = 35}, - [1077] = {.lex_state = 284, .external_lex_state = 39}, - [1078] = {.lex_state = 284, .external_lex_state = 39}, - [1079] = {.lex_state = 284, .external_lex_state = 39}, - [1080] = {.lex_state = 284, .external_lex_state = 39}, - [1081] = {.lex_state = 284, .external_lex_state = 39}, - [1082] = {.lex_state = 284, .external_lex_state = 39}, - [1083] = {.lex_state = 540, .external_lex_state = 4}, - [1084] = {.lex_state = 286, .external_lex_state = 39}, - [1085] = {.lex_state = 286, .external_lex_state = 39}, - [1086] = {.lex_state = 540, .external_lex_state = 4}, - [1087] = {.lex_state = 540, .external_lex_state = 4}, - [1088] = {.lex_state = 240, .external_lex_state = 14}, - [1089] = {.lex_state = 540, .external_lex_state = 4}, - [1090] = {.lex_state = 540, .external_lex_state = 4}, - [1091] = {.lex_state = 540, .external_lex_state = 4}, - [1092] = {.lex_state = 540, .external_lex_state = 4}, - [1093] = {.lex_state = 240, .external_lex_state = 14}, - [1094] = {.lex_state = 540, .external_lex_state = 34}, - [1095] = {.lex_state = 540, .external_lex_state = 4}, - [1096] = {.lex_state = 540, .external_lex_state = 4}, - [1097] = {.lex_state = 240, .external_lex_state = 14}, - [1098] = {.lex_state = 540, .external_lex_state = 4}, - [1099] = {.lex_state = 540, .external_lex_state = 4}, - [1100] = {.lex_state = 540, .external_lex_state = 4}, - [1101] = {.lex_state = 540, .external_lex_state = 4}, - [1102] = {.lex_state = 540, .external_lex_state = 4}, - [1103] = {.lex_state = 540, .external_lex_state = 34}, - [1104] = {.lex_state = 540, .external_lex_state = 34}, - [1105] = {.lex_state = 540, .external_lex_state = 4}, - [1106] = {.lex_state = 540, .external_lex_state = 4}, - [1107] = {.lex_state = 540, .external_lex_state = 4}, - [1108] = {.lex_state = 540, .external_lex_state = 4}, - [1109] = {.lex_state = 540, .external_lex_state = 4}, - [1110] = {.lex_state = 540, .external_lex_state = 4}, - [1111] = {.lex_state = 240, .external_lex_state = 14}, - [1112] = {.lex_state = 540, .external_lex_state = 34}, - [1113] = {.lex_state = 540, .external_lex_state = 4}, - [1114] = {.lex_state = 540, .external_lex_state = 4}, - [1115] = {.lex_state = 280, .external_lex_state = 34}, - [1116] = {.lex_state = 280, .external_lex_state = 34}, - [1117] = {.lex_state = 540, .external_lex_state = 4}, - [1118] = {.lex_state = 536, .external_lex_state = 20}, - [1119] = {.lex_state = 432, .external_lex_state = 40}, - [1120] = {.lex_state = 432, .external_lex_state = 40}, - [1121] = {.lex_state = 540, .external_lex_state = 4}, - [1122] = {.lex_state = 540, .external_lex_state = 4}, - [1123] = {.lex_state = 417, .external_lex_state = 29}, - [1124] = {.lex_state = 417, .external_lex_state = 29}, - [1125] = {.lex_state = 417, .external_lex_state = 29}, - [1126] = {.lex_state = 417, .external_lex_state = 29}, - [1127] = {.lex_state = 243, .external_lex_state = 11}, - [1128] = {.lex_state = 540, .external_lex_state = 4}, - [1129] = {.lex_state = 540, .external_lex_state = 4}, - [1130] = {.lex_state = 431, .external_lex_state = 38}, - [1131] = {.lex_state = 431, .external_lex_state = 38}, - [1132] = {.lex_state = 536, .external_lex_state = 20}, - [1133] = {.lex_state = 540, .external_lex_state = 4}, - [1134] = {.lex_state = 540, .external_lex_state = 34}, - [1135] = {.lex_state = 540, .external_lex_state = 34}, - [1136] = {.lex_state = 243, .external_lex_state = 11}, - [1137] = {.lex_state = 240, .external_lex_state = 13}, - [1138] = {.lex_state = 540, .external_lex_state = 4}, - [1139] = {.lex_state = 280, .external_lex_state = 34}, - [1140] = {.lex_state = 280, .external_lex_state = 34}, - [1141] = {.lex_state = 540, .external_lex_state = 34}, - [1142] = {.lex_state = 540, .external_lex_state = 4}, - [1143] = {.lex_state = 284, .external_lex_state = 39}, - [1144] = {.lex_state = 284, .external_lex_state = 39}, - [1145] = {.lex_state = 284, .external_lex_state = 39}, - [1146] = {.lex_state = 286, .external_lex_state = 39}, - [1147] = {.lex_state = 286, .external_lex_state = 39}, - [1148] = {.lex_state = 536, .external_lex_state = 20}, - [1149] = {.lex_state = 286, .external_lex_state = 39}, - [1150] = {.lex_state = 536, .external_lex_state = 20}, - [1151] = {.lex_state = 540, .external_lex_state = 4}, - [1152] = {.lex_state = 284, .external_lex_state = 39}, - [1153] = {.lex_state = 540, .external_lex_state = 4}, - [1154] = {.lex_state = 286, .external_lex_state = 39}, - [1155] = {.lex_state = 540, .external_lex_state = 4}, - [1156] = {.lex_state = 540, .external_lex_state = 4}, - [1157] = {.lex_state = 540, .external_lex_state = 34}, - [1158] = {.lex_state = 540, .external_lex_state = 4}, - [1159] = {.lex_state = 270, .external_lex_state = 22}, - [1160] = {.lex_state = 270, .external_lex_state = 22}, - [1161] = {.lex_state = 240, .external_lex_state = 14}, - [1162] = {.lex_state = 540, .external_lex_state = 4}, - [1163] = {.lex_state = 540, .external_lex_state = 4}, - [1164] = {.lex_state = 286, .external_lex_state = 41}, - [1165] = {.lex_state = 286, .external_lex_state = 39}, - [1166] = {.lex_state = 286, .external_lex_state = 39}, - [1167] = {.lex_state = 286, .external_lex_state = 39}, + [1055] = {.lex_state = 286, .external_lex_state = 39}, + [1056] = {.lex_state = 284, .external_lex_state = 39}, + [1057] = {.lex_state = 240, .external_lex_state = 14}, + [1058] = {.lex_state = 538, .external_lex_state = 4}, + [1059] = {.lex_state = 538, .external_lex_state = 4}, + [1060] = {.lex_state = 535, .external_lex_state = 18}, + [1061] = {.lex_state = 240, .external_lex_state = 13}, + [1062] = {.lex_state = 538, .external_lex_state = 4}, + [1063] = {.lex_state = 535, .external_lex_state = 18}, + [1064] = {.lex_state = 240, .external_lex_state = 14}, + [1065] = {.lex_state = 538, .external_lex_state = 4}, + [1066] = {.lex_state = 535, .external_lex_state = 18}, + [1067] = {.lex_state = 280, .external_lex_state = 36}, + [1068] = {.lex_state = 538, .external_lex_state = 4}, + [1069] = {.lex_state = 538, .external_lex_state = 36}, + [1070] = {.lex_state = 240, .external_lex_state = 14}, + [1071] = {.lex_state = 535, .external_lex_state = 18}, + [1072] = {.lex_state = 538, .external_lex_state = 4}, + [1073] = {.lex_state = 538, .external_lex_state = 36}, + [1074] = {.lex_state = 538, .external_lex_state = 36}, + [1075] = {.lex_state = 286, .external_lex_state = 39}, + [1076] = {.lex_state = 286, .external_lex_state = 39}, + [1077] = {.lex_state = 286, .external_lex_state = 39}, + [1078] = {.lex_state = 538, .external_lex_state = 36}, + [1079] = {.lex_state = 286, .external_lex_state = 39}, + [1080] = {.lex_state = 538, .external_lex_state = 4}, + [1081] = {.lex_state = 280, .external_lex_state = 36}, + [1082] = {.lex_state = 240, .external_lex_state = 14}, + [1083] = {.lex_state = 430, .external_lex_state = 38}, + [1084] = {.lex_state = 280, .external_lex_state = 36}, + [1085] = {.lex_state = 430, .external_lex_state = 38}, + [1086] = {.lex_state = 280, .external_lex_state = 36}, + [1087] = {.lex_state = 538, .external_lex_state = 36}, + [1088] = {.lex_state = 538, .external_lex_state = 4}, + [1089] = {.lex_state = 538, .external_lex_state = 4}, + [1090] = {.lex_state = 538, .external_lex_state = 4}, + [1091] = {.lex_state = 538, .external_lex_state = 4}, + [1092] = {.lex_state = 538, .external_lex_state = 4}, + [1093] = {.lex_state = 538, .external_lex_state = 4}, + [1094] = {.lex_state = 243, .external_lex_state = 11}, + [1095] = {.lex_state = 538, .external_lex_state = 4}, + [1096] = {.lex_state = 538, .external_lex_state = 4}, + [1097] = {.lex_state = 284, .external_lex_state = 39}, + [1098] = {.lex_state = 538, .external_lex_state = 4}, + [1099] = {.lex_state = 538, .external_lex_state = 36}, + [1100] = {.lex_state = 538, .external_lex_state = 4}, + [1101] = {.lex_state = 538, .external_lex_state = 4}, + [1102] = {.lex_state = 280, .external_lex_state = 36}, + [1103] = {.lex_state = 280, .external_lex_state = 36}, + [1104] = {.lex_state = 538, .external_lex_state = 4}, + [1105] = {.lex_state = 240, .external_lex_state = 14}, + [1106] = {.lex_state = 538, .external_lex_state = 4}, + [1107] = {.lex_state = 280, .external_lex_state = 36}, + [1108] = {.lex_state = 280, .external_lex_state = 36}, + [1109] = {.lex_state = 417, .external_lex_state = 28}, + [1110] = {.lex_state = 417, .external_lex_state = 28}, + [1111] = {.lex_state = 280, .external_lex_state = 36}, + [1112] = {.lex_state = 432, .external_lex_state = 40}, + [1113] = {.lex_state = 538, .external_lex_state = 4}, + [1114] = {.lex_state = 538, .external_lex_state = 4}, + [1115] = {.lex_state = 538, .external_lex_state = 36}, + [1116] = {.lex_state = 535, .external_lex_state = 18}, + [1117] = {.lex_state = 538, .external_lex_state = 4}, + [1118] = {.lex_state = 538, .external_lex_state = 4}, + [1119] = {.lex_state = 280, .external_lex_state = 36}, + [1120] = {.lex_state = 538, .external_lex_state = 4}, + [1121] = {.lex_state = 284, .external_lex_state = 39}, + [1122] = {.lex_state = 280, .external_lex_state = 36}, + [1123] = {.lex_state = 538, .external_lex_state = 4}, + [1124] = {.lex_state = 280, .external_lex_state = 36}, + [1125] = {.lex_state = 538, .external_lex_state = 36}, + [1126] = {.lex_state = 535, .external_lex_state = 18}, + [1127] = {.lex_state = 538, .external_lex_state = 36}, + [1128] = {.lex_state = 284, .external_lex_state = 39}, + [1129] = {.lex_state = 280, .external_lex_state = 36}, + [1130] = {.lex_state = 280, .external_lex_state = 36}, + [1131] = {.lex_state = 429, .external_lex_state = 38}, + [1132] = {.lex_state = 535, .external_lex_state = 18}, + [1133] = {.lex_state = 417, .external_lex_state = 28}, + [1134] = {.lex_state = 417, .external_lex_state = 28}, + [1135] = {.lex_state = 535, .external_lex_state = 18}, + [1136] = {.lex_state = 538, .external_lex_state = 4}, + [1137] = {.lex_state = 429, .external_lex_state = 38}, + [1138] = {.lex_state = 538, .external_lex_state = 4}, + [1139] = {.lex_state = 538, .external_lex_state = 4}, + [1140] = {.lex_state = 469, .external_lex_state = 34}, + [1141] = {.lex_state = 417, .external_lex_state = 28}, + [1142] = {.lex_state = 417, .external_lex_state = 28}, + [1143] = {.lex_state = 469, .external_lex_state = 34}, + [1144] = {.lex_state = 538, .external_lex_state = 36}, + [1145] = {.lex_state = 535, .external_lex_state = 18}, + [1146] = {.lex_state = 538, .external_lex_state = 4}, + [1147] = {.lex_state = 538, .external_lex_state = 36}, + [1148] = {.lex_state = 538, .external_lex_state = 4}, + [1149] = {.lex_state = 538, .external_lex_state = 36}, + [1150] = {.lex_state = 538, .external_lex_state = 4}, + [1151] = {.lex_state = 538, .external_lex_state = 4}, + [1152] = {.lex_state = 538, .external_lex_state = 4}, + [1153] = {.lex_state = 538, .external_lex_state = 4}, + [1154] = {.lex_state = 538, .external_lex_state = 36}, + [1155] = {.lex_state = 538, .external_lex_state = 36}, + [1156] = {.lex_state = 538, .external_lex_state = 36}, + [1157] = {.lex_state = 538, .external_lex_state = 4}, + [1158] = {.lex_state = 538, .external_lex_state = 4}, + [1159] = {.lex_state = 284, .external_lex_state = 39}, + [1160] = {.lex_state = 284, .external_lex_state = 39}, + [1161] = {.lex_state = 431, .external_lex_state = 38}, + [1162] = {.lex_state = 431, .external_lex_state = 38}, + [1163] = {.lex_state = 538, .external_lex_state = 4}, + [1164] = {.lex_state = 284, .external_lex_state = 39}, + [1165] = {.lex_state = 280, .external_lex_state = 36}, + [1166] = {.lex_state = 280, .external_lex_state = 36}, + [1167] = {.lex_state = 538, .external_lex_state = 36}, [1168] = {.lex_state = 284, .external_lex_state = 39}, - [1169] = {.lex_state = 286, .external_lex_state = 39}, - [1170] = {.lex_state = 540, .external_lex_state = 34}, - [1171] = {.lex_state = 240, .external_lex_state = 14}, - [1172] = {.lex_state = 540, .external_lex_state = 34}, - [1173] = {.lex_state = 286, .external_lex_state = 39}, - [1174] = {.lex_state = 240, .external_lex_state = 14}, - [1175] = {.lex_state = 286, .external_lex_state = 39}, - [1176] = {.lex_state = 540, .external_lex_state = 34}, - [1177] = {.lex_state = 284, .external_lex_state = 41}, - [1178] = {.lex_state = 284, .external_lex_state = 41}, - [1179] = {.lex_state = 531, .external_lex_state = 11}, - [1180] = {.lex_state = 540, .external_lex_state = 34}, - [1181] = {.lex_state = 540, .external_lex_state = 34}, - [1182] = {.lex_state = 540, .external_lex_state = 34}, - [1183] = {.lex_state = 540, .external_lex_state = 34}, - [1184] = {.lex_state = 531, .external_lex_state = 11}, - [1185] = {.lex_state = 540, .external_lex_state = 34}, - [1186] = {.lex_state = 540, .external_lex_state = 34}, - [1187] = {.lex_state = 288, .external_lex_state = 42}, - [1188] = {.lex_state = 288, .external_lex_state = 42}, - [1189] = {.lex_state = 284, .external_lex_state = 41}, - [1190] = {.lex_state = 288, .external_lex_state = 42}, - [1191] = {.lex_state = 288, .external_lex_state = 42}, - [1192] = {.lex_state = 288, .external_lex_state = 42}, - [1193] = {.lex_state = 288, .external_lex_state = 42}, - [1194] = {.lex_state = 540, .external_lex_state = 34}, - [1195] = {.lex_state = 540, .external_lex_state = 34}, - [1196] = {.lex_state = 288, .external_lex_state = 42}, - [1197] = {.lex_state = 288, .external_lex_state = 42}, - [1198] = {.lex_state = 540, .external_lex_state = 34}, - [1199] = {.lex_state = 540, .external_lex_state = 34}, - [1200] = {.lex_state = 540, .external_lex_state = 34}, - [1201] = {.lex_state = 540, .external_lex_state = 34}, - [1202] = {.lex_state = 540, .external_lex_state = 34}, - [1203] = {.lex_state = 284, .external_lex_state = 39}, - [1204] = {.lex_state = 290, .external_lex_state = 42}, - [1205] = {.lex_state = 290, .external_lex_state = 42}, + [1169] = {.lex_state = 538, .external_lex_state = 36}, + [1170] = {.lex_state = 538, .external_lex_state = 4}, + [1171] = {.lex_state = 433, .external_lex_state = 38}, + [1172] = {.lex_state = 538, .external_lex_state = 4}, + [1173] = {.lex_state = 432, .external_lex_state = 40}, + [1174] = {.lex_state = 286, .external_lex_state = 39}, + [1175] = {.lex_state = 243, .external_lex_state = 16}, + [1176] = {.lex_state = 284, .external_lex_state = 39}, + [1177] = {.lex_state = 284, .external_lex_state = 39}, + [1178] = {.lex_state = 284, .external_lex_state = 39}, + [1179] = {.lex_state = 286, .external_lex_state = 39}, + [1180] = {.lex_state = 286, .external_lex_state = 39}, + [1181] = {.lex_state = 284, .external_lex_state = 39}, + [1182] = {.lex_state = 284, .external_lex_state = 39}, + [1183] = {.lex_state = 286, .external_lex_state = 41}, + [1184] = {.lex_state = 286, .external_lex_state = 39}, + [1185] = {.lex_state = 286, .external_lex_state = 41}, + [1186] = {.lex_state = 286, .external_lex_state = 41}, + [1187] = {.lex_state = 284, .external_lex_state = 39}, + [1188] = {.lex_state = 284, .external_lex_state = 39}, + [1189] = {.lex_state = 286, .external_lex_state = 39}, + [1190] = {.lex_state = 284, .external_lex_state = 39}, + [1191] = {.lex_state = 286, .external_lex_state = 39}, + [1192] = {.lex_state = 286, .external_lex_state = 39}, + [1193] = {.lex_state = 286, .external_lex_state = 39}, + [1194] = {.lex_state = 286, .external_lex_state = 39}, + [1195] = {.lex_state = 286, .external_lex_state = 41}, + [1196] = {.lex_state = 284, .external_lex_state = 41}, + [1197] = {.lex_state = 284, .external_lex_state = 41}, + [1198] = {.lex_state = 240, .external_lex_state = 14}, + [1199] = {.lex_state = 284, .external_lex_state = 41}, + [1200] = {.lex_state = 284, .external_lex_state = 39}, + [1201] = {.lex_state = 284, .external_lex_state = 39}, + [1202] = {.lex_state = 284, .external_lex_state = 41}, + [1203] = {.lex_state = 286, .external_lex_state = 39}, + [1204] = {.lex_state = 288, .external_lex_state = 42}, + [1205] = {.lex_state = 284, .external_lex_state = 39}, [1206] = {.lex_state = 284, .external_lex_state = 39}, - [1207] = {.lex_state = 469, .external_lex_state = 35}, - [1208] = {.lex_state = 240, .external_lex_state = 14}, - [1209] = {.lex_state = 469, .external_lex_state = 35}, - [1210] = {.lex_state = 284, .external_lex_state = 39}, - [1211] = {.lex_state = 290, .external_lex_state = 42}, - [1212] = {.lex_state = 286, .external_lex_state = 39}, - [1213] = {.lex_state = 243, .external_lex_state = 17}, - [1214] = {.lex_state = 284, .external_lex_state = 39}, - [1215] = {.lex_state = 540, .external_lex_state = 34}, - [1216] = {.lex_state = 540, .external_lex_state = 34}, + [1207] = {.lex_state = 288, .external_lex_state = 42}, + [1208] = {.lex_state = 288, .external_lex_state = 42}, + [1209] = {.lex_state = 290, .external_lex_state = 42}, + [1210] = {.lex_state = 286, .external_lex_state = 39}, + [1211] = {.lex_state = 286, .external_lex_state = 39}, + [1212] = {.lex_state = 290, .external_lex_state = 42}, + [1213] = {.lex_state = 243, .external_lex_state = 11}, + [1214] = {.lex_state = 290, .external_lex_state = 42}, + [1215] = {.lex_state = 288, .external_lex_state = 42}, + [1216] = {.lex_state = 290, .external_lex_state = 42}, [1217] = {.lex_state = 284, .external_lex_state = 39}, - [1218] = {.lex_state = 286, .external_lex_state = 39}, - [1219] = {.lex_state = 243, .external_lex_state = 17}, - [1220] = {.lex_state = 540, .external_lex_state = 34}, - [1221] = {.lex_state = 540, .external_lex_state = 34}, - [1222] = {.lex_state = 540, .external_lex_state = 34}, - [1223] = {.lex_state = 540, .external_lex_state = 34}, - [1224] = {.lex_state = 540, .external_lex_state = 34}, - [1225] = {.lex_state = 284, .external_lex_state = 39}, - [1226] = {.lex_state = 435, .external_lex_state = 43}, - [1227] = {.lex_state = 284, .external_lex_state = 39}, - [1228] = {.lex_state = 540, .external_lex_state = 34}, - [1229] = {.lex_state = 531, .external_lex_state = 11}, - [1230] = {.lex_state = 540, .external_lex_state = 34}, - [1231] = {.lex_state = 243, .external_lex_state = 11}, - [1232] = {.lex_state = 290, .external_lex_state = 42}, - [1233] = {.lex_state = 284, .external_lex_state = 39}, - [1234] = {.lex_state = 284, .external_lex_state = 39}, - [1235] = {.lex_state = 288, .external_lex_state = 42}, - [1236] = {.lex_state = 540, .external_lex_state = 34}, - [1237] = {.lex_state = 540, .external_lex_state = 34}, - [1238] = {.lex_state = 284, .external_lex_state = 39}, - [1239] = {.lex_state = 290, .external_lex_state = 42}, - [1240] = {.lex_state = 240, .external_lex_state = 14}, - [1241] = {.lex_state = 288, .external_lex_state = 42}, - [1242] = {.lex_state = 540, .external_lex_state = 34}, - [1243] = {.lex_state = 284, .external_lex_state = 39}, - [1244] = {.lex_state = 243, .external_lex_state = 11}, - [1245] = {.lex_state = 540, .external_lex_state = 34}, - [1246] = {.lex_state = 290, .external_lex_state = 42}, - [1247] = {.lex_state = 434, .external_lex_state = 38}, - [1248] = {.lex_state = 288, .external_lex_state = 42}, - [1249] = {.lex_state = 284, .external_lex_state = 41}, - [1250] = {.lex_state = 434, .external_lex_state = 38}, - [1251] = {.lex_state = 540, .external_lex_state = 34}, - [1252] = {.lex_state = 288, .external_lex_state = 42}, - [1253] = {.lex_state = 286, .external_lex_state = 39}, - [1254] = {.lex_state = 288, .external_lex_state = 42}, - [1255] = {.lex_state = 540, .external_lex_state = 34}, - [1256] = {.lex_state = 240, .external_lex_state = 14}, - [1257] = {.lex_state = 531, .external_lex_state = 11}, - [1258] = {.lex_state = 284, .external_lex_state = 39}, - [1259] = {.lex_state = 284, .external_lex_state = 39}, - [1260] = {.lex_state = 286, .external_lex_state = 39}, - [1261] = {.lex_state = 243, .external_lex_state = 17}, - [1262] = {.lex_state = 540, .external_lex_state = 34}, - [1263] = {.lex_state = 540, .external_lex_state = 34}, - [1264] = {.lex_state = 288, .external_lex_state = 42}, - [1265] = {.lex_state = 540, .external_lex_state = 34}, - [1266] = {.lex_state = 284, .external_lex_state = 39}, - [1267] = {.lex_state = 540, .external_lex_state = 34}, - [1268] = {.lex_state = 286, .external_lex_state = 39}, - [1269] = {.lex_state = 286, .external_lex_state = 39}, - [1270] = {.lex_state = 286, .external_lex_state = 39}, - [1271] = {.lex_state = 540, .external_lex_state = 34}, - [1272] = {.lex_state = 540, .external_lex_state = 34}, - [1273] = {.lex_state = 540, .external_lex_state = 34}, - [1274] = {.lex_state = 284, .external_lex_state = 39}, - [1275] = {.lex_state = 286, .external_lex_state = 41}, - [1276] = {.lex_state = 286, .external_lex_state = 41}, - [1277] = {.lex_state = 284, .external_lex_state = 39}, - [1278] = {.lex_state = 284, .external_lex_state = 41}, - [1279] = {.lex_state = 286, .external_lex_state = 41}, - [1280] = {.lex_state = 540, .external_lex_state = 34}, - [1281] = {.lex_state = 540, .external_lex_state = 34}, - [1282] = {.lex_state = 540, .external_lex_state = 34}, - [1283] = {.lex_state = 540, .external_lex_state = 34}, - [1284] = {.lex_state = 286, .external_lex_state = 39}, - [1285] = {.lex_state = 540, .external_lex_state = 34}, - [1286] = {.lex_state = 290, .external_lex_state = 42}, - [1287] = {.lex_state = 286, .external_lex_state = 41}, - [1288] = {.lex_state = 243, .external_lex_state = 17}, - [1289] = {.lex_state = 284, .external_lex_state = 39}, - [1290] = {.lex_state = 286, .external_lex_state = 39}, - [1291] = {.lex_state = 284, .external_lex_state = 39}, - [1292] = {.lex_state = 286, .external_lex_state = 39}, - [1293] = {.lex_state = 240, .external_lex_state = 14}, - [1294] = {.lex_state = 540, .external_lex_state = 34}, - [1295] = {.lex_state = 540, .external_lex_state = 34}, - [1296] = {.lex_state = 540, .external_lex_state = 34}, - [1297] = {.lex_state = 540, .external_lex_state = 34}, - [1298] = {.lex_state = 540, .external_lex_state = 34}, - [1299] = {.lex_state = 243, .external_lex_state = 17}, - [1300] = {.lex_state = 286, .external_lex_state = 39}, - [1301] = {.lex_state = 284, .external_lex_state = 41}, - [1302] = {.lex_state = 286, .external_lex_state = 39}, - [1303] = {.lex_state = 286, .external_lex_state = 39}, - [1304] = {.lex_state = 286, .external_lex_state = 41}, - [1305] = {.lex_state = 540, .external_lex_state = 34}, - [1306] = {.lex_state = 290, .external_lex_state = 42}, - [1307] = {.lex_state = 531, .external_lex_state = 17}, - [1308] = {.lex_state = 541, .external_lex_state = 42}, - [1309] = {.lex_state = 541, .external_lex_state = 42}, - [1310] = {.lex_state = 288, .external_lex_state = 44}, + [1218] = {.lex_state = 284, .external_lex_state = 39}, + [1219] = {.lex_state = 284, .external_lex_state = 39}, + [1220] = {.lex_state = 284, .external_lex_state = 39}, + [1221] = {.lex_state = 284, .external_lex_state = 39}, + [1222] = {.lex_state = 286, .external_lex_state = 39}, + [1223] = {.lex_state = 286, .external_lex_state = 39}, + [1224] = {.lex_state = 243, .external_lex_state = 16}, + [1225] = {.lex_state = 286, .external_lex_state = 39}, + [1226] = {.lex_state = 286, .external_lex_state = 39}, + [1227] = {.lex_state = 286, .external_lex_state = 39}, + [1228] = {.lex_state = 284, .external_lex_state = 39}, + [1229] = {.lex_state = 284, .external_lex_state = 39}, + [1230] = {.lex_state = 284, .external_lex_state = 39}, + [1231] = {.lex_state = 286, .external_lex_state = 39}, + [1232] = {.lex_state = 286, .external_lex_state = 39}, + [1233] = {.lex_state = 286, .external_lex_state = 39}, + [1234] = {.lex_state = 434, .external_lex_state = 38}, + [1235] = {.lex_state = 434, .external_lex_state = 38}, + [1236] = {.lex_state = 538, .external_lex_state = 36}, + [1237] = {.lex_state = 538, .external_lex_state = 36}, + [1238] = {.lex_state = 538, .external_lex_state = 36}, + [1239] = {.lex_state = 538, .external_lex_state = 36}, + [1240] = {.lex_state = 538, .external_lex_state = 36}, + [1241] = {.lex_state = 538, .external_lex_state = 36}, + [1242] = {.lex_state = 538, .external_lex_state = 36}, + [1243] = {.lex_state = 538, .external_lex_state = 36}, + [1244] = {.lex_state = 538, .external_lex_state = 36}, + [1245] = {.lex_state = 538, .external_lex_state = 36}, + [1246] = {.lex_state = 538, .external_lex_state = 36}, + [1247] = {.lex_state = 538, .external_lex_state = 36}, + [1248] = {.lex_state = 538, .external_lex_state = 36}, + [1249] = {.lex_state = 538, .external_lex_state = 36}, + [1250] = {.lex_state = 538, .external_lex_state = 36}, + [1251] = {.lex_state = 538, .external_lex_state = 36}, + [1252] = {.lex_state = 530, .external_lex_state = 11}, + [1253] = {.lex_state = 538, .external_lex_state = 36}, + [1254] = {.lex_state = 538, .external_lex_state = 36}, + [1255] = {.lex_state = 538, .external_lex_state = 36}, + [1256] = {.lex_state = 538, .external_lex_state = 36}, + [1257] = {.lex_state = 288, .external_lex_state = 42}, + [1258] = {.lex_state = 288, .external_lex_state = 42}, + [1259] = {.lex_state = 538, .external_lex_state = 36}, + [1260] = {.lex_state = 538, .external_lex_state = 36}, + [1261] = {.lex_state = 538, .external_lex_state = 36}, + [1262] = {.lex_state = 273, .external_lex_state = 25}, + [1263] = {.lex_state = 273, .external_lex_state = 25}, + [1264] = {.lex_state = 290, .external_lex_state = 42}, + [1265] = {.lex_state = 290, .external_lex_state = 42}, + [1266] = {.lex_state = 273, .external_lex_state = 25}, + [1267] = {.lex_state = 286, .external_lex_state = 41}, + [1268] = {.lex_state = 286, .external_lex_state = 41}, + [1269] = {.lex_state = 538, .external_lex_state = 36}, + [1270] = {.lex_state = 538, .external_lex_state = 36}, + [1271] = {.lex_state = 538, .external_lex_state = 36}, + [1272] = {.lex_state = 538, .external_lex_state = 36}, + [1273] = {.lex_state = 538, .external_lex_state = 36}, + [1274] = {.lex_state = 538, .external_lex_state = 36}, + [1275] = {.lex_state = 288, .external_lex_state = 42}, + [1276] = {.lex_state = 288, .external_lex_state = 42}, + [1277] = {.lex_state = 240, .external_lex_state = 14}, + [1278] = {.lex_state = 538, .external_lex_state = 36}, + [1279] = {.lex_state = 240, .external_lex_state = 14}, + [1280] = {.lex_state = 538, .external_lex_state = 36}, + [1281] = {.lex_state = 530, .external_lex_state = 11}, + [1282] = {.lex_state = 538, .external_lex_state = 36}, + [1283] = {.lex_state = 240, .external_lex_state = 14}, + [1284] = {.lex_state = 538, .external_lex_state = 36}, + [1285] = {.lex_state = 538, .external_lex_state = 36}, + [1286] = {.lex_state = 240, .external_lex_state = 14}, + [1287] = {.lex_state = 538, .external_lex_state = 36}, + [1288] = {.lex_state = 538, .external_lex_state = 36}, + [1289] = {.lex_state = 435, .external_lex_state = 43}, + [1290] = {.lex_state = 530, .external_lex_state = 11}, + [1291] = {.lex_state = 284, .external_lex_state = 41}, + [1292] = {.lex_state = 284, .external_lex_state = 41}, + [1293] = {.lex_state = 538, .external_lex_state = 36}, + [1294] = {.lex_state = 538, .external_lex_state = 36}, + [1295] = {.lex_state = 538, .external_lex_state = 36}, + [1296] = {.lex_state = 530, .external_lex_state = 11}, + [1297] = {.lex_state = 538, .external_lex_state = 36}, + [1298] = {.lex_state = 240, .external_lex_state = 14}, + [1299] = {.lex_state = 288, .external_lex_state = 42}, + [1300] = {.lex_state = 288, .external_lex_state = 42}, + [1301] = {.lex_state = 288, .external_lex_state = 42}, + [1302] = {.lex_state = 288, .external_lex_state = 42}, + [1303] = {.lex_state = 288, .external_lex_state = 42}, + [1304] = {.lex_state = 288, .external_lex_state = 42}, + [1305] = {.lex_state = 538, .external_lex_state = 36}, + [1306] = {.lex_state = 538, .external_lex_state = 36}, + [1307] = {.lex_state = 538, .external_lex_state = 36}, + [1308] = {.lex_state = 243, .external_lex_state = 11}, + [1309] = {.lex_state = 243, .external_lex_state = 16}, + [1310] = {.lex_state = 243, .external_lex_state = 16}, [1311] = {.lex_state = 290, .external_lex_state = 42}, - [1312] = {.lex_state = 284, .external_lex_state = 41}, - [1313] = {.lex_state = 286, .external_lex_state = 41}, - [1314] = {.lex_state = 258, .external_lex_state = 16}, - [1315] = {.lex_state = 290, .external_lex_state = 42}, - [1316] = {.lex_state = 541, .external_lex_state = 42}, - [1317] = {.lex_state = 288, .external_lex_state = 42}, - [1318] = {.lex_state = 289, .external_lex_state = 45}, - [1319] = {.lex_state = 289, .external_lex_state = 45}, - [1320] = {.lex_state = 288, .external_lex_state = 42}, - [1321] = {.lex_state = 286, .external_lex_state = 41}, - [1322] = {.lex_state = 290, .external_lex_state = 44}, - [1323] = {.lex_state = 249, .external_lex_state = 16}, - [1324] = {.lex_state = 286, .external_lex_state = 41}, - [1325] = {.lex_state = 286, .external_lex_state = 41}, - [1326] = {.lex_state = 541, .external_lex_state = 42}, - [1327] = {.lex_state = 541, .external_lex_state = 42}, - [1328] = {.lex_state = 541, .external_lex_state = 42}, - [1329] = {.lex_state = 541, .external_lex_state = 42}, - [1330] = {.lex_state = 541, .external_lex_state = 42}, - [1331] = {.lex_state = 286, .external_lex_state = 41}, - [1332] = {.lex_state = 286, .external_lex_state = 41}, - [1333] = {.lex_state = 286, .external_lex_state = 41}, - [1334] = {.lex_state = 290, .external_lex_state = 42}, - [1335] = {.lex_state = 541, .external_lex_state = 42}, - [1336] = {.lex_state = 290, .external_lex_state = 44}, - [1337] = {.lex_state = 542, .external_lex_state = 42}, - [1338] = {.lex_state = 542, .external_lex_state = 42}, - [1339] = {.lex_state = 258, .external_lex_state = 16}, - [1340] = {.lex_state = 542, .external_lex_state = 42}, - [1341] = {.lex_state = 288, .external_lex_state = 42}, - [1342] = {.lex_state = 288, .external_lex_state = 42}, - [1343] = {.lex_state = 258, .external_lex_state = 16}, - [1344] = {.lex_state = 290, .external_lex_state = 44}, - [1345] = {.lex_state = 542, .external_lex_state = 42}, - [1346] = {.lex_state = 542, .external_lex_state = 42}, + [1312] = {.lex_state = 290, .external_lex_state = 42}, + [1313] = {.lex_state = 538, .external_lex_state = 36}, + [1314] = {.lex_state = 538, .external_lex_state = 36}, + [1315] = {.lex_state = 538, .external_lex_state = 36}, + [1316] = {.lex_state = 538, .external_lex_state = 36}, + [1317] = {.lex_state = 243, .external_lex_state = 16}, + [1318] = {.lex_state = 538, .external_lex_state = 36}, + [1319] = {.lex_state = 538, .external_lex_state = 36}, + [1320] = {.lex_state = 538, .external_lex_state = 36}, + [1321] = {.lex_state = 538, .external_lex_state = 36}, + [1322] = {.lex_state = 288, .external_lex_state = 44}, + [1323] = {.lex_state = 284, .external_lex_state = 41}, + [1324] = {.lex_state = 284, .external_lex_state = 41}, + [1325] = {.lex_state = 284, .external_lex_state = 41}, + [1326] = {.lex_state = 284, .external_lex_state = 41}, + [1327] = {.lex_state = 284, .external_lex_state = 41}, + [1328] = {.lex_state = 425, .external_lex_state = 45}, + [1329] = {.lex_state = 540, .external_lex_state = 42}, + [1330] = {.lex_state = 425, .external_lex_state = 45}, + [1331] = {.lex_state = 541, .external_lex_state = 42}, + [1332] = {.lex_state = 284, .external_lex_state = 41}, + [1333] = {.lex_state = 284, .external_lex_state = 41}, + [1334] = {.lex_state = 284, .external_lex_state = 41}, + [1335] = {.lex_state = 288, .external_lex_state = 42}, + [1336] = {.lex_state = 288, .external_lex_state = 42}, + [1337] = {.lex_state = 288, .external_lex_state = 42}, + [1338] = {.lex_state = 288, .external_lex_state = 42}, + [1339] = {.lex_state = 530, .external_lex_state = 16}, + [1340] = {.lex_state = 288, .external_lex_state = 42}, + [1341] = {.lex_state = 290, .external_lex_state = 42}, + [1342] = {.lex_state = 290, .external_lex_state = 42}, + [1343] = {.lex_state = 290, .external_lex_state = 42}, + [1344] = {.lex_state = 290, .external_lex_state = 42}, + [1345] = {.lex_state = 290, .external_lex_state = 42}, + [1346] = {.lex_state = 288, .external_lex_state = 42}, [1347] = {.lex_state = 288, .external_lex_state = 42}, - [1348] = {.lex_state = 290, .external_lex_state = 42}, - [1349] = {.lex_state = 288, .external_lex_state = 42}, + [1348] = {.lex_state = 288, .external_lex_state = 42}, + [1349] = {.lex_state = 290, .external_lex_state = 42}, [1350] = {.lex_state = 290, .external_lex_state = 42}, [1351] = {.lex_state = 290, .external_lex_state = 42}, - [1352] = {.lex_state = 542, .external_lex_state = 42}, - [1353] = {.lex_state = 273, .external_lex_state = 26}, - [1354] = {.lex_state = 273, .external_lex_state = 26}, - [1355] = {.lex_state = 290, .external_lex_state = 42}, - [1356] = {.lex_state = 284, .external_lex_state = 41}, - [1357] = {.lex_state = 273, .external_lex_state = 26}, - [1358] = {.lex_state = 284, .external_lex_state = 41}, - [1359] = {.lex_state = 284, .external_lex_state = 41}, - [1360] = {.lex_state = 284, .external_lex_state = 41}, - [1361] = {.lex_state = 284, .external_lex_state = 41}, - [1362] = {.lex_state = 541, .external_lex_state = 42}, - [1363] = {.lex_state = 284, .external_lex_state = 41}, - [1364] = {.lex_state = 286, .external_lex_state = 41}, - [1365] = {.lex_state = 541, .external_lex_state = 42}, - [1366] = {.lex_state = 284, .external_lex_state = 41}, - [1367] = {.lex_state = 284, .external_lex_state = 41}, - [1368] = {.lex_state = 284, .external_lex_state = 41}, - [1369] = {.lex_state = 258, .external_lex_state = 16}, - [1370] = {.lex_state = 531, .external_lex_state = 17}, - [1371] = {.lex_state = 284, .external_lex_state = 41}, - [1372] = {.lex_state = 531, .external_lex_state = 17}, - [1373] = {.lex_state = 258, .external_lex_state = 16}, - [1374] = {.lex_state = 295, .external_lex_state = 41}, - [1375] = {.lex_state = 288, .external_lex_state = 42}, - [1376] = {.lex_state = 288, .external_lex_state = 42}, - [1377] = {.lex_state = 288, .external_lex_state = 42}, - [1378] = {.lex_state = 288, .external_lex_state = 42}, - [1379] = {.lex_state = 286, .external_lex_state = 41}, + [1352] = {.lex_state = 530, .external_lex_state = 16}, + [1353] = {.lex_state = 540, .external_lex_state = 42}, + [1354] = {.lex_state = 286, .external_lex_state = 41}, + [1355] = {.lex_state = 286, .external_lex_state = 41}, + [1356] = {.lex_state = 295, .external_lex_state = 41}, + [1357] = {.lex_state = 295, .external_lex_state = 41}, + [1358] = {.lex_state = 288, .external_lex_state = 42}, + [1359] = {.lex_state = 425, .external_lex_state = 45}, + [1360] = {.lex_state = 288, .external_lex_state = 42}, + [1361] = {.lex_state = 540, .external_lex_state = 42}, + [1362] = {.lex_state = 540, .external_lex_state = 42}, + [1363] = {.lex_state = 530, .external_lex_state = 16}, + [1364] = {.lex_state = 258, .external_lex_state = 15}, + [1365] = {.lex_state = 249, .external_lex_state = 15}, + [1366] = {.lex_state = 530, .external_lex_state = 16}, + [1367] = {.lex_state = 295, .external_lex_state = 41}, + [1368] = {.lex_state = 286, .external_lex_state = 41}, + [1369] = {.lex_state = 286, .external_lex_state = 41}, + [1370] = {.lex_state = 540, .external_lex_state = 42}, + [1371] = {.lex_state = 249, .external_lex_state = 15}, + [1372] = {.lex_state = 540, .external_lex_state = 42}, + [1373] = {.lex_state = 288, .external_lex_state = 42}, + [1374] = {.lex_state = 286, .external_lex_state = 41}, + [1375] = {.lex_state = 530, .external_lex_state = 11}, + [1376] = {.lex_state = 540, .external_lex_state = 42}, + [1377] = {.lex_state = 295, .external_lex_state = 41}, + [1378] = {.lex_state = 290, .external_lex_state = 42}, + [1379] = {.lex_state = 540, .external_lex_state = 42}, [1380] = {.lex_state = 290, .external_lex_state = 42}, - [1381] = {.lex_state = 258, .external_lex_state = 16}, - [1382] = {.lex_state = 288, .external_lex_state = 42}, - [1383] = {.lex_state = 290, .external_lex_state = 42}, - [1384] = {.lex_state = 249, .external_lex_state = 16}, - [1385] = {.lex_state = 290, .external_lex_state = 42}, - [1386] = {.lex_state = 290, .external_lex_state = 42}, - [1387] = {.lex_state = 295, .external_lex_state = 41}, - [1388] = {.lex_state = 295, .external_lex_state = 41}, - [1389] = {.lex_state = 290, .external_lex_state = 42}, - [1390] = {.lex_state = 290, .external_lex_state = 42}, - [1391] = {.lex_state = 290, .external_lex_state = 42}, - [1392] = {.lex_state = 531, .external_lex_state = 17}, - [1393] = {.lex_state = 288, .external_lex_state = 42}, - [1394] = {.lex_state = 288, .external_lex_state = 42}, - [1395] = {.lex_state = 288, .external_lex_state = 42}, - [1396] = {.lex_state = 284, .external_lex_state = 41}, - [1397] = {.lex_state = 290, .external_lex_state = 44}, - [1398] = {.lex_state = 531, .external_lex_state = 11}, - [1399] = {.lex_state = 541, .external_lex_state = 42}, + [1381] = {.lex_state = 243, .external_lex_state = 16}, + [1382] = {.lex_state = 540, .external_lex_state = 42}, + [1383] = {.lex_state = 530, .external_lex_state = 11}, + [1384] = {.lex_state = 288, .external_lex_state = 42}, + [1385] = {.lex_state = 540, .external_lex_state = 42}, + [1386] = {.lex_state = 541, .external_lex_state = 42}, + [1387] = {.lex_state = 540, .external_lex_state = 42}, + [1388] = {.lex_state = 289, .external_lex_state = 46}, + [1389] = {.lex_state = 289, .external_lex_state = 46}, + [1390] = {.lex_state = 288, .external_lex_state = 42}, + [1391] = {.lex_state = 540, .external_lex_state = 42}, + [1392] = {.lex_state = 258, .external_lex_state = 15}, + [1393] = {.lex_state = 541, .external_lex_state = 42}, + [1394] = {.lex_state = 258, .external_lex_state = 15}, + [1395] = {.lex_state = 286, .external_lex_state = 41}, + [1396] = {.lex_state = 290, .external_lex_state = 44}, + [1397] = {.lex_state = 541, .external_lex_state = 42}, + [1398] = {.lex_state = 286, .external_lex_state = 41}, + [1399] = {.lex_state = 286, .external_lex_state = 41}, [1400] = {.lex_state = 290, .external_lex_state = 42}, - [1401] = {.lex_state = 290, .external_lex_state = 42}, - [1402] = {.lex_state = 284, .external_lex_state = 41}, - [1403] = {.lex_state = 531, .external_lex_state = 11}, - [1404] = {.lex_state = 542, .external_lex_state = 42}, - [1405] = {.lex_state = 542, .external_lex_state = 42}, - [1406] = {.lex_state = 541, .external_lex_state = 42}, - [1407] = {.lex_state = 541, .external_lex_state = 42}, - [1408] = {.lex_state = 249, .external_lex_state = 16}, - [1409] = {.lex_state = 541, .external_lex_state = 42}, - [1410] = {.lex_state = 531, .external_lex_state = 17}, - [1411] = {.lex_state = 284, .external_lex_state = 41}, - [1412] = {.lex_state = 288, .external_lex_state = 42}, - [1413] = {.lex_state = 531, .external_lex_state = 17}, - [1414] = {.lex_state = 541, .external_lex_state = 42}, - [1415] = {.lex_state = 541, .external_lex_state = 42}, - [1416] = {.lex_state = 288, .external_lex_state = 42}, - [1417] = {.lex_state = 284, .external_lex_state = 41}, - [1418] = {.lex_state = 531, .external_lex_state = 17}, - [1419] = {.lex_state = 541, .external_lex_state = 42}, - [1420] = {.lex_state = 288, .external_lex_state = 44}, - [1421] = {.lex_state = 288, .external_lex_state = 44}, + [1401] = {.lex_state = 273, .external_lex_state = 25}, + [1402] = {.lex_state = 541, .external_lex_state = 42}, + [1403] = {.lex_state = 273, .external_lex_state = 25}, + [1404] = {.lex_state = 290, .external_lex_state = 44}, + [1405] = {.lex_state = 290, .external_lex_state = 44}, + [1406] = {.lex_state = 288, .external_lex_state = 42}, + [1407] = {.lex_state = 288, .external_lex_state = 42}, + [1408] = {.lex_state = 290, .external_lex_state = 42}, + [1409] = {.lex_state = 249, .external_lex_state = 15}, + [1410] = {.lex_state = 288, .external_lex_state = 42}, + [1411] = {.lex_state = 290, .external_lex_state = 42}, + [1412] = {.lex_state = 540, .external_lex_state = 42}, + [1413] = {.lex_state = 284, .external_lex_state = 41}, + [1414] = {.lex_state = 284, .external_lex_state = 41}, + [1415] = {.lex_state = 540, .external_lex_state = 42}, + [1416] = {.lex_state = 290, .external_lex_state = 42}, + [1417] = {.lex_state = 530, .external_lex_state = 16}, + [1418] = {.lex_state = 425, .external_lex_state = 45}, + [1419] = {.lex_state = 530, .external_lex_state = 16}, + [1420] = {.lex_state = 290, .external_lex_state = 42}, + [1421] = {.lex_state = 541, .external_lex_state = 42}, [1422] = {.lex_state = 541, .external_lex_state = 42}, - [1423] = {.lex_state = 243, .external_lex_state = 17}, - [1424] = {.lex_state = 437, .external_lex_state = 46}, - [1425] = {.lex_state = 284, .external_lex_state = 41}, + [1423] = {.lex_state = 258, .external_lex_state = 15}, + [1424] = {.lex_state = 530, .external_lex_state = 16}, + [1425] = {.lex_state = 290, .external_lex_state = 44}, [1426] = {.lex_state = 541, .external_lex_state = 42}, - [1427] = {.lex_state = 243, .external_lex_state = 17}, - [1428] = {.lex_state = 531, .external_lex_state = 11}, - [1429] = {.lex_state = 243, .external_lex_state = 17}, - [1430] = {.lex_state = 542, .external_lex_state = 42}, - [1431] = {.lex_state = 542, .external_lex_state = 42}, - [1432] = {.lex_state = 531, .external_lex_state = 11}, - [1433] = {.lex_state = 542, .external_lex_state = 42}, - [1434] = {.lex_state = 541, .external_lex_state = 42}, - [1435] = {.lex_state = 541, .external_lex_state = 42}, + [1427] = {.lex_state = 258, .external_lex_state = 15}, + [1428] = {.lex_state = 284, .external_lex_state = 41}, + [1429] = {.lex_state = 284, .external_lex_state = 41}, + [1430] = {.lex_state = 258, .external_lex_state = 15}, + [1431] = {.lex_state = 541, .external_lex_state = 42}, + [1432] = {.lex_state = 530, .external_lex_state = 11}, + [1433] = {.lex_state = 540, .external_lex_state = 42}, + [1434] = {.lex_state = 540, .external_lex_state = 42}, + [1435] = {.lex_state = 258, .external_lex_state = 15}, [1436] = {.lex_state = 541, .external_lex_state = 42}, - [1437] = {.lex_state = 288, .external_lex_state = 44}, - [1438] = {.lex_state = 541, .external_lex_state = 42}, - [1439] = {.lex_state = 542, .external_lex_state = 42}, - [1440] = {.lex_state = 542, .external_lex_state = 42}, - [1441] = {.lex_state = 290, .external_lex_state = 44}, - [1442] = {.lex_state = 290, .external_lex_state = 44}, - [1443] = {.lex_state = 542, .external_lex_state = 42}, - [1444] = {.lex_state = 243, .external_lex_state = 17}, - [1445] = {.lex_state = 542, .external_lex_state = 42}, - [1446] = {.lex_state = 243, .external_lex_state = 17}, - [1447] = {.lex_state = 541, .external_lex_state = 42}, - [1448] = {.lex_state = 541, .external_lex_state = 42}, - [1449] = {.lex_state = 541, .external_lex_state = 42}, - [1450] = {.lex_state = 542, .external_lex_state = 42}, - [1451] = {.lex_state = 284, .external_lex_state = 41}, + [1437] = {.lex_state = 541, .external_lex_state = 42}, + [1438] = {.lex_state = 284, .external_lex_state = 41}, + [1439] = {.lex_state = 540, .external_lex_state = 42}, + [1440] = {.lex_state = 295, .external_lex_state = 41}, + [1441] = {.lex_state = 295, .external_lex_state = 41}, + [1442] = {.lex_state = 288, .external_lex_state = 44}, + [1443] = {.lex_state = 284, .external_lex_state = 41}, + [1444] = {.lex_state = 284, .external_lex_state = 41}, + [1445] = {.lex_state = 425, .external_lex_state = 45}, + [1446] = {.lex_state = 530, .external_lex_state = 16}, + [1447] = {.lex_state = 288, .external_lex_state = 44}, + [1448] = {.lex_state = 540, .external_lex_state = 42}, + [1449] = {.lex_state = 284, .external_lex_state = 41}, + [1450] = {.lex_state = 243, .external_lex_state = 16}, + [1451] = {.lex_state = 541, .external_lex_state = 42}, [1452] = {.lex_state = 284, .external_lex_state = 41}, - [1453] = {.lex_state = 531, .external_lex_state = 17}, - [1454] = {.lex_state = 288, .external_lex_state = 44}, - [1455] = {.lex_state = 531, .external_lex_state = 17}, - [1456] = {.lex_state = 243, .external_lex_state = 17}, - [1457] = {.lex_state = 531, .external_lex_state = 17}, - [1458] = {.lex_state = 288, .external_lex_state = 44}, + [1453] = {.lex_state = 288, .external_lex_state = 44}, + [1454] = {.lex_state = 286, .external_lex_state = 41}, + [1455] = {.lex_state = 530, .external_lex_state = 11}, + [1456] = {.lex_state = 286, .external_lex_state = 41}, + [1457] = {.lex_state = 541, .external_lex_state = 42}, + [1458] = {.lex_state = 530, .external_lex_state = 16}, [1459] = {.lex_state = 288, .external_lex_state = 42}, - [1460] = {.lex_state = 295, .external_lex_state = 41}, - [1461] = {.lex_state = 295, .external_lex_state = 41}, - [1462] = {.lex_state = 284, .external_lex_state = 41}, + [1460] = {.lex_state = 286, .external_lex_state = 41}, + [1461] = {.lex_state = 530, .external_lex_state = 16}, + [1462] = {.lex_state = 540, .external_lex_state = 42}, [1463] = {.lex_state = 288, .external_lex_state = 42}, [1464] = {.lex_state = 286, .external_lex_state = 41}, [1465] = {.lex_state = 286, .external_lex_state = 41}, - [1466] = {.lex_state = 286, .external_lex_state = 41}, - [1467] = {.lex_state = 288, .external_lex_state = 42}, - [1468] = {.lex_state = 286, .external_lex_state = 41}, - [1469] = {.lex_state = 286, .external_lex_state = 41}, - [1470] = {.lex_state = 286, .external_lex_state = 41}, - [1471] = {.lex_state = 286, .external_lex_state = 41}, - [1472] = {.lex_state = 258, .external_lex_state = 16}, - [1473] = {.lex_state = 290, .external_lex_state = 42}, + [1466] = {.lex_state = 540, .external_lex_state = 42}, + [1467] = {.lex_state = 286, .external_lex_state = 41}, + [1468] = {.lex_state = 540, .external_lex_state = 42}, + [1469] = {.lex_state = 284, .external_lex_state = 41}, + [1470] = {.lex_state = 284, .external_lex_state = 41}, + [1471] = {.lex_state = 540, .external_lex_state = 42}, + [1472] = {.lex_state = 286, .external_lex_state = 41}, + [1473] = {.lex_state = 288, .external_lex_state = 44}, [1474] = {.lex_state = 290, .external_lex_state = 42}, - [1475] = {.lex_state = 286, .external_lex_state = 41}, - [1476] = {.lex_state = 541, .external_lex_state = 42}, - [1477] = {.lex_state = 286, .external_lex_state = 41}, - [1478] = {.lex_state = 286, .external_lex_state = 41}, - [1479] = {.lex_state = 295, .external_lex_state = 41}, - [1480] = {.lex_state = 290, .external_lex_state = 42}, - [1481] = {.lex_state = 531, .external_lex_state = 17}, - [1482] = {.lex_state = 542, .external_lex_state = 42}, - [1483] = {.lex_state = 288, .external_lex_state = 44}, - [1484] = {.lex_state = 542, .external_lex_state = 42}, - [1485] = {.lex_state = 288, .external_lex_state = 44}, - [1486] = {.lex_state = 425, .external_lex_state = 47}, + [1475] = {.lex_state = 437, .external_lex_state = 47}, + [1476] = {.lex_state = 540, .external_lex_state = 42}, + [1477] = {.lex_state = 540, .external_lex_state = 42}, + [1478] = {.lex_state = 540, .external_lex_state = 42}, + [1479] = {.lex_state = 540, .external_lex_state = 42}, + [1480] = {.lex_state = 288, .external_lex_state = 44}, + [1481] = {.lex_state = 540, .external_lex_state = 42}, + [1482] = {.lex_state = 290, .external_lex_state = 42}, + [1483] = {.lex_state = 243, .external_lex_state = 16}, + [1484] = {.lex_state = 541, .external_lex_state = 42}, + [1485] = {.lex_state = 425, .external_lex_state = 45}, + [1486] = {.lex_state = 243, .external_lex_state = 16}, [1487] = {.lex_state = 541, .external_lex_state = 42}, - [1488] = {.lex_state = 290, .external_lex_state = 44}, - [1489] = {.lex_state = 541, .external_lex_state = 42}, - [1490] = {.lex_state = 437, .external_lex_state = 48}, - [1491] = {.lex_state = 249, .external_lex_state = 21}, - [1492] = {.lex_state = 295, .external_lex_state = 41}, - [1493] = {.lex_state = 531, .external_lex_state = 17}, - [1494] = {.lex_state = 542, .external_lex_state = 42}, - [1495] = {.lex_state = 295, .external_lex_state = 41}, - [1496] = {.lex_state = 290, .external_lex_state = 44}, - [1497] = {.lex_state = 290, .external_lex_state = 44}, - [1498] = {.lex_state = 290, .external_lex_state = 44}, - [1499] = {.lex_state = 290, .external_lex_state = 44}, - [1500] = {.lex_state = 541, .external_lex_state = 42}, - [1501] = {.lex_state = 541, .external_lex_state = 42}, - [1502] = {.lex_state = 542, .external_lex_state = 42}, - [1503] = {.lex_state = 273, .external_lex_state = 26}, - [1504] = {.lex_state = 290, .external_lex_state = 44}, - [1505] = {.lex_state = 290, .external_lex_state = 44}, - [1506] = {.lex_state = 258, .external_lex_state = 16}, - [1507] = {.lex_state = 296, .external_lex_state = 44}, + [1488] = {.lex_state = 284, .external_lex_state = 41}, + [1489] = {.lex_state = 286, .external_lex_state = 41}, + [1490] = {.lex_state = 290, .external_lex_state = 44}, + [1491] = {.lex_state = 290, .external_lex_state = 44}, + [1492] = {.lex_state = 540, .external_lex_state = 42}, + [1493] = {.lex_state = 243, .external_lex_state = 16}, + [1494] = {.lex_state = 425, .external_lex_state = 45}, + [1495] = {.lex_state = 243, .external_lex_state = 16}, + [1496] = {.lex_state = 286, .external_lex_state = 41}, + [1497] = {.lex_state = 541, .external_lex_state = 42}, + [1498] = {.lex_state = 286, .external_lex_state = 41}, + [1499] = {.lex_state = 286, .external_lex_state = 41}, + [1500] = {.lex_state = 286, .external_lex_state = 41}, + [1501] = {.lex_state = 288, .external_lex_state = 42}, + [1502] = {.lex_state = 288, .external_lex_state = 42}, + [1503] = {.lex_state = 290, .external_lex_state = 42}, + [1504] = {.lex_state = 290, .external_lex_state = 42}, + [1505] = {.lex_state = 290, .external_lex_state = 42}, + [1506] = {.lex_state = 540, .external_lex_state = 44}, + [1507] = {.lex_state = 295, .external_lex_state = 41}, [1508] = {.lex_state = 295, .external_lex_state = 41}, - [1509] = {.lex_state = 542, .external_lex_state = 42}, - [1510] = {.lex_state = 542, .external_lex_state = 42}, - [1511] = {.lex_state = 542, .external_lex_state = 42}, - [1512] = {.lex_state = 273, .external_lex_state = 26}, - [1513] = {.lex_state = 295, .external_lex_state = 41}, - [1514] = {.lex_state = 542, .external_lex_state = 44}, - [1515] = {.lex_state = 295, .external_lex_state = 41}, - [1516] = {.lex_state = 542, .external_lex_state = 44}, - [1517] = {.lex_state = 541, .external_lex_state = 42}, - [1518] = {.lex_state = 290, .external_lex_state = 44}, - [1519] = {.lex_state = 290, .external_lex_state = 44}, - [1520] = {.lex_state = 290, .external_lex_state = 44}, - [1521] = {.lex_state = 296, .external_lex_state = 44}, - [1522] = {.lex_state = 258, .external_lex_state = 21}, - [1523] = {.lex_state = 252, .external_lex_state = 20}, - [1524] = {.lex_state = 296, .external_lex_state = 44}, - [1525] = {.lex_state = 290, .external_lex_state = 44}, - [1526] = {.lex_state = 249, .external_lex_state = 16}, - [1527] = {.lex_state = 541, .external_lex_state = 42}, - [1528] = {.lex_state = 288, .external_lex_state = 44}, - [1529] = {.lex_state = 288, .external_lex_state = 44}, - [1530] = {.lex_state = 288, .external_lex_state = 44}, - [1531] = {.lex_state = 541, .external_lex_state = 42}, - [1532] = {.lex_state = 252, .external_lex_state = 20}, - [1533] = {.lex_state = 288, .external_lex_state = 44}, - [1534] = {.lex_state = 531, .external_lex_state = 17}, - [1535] = {.lex_state = 288, .external_lex_state = 44}, - [1536] = {.lex_state = 295, .external_lex_state = 41}, - [1537] = {.lex_state = 288, .external_lex_state = 44}, - [1538] = {.lex_state = 425, .external_lex_state = 47}, - [1539] = {.lex_state = 261, .external_lex_state = 20}, - [1540] = {.lex_state = 288, .external_lex_state = 44}, - [1541] = {.lex_state = 288, .external_lex_state = 44}, - [1542] = {.lex_state = 261, .external_lex_state = 20}, + [1509] = {.lex_state = 295, .external_lex_state = 41}, + [1510] = {.lex_state = 541, .external_lex_state = 42}, + [1511] = {.lex_state = 541, .external_lex_state = 42}, + [1512] = {.lex_state = 290, .external_lex_state = 44}, + [1513] = {.lex_state = 290, .external_lex_state = 44}, + [1514] = {.lex_state = 530, .external_lex_state = 16}, + [1515] = {.lex_state = 258, .external_lex_state = 15}, + [1516] = {.lex_state = 288, .external_lex_state = 44}, + [1517] = {.lex_state = 258, .external_lex_state = 15}, + [1518] = {.lex_state = 541, .external_lex_state = 42}, + [1519] = {.lex_state = 288, .external_lex_state = 44}, + [1520] = {.lex_state = 541, .external_lex_state = 44}, + [1521] = {.lex_state = 530, .external_lex_state = 16}, + [1522] = {.lex_state = 295, .external_lex_state = 41}, + [1523] = {.lex_state = 258, .external_lex_state = 15}, + [1524] = {.lex_state = 288, .external_lex_state = 44}, + [1525] = {.lex_state = 288, .external_lex_state = 44}, + [1526] = {.lex_state = 540, .external_lex_state = 42}, + [1527] = {.lex_state = 295, .external_lex_state = 41}, + [1528] = {.lex_state = 541, .external_lex_state = 44}, + [1529] = {.lex_state = 290, .external_lex_state = 44}, + [1530] = {.lex_state = 290, .external_lex_state = 44}, + [1531] = {.lex_state = 290, .external_lex_state = 44}, + [1532] = {.lex_state = 290, .external_lex_state = 44}, + [1533] = {.lex_state = 425, .external_lex_state = 48}, + [1534] = {.lex_state = 530, .external_lex_state = 16}, + [1535] = {.lex_state = 290, .external_lex_state = 44}, + [1536] = {.lex_state = 425, .external_lex_state = 48}, + [1537] = {.lex_state = 540, .external_lex_state = 42}, + [1538] = {.lex_state = 461, .external_lex_state = 35}, + [1539] = {.lex_state = 425, .external_lex_state = 48}, + [1540] = {.lex_state = 530, .external_lex_state = 16}, + [1541] = {.lex_state = 290, .external_lex_state = 44}, + [1542] = {.lex_state = 290, .external_lex_state = 44}, [1543] = {.lex_state = 290, .external_lex_state = 44}, - [1544] = {.lex_state = 542, .external_lex_state = 44}, - [1545] = {.lex_state = 542, .external_lex_state = 42}, - [1546] = {.lex_state = 541, .external_lex_state = 42}, - [1547] = {.lex_state = 261, .external_lex_state = 20}, - [1548] = {.lex_state = 261, .external_lex_state = 20}, - [1549] = {.lex_state = 295, .external_lex_state = 41}, - [1550] = {.lex_state = 261, .external_lex_state = 20}, - [1551] = {.lex_state = 541, .external_lex_state = 42}, - [1552] = {.lex_state = 531, .external_lex_state = 17}, - [1553] = {.lex_state = 542, .external_lex_state = 42}, - [1554] = {.lex_state = 542, .external_lex_state = 44}, - [1555] = {.lex_state = 295, .external_lex_state = 41}, - [1556] = {.lex_state = 258, .external_lex_state = 16}, - [1557] = {.lex_state = 288, .external_lex_state = 44}, - [1558] = {.lex_state = 296, .external_lex_state = 44}, - [1559] = {.lex_state = 296, .external_lex_state = 44}, - [1560] = {.lex_state = 542, .external_lex_state = 44}, - [1561] = {.lex_state = 541, .external_lex_state = 42}, - [1562] = {.lex_state = 541, .external_lex_state = 42}, - [1563] = {.lex_state = 295, .external_lex_state = 41}, - [1564] = {.lex_state = 531, .external_lex_state = 17}, - [1565] = {.lex_state = 295, .external_lex_state = 41}, - [1566] = {.lex_state = 541, .external_lex_state = 42}, + [1544] = {.lex_state = 541, .external_lex_state = 44}, + [1545] = {.lex_state = 288, .external_lex_state = 44}, + [1546] = {.lex_state = 288, .external_lex_state = 44}, + [1547] = {.lex_state = 288, .external_lex_state = 44}, + [1548] = {.lex_state = 288, .external_lex_state = 44}, + [1549] = {.lex_state = 288, .external_lex_state = 44}, + [1550] = {.lex_state = 288, .external_lex_state = 44}, + [1551] = {.lex_state = 288, .external_lex_state = 44}, + [1552] = {.lex_state = 288, .external_lex_state = 44}, + [1553] = {.lex_state = 541, .external_lex_state = 44}, + [1554] = {.lex_state = 540, .external_lex_state = 42}, + [1555] = {.lex_state = 540, .external_lex_state = 42}, + [1556] = {.lex_state = 261, .external_lex_state = 18}, + [1557] = {.lex_state = 540, .external_lex_state = 42}, + [1558] = {.lex_state = 540, .external_lex_state = 42}, + [1559] = {.lex_state = 540, .external_lex_state = 44}, + [1560] = {.lex_state = 540, .external_lex_state = 42}, + [1561] = {.lex_state = 425, .external_lex_state = 49}, + [1562] = {.lex_state = 540, .external_lex_state = 42}, + [1563] = {.lex_state = 540, .external_lex_state = 42}, + [1564] = {.lex_state = 249, .external_lex_state = 15}, + [1565] = {.lex_state = 425, .external_lex_state = 48}, + [1566] = {.lex_state = 261, .external_lex_state = 18}, [1567] = {.lex_state = 295, .external_lex_state = 41}, - [1568] = {.lex_state = 541, .external_lex_state = 42}, - [1569] = {.lex_state = 541, .external_lex_state = 44}, - [1570] = {.lex_state = 541, .external_lex_state = 42}, - [1571] = {.lex_state = 249, .external_lex_state = 16}, - [1572] = {.lex_state = 541, .external_lex_state = 42}, - [1573] = {.lex_state = 541, .external_lex_state = 42}, - [1574] = {.lex_state = 541, .external_lex_state = 44}, - [1575] = {.lex_state = 541, .external_lex_state = 42}, - [1576] = {.lex_state = 290, .external_lex_state = 44}, - [1577] = {.lex_state = 290, .external_lex_state = 44}, - [1578] = {.lex_state = 541, .external_lex_state = 44}, - [1579] = {.lex_state = 541, .external_lex_state = 42}, - [1580] = {.lex_state = 541, .external_lex_state = 42}, - [1581] = {.lex_state = 249, .external_lex_state = 21}, - [1582] = {.lex_state = 541, .external_lex_state = 42}, - [1583] = {.lex_state = 295, .external_lex_state = 41}, - [1584] = {.lex_state = 249, .external_lex_state = 16}, - [1585] = {.lex_state = 288, .external_lex_state = 44}, - [1586] = {.lex_state = 295, .external_lex_state = 41}, - [1587] = {.lex_state = 296, .external_lex_state = 44}, - [1588] = {.lex_state = 425, .external_lex_state = 47}, - [1589] = {.lex_state = 541, .external_lex_state = 42}, - [1590] = {.lex_state = 249, .external_lex_state = 16}, - [1591] = {.lex_state = 541, .external_lex_state = 42}, - [1592] = {.lex_state = 542, .external_lex_state = 44}, - [1593] = {.lex_state = 542, .external_lex_state = 44}, - [1594] = {.lex_state = 541, .external_lex_state = 42}, - [1595] = {.lex_state = 541, .external_lex_state = 44}, - [1596] = {.lex_state = 541, .external_lex_state = 44}, - [1597] = {.lex_state = 541, .external_lex_state = 44}, - [1598] = {.lex_state = 542, .external_lex_state = 42}, - [1599] = {.lex_state = 541, .external_lex_state = 42}, - [1600] = {.lex_state = 258, .external_lex_state = 21}, - [1601] = {.lex_state = 288, .external_lex_state = 44}, - [1602] = {.lex_state = 541, .external_lex_state = 44}, - [1603] = {.lex_state = 542, .external_lex_state = 42}, - [1604] = {.lex_state = 425, .external_lex_state = 47}, - [1605] = {.lex_state = 290, .external_lex_state = 44}, - [1606] = {.lex_state = 542, .external_lex_state = 42}, - [1607] = {.lex_state = 437, .external_lex_state = 43}, - [1608] = {.lex_state = 295, .external_lex_state = 41}, - [1609] = {.lex_state = 542, .external_lex_state = 42}, - [1610] = {.lex_state = 541, .external_lex_state = 44}, - [1611] = {.lex_state = 541, .external_lex_state = 44}, - [1612] = {.lex_state = 541, .external_lex_state = 44}, - [1613] = {.lex_state = 541, .external_lex_state = 44}, - [1614] = {.lex_state = 258, .external_lex_state = 16}, - [1615] = {.lex_state = 541, .external_lex_state = 44}, - [1616] = {.lex_state = 542, .external_lex_state = 42}, - [1617] = {.lex_state = 261, .external_lex_state = 20}, - [1618] = {.lex_state = 542, .external_lex_state = 42}, - [1619] = {.lex_state = 542, .external_lex_state = 42}, - [1620] = {.lex_state = 541, .external_lex_state = 42}, - [1621] = {.lex_state = 531, .external_lex_state = 17}, - [1622] = {.lex_state = 252, .external_lex_state = 20}, - [1623] = {.lex_state = 288, .external_lex_state = 44}, - [1624] = {.lex_state = 258, .external_lex_state = 16}, - [1625] = {.lex_state = 280, .external_lex_state = 4}, - [1626] = {.lex_state = 531, .external_lex_state = 17}, - [1627] = {.lex_state = 542, .external_lex_state = 42}, - [1628] = {.lex_state = 542, .external_lex_state = 42}, - [1629] = {.lex_state = 541, .external_lex_state = 42}, - [1630] = {.lex_state = 541, .external_lex_state = 42}, - [1631] = {.lex_state = 542, .external_lex_state = 42}, - [1632] = {.lex_state = 542, .external_lex_state = 42}, - [1633] = {.lex_state = 531, .external_lex_state = 17}, - [1634] = {.lex_state = 542, .external_lex_state = 42}, - [1635] = {.lex_state = 425, .external_lex_state = 47}, - [1636] = {.lex_state = 542, .external_lex_state = 42}, - [1637] = {.lex_state = 542, .external_lex_state = 42}, - [1638] = {.lex_state = 542, .external_lex_state = 42}, - [1639] = {.lex_state = 542, .external_lex_state = 42}, - [1640] = {.lex_state = 542, .external_lex_state = 42}, - [1641] = {.lex_state = 542, .external_lex_state = 42}, - [1642] = {.lex_state = 542, .external_lex_state = 42}, - [1643] = {.lex_state = 542, .external_lex_state = 42}, - [1644] = {.lex_state = 541, .external_lex_state = 42}, - [1645] = {.lex_state = 541, .external_lex_state = 42}, - [1646] = {.lex_state = 541, .external_lex_state = 42}, - [1647] = {.lex_state = 542, .external_lex_state = 42}, - [1648] = {.lex_state = 542, .external_lex_state = 42}, - [1649] = {.lex_state = 542, .external_lex_state = 42}, - [1650] = {.lex_state = 531, .external_lex_state = 17}, - [1651] = {.lex_state = 280, .external_lex_state = 4}, - [1652] = {.lex_state = 541, .external_lex_state = 42}, + [1568] = {.lex_state = 540, .external_lex_state = 44}, + [1569] = {.lex_state = 540, .external_lex_state = 44}, + [1570] = {.lex_state = 290, .external_lex_state = 44}, + [1571] = {.lex_state = 530, .external_lex_state = 16}, + [1572] = {.lex_state = 290, .external_lex_state = 44}, + [1573] = {.lex_state = 425, .external_lex_state = 49}, + [1574] = {.lex_state = 258, .external_lex_state = 15}, + [1575] = {.lex_state = 425, .external_lex_state = 49}, + [1576] = {.lex_state = 437, .external_lex_state = 50}, + [1577] = {.lex_state = 295, .external_lex_state = 41}, + [1578] = {.lex_state = 540, .external_lex_state = 42}, + [1579] = {.lex_state = 540, .external_lex_state = 42}, + [1580] = {.lex_state = 425, .external_lex_state = 49}, + [1581] = {.lex_state = 540, .external_lex_state = 42}, + [1582] = {.lex_state = 541, .external_lex_state = 44}, + [1583] = {.lex_state = 425, .external_lex_state = 48}, + [1584] = {.lex_state = 541, .external_lex_state = 44}, + [1585] = {.lex_state = 249, .external_lex_state = 15}, + [1586] = {.lex_state = 258, .external_lex_state = 15}, + [1587] = {.lex_state = 461, .external_lex_state = 35}, + [1588] = {.lex_state = 258, .external_lex_state = 15}, + [1589] = {.lex_state = 290, .external_lex_state = 44}, + [1590] = {.lex_state = 540, .external_lex_state = 42}, + [1591] = {.lex_state = 295, .external_lex_state = 41}, + [1592] = {.lex_state = 540, .external_lex_state = 42}, + [1593] = {.lex_state = 261, .external_lex_state = 18}, + [1594] = {.lex_state = 540, .external_lex_state = 42}, + [1595] = {.lex_state = 425, .external_lex_state = 49}, + [1596] = {.lex_state = 540, .external_lex_state = 42}, + [1597] = {.lex_state = 540, .external_lex_state = 42}, + [1598] = {.lex_state = 249, .external_lex_state = 21}, + [1599] = {.lex_state = 540, .external_lex_state = 42}, + [1600] = {.lex_state = 540, .external_lex_state = 42}, + [1601] = {.lex_state = 249, .external_lex_state = 15}, + [1602] = {.lex_state = 249, .external_lex_state = 15}, + [1603] = {.lex_state = 540, .external_lex_state = 42}, + [1604] = {.lex_state = 290, .external_lex_state = 44}, + [1605] = {.lex_state = 425, .external_lex_state = 49}, + [1606] = {.lex_state = 540, .external_lex_state = 42}, + [1607] = {.lex_state = 540, .external_lex_state = 42}, + [1608] = {.lex_state = 540, .external_lex_state = 42}, + [1609] = {.lex_state = 541, .external_lex_state = 42}, + [1610] = {.lex_state = 541, .external_lex_state = 42}, + [1611] = {.lex_state = 541, .external_lex_state = 42}, + [1612] = {.lex_state = 290, .external_lex_state = 44}, + [1613] = {.lex_state = 295, .external_lex_state = 41}, + [1614] = {.lex_state = 296, .external_lex_state = 44}, + [1615] = {.lex_state = 258, .external_lex_state = 15}, + [1616] = {.lex_state = 295, .external_lex_state = 41}, + [1617] = {.lex_state = 541, .external_lex_state = 42}, + [1618] = {.lex_state = 425, .external_lex_state = 49}, + [1619] = {.lex_state = 295, .external_lex_state = 41}, + [1620] = {.lex_state = 258, .external_lex_state = 15}, + [1621] = {.lex_state = 541, .external_lex_state = 42}, + [1622] = {.lex_state = 280, .external_lex_state = 4}, + [1623] = {.lex_state = 280, .external_lex_state = 4}, + [1624] = {.lex_state = 296, .external_lex_state = 44}, + [1625] = {.lex_state = 261, .external_lex_state = 18}, + [1626] = {.lex_state = 541, .external_lex_state = 42}, + [1627] = {.lex_state = 541, .external_lex_state = 42}, + [1628] = {.lex_state = 252, .external_lex_state = 18}, + [1629] = {.lex_state = 540, .external_lex_state = 42}, + [1630] = {.lex_state = 425, .external_lex_state = 49}, + [1631] = {.lex_state = 541, .external_lex_state = 42}, + [1632] = {.lex_state = 296, .external_lex_state = 44}, + [1633] = {.lex_state = 541, .external_lex_state = 42}, + [1634] = {.lex_state = 540, .external_lex_state = 42}, + [1635] = {.lex_state = 541, .external_lex_state = 42}, + [1636] = {.lex_state = 425, .external_lex_state = 49}, + [1637] = {.lex_state = 290, .external_lex_state = 44}, + [1638] = {.lex_state = 290, .external_lex_state = 44}, + [1639] = {.lex_state = 541, .external_lex_state = 44}, + [1640] = {.lex_state = 541, .external_lex_state = 44}, + [1641] = {.lex_state = 425, .external_lex_state = 49}, + [1642] = {.lex_state = 290, .external_lex_state = 44}, + [1643] = {.lex_state = 425, .external_lex_state = 49}, + [1644] = {.lex_state = 252, .external_lex_state = 18}, + [1645] = {.lex_state = 541, .external_lex_state = 44}, + [1646] = {.lex_state = 425, .external_lex_state = 49}, + [1647] = {.lex_state = 541, .external_lex_state = 42}, + [1648] = {.lex_state = 541, .external_lex_state = 42}, + [1649] = {.lex_state = 530, .external_lex_state = 16}, + [1650] = {.lex_state = 541, .external_lex_state = 44}, + [1651] = {.lex_state = 540, .external_lex_state = 42}, + [1652] = {.lex_state = 295, .external_lex_state = 41}, [1653] = {.lex_state = 541, .external_lex_state = 42}, - [1654] = {.lex_state = 541, .external_lex_state = 42}, - [1655] = {.lex_state = 290, .external_lex_state = 44}, - [1656] = {.lex_state = 542, .external_lex_state = 44}, - [1657] = {.lex_state = 541, .external_lex_state = 42}, - [1658] = {.lex_state = 258, .external_lex_state = 16}, - [1659] = {.lex_state = 295, .external_lex_state = 41}, - [1660] = {.lex_state = 531, .external_lex_state = 17}, - [1661] = {.lex_state = 261, .external_lex_state = 20}, - [1662] = {.lex_state = 541, .external_lex_state = 42}, + [1654] = {.lex_state = 540, .external_lex_state = 44}, + [1655] = {.lex_state = 530, .external_lex_state = 16}, + [1656] = {.lex_state = 540, .external_lex_state = 42}, + [1657] = {.lex_state = 249, .external_lex_state = 21}, + [1658] = {.lex_state = 540, .external_lex_state = 42}, + [1659] = {.lex_state = 541, .external_lex_state = 42}, + [1660] = {.lex_state = 540, .external_lex_state = 42}, + [1661] = {.lex_state = 541, .external_lex_state = 42}, + [1662] = {.lex_state = 530, .external_lex_state = 16}, [1663] = {.lex_state = 541, .external_lex_state = 42}, - [1664] = {.lex_state = 541, .external_lex_state = 42}, - [1665] = {.lex_state = 541, .external_lex_state = 42}, + [1664] = {.lex_state = 437, .external_lex_state = 43}, + [1665] = {.lex_state = 261, .external_lex_state = 18}, [1666] = {.lex_state = 541, .external_lex_state = 42}, - [1667] = {.lex_state = 542, .external_lex_state = 44}, - [1668] = {.lex_state = 541, .external_lex_state = 42}, - [1669] = {.lex_state = 261, .external_lex_state = 20}, - [1670] = {.lex_state = 295, .external_lex_state = 41}, - [1671] = {.lex_state = 531, .external_lex_state = 17}, - [1672] = {.lex_state = 425, .external_lex_state = 47}, - [1673] = {.lex_state = 542, .external_lex_state = 44}, - [1674] = {.lex_state = 258, .external_lex_state = 16}, - [1675] = {.lex_state = 295, .external_lex_state = 41}, - [1676] = {.lex_state = 288, .external_lex_state = 44}, - [1677] = {.lex_state = 542, .external_lex_state = 44}, - [1678] = {.lex_state = 288, .external_lex_state = 44}, - [1679] = {.lex_state = 542, .external_lex_state = 42}, - [1680] = {.lex_state = 542, .external_lex_state = 42}, - [1681] = {.lex_state = 288, .external_lex_state = 44}, - [1682] = {.lex_state = 531, .external_lex_state = 17}, - [1683] = {.lex_state = 542, .external_lex_state = 42}, - [1684] = {.lex_state = 542, .external_lex_state = 42}, + [1667] = {.lex_state = 258, .external_lex_state = 15}, + [1668] = {.lex_state = 540, .external_lex_state = 42}, + [1669] = {.lex_state = 540, .external_lex_state = 42}, + [1670] = {.lex_state = 541, .external_lex_state = 42}, + [1671] = {.lex_state = 541, .external_lex_state = 42}, + [1672] = {.lex_state = 540, .external_lex_state = 42}, + [1673] = {.lex_state = 530, .external_lex_state = 16}, + [1674] = {.lex_state = 296, .external_lex_state = 44}, + [1675] = {.lex_state = 530, .external_lex_state = 16}, + [1676] = {.lex_state = 261, .external_lex_state = 18}, + [1677] = {.lex_state = 258, .external_lex_state = 15}, + [1678] = {.lex_state = 295, .external_lex_state = 41}, + [1679] = {.lex_state = 541, .external_lex_state = 42}, + [1680] = {.lex_state = 540, .external_lex_state = 42}, + [1681] = {.lex_state = 541, .external_lex_state = 44}, + [1682] = {.lex_state = 295, .external_lex_state = 41}, + [1683] = {.lex_state = 541, .external_lex_state = 42}, + [1684] = {.lex_state = 541, .external_lex_state = 44}, [1685] = {.lex_state = 295, .external_lex_state = 41}, - [1686] = {.lex_state = 541, .external_lex_state = 42}, - [1687] = {.lex_state = 258, .external_lex_state = 16}, + [1686] = {.lex_state = 288, .external_lex_state = 44}, + [1687] = {.lex_state = 288, .external_lex_state = 44}, [1688] = {.lex_state = 541, .external_lex_state = 42}, - [1689] = {.lex_state = 280, .external_lex_state = 4}, - [1690] = {.lex_state = 288, .external_lex_state = 44}, - [1691] = {.lex_state = 542, .external_lex_state = 42}, - [1692] = {.lex_state = 290, .external_lex_state = 44}, - [1693] = {.lex_state = 280, .external_lex_state = 4}, - [1694] = {.lex_state = 280, .external_lex_state = 4}, - [1695] = {.lex_state = 542, .external_lex_state = 44}, - [1696] = {.lex_state = 258, .external_lex_state = 16}, - [1697] = {.lex_state = 295, .external_lex_state = 41}, + [1689] = {.lex_state = 541, .external_lex_state = 42}, + [1690] = {.lex_state = 541, .external_lex_state = 42}, + [1691] = {.lex_state = 541, .external_lex_state = 42}, + [1692] = {.lex_state = 540, .external_lex_state = 42}, + [1693] = {.lex_state = 540, .external_lex_state = 42}, + [1694] = {.lex_state = 540, .external_lex_state = 42}, + [1695] = {.lex_state = 541, .external_lex_state = 42}, + [1696] = {.lex_state = 288, .external_lex_state = 44}, + [1697] = {.lex_state = 425, .external_lex_state = 48}, [1698] = {.lex_state = 541, .external_lex_state = 42}, - [1699] = {.lex_state = 290, .external_lex_state = 44}, + [1699] = {.lex_state = 541, .external_lex_state = 42}, [1700] = {.lex_state = 541, .external_lex_state = 42}, - [1701] = {.lex_state = 541, .external_lex_state = 42}, - [1702] = {.lex_state = 425, .external_lex_state = 47}, - [1703] = {.lex_state = 290, .external_lex_state = 44}, - [1704] = {.lex_state = 258, .external_lex_state = 16}, - [1705] = {.lex_state = 258, .external_lex_state = 16}, - [1706] = {.lex_state = 542, .external_lex_state = 42}, + [1701] = {.lex_state = 461, .external_lex_state = 35}, + [1702] = {.lex_state = 288, .external_lex_state = 44}, + [1703] = {.lex_state = 258, .external_lex_state = 21}, + [1704] = {.lex_state = 288, .external_lex_state = 44}, + [1705] = {.lex_state = 530, .external_lex_state = 16}, + [1706] = {.lex_state = 530, .external_lex_state = 16}, [1707] = {.lex_state = 541, .external_lex_state = 42}, - [1708] = {.lex_state = 261, .external_lex_state = 20}, - [1709] = {.lex_state = 541, .external_lex_state = 42}, - [1710] = {.lex_state = 541, .external_lex_state = 42}, - [1711] = {.lex_state = 261, .external_lex_state = 20}, - [1712] = {.lex_state = 280, .external_lex_state = 4}, - [1713] = {.lex_state = 542, .external_lex_state = 42}, - [1714] = {.lex_state = 542, .external_lex_state = 42}, - [1715] = {.lex_state = 542, .external_lex_state = 42}, - [1716] = {.lex_state = 542, .external_lex_state = 42}, - [1717] = {.lex_state = 542, .external_lex_state = 42}, - [1718] = {.lex_state = 258, .external_lex_state = 16}, - [1719] = {.lex_state = 261, .external_lex_state = 20}, - [1720] = {.lex_state = 542, .external_lex_state = 42}, - [1721] = {.lex_state = 288, .external_lex_state = 44}, - [1722] = {.lex_state = 541, .external_lex_state = 42}, - [1723] = {.lex_state = 541, .external_lex_state = 42}, - [1724] = {.lex_state = 541, .external_lex_state = 42}, - [1725] = {.lex_state = 542, .external_lex_state = 42}, - [1726] = {.lex_state = 541, .external_lex_state = 44}, - [1727] = {.lex_state = 543, .external_lex_state = 44}, - [1728] = {.lex_state = 543, .external_lex_state = 44}, - [1729] = {.lex_state = 465, .external_lex_state = 49}, - [1730] = {.lex_state = 543, .external_lex_state = 44}, - [1731] = {.lex_state = 541, .external_lex_state = 44}, - [1732] = {.lex_state = 541, .external_lex_state = 44}, - [1733] = {.lex_state = 541, .external_lex_state = 44}, - [1734] = {.lex_state = 541, .external_lex_state = 44}, - [1735] = {.lex_state = 541, .external_lex_state = 44}, - [1736] = {.lex_state = 541, .external_lex_state = 44}, - [1737] = {.lex_state = 541, .external_lex_state = 44}, - [1738] = {.lex_state = 541, .external_lex_state = 44}, - [1739] = {.lex_state = 543, .external_lex_state = 44}, - [1740] = {.lex_state = 541, .external_lex_state = 44}, - [1741] = {.lex_state = 543, .external_lex_state = 44}, - [1742] = {.lex_state = 541, .external_lex_state = 44}, - [1743] = {.lex_state = 543, .external_lex_state = 44}, - [1744] = {.lex_state = 541, .external_lex_state = 44}, - [1745] = {.lex_state = 541, .external_lex_state = 44}, - [1746] = {.lex_state = 541, .external_lex_state = 44}, - [1747] = {.lex_state = 541, .external_lex_state = 44}, - [1748] = {.lex_state = 534, .external_lex_state = 20}, - [1749] = {.lex_state = 541, .external_lex_state = 44}, - [1750] = {.lex_state = 541, .external_lex_state = 44}, - [1751] = {.lex_state = 541, .external_lex_state = 44}, - [1752] = {.lex_state = 541, .external_lex_state = 44}, - [1753] = {.lex_state = 541, .external_lex_state = 44}, - [1754] = {.lex_state = 541, .external_lex_state = 44}, - [1755] = {.lex_state = 543, .external_lex_state = 44}, - [1756] = {.lex_state = 541, .external_lex_state = 44}, - [1757] = {.lex_state = 541, .external_lex_state = 44}, - [1758] = {.lex_state = 541, .external_lex_state = 44}, - [1759] = {.lex_state = 541, .external_lex_state = 44}, - [1760] = {.lex_state = 541, .external_lex_state = 44}, - [1761] = {.lex_state = 541, .external_lex_state = 44}, - [1762] = {.lex_state = 541, .external_lex_state = 44}, - [1763] = {.lex_state = 541, .external_lex_state = 44}, - [1764] = {.lex_state = 541, .external_lex_state = 44}, - [1765] = {.lex_state = 541, .external_lex_state = 44}, - [1766] = {.lex_state = 541, .external_lex_state = 44}, - [1767] = {.lex_state = 541, .external_lex_state = 44}, - [1768] = {.lex_state = 541, .external_lex_state = 44}, - [1769] = {.lex_state = 541, .external_lex_state = 44}, - [1770] = {.lex_state = 541, .external_lex_state = 44}, - [1771] = {.lex_state = 541, .external_lex_state = 44}, - [1772] = {.lex_state = 541, .external_lex_state = 44}, - [1773] = {.lex_state = 425, .external_lex_state = 50}, - [1774] = {.lex_state = 425, .external_lex_state = 50}, - [1775] = {.lex_state = 536, .external_lex_state = 20}, - [1776] = {.lex_state = 536, .external_lex_state = 20}, - [1777] = {.lex_state = 536, .external_lex_state = 20}, + [1708] = {.lex_state = 288, .external_lex_state = 44}, + [1709] = {.lex_state = 261, .external_lex_state = 18}, + [1710] = {.lex_state = 288, .external_lex_state = 44}, + [1711] = {.lex_state = 261, .external_lex_state = 18}, + [1712] = {.lex_state = 261, .external_lex_state = 18}, + [1713] = {.lex_state = 541, .external_lex_state = 42}, + [1714] = {.lex_state = 288, .external_lex_state = 44}, + [1715] = {.lex_state = 541, .external_lex_state = 42}, + [1716] = {.lex_state = 290, .external_lex_state = 44}, + [1717] = {.lex_state = 296, .external_lex_state = 44}, + [1718] = {.lex_state = 296, .external_lex_state = 44}, + [1719] = {.lex_state = 295, .external_lex_state = 41}, + [1720] = {.lex_state = 290, .external_lex_state = 44}, + [1721] = {.lex_state = 295, .external_lex_state = 41}, + [1722] = {.lex_state = 295, .external_lex_state = 41}, + [1723] = {.lex_state = 295, .external_lex_state = 41}, + [1724] = {.lex_state = 258, .external_lex_state = 21}, + [1725] = {.lex_state = 540, .external_lex_state = 42}, + [1726] = {.lex_state = 540, .external_lex_state = 42}, + [1727] = {.lex_state = 541, .external_lex_state = 42}, + [1728] = {.lex_state = 258, .external_lex_state = 15}, + [1729] = {.lex_state = 295, .external_lex_state = 41}, + [1730] = {.lex_state = 541, .external_lex_state = 42}, + [1731] = {.lex_state = 252, .external_lex_state = 18}, + [1732] = {.lex_state = 541, .external_lex_state = 42}, + [1733] = {.lex_state = 540, .external_lex_state = 42}, + [1734] = {.lex_state = 540, .external_lex_state = 44}, + [1735] = {.lex_state = 540, .external_lex_state = 44}, + [1736] = {.lex_state = 540, .external_lex_state = 44}, + [1737] = {.lex_state = 425, .external_lex_state = 48}, + [1738] = {.lex_state = 540, .external_lex_state = 42}, + [1739] = {.lex_state = 540, .external_lex_state = 44}, + [1740] = {.lex_state = 541, .external_lex_state = 42}, + [1741] = {.lex_state = 541, .external_lex_state = 42}, + [1742] = {.lex_state = 425, .external_lex_state = 48}, + [1743] = {.lex_state = 541, .external_lex_state = 42}, + [1744] = {.lex_state = 540, .external_lex_state = 42}, + [1745] = {.lex_state = 540, .external_lex_state = 42}, + [1746] = {.lex_state = 541, .external_lex_state = 42}, + [1747] = {.lex_state = 541, .external_lex_state = 42}, + [1748] = {.lex_state = 540, .external_lex_state = 42}, + [1749] = {.lex_state = 540, .external_lex_state = 42}, + [1750] = {.lex_state = 540, .external_lex_state = 42}, + [1751] = {.lex_state = 541, .external_lex_state = 42}, + [1752] = {.lex_state = 541, .external_lex_state = 42}, + [1753] = {.lex_state = 540, .external_lex_state = 42}, + [1754] = {.lex_state = 540, .external_lex_state = 42}, + [1755] = {.lex_state = 540, .external_lex_state = 42}, + [1756] = {.lex_state = 540, .external_lex_state = 42}, + [1757] = {.lex_state = 540, .external_lex_state = 42}, + [1758] = {.lex_state = 541, .external_lex_state = 42}, + [1759] = {.lex_state = 541, .external_lex_state = 42}, + [1760] = {.lex_state = 540, .external_lex_state = 44}, + [1761] = {.lex_state = 540, .external_lex_state = 42}, + [1762] = {.lex_state = 540, .external_lex_state = 42}, + [1763] = {.lex_state = 280, .external_lex_state = 4}, + [1764] = {.lex_state = 540, .external_lex_state = 44}, + [1765] = {.lex_state = 280, .external_lex_state = 4}, + [1766] = {.lex_state = 280, .external_lex_state = 4}, + [1767] = {.lex_state = 540, .external_lex_state = 44}, + [1768] = {.lex_state = 261, .external_lex_state = 18}, + [1769] = {.lex_state = 261, .external_lex_state = 18}, + [1770] = {.lex_state = 280, .external_lex_state = 4}, + [1771] = {.lex_state = 540, .external_lex_state = 42}, + [1772] = {.lex_state = 540, .external_lex_state = 44}, + [1773] = {.lex_state = 425, .external_lex_state = 49}, + [1774] = {.lex_state = 541, .external_lex_state = 44}, + [1775] = {.lex_state = 425, .external_lex_state = 49}, + [1776] = {.lex_state = 541, .external_lex_state = 44}, + [1777] = {.lex_state = 425, .external_lex_state = 49}, [1778] = {.lex_state = 249, .external_lex_state = 21}, - [1779] = {.lex_state = 543, .external_lex_state = 44}, - [1780] = {.lex_state = 543, .external_lex_state = 44}, - [1781] = {.lex_state = 425, .external_lex_state = 51}, - [1782] = {.lex_state = 425, .external_lex_state = 50}, - [1783] = {.lex_state = 425, .external_lex_state = 51}, - [1784] = {.lex_state = 252, .external_lex_state = 22}, - [1785] = {.lex_state = 264, .external_lex_state = 21}, - [1786] = {.lex_state = 534, .external_lex_state = 20}, - [1787] = {.lex_state = 536, .external_lex_state = 20}, - [1788] = {.lex_state = 258, .external_lex_state = 21}, - [1789] = {.lex_state = 425, .external_lex_state = 50}, - [1790] = {.lex_state = 536, .external_lex_state = 20}, - [1791] = {.lex_state = 463, .external_lex_state = 29}, - [1792] = {.lex_state = 536, .external_lex_state = 20}, - [1793] = {.lex_state = 261, .external_lex_state = 20}, - [1794] = {.lex_state = 261, .external_lex_state = 20}, - [1795] = {.lex_state = 536, .external_lex_state = 20}, - [1796] = {.lex_state = 536, .external_lex_state = 20}, - [1797] = {.lex_state = 252, .external_lex_state = 20}, - [1798] = {.lex_state = 296, .external_lex_state = 44}, - [1799] = {.lex_state = 296, .external_lex_state = 44}, - [1800] = {.lex_state = 296, .external_lex_state = 44}, - [1801] = {.lex_state = 252, .external_lex_state = 22}, - [1802] = {.lex_state = 296, .external_lex_state = 44}, - [1803] = {.lex_state = 296, .external_lex_state = 44}, - [1804] = {.lex_state = 296, .external_lex_state = 44}, - [1805] = {.lex_state = 296, .external_lex_state = 44}, - [1806] = {.lex_state = 425, .external_lex_state = 50}, - [1807] = {.lex_state = 261, .external_lex_state = 20}, - [1808] = {.lex_state = 261, .external_lex_state = 20}, - [1809] = {.lex_state = 534, .external_lex_state = 20}, - [1810] = {.lex_state = 261, .external_lex_state = 22}, + [1779] = {.lex_state = 425, .external_lex_state = 49}, + [1780] = {.lex_state = 425, .external_lex_state = 49}, + [1781] = {.lex_state = 425, .external_lex_state = 49}, + [1782] = {.lex_state = 541, .external_lex_state = 44}, + [1783] = {.lex_state = 541, .external_lex_state = 44}, + [1784] = {.lex_state = 425, .external_lex_state = 49}, + [1785] = {.lex_state = 425, .external_lex_state = 49}, + [1786] = {.lex_state = 425, .external_lex_state = 49}, + [1787] = {.lex_state = 541, .external_lex_state = 44}, + [1788] = {.lex_state = 540, .external_lex_state = 44}, + [1789] = {.lex_state = 535, .external_lex_state = 18}, + [1790] = {.lex_state = 541, .external_lex_state = 44}, + [1791] = {.lex_state = 463, .external_lex_state = 28}, + [1792] = {.lex_state = 425, .external_lex_state = 49}, + [1793] = {.lex_state = 541, .external_lex_state = 44}, + [1794] = {.lex_state = 425, .external_lex_state = 49}, + [1795] = {.lex_state = 540, .external_lex_state = 44}, + [1796] = {.lex_state = 540, .external_lex_state = 44}, + [1797] = {.lex_state = 425, .external_lex_state = 49}, + [1798] = {.lex_state = 541, .external_lex_state = 44}, + [1799] = {.lex_state = 535, .external_lex_state = 18}, + [1800] = {.lex_state = 541, .external_lex_state = 44}, + [1801] = {.lex_state = 541, .external_lex_state = 44}, + [1802] = {.lex_state = 541, .external_lex_state = 44}, + [1803] = {.lex_state = 541, .external_lex_state = 44}, + [1804] = {.lex_state = 541, .external_lex_state = 44}, + [1805] = {.lex_state = 425, .external_lex_state = 49}, + [1806] = {.lex_state = 535, .external_lex_state = 18}, + [1807] = {.lex_state = 425, .external_lex_state = 49}, + [1808] = {.lex_state = 542, .external_lex_state = 44}, + [1809] = {.lex_state = 542, .external_lex_state = 44}, + [1810] = {.lex_state = 425, .external_lex_state = 49}, [1811] = {.lex_state = 296, .external_lex_state = 44}, - [1812] = {.lex_state = 542, .external_lex_state = 44}, - [1813] = {.lex_state = 296, .external_lex_state = 44}, - [1814] = {.lex_state = 542, .external_lex_state = 44}, - [1815] = {.lex_state = 542, .external_lex_state = 44}, - [1816] = {.lex_state = 542, .external_lex_state = 44}, - [1817] = {.lex_state = 542, .external_lex_state = 44}, - [1818] = {.lex_state = 542, .external_lex_state = 44}, - [1819] = {.lex_state = 542, .external_lex_state = 44}, - [1820] = {.lex_state = 534, .external_lex_state = 20}, - [1821] = {.lex_state = 542, .external_lex_state = 44}, - [1822] = {.lex_state = 542, .external_lex_state = 44}, - [1823] = {.lex_state = 296, .external_lex_state = 44}, - [1824] = {.lex_state = 296, .external_lex_state = 44}, - [1825] = {.lex_state = 542, .external_lex_state = 44}, - [1826] = {.lex_state = 542, .external_lex_state = 44}, - [1827] = {.lex_state = 542, .external_lex_state = 44}, - [1828] = {.lex_state = 542, .external_lex_state = 44}, - [1829] = {.lex_state = 542, .external_lex_state = 44}, - [1830] = {.lex_state = 542, .external_lex_state = 44}, - [1831] = {.lex_state = 542, .external_lex_state = 44}, - [1832] = {.lex_state = 542, .external_lex_state = 44}, - [1833] = {.lex_state = 542, .external_lex_state = 44}, - [1834] = {.lex_state = 542, .external_lex_state = 44}, - [1835] = {.lex_state = 543, .external_lex_state = 44}, - [1836] = {.lex_state = 543, .external_lex_state = 44}, - [1837] = {.lex_state = 296, .external_lex_state = 44}, - [1838] = {.lex_state = 280, .external_lex_state = 34}, - [1839] = {.lex_state = 296, .external_lex_state = 44}, - [1840] = {.lex_state = 296, .external_lex_state = 44}, - [1841] = {.lex_state = 296, .external_lex_state = 44}, - [1842] = {.lex_state = 296, .external_lex_state = 44}, - [1843] = {.lex_state = 296, .external_lex_state = 44}, - [1844] = {.lex_state = 296, .external_lex_state = 44}, - [1845] = {.lex_state = 425, .external_lex_state = 51}, - [1846] = {.lex_state = 425, .external_lex_state = 50}, - [1847] = {.lex_state = 541, .external_lex_state = 44}, - [1848] = {.lex_state = 541, .external_lex_state = 44}, - [1849] = {.lex_state = 541, .external_lex_state = 44}, - [1850] = {.lex_state = 425, .external_lex_state = 51}, - [1851] = {.lex_state = 465, .external_lex_state = 49}, - [1852] = {.lex_state = 425, .external_lex_state = 51}, - [1853] = {.lex_state = 465, .external_lex_state = 49}, - [1854] = {.lex_state = 465, .external_lex_state = 49}, - [1855] = {.lex_state = 543, .external_lex_state = 44}, - [1856] = {.lex_state = 425, .external_lex_state = 51}, - [1857] = {.lex_state = 541, .external_lex_state = 44}, - [1858] = {.lex_state = 541, .external_lex_state = 44}, - [1859] = {.lex_state = 542, .external_lex_state = 44}, - [1860] = {.lex_state = 542, .external_lex_state = 44}, - [1861] = {.lex_state = 542, .external_lex_state = 44}, - [1862] = {.lex_state = 461, .external_lex_state = 36}, - [1863] = {.lex_state = 425, .external_lex_state = 51}, - [1864] = {.lex_state = 280, .external_lex_state = 34}, - [1865] = {.lex_state = 280, .external_lex_state = 34}, - [1866] = {.lex_state = 280, .external_lex_state = 34}, - [1867] = {.lex_state = 425, .external_lex_state = 51}, - [1868] = {.lex_state = 425, .external_lex_state = 51}, - [1869] = {.lex_state = 536, .external_lex_state = 20}, - [1870] = {.lex_state = 425, .external_lex_state = 51}, - [1871] = {.lex_state = 261, .external_lex_state = 20}, - [1872] = {.lex_state = 425, .external_lex_state = 51}, - [1873] = {.lex_state = 425, .external_lex_state = 51}, - [1874] = {.lex_state = 536, .external_lex_state = 20}, - [1875] = {.lex_state = 461, .external_lex_state = 36}, - [1876] = {.lex_state = 542, .external_lex_state = 44}, - [1877] = {.lex_state = 534, .external_lex_state = 20}, - [1878] = {.lex_state = 252, .external_lex_state = 20}, - [1879] = {.lex_state = 542, .external_lex_state = 44}, - [1880] = {.lex_state = 542, .external_lex_state = 44}, - [1881] = {.lex_state = 542, .external_lex_state = 44}, - [1882] = {.lex_state = 261, .external_lex_state = 20}, - [1883] = {.lex_state = 261, .external_lex_state = 20}, - [1884] = {.lex_state = 542, .external_lex_state = 44}, - [1885] = {.lex_state = 542, .external_lex_state = 44}, - [1886] = {.lex_state = 252, .external_lex_state = 20}, - [1887] = {.lex_state = 542, .external_lex_state = 44}, - [1888] = {.lex_state = 252, .external_lex_state = 20}, - [1889] = {.lex_state = 261, .external_lex_state = 20}, - [1890] = {.lex_state = 425, .external_lex_state = 50}, - [1891] = {.lex_state = 461, .external_lex_state = 36}, - [1892] = {.lex_state = 536, .external_lex_state = 20}, - [1893] = {.lex_state = 534, .external_lex_state = 20}, - [1894] = {.lex_state = 261, .external_lex_state = 20}, - [1895] = {.lex_state = 536, .external_lex_state = 20}, - [1896] = {.lex_state = 463, .external_lex_state = 29}, - [1897] = {.lex_state = 542, .external_lex_state = 44}, - [1898] = {.lex_state = 542, .external_lex_state = 44}, - [1899] = {.lex_state = 542, .external_lex_state = 44}, - [1900] = {.lex_state = 542, .external_lex_state = 44}, - [1901] = {.lex_state = 542, .external_lex_state = 44}, - [1902] = {.lex_state = 264, .external_lex_state = 21}, - [1903] = {.lex_state = 542, .external_lex_state = 44}, - [1904] = {.lex_state = 542, .external_lex_state = 44}, - [1905] = {.lex_state = 542, .external_lex_state = 44}, - [1906] = {.lex_state = 542, .external_lex_state = 44}, - [1907] = {.lex_state = 542, .external_lex_state = 44}, - [1908] = {.lex_state = 542, .external_lex_state = 44}, - [1909] = {.lex_state = 542, .external_lex_state = 44}, - [1910] = {.lex_state = 261, .external_lex_state = 20}, - [1911] = {.lex_state = 536, .external_lex_state = 20}, - [1912] = {.lex_state = 261, .external_lex_state = 20}, - [1913] = {.lex_state = 425, .external_lex_state = 50}, - [1914] = {.lex_state = 542, .external_lex_state = 44}, - [1915] = {.lex_state = 542, .external_lex_state = 44}, - [1916] = {.lex_state = 463, .external_lex_state = 29}, - [1917] = {.lex_state = 465, .external_lex_state = 49}, - [1918] = {.lex_state = 261, .external_lex_state = 22}, - [1919] = {.lex_state = 465, .external_lex_state = 49}, - [1920] = {.lex_state = 280, .external_lex_state = 34}, - [1921] = {.lex_state = 280, .external_lex_state = 34}, - [1922] = {.lex_state = 280, .external_lex_state = 34}, - [1923] = {.lex_state = 280, .external_lex_state = 34}, - [1924] = {.lex_state = 465, .external_lex_state = 49}, - [1925] = {.lex_state = 536, .external_lex_state = 20}, - [1926] = {.lex_state = 280, .external_lex_state = 34}, - [1927] = {.lex_state = 280, .external_lex_state = 34}, - [1928] = {.lex_state = 280, .external_lex_state = 34}, - [1929] = {.lex_state = 296, .external_lex_state = 44}, - [1930] = {.lex_state = 536, .external_lex_state = 20}, - [1931] = {.lex_state = 425, .external_lex_state = 51}, - [1932] = {.lex_state = 536, .external_lex_state = 20}, - [1933] = {.lex_state = 425, .external_lex_state = 51}, - [1934] = {.lex_state = 425, .external_lex_state = 51}, - [1935] = {.lex_state = 425, .external_lex_state = 51}, - [1936] = {.lex_state = 425, .external_lex_state = 51}, - [1937] = {.lex_state = 425, .external_lex_state = 51}, - [1938] = {.lex_state = 536, .external_lex_state = 20}, - [1939] = {.lex_state = 425, .external_lex_state = 51}, - [1940] = {.lex_state = 425, .external_lex_state = 51}, - [1941] = {.lex_state = 425, .external_lex_state = 51}, - [1942] = {.lex_state = 543, .external_lex_state = 44}, - [1943] = {.lex_state = 536, .external_lex_state = 20}, - [1944] = {.lex_state = 536, .external_lex_state = 20}, - [1945] = {.lex_state = 536, .external_lex_state = 22}, - [1946] = {.lex_state = 543, .external_lex_state = 44}, - [1947] = {.lex_state = 536, .external_lex_state = 20}, - [1948] = {.lex_state = 543, .external_lex_state = 44}, - [1949] = {.lex_state = 536, .external_lex_state = 20}, - [1950] = {.lex_state = 425, .external_lex_state = 51}, - [1951] = {.lex_state = 543, .external_lex_state = 44}, - [1952] = {.lex_state = 543, .external_lex_state = 44}, - [1953] = {.lex_state = 543, .external_lex_state = 44}, - [1954] = {.lex_state = 425, .external_lex_state = 51}, - [1955] = {.lex_state = 425, .external_lex_state = 51}, - [1956] = {.lex_state = 543, .external_lex_state = 44}, - [1957] = {.lex_state = 252, .external_lex_state = 22}, - [1958] = {.lex_state = 543, .external_lex_state = 44}, - [1959] = {.lex_state = 425, .external_lex_state = 51}, - [1960] = {.lex_state = 534, .external_lex_state = 20}, - [1961] = {.lex_state = 425, .external_lex_state = 51}, - [1962] = {.lex_state = 425, .external_lex_state = 51}, - [1963] = {.lex_state = 543, .external_lex_state = 44}, - [1964] = {.lex_state = 425, .external_lex_state = 51}, - [1965] = {.lex_state = 425, .external_lex_state = 51}, - [1966] = {.lex_state = 425, .external_lex_state = 51}, - [1967] = {.lex_state = 425, .external_lex_state = 51}, - [1968] = {.lex_state = 425, .external_lex_state = 51}, - [1969] = {.lex_state = 425, .external_lex_state = 51}, - [1970] = {.lex_state = 425, .external_lex_state = 51}, - [1971] = {.lex_state = 425, .external_lex_state = 51}, - [1972] = {.lex_state = 543, .external_lex_state = 44}, - [1973] = {.lex_state = 270, .external_lex_state = 22}, - [1974] = {.lex_state = 543, .external_lex_state = 44}, - [1975] = {.lex_state = 465, .external_lex_state = 49}, - [1976] = {.lex_state = 534, .external_lex_state = 20}, - [1977] = {.lex_state = 261, .external_lex_state = 22}, - [1978] = {.lex_state = 425, .external_lex_state = 51}, - [1979] = {.lex_state = 536, .external_lex_state = 20}, - [1980] = {.lex_state = 465, .external_lex_state = 49}, - [1981] = {.lex_state = 543, .external_lex_state = 44}, - [1982] = {.lex_state = 465, .external_lex_state = 49}, - [1983] = {.lex_state = 543, .external_lex_state = 44}, - [1984] = {.lex_state = 534, .external_lex_state = 20}, - [1985] = {.lex_state = 465, .external_lex_state = 49}, - [1986] = {.lex_state = 543, .external_lex_state = 44}, - [1987] = {.lex_state = 465, .external_lex_state = 49}, - [1988] = {.lex_state = 425, .external_lex_state = 51}, - [1989] = {.lex_state = 465, .external_lex_state = 49}, - [1990] = {.lex_state = 425, .external_lex_state = 51}, - [1991] = {.lex_state = 536, .external_lex_state = 22}, - [1992] = {.lex_state = 534, .external_lex_state = 20}, - [1993] = {.lex_state = 543, .external_lex_state = 44}, - [1994] = {.lex_state = 534, .external_lex_state = 20}, - [1995] = {.lex_state = 543, .external_lex_state = 44}, - [1996] = {.lex_state = 543, .external_lex_state = 44}, - [1997] = {.lex_state = 543, .external_lex_state = 44}, - [1998] = {.lex_state = 534, .external_lex_state = 22}, - [1999] = {.lex_state = 543, .external_lex_state = 44}, - [2000] = {.lex_state = 465, .external_lex_state = 49}, - [2001] = {.lex_state = 543, .external_lex_state = 44}, - [2002] = {.lex_state = 543, .external_lex_state = 44}, - [2003] = {.lex_state = 536, .external_lex_state = 20}, - [2004] = {.lex_state = 543, .external_lex_state = 44}, - [2005] = {.lex_state = 465, .external_lex_state = 49}, - [2006] = {.lex_state = 536, .external_lex_state = 22}, - [2007] = {.lex_state = 465, .external_lex_state = 52}, - [2008] = {.lex_state = 465, .external_lex_state = 52}, - [2009] = {.lex_state = 425, .external_lex_state = 51}, - [2010] = {.lex_state = 425, .external_lex_state = 51}, - [2011] = {.lex_state = 425, .external_lex_state = 51}, - [2012] = {.lex_state = 536, .external_lex_state = 20}, - [2013] = {.lex_state = 465, .external_lex_state = 52}, - [2014] = {.lex_state = 465, .external_lex_state = 52}, - [2015] = {.lex_state = 543, .external_lex_state = 44}, - [2016] = {.lex_state = 425, .external_lex_state = 51}, - [2017] = {.lex_state = 425, .external_lex_state = 51}, - [2018] = {.lex_state = 425, .external_lex_state = 51}, - [2019] = {.lex_state = 425, .external_lex_state = 51}, - [2020] = {.lex_state = 425, .external_lex_state = 51}, - [2021] = {.lex_state = 425, .external_lex_state = 51}, - [2022] = {.lex_state = 425, .external_lex_state = 51}, - [2023] = {.lex_state = 425, .external_lex_state = 51}, - [2024] = {.lex_state = 425, .external_lex_state = 51}, - [2025] = {.lex_state = 425, .external_lex_state = 51}, - [2026] = {.lex_state = 425, .external_lex_state = 51}, - [2027] = {.lex_state = 425, .external_lex_state = 51}, - [2028] = {.lex_state = 425, .external_lex_state = 51}, - [2029] = {.lex_state = 425, .external_lex_state = 51}, - [2030] = {.lex_state = 425, .external_lex_state = 51}, - [2031] = {.lex_state = 425, .external_lex_state = 51}, - [2032] = {.lex_state = 543, .external_lex_state = 44}, - [2033] = {.lex_state = 543, .external_lex_state = 44}, - [2034] = {.lex_state = 465, .external_lex_state = 49}, - [2035] = {.lex_state = 543, .external_lex_state = 44}, - [2036] = {.lex_state = 543, .external_lex_state = 44}, - [2037] = {.lex_state = 465, .external_lex_state = 49}, - [2038] = {.lex_state = 425, .external_lex_state = 51}, - [2039] = {.lex_state = 425, .external_lex_state = 51}, - [2040] = {.lex_state = 536, .external_lex_state = 20}, - [2041] = {.lex_state = 543, .external_lex_state = 44}, - [2042] = {.lex_state = 465, .external_lex_state = 49}, - [2043] = {.lex_state = 536, .external_lex_state = 20}, - [2044] = {.lex_state = 461, .external_lex_state = 36}, - [2045] = {.lex_state = 536, .external_lex_state = 20}, - [2046] = {.lex_state = 543, .external_lex_state = 44}, - [2047] = {.lex_state = 536, .external_lex_state = 20}, - [2048] = {.lex_state = 536, .external_lex_state = 20}, - [2049] = {.lex_state = 536, .external_lex_state = 20}, - [2050] = {.lex_state = 536, .external_lex_state = 20}, - [2051] = {.lex_state = 536, .external_lex_state = 20}, - [2052] = {.lex_state = 536, .external_lex_state = 20}, - [2053] = {.lex_state = 536, .external_lex_state = 20}, - [2054] = {.lex_state = 536, .external_lex_state = 20}, - [2055] = {.lex_state = 536, .external_lex_state = 20}, - [2056] = {.lex_state = 536, .external_lex_state = 20}, - [2057] = {.lex_state = 536, .external_lex_state = 20}, - [2058] = {.lex_state = 543, .external_lex_state = 44}, - [2059] = {.lex_state = 536, .external_lex_state = 20}, - [2060] = {.lex_state = 536, .external_lex_state = 20}, - [2061] = {.lex_state = 536, .external_lex_state = 20}, - [2062] = {.lex_state = 536, .external_lex_state = 20}, - [2063] = {.lex_state = 536, .external_lex_state = 20}, - [2064] = {.lex_state = 536, .external_lex_state = 20}, - [2065] = {.lex_state = 536, .external_lex_state = 20}, - [2066] = {.lex_state = 536, .external_lex_state = 20}, - [2067] = {.lex_state = 536, .external_lex_state = 20}, - [2068] = {.lex_state = 536, .external_lex_state = 20}, - [2069] = {.lex_state = 536, .external_lex_state = 20}, - [2070] = {.lex_state = 536, .external_lex_state = 20}, - [2071] = {.lex_state = 536, .external_lex_state = 20}, - [2072] = {.lex_state = 536, .external_lex_state = 20}, - [2073] = {.lex_state = 536, .external_lex_state = 20}, - [2074] = {.lex_state = 536, .external_lex_state = 20}, - [2075] = {.lex_state = 536, .external_lex_state = 20}, - [2076] = {.lex_state = 536, .external_lex_state = 20}, - [2077] = {.lex_state = 536, .external_lex_state = 20}, - [2078] = {.lex_state = 536, .external_lex_state = 20}, - [2079] = {.lex_state = 536, .external_lex_state = 20}, - [2080] = {.lex_state = 536, .external_lex_state = 20}, - [2081] = {.lex_state = 536, .external_lex_state = 20}, - [2082] = {.lex_state = 536, .external_lex_state = 20}, - [2083] = {.lex_state = 536, .external_lex_state = 20}, - [2084] = {.lex_state = 536, .external_lex_state = 20}, - [2085] = {.lex_state = 536, .external_lex_state = 20}, - [2086] = {.lex_state = 536, .external_lex_state = 20}, - [2087] = {.lex_state = 536, .external_lex_state = 20}, - [2088] = {.lex_state = 536, .external_lex_state = 20}, - [2089] = {.lex_state = 536, .external_lex_state = 20}, - [2090] = {.lex_state = 536, .external_lex_state = 20}, - [2091] = {.lex_state = 536, .external_lex_state = 20}, - [2092] = {.lex_state = 536, .external_lex_state = 20}, - [2093] = {.lex_state = 536, .external_lex_state = 20}, - [2094] = {.lex_state = 536, .external_lex_state = 20}, - [2095] = {.lex_state = 536, .external_lex_state = 20}, - [2096] = {.lex_state = 536, .external_lex_state = 20}, - [2097] = {.lex_state = 536, .external_lex_state = 20}, - [2098] = {.lex_state = 536, .external_lex_state = 20}, - [2099] = {.lex_state = 536, .external_lex_state = 20}, - [2100] = {.lex_state = 536, .external_lex_state = 20}, - [2101] = {.lex_state = 536, .external_lex_state = 20}, - [2102] = {.lex_state = 536, .external_lex_state = 20}, - [2103] = {.lex_state = 536, .external_lex_state = 20}, - [2104] = {.lex_state = 536, .external_lex_state = 20}, - [2105] = {.lex_state = 536, .external_lex_state = 20}, - [2106] = {.lex_state = 536, .external_lex_state = 20}, - [2107] = {.lex_state = 536, .external_lex_state = 20}, - [2108] = {.lex_state = 536, .external_lex_state = 20}, - [2109] = {.lex_state = 536, .external_lex_state = 20}, - [2110] = {.lex_state = 536, .external_lex_state = 20}, - [2111] = {.lex_state = 536, .external_lex_state = 20}, - [2112] = {.lex_state = 536, .external_lex_state = 20}, - [2113] = {.lex_state = 536, .external_lex_state = 20}, - [2114] = {.lex_state = 536, .external_lex_state = 20}, - [2115] = {.lex_state = 536, .external_lex_state = 20}, - [2116] = {.lex_state = 536, .external_lex_state = 20}, - [2117] = {.lex_state = 536, .external_lex_state = 20}, - [2118] = {.lex_state = 536, .external_lex_state = 20}, - [2119] = {.lex_state = 536, .external_lex_state = 20}, - [2120] = {.lex_state = 536, .external_lex_state = 20}, - [2121] = {.lex_state = 536, .external_lex_state = 20}, - [2122] = {.lex_state = 536, .external_lex_state = 20}, - [2123] = {.lex_state = 461, .external_lex_state = 36}, - [2124] = {.lex_state = 543, .external_lex_state = 44}, - [2125] = {.lex_state = 425, .external_lex_state = 51}, - [2126] = {.lex_state = 425, .external_lex_state = 51}, - [2127] = {.lex_state = 425, .external_lex_state = 51}, - [2128] = {.lex_state = 543, .external_lex_state = 44}, - [2129] = {.lex_state = 543, .external_lex_state = 44}, - [2130] = {.lex_state = 425, .external_lex_state = 51}, - [2131] = {.lex_state = 425, .external_lex_state = 51}, - [2132] = {.lex_state = 425, .external_lex_state = 51}, - [2133] = {.lex_state = 425, .external_lex_state = 51}, - [2134] = {.lex_state = 425, .external_lex_state = 51}, - [2135] = {.lex_state = 425, .external_lex_state = 51}, - [2136] = {.lex_state = 425, .external_lex_state = 51}, - [2137] = {.lex_state = 425, .external_lex_state = 51}, - [2138] = {.lex_state = 425, .external_lex_state = 51}, - [2139] = {.lex_state = 425, .external_lex_state = 51}, - [2140] = {.lex_state = 425, .external_lex_state = 51}, - [2141] = {.lex_state = 425, .external_lex_state = 51}, - [2142] = {.lex_state = 425, .external_lex_state = 51}, - [2143] = {.lex_state = 425, .external_lex_state = 51}, - [2144] = {.lex_state = 425, .external_lex_state = 51}, - [2145] = {.lex_state = 425, .external_lex_state = 51}, - [2146] = {.lex_state = 425, .external_lex_state = 51}, - [2147] = {.lex_state = 536, .external_lex_state = 20}, - [2148] = {.lex_state = 425, .external_lex_state = 51}, - [2149] = {.lex_state = 425, .external_lex_state = 51}, - [2150] = {.lex_state = 425, .external_lex_state = 51}, - [2151] = {.lex_state = 425, .external_lex_state = 51}, - [2152] = {.lex_state = 425, .external_lex_state = 51}, - [2153] = {.lex_state = 425, .external_lex_state = 51}, - [2154] = {.lex_state = 425, .external_lex_state = 51}, - [2155] = {.lex_state = 425, .external_lex_state = 51}, - [2156] = {.lex_state = 425, .external_lex_state = 51}, - [2157] = {.lex_state = 425, .external_lex_state = 51}, - [2158] = {.lex_state = 465, .external_lex_state = 52}, - [2159] = {.lex_state = 465, .external_lex_state = 52}, - [2160] = {.lex_state = 536, .external_lex_state = 20}, - [2161] = {.lex_state = 543, .external_lex_state = 44}, - [2162] = {.lex_state = 425, .external_lex_state = 51}, - [2163] = {.lex_state = 425, .external_lex_state = 51}, - [2164] = {.lex_state = 534, .external_lex_state = 20}, - [2165] = {.lex_state = 425, .external_lex_state = 51}, - [2166] = {.lex_state = 425, .external_lex_state = 51}, - [2167] = {.lex_state = 425, .external_lex_state = 51}, - [2168] = {.lex_state = 425, .external_lex_state = 51}, - [2169] = {.lex_state = 425, .external_lex_state = 51}, - [2170] = {.lex_state = 425, .external_lex_state = 51}, - [2171] = {.lex_state = 534, .external_lex_state = 22}, - [2172] = {.lex_state = 536, .external_lex_state = 20}, - [2173] = {.lex_state = 425, .external_lex_state = 51}, - [2174] = {.lex_state = 425, .external_lex_state = 51}, - [2175] = {.lex_state = 536, .external_lex_state = 20}, - [2176] = {.lex_state = 425, .external_lex_state = 51}, - [2177] = {.lex_state = 425, .external_lex_state = 51}, - [2178] = {.lex_state = 425, .external_lex_state = 51}, - [2179] = {.lex_state = 425, .external_lex_state = 51}, - [2180] = {.lex_state = 425, .external_lex_state = 51}, - [2181] = {.lex_state = 425, .external_lex_state = 51}, - [2182] = {.lex_state = 425, .external_lex_state = 51}, - [2183] = {.lex_state = 425, .external_lex_state = 51}, - [2184] = {.lex_state = 425, .external_lex_state = 51}, - [2185] = {.lex_state = 425, .external_lex_state = 51}, - [2186] = {.lex_state = 425, .external_lex_state = 51}, - [2187] = {.lex_state = 425, .external_lex_state = 51}, - [2188] = {.lex_state = 425, .external_lex_state = 51}, - [2189] = {.lex_state = 425, .external_lex_state = 51}, - [2190] = {.lex_state = 543, .external_lex_state = 44}, - [2191] = {.lex_state = 425, .external_lex_state = 51}, - [2192] = {.lex_state = 536, .external_lex_state = 20}, - [2193] = {.lex_state = 534, .external_lex_state = 20}, - [2194] = {.lex_state = 543, .external_lex_state = 44}, - [2195] = {.lex_state = 536, .external_lex_state = 20}, - [2196] = {.lex_state = 536, .external_lex_state = 20}, - [2197] = {.lex_state = 534, .external_lex_state = 20}, - [2198] = {.lex_state = 536, .external_lex_state = 20}, - [2199] = {.lex_state = 465, .external_lex_state = 52}, - [2200] = {.lex_state = 465, .external_lex_state = 52}, - [2201] = {.lex_state = 536, .external_lex_state = 20}, - [2202] = {.lex_state = 425, .external_lex_state = 51}, - [2203] = {.lex_state = 536, .external_lex_state = 20}, - [2204] = {.lex_state = 536, .external_lex_state = 20}, - [2205] = {.lex_state = 536, .external_lex_state = 22}, - [2206] = {.lex_state = 543, .external_lex_state = 44}, - [2207] = {.lex_state = 536, .external_lex_state = 20}, - [2208] = {.lex_state = 465, .external_lex_state = 49}, - [2209] = {.lex_state = 465, .external_lex_state = 49}, - [2210] = {.lex_state = 425, .external_lex_state = 51}, - [2211] = {.lex_state = 425, .external_lex_state = 51}, - [2212] = {.lex_state = 425, .external_lex_state = 51}, - [2213] = {.lex_state = 425, .external_lex_state = 51}, - [2214] = {.lex_state = 465, .external_lex_state = 49}, - [2215] = {.lex_state = 425, .external_lex_state = 51}, - [2216] = {.lex_state = 543, .external_lex_state = 44}, - [2217] = {.lex_state = 425, .external_lex_state = 51}, - [2218] = {.lex_state = 425, .external_lex_state = 51}, - [2219] = {.lex_state = 425, .external_lex_state = 51}, - [2220] = {.lex_state = 425, .external_lex_state = 51}, - [2221] = {.lex_state = 425, .external_lex_state = 51}, - [2222] = {.lex_state = 425, .external_lex_state = 51}, - [2223] = {.lex_state = 425, .external_lex_state = 51}, - [2224] = {.lex_state = 425, .external_lex_state = 51}, - [2225] = {.lex_state = 425, .external_lex_state = 51}, - [2226] = {.lex_state = 425, .external_lex_state = 51}, - [2227] = {.lex_state = 425, .external_lex_state = 51}, - [2228] = {.lex_state = 425, .external_lex_state = 51}, - [2229] = {.lex_state = 536, .external_lex_state = 20}, - [2230] = {.lex_state = 425, .external_lex_state = 51}, - [2231] = {.lex_state = 465, .external_lex_state = 52}, - [2232] = {.lex_state = 425, .external_lex_state = 51}, - [2233] = {.lex_state = 543, .external_lex_state = 44}, - [2234] = {.lex_state = 270, .external_lex_state = 22}, - [2235] = {.lex_state = 425, .external_lex_state = 51}, - [2236] = {.lex_state = 465, .external_lex_state = 52}, - [2237] = {.lex_state = 425, .external_lex_state = 51}, - [2238] = {.lex_state = 264, .external_lex_state = 21}, - [2239] = {.lex_state = 465, .external_lex_state = 52}, - [2240] = {.lex_state = 425, .external_lex_state = 51}, - [2241] = {.lex_state = 534, .external_lex_state = 22}, - [2242] = {.lex_state = 425, .external_lex_state = 51}, - [2243] = {.lex_state = 425, .external_lex_state = 51}, - [2244] = {.lex_state = 425, .external_lex_state = 51}, - [2245] = {.lex_state = 411, .external_lex_state = 36}, - [2246] = {.lex_state = 411, .external_lex_state = 36}, - [2247] = {.lex_state = 543, .external_lex_state = 44}, - [2248] = {.lex_state = 543, .external_lex_state = 44}, - [2249] = {.lex_state = 465, .external_lex_state = 49}, - [2250] = {.lex_state = 534, .external_lex_state = 22}, - [2251] = {.lex_state = 536, .external_lex_state = 20}, - [2252] = {.lex_state = 543, .external_lex_state = 44}, - [2253] = {.lex_state = 536, .external_lex_state = 20}, - [2254] = {.lex_state = 465, .external_lex_state = 49}, - [2255] = {.lex_state = 425, .external_lex_state = 51}, - [2256] = {.lex_state = 425, .external_lex_state = 51}, - [2257] = {.lex_state = 465, .external_lex_state = 49}, - [2258] = {.lex_state = 425, .external_lex_state = 51}, - [2259] = {.lex_state = 425, .external_lex_state = 51}, - [2260] = {.lex_state = 425, .external_lex_state = 51}, - [2261] = {.lex_state = 425, .external_lex_state = 51}, - [2262] = {.lex_state = 425, .external_lex_state = 51}, - [2263] = {.lex_state = 425, .external_lex_state = 51}, - [2264] = {.lex_state = 465, .external_lex_state = 49}, - [2265] = {.lex_state = 465, .external_lex_state = 49}, + [1812] = {.lex_state = 296, .external_lex_state = 44}, + [1813] = {.lex_state = 535, .external_lex_state = 18}, + [1814] = {.lex_state = 425, .external_lex_state = 49}, + [1815] = {.lex_state = 425, .external_lex_state = 49}, + [1816] = {.lex_state = 425, .external_lex_state = 49}, + [1817] = {.lex_state = 425, .external_lex_state = 49}, + [1818] = {.lex_state = 425, .external_lex_state = 49}, + [1819] = {.lex_state = 425, .external_lex_state = 49}, + [1820] = {.lex_state = 261, .external_lex_state = 18}, + [1821] = {.lex_state = 425, .external_lex_state = 49}, + [1822] = {.lex_state = 425, .external_lex_state = 49}, + [1823] = {.lex_state = 252, .external_lex_state = 18}, + [1824] = {.lex_state = 425, .external_lex_state = 49}, + [1825] = {.lex_state = 465, .external_lex_state = 51}, + [1826] = {.lex_state = 541, .external_lex_state = 44}, + [1827] = {.lex_state = 280, .external_lex_state = 36}, + [1828] = {.lex_state = 280, .external_lex_state = 36}, + [1829] = {.lex_state = 280, .external_lex_state = 36}, + [1830] = {.lex_state = 425, .external_lex_state = 49}, + [1831] = {.lex_state = 425, .external_lex_state = 49}, + [1832] = {.lex_state = 540, .external_lex_state = 44}, + [1833] = {.lex_state = 296, .external_lex_state = 44}, + [1834] = {.lex_state = 296, .external_lex_state = 44}, + [1835] = {.lex_state = 425, .external_lex_state = 49}, + [1836] = {.lex_state = 425, .external_lex_state = 49}, + [1837] = {.lex_state = 425, .external_lex_state = 49}, + [1838] = {.lex_state = 425, .external_lex_state = 49}, + [1839] = {.lex_state = 463, .external_lex_state = 28}, + [1840] = {.lex_state = 425, .external_lex_state = 49}, + [1841] = {.lex_state = 425, .external_lex_state = 49}, + [1842] = {.lex_state = 425, .external_lex_state = 49}, + [1843] = {.lex_state = 425, .external_lex_state = 49}, + [1844] = {.lex_state = 425, .external_lex_state = 49}, + [1845] = {.lex_state = 425, .external_lex_state = 49}, + [1846] = {.lex_state = 261, .external_lex_state = 18}, + [1847] = {.lex_state = 425, .external_lex_state = 49}, + [1848] = {.lex_state = 425, .external_lex_state = 49}, + [1849] = {.lex_state = 425, .external_lex_state = 49}, + [1850] = {.lex_state = 425, .external_lex_state = 49}, + [1851] = {.lex_state = 261, .external_lex_state = 18}, + [1852] = {.lex_state = 541, .external_lex_state = 44}, + [1853] = {.lex_state = 425, .external_lex_state = 49}, + [1854] = {.lex_state = 425, .external_lex_state = 49}, + [1855] = {.lex_state = 533, .external_lex_state = 18}, + [1856] = {.lex_state = 533, .external_lex_state = 18}, + [1857] = {.lex_state = 252, .external_lex_state = 18}, + [1858] = {.lex_state = 425, .external_lex_state = 49}, + [1859] = {.lex_state = 425, .external_lex_state = 49}, + [1860] = {.lex_state = 425, .external_lex_state = 49}, + [1861] = {.lex_state = 425, .external_lex_state = 49}, + [1862] = {.lex_state = 461, .external_lex_state = 35}, + [1863] = {.lex_state = 425, .external_lex_state = 49}, + [1864] = {.lex_state = 541, .external_lex_state = 44}, + [1865] = {.lex_state = 541, .external_lex_state = 44}, + [1866] = {.lex_state = 425, .external_lex_state = 49}, + [1867] = {.lex_state = 425, .external_lex_state = 49}, + [1868] = {.lex_state = 425, .external_lex_state = 49}, + [1869] = {.lex_state = 425, .external_lex_state = 49}, + [1870] = {.lex_state = 541, .external_lex_state = 44}, + [1871] = {.lex_state = 541, .external_lex_state = 44}, + [1872] = {.lex_state = 261, .external_lex_state = 18}, + [1873] = {.lex_state = 535, .external_lex_state = 18}, + [1874] = {.lex_state = 261, .external_lex_state = 18}, + [1875] = {.lex_state = 541, .external_lex_state = 44}, + [1876] = {.lex_state = 425, .external_lex_state = 49}, + [1877] = {.lex_state = 463, .external_lex_state = 28}, + [1878] = {.lex_state = 425, .external_lex_state = 49}, + [1879] = {.lex_state = 425, .external_lex_state = 49}, + [1880] = {.lex_state = 296, .external_lex_state = 44}, + [1881] = {.lex_state = 540, .external_lex_state = 44}, + [1882] = {.lex_state = 540, .external_lex_state = 44}, + [1883] = {.lex_state = 540, .external_lex_state = 44}, + [1884] = {.lex_state = 425, .external_lex_state = 49}, + [1885] = {.lex_state = 541, .external_lex_state = 44}, + [1886] = {.lex_state = 425, .external_lex_state = 49}, + [1887] = {.lex_state = 252, .external_lex_state = 23}, + [1888] = {.lex_state = 540, .external_lex_state = 44}, + [1889] = {.lex_state = 252, .external_lex_state = 18}, + [1890] = {.lex_state = 540, .external_lex_state = 44}, + [1891] = {.lex_state = 541, .external_lex_state = 44}, + [1892] = {.lex_state = 541, .external_lex_state = 44}, + [1893] = {.lex_state = 425, .external_lex_state = 49}, + [1894] = {.lex_state = 252, .external_lex_state = 18}, + [1895] = {.lex_state = 425, .external_lex_state = 49}, + [1896] = {.lex_state = 425, .external_lex_state = 49}, + [1897] = {.lex_state = 425, .external_lex_state = 49}, + [1898] = {.lex_state = 425, .external_lex_state = 49}, + [1899] = {.lex_state = 425, .external_lex_state = 49}, + [1900] = {.lex_state = 296, .external_lex_state = 44}, + [1901] = {.lex_state = 261, .external_lex_state = 18}, + [1902] = {.lex_state = 425, .external_lex_state = 49}, + [1903] = {.lex_state = 425, .external_lex_state = 49}, + [1904] = {.lex_state = 296, .external_lex_state = 44}, + [1905] = {.lex_state = 541, .external_lex_state = 44}, + [1906] = {.lex_state = 296, .external_lex_state = 44}, + [1907] = {.lex_state = 296, .external_lex_state = 44}, + [1908] = {.lex_state = 261, .external_lex_state = 18}, + [1909] = {.lex_state = 296, .external_lex_state = 44}, + [1910] = {.lex_state = 425, .external_lex_state = 49}, + [1911] = {.lex_state = 533, .external_lex_state = 18}, + [1912] = {.lex_state = 296, .external_lex_state = 44}, + [1913] = {.lex_state = 425, .external_lex_state = 49}, + [1914] = {.lex_state = 540, .external_lex_state = 44}, + [1915] = {.lex_state = 541, .external_lex_state = 44}, + [1916] = {.lex_state = 541, .external_lex_state = 44}, + [1917] = {.lex_state = 425, .external_lex_state = 49}, + [1918] = {.lex_state = 465, .external_lex_state = 51}, + [1919] = {.lex_state = 425, .external_lex_state = 49}, + [1920] = {.lex_state = 535, .external_lex_state = 18}, + [1921] = {.lex_state = 541, .external_lex_state = 44}, + [1922] = {.lex_state = 465, .external_lex_state = 51}, + [1923] = {.lex_state = 296, .external_lex_state = 44}, + [1924] = {.lex_state = 541, .external_lex_state = 44}, + [1925] = {.lex_state = 540, .external_lex_state = 44}, + [1926] = {.lex_state = 541, .external_lex_state = 44}, + [1927] = {.lex_state = 425, .external_lex_state = 49}, + [1928] = {.lex_state = 541, .external_lex_state = 44}, + [1929] = {.lex_state = 541, .external_lex_state = 44}, + [1930] = {.lex_state = 541, .external_lex_state = 44}, + [1931] = {.lex_state = 296, .external_lex_state = 44}, + [1932] = {.lex_state = 541, .external_lex_state = 44}, + [1933] = {.lex_state = 261, .external_lex_state = 18}, + [1934] = {.lex_state = 541, .external_lex_state = 44}, + [1935] = {.lex_state = 541, .external_lex_state = 44}, + [1936] = {.lex_state = 533, .external_lex_state = 18}, + [1937] = {.lex_state = 296, .external_lex_state = 44}, + [1938] = {.lex_state = 535, .external_lex_state = 18}, + [1939] = {.lex_state = 267, .external_lex_state = 21}, + [1940] = {.lex_state = 296, .external_lex_state = 44}, + [1941] = {.lex_state = 425, .external_lex_state = 49}, + [1942] = {.lex_state = 267, .external_lex_state = 21}, + [1943] = {.lex_state = 425, .external_lex_state = 49}, + [1944] = {.lex_state = 425, .external_lex_state = 49}, + [1945] = {.lex_state = 425, .external_lex_state = 49}, + [1946] = {.lex_state = 541, .external_lex_state = 44}, + [1947] = {.lex_state = 541, .external_lex_state = 44}, + [1948] = {.lex_state = 425, .external_lex_state = 49}, + [1949] = {.lex_state = 425, .external_lex_state = 49}, + [1950] = {.lex_state = 425, .external_lex_state = 49}, + [1951] = {.lex_state = 541, .external_lex_state = 44}, + [1952] = {.lex_state = 425, .external_lex_state = 49}, + [1953] = {.lex_state = 425, .external_lex_state = 49}, + [1954] = {.lex_state = 425, .external_lex_state = 49}, + [1955] = {.lex_state = 425, .external_lex_state = 49}, + [1956] = {.lex_state = 425, .external_lex_state = 49}, + [1957] = {.lex_state = 425, .external_lex_state = 49}, + [1958] = {.lex_state = 425, .external_lex_state = 49}, + [1959] = {.lex_state = 425, .external_lex_state = 49}, + [1960] = {.lex_state = 425, .external_lex_state = 49}, + [1961] = {.lex_state = 541, .external_lex_state = 44}, + [1962] = {.lex_state = 425, .external_lex_state = 49}, + [1963] = {.lex_state = 425, .external_lex_state = 49}, + [1964] = {.lex_state = 535, .external_lex_state = 18}, + [1965] = {.lex_state = 540, .external_lex_state = 44}, + [1966] = {.lex_state = 425, .external_lex_state = 49}, + [1967] = {.lex_state = 535, .external_lex_state = 18}, + [1968] = {.lex_state = 425, .external_lex_state = 49}, + [1969] = {.lex_state = 425, .external_lex_state = 49}, + [1970] = {.lex_state = 425, .external_lex_state = 49}, + [1971] = {.lex_state = 540, .external_lex_state = 44}, + [1972] = {.lex_state = 425, .external_lex_state = 49}, + [1973] = {.lex_state = 540, .external_lex_state = 44}, + [1974] = {.lex_state = 461, .external_lex_state = 35}, + [1975] = {.lex_state = 540, .external_lex_state = 44}, + [1976] = {.lex_state = 541, .external_lex_state = 44}, + [1977] = {.lex_state = 541, .external_lex_state = 44}, + [1978] = {.lex_state = 541, .external_lex_state = 44}, + [1979] = {.lex_state = 533, .external_lex_state = 18}, + [1980] = {.lex_state = 425, .external_lex_state = 49}, + [1981] = {.lex_state = 425, .external_lex_state = 49}, + [1982] = {.lex_state = 535, .external_lex_state = 18}, + [1983] = {.lex_state = 425, .external_lex_state = 49}, + [1984] = {.lex_state = 296, .external_lex_state = 44}, + [1985] = {.lex_state = 425, .external_lex_state = 49}, + [1986] = {.lex_state = 425, .external_lex_state = 49}, + [1987] = {.lex_state = 296, .external_lex_state = 44}, + [1988] = {.lex_state = 533, .external_lex_state = 18}, + [1989] = {.lex_state = 261, .external_lex_state = 18}, + [1990] = {.lex_state = 425, .external_lex_state = 49}, + [1991] = {.lex_state = 535, .external_lex_state = 18}, + [1992] = {.lex_state = 425, .external_lex_state = 49}, + [1993] = {.lex_state = 425, .external_lex_state = 49}, + [1994] = {.lex_state = 261, .external_lex_state = 18}, + [1995] = {.lex_state = 425, .external_lex_state = 49}, + [1996] = {.lex_state = 296, .external_lex_state = 44}, + [1997] = {.lex_state = 261, .external_lex_state = 18}, + [1998] = {.lex_state = 258, .external_lex_state = 21}, + [1999] = {.lex_state = 535, .external_lex_state = 18}, + [2000] = {.lex_state = 425, .external_lex_state = 49}, + [2001] = {.lex_state = 535, .external_lex_state = 18}, + [2002] = {.lex_state = 425, .external_lex_state = 49}, + [2003] = {.lex_state = 425, .external_lex_state = 49}, + [2004] = {.lex_state = 425, .external_lex_state = 49}, + [2005] = {.lex_state = 465, .external_lex_state = 51}, + [2006] = {.lex_state = 261, .external_lex_state = 23}, + [2007] = {.lex_state = 425, .external_lex_state = 49}, + [2008] = {.lex_state = 261, .external_lex_state = 23}, + [2009] = {.lex_state = 425, .external_lex_state = 49}, + [2010] = {.lex_state = 425, .external_lex_state = 49}, + [2011] = {.lex_state = 425, .external_lex_state = 49}, + [2012] = {.lex_state = 465, .external_lex_state = 51}, + [2013] = {.lex_state = 425, .external_lex_state = 49}, + [2014] = {.lex_state = 425, .external_lex_state = 49}, + [2015] = {.lex_state = 542, .external_lex_state = 44}, + [2016] = {.lex_state = 465, .external_lex_state = 51}, + [2017] = {.lex_state = 542, .external_lex_state = 44}, + [2018] = {.lex_state = 425, .external_lex_state = 49}, + [2019] = {.lex_state = 425, .external_lex_state = 49}, + [2020] = {.lex_state = 542, .external_lex_state = 44}, + [2021] = {.lex_state = 542, .external_lex_state = 44}, + [2022] = {.lex_state = 542, .external_lex_state = 44}, + [2023] = {.lex_state = 425, .external_lex_state = 49}, + [2024] = {.lex_state = 465, .external_lex_state = 51}, + [2025] = {.lex_state = 425, .external_lex_state = 49}, + [2026] = {.lex_state = 542, .external_lex_state = 44}, + [2027] = {.lex_state = 540, .external_lex_state = 44}, + [2028] = {.lex_state = 540, .external_lex_state = 44}, + [2029] = {.lex_state = 540, .external_lex_state = 44}, + [2030] = {.lex_state = 540, .external_lex_state = 44}, + [2031] = {.lex_state = 540, .external_lex_state = 44}, + [2032] = {.lex_state = 252, .external_lex_state = 23}, + [2033] = {.lex_state = 540, .external_lex_state = 44}, + [2034] = {.lex_state = 540, .external_lex_state = 44}, + [2035] = {.lex_state = 540, .external_lex_state = 44}, + [2036] = {.lex_state = 425, .external_lex_state = 49}, + [2037] = {.lex_state = 425, .external_lex_state = 49}, + [2038] = {.lex_state = 425, .external_lex_state = 49}, + [2039] = {.lex_state = 425, .external_lex_state = 49}, + [2040] = {.lex_state = 425, .external_lex_state = 49}, + [2041] = {.lex_state = 425, .external_lex_state = 49}, + [2042] = {.lex_state = 425, .external_lex_state = 49}, + [2043] = {.lex_state = 425, .external_lex_state = 49}, + [2044] = {.lex_state = 425, .external_lex_state = 49}, + [2045] = {.lex_state = 425, .external_lex_state = 49}, + [2046] = {.lex_state = 425, .external_lex_state = 49}, + [2047] = {.lex_state = 425, .external_lex_state = 49}, + [2048] = {.lex_state = 425, .external_lex_state = 49}, + [2049] = {.lex_state = 535, .external_lex_state = 18}, + [2050] = {.lex_state = 542, .external_lex_state = 44}, + [2051] = {.lex_state = 541, .external_lex_state = 44}, + [2052] = {.lex_state = 541, .external_lex_state = 44}, + [2053] = {.lex_state = 540, .external_lex_state = 44}, + [2054] = {.lex_state = 542, .external_lex_state = 44}, + [2055] = {.lex_state = 540, .external_lex_state = 44}, + [2056] = {.lex_state = 542, .external_lex_state = 44}, + [2057] = {.lex_state = 540, .external_lex_state = 44}, + [2058] = {.lex_state = 425, .external_lex_state = 49}, + [2059] = {.lex_state = 296, .external_lex_state = 44}, + [2060] = {.lex_state = 425, .external_lex_state = 49}, + [2061] = {.lex_state = 425, .external_lex_state = 49}, + [2062] = {.lex_state = 425, .external_lex_state = 49}, + [2063] = {.lex_state = 425, .external_lex_state = 49}, + [2064] = {.lex_state = 540, .external_lex_state = 44}, + [2065] = {.lex_state = 425, .external_lex_state = 49}, + [2066] = {.lex_state = 540, .external_lex_state = 44}, + [2067] = {.lex_state = 296, .external_lex_state = 44}, + [2068] = {.lex_state = 425, .external_lex_state = 49}, + [2069] = {.lex_state = 540, .external_lex_state = 44}, + [2070] = {.lex_state = 540, .external_lex_state = 44}, + [2071] = {.lex_state = 540, .external_lex_state = 44}, + [2072] = {.lex_state = 540, .external_lex_state = 44}, + [2073] = {.lex_state = 540, .external_lex_state = 44}, + [2074] = {.lex_state = 540, .external_lex_state = 44}, + [2075] = {.lex_state = 540, .external_lex_state = 44}, + [2076] = {.lex_state = 540, .external_lex_state = 44}, + [2077] = {.lex_state = 280, .external_lex_state = 36}, + [2078] = {.lex_state = 280, .external_lex_state = 36}, + [2079] = {.lex_state = 540, .external_lex_state = 44}, + [2080] = {.lex_state = 542, .external_lex_state = 44}, + [2081] = {.lex_state = 540, .external_lex_state = 44}, + [2082] = {.lex_state = 540, .external_lex_state = 44}, + [2083] = {.lex_state = 540, .external_lex_state = 44}, + [2084] = {.lex_state = 540, .external_lex_state = 44}, + [2085] = {.lex_state = 280, .external_lex_state = 36}, + [2086] = {.lex_state = 280, .external_lex_state = 36}, + [2087] = {.lex_state = 540, .external_lex_state = 44}, + [2088] = {.lex_state = 425, .external_lex_state = 49}, + [2089] = {.lex_state = 280, .external_lex_state = 36}, + [2090] = {.lex_state = 280, .external_lex_state = 36}, + [2091] = {.lex_state = 280, .external_lex_state = 36}, + [2092] = {.lex_state = 280, .external_lex_state = 36}, + [2093] = {.lex_state = 540, .external_lex_state = 44}, + [2094] = {.lex_state = 540, .external_lex_state = 44}, + [2095] = {.lex_state = 541, .external_lex_state = 44}, + [2096] = {.lex_state = 535, .external_lex_state = 18}, + [2097] = {.lex_state = 535, .external_lex_state = 18}, + [2098] = {.lex_state = 533, .external_lex_state = 18}, + [2099] = {.lex_state = 542, .external_lex_state = 44}, + [2100] = {.lex_state = 535, .external_lex_state = 18}, + [2101] = {.lex_state = 535, .external_lex_state = 18}, + [2102] = {.lex_state = 535, .external_lex_state = 18}, + [2103] = {.lex_state = 535, .external_lex_state = 18}, + [2104] = {.lex_state = 535, .external_lex_state = 18}, + [2105] = {.lex_state = 465, .external_lex_state = 51}, + [2106] = {.lex_state = 465, .external_lex_state = 52}, + [2107] = {.lex_state = 535, .external_lex_state = 18}, + [2108] = {.lex_state = 535, .external_lex_state = 18}, + [2109] = {.lex_state = 542, .external_lex_state = 44}, + [2110] = {.lex_state = 465, .external_lex_state = 52}, + [2111] = {.lex_state = 535, .external_lex_state = 18}, + [2112] = {.lex_state = 535, .external_lex_state = 18}, + [2113] = {.lex_state = 465, .external_lex_state = 51}, + [2114] = {.lex_state = 465, .external_lex_state = 51}, + [2115] = {.lex_state = 535, .external_lex_state = 18}, + [2116] = {.lex_state = 535, .external_lex_state = 18}, + [2117] = {.lex_state = 465, .external_lex_state = 51}, + [2118] = {.lex_state = 535, .external_lex_state = 18}, + [2119] = {.lex_state = 465, .external_lex_state = 51}, + [2120] = {.lex_state = 535, .external_lex_state = 18}, + [2121] = {.lex_state = 535, .external_lex_state = 18}, + [2122] = {.lex_state = 465, .external_lex_state = 51}, + [2123] = {.lex_state = 465, .external_lex_state = 52}, + [2124] = {.lex_state = 533, .external_lex_state = 23}, + [2125] = {.lex_state = 542, .external_lex_state = 44}, + [2126] = {.lex_state = 535, .external_lex_state = 18}, + [2127] = {.lex_state = 542, .external_lex_state = 44}, + [2128] = {.lex_state = 542, .external_lex_state = 44}, + [2129] = {.lex_state = 465, .external_lex_state = 52}, + [2130] = {.lex_state = 465, .external_lex_state = 51}, + [2131] = {.lex_state = 542, .external_lex_state = 44}, + [2132] = {.lex_state = 535, .external_lex_state = 18}, + [2133] = {.lex_state = 535, .external_lex_state = 18}, + [2134] = {.lex_state = 465, .external_lex_state = 52}, + [2135] = {.lex_state = 542, .external_lex_state = 44}, + [2136] = {.lex_state = 535, .external_lex_state = 18}, + [2137] = {.lex_state = 465, .external_lex_state = 51}, + [2138] = {.lex_state = 535, .external_lex_state = 18}, + [2139] = {.lex_state = 542, .external_lex_state = 44}, + [2140] = {.lex_state = 535, .external_lex_state = 18}, + [2141] = {.lex_state = 542, .external_lex_state = 44}, + [2142] = {.lex_state = 535, .external_lex_state = 18}, + [2143] = {.lex_state = 542, .external_lex_state = 44}, + [2144] = {.lex_state = 535, .external_lex_state = 18}, + [2145] = {.lex_state = 542, .external_lex_state = 44}, + [2146] = {.lex_state = 465, .external_lex_state = 51}, + [2147] = {.lex_state = 535, .external_lex_state = 18}, + [2148] = {.lex_state = 535, .external_lex_state = 18}, + [2149] = {.lex_state = 465, .external_lex_state = 51}, + [2150] = {.lex_state = 535, .external_lex_state = 18}, + [2151] = {.lex_state = 465, .external_lex_state = 51}, + [2152] = {.lex_state = 270, .external_lex_state = 23}, + [2153] = {.lex_state = 542, .external_lex_state = 44}, + [2154] = {.lex_state = 535, .external_lex_state = 18}, + [2155] = {.lex_state = 465, .external_lex_state = 51}, + [2156] = {.lex_state = 542, .external_lex_state = 44}, + [2157] = {.lex_state = 533, .external_lex_state = 23}, + [2158] = {.lex_state = 535, .external_lex_state = 18}, + [2159] = {.lex_state = 465, .external_lex_state = 51}, + [2160] = {.lex_state = 535, .external_lex_state = 18}, + [2161] = {.lex_state = 535, .external_lex_state = 18}, + [2162] = {.lex_state = 465, .external_lex_state = 51}, + [2163] = {.lex_state = 465, .external_lex_state = 51}, + [2164] = {.lex_state = 465, .external_lex_state = 51}, + [2165] = {.lex_state = 535, .external_lex_state = 18}, + [2166] = {.lex_state = 465, .external_lex_state = 51}, + [2167] = {.lex_state = 535, .external_lex_state = 18}, + [2168] = {.lex_state = 535, .external_lex_state = 18}, + [2169] = {.lex_state = 535, .external_lex_state = 18}, + [2170] = {.lex_state = 535, .external_lex_state = 18}, + [2171] = {.lex_state = 542, .external_lex_state = 44}, + [2172] = {.lex_state = 542, .external_lex_state = 44}, + [2173] = {.lex_state = 542, .external_lex_state = 44}, + [2174] = {.lex_state = 535, .external_lex_state = 23}, + [2175] = {.lex_state = 542, .external_lex_state = 44}, + [2176] = {.lex_state = 465, .external_lex_state = 51}, + [2177] = {.lex_state = 465, .external_lex_state = 51}, + [2178] = {.lex_state = 465, .external_lex_state = 51}, + [2179] = {.lex_state = 535, .external_lex_state = 18}, + [2180] = {.lex_state = 535, .external_lex_state = 18}, + [2181] = {.lex_state = 252, .external_lex_state = 23}, + [2182] = {.lex_state = 533, .external_lex_state = 23}, + [2183] = {.lex_state = 533, .external_lex_state = 18}, + [2184] = {.lex_state = 535, .external_lex_state = 18}, + [2185] = {.lex_state = 535, .external_lex_state = 18}, + [2186] = {.lex_state = 535, .external_lex_state = 18}, + [2187] = {.lex_state = 535, .external_lex_state = 18}, + [2188] = {.lex_state = 535, .external_lex_state = 18}, + [2189] = {.lex_state = 542, .external_lex_state = 44}, + [2190] = {.lex_state = 533, .external_lex_state = 18}, + [2191] = {.lex_state = 535, .external_lex_state = 18}, + [2192] = {.lex_state = 535, .external_lex_state = 23}, + [2193] = {.lex_state = 535, .external_lex_state = 18}, + [2194] = {.lex_state = 542, .external_lex_state = 44}, + [2195] = {.lex_state = 535, .external_lex_state = 18}, + [2196] = {.lex_state = 535, .external_lex_state = 18}, + [2197] = {.lex_state = 542, .external_lex_state = 44}, + [2198] = {.lex_state = 542, .external_lex_state = 44}, + [2199] = {.lex_state = 542, .external_lex_state = 44}, + [2200] = {.lex_state = 542, .external_lex_state = 44}, + [2201] = {.lex_state = 535, .external_lex_state = 18}, + [2202] = {.lex_state = 533, .external_lex_state = 18}, + [2203] = {.lex_state = 542, .external_lex_state = 44}, + [2204] = {.lex_state = 535, .external_lex_state = 18}, + [2205] = {.lex_state = 535, .external_lex_state = 18}, + [2206] = {.lex_state = 535, .external_lex_state = 18}, + [2207] = {.lex_state = 535, .external_lex_state = 18}, + [2208] = {.lex_state = 465, .external_lex_state = 52}, + [2209] = {.lex_state = 542, .external_lex_state = 44}, + [2210] = {.lex_state = 535, .external_lex_state = 18}, + [2211] = {.lex_state = 533, .external_lex_state = 18}, + [2212] = {.lex_state = 542, .external_lex_state = 44}, + [2213] = {.lex_state = 535, .external_lex_state = 18}, + [2214] = {.lex_state = 535, .external_lex_state = 18}, + [2215] = {.lex_state = 535, .external_lex_state = 18}, + [2216] = {.lex_state = 533, .external_lex_state = 18}, + [2217] = {.lex_state = 533, .external_lex_state = 23}, + [2218] = {.lex_state = 535, .external_lex_state = 18}, + [2219] = {.lex_state = 535, .external_lex_state = 18}, + [2220] = {.lex_state = 542, .external_lex_state = 44}, + [2221] = {.lex_state = 542, .external_lex_state = 44}, + [2222] = {.lex_state = 535, .external_lex_state = 18}, + [2223] = {.lex_state = 535, .external_lex_state = 18}, + [2224] = {.lex_state = 535, .external_lex_state = 18}, + [2225] = {.lex_state = 535, .external_lex_state = 18}, + [2226] = {.lex_state = 535, .external_lex_state = 18}, + [2227] = {.lex_state = 535, .external_lex_state = 18}, + [2228] = {.lex_state = 535, .external_lex_state = 18}, + [2229] = {.lex_state = 542, .external_lex_state = 44}, + [2230] = {.lex_state = 542, .external_lex_state = 44}, + [2231] = {.lex_state = 542, .external_lex_state = 44}, + [2232] = {.lex_state = 535, .external_lex_state = 18}, + [2233] = {.lex_state = 542, .external_lex_state = 44}, + [2234] = {.lex_state = 542, .external_lex_state = 44}, + [2235] = {.lex_state = 542, .external_lex_state = 44}, + [2236] = {.lex_state = 542, .external_lex_state = 44}, + [2237] = {.lex_state = 535, .external_lex_state = 18}, + [2238] = {.lex_state = 535, .external_lex_state = 18}, + [2239] = {.lex_state = 533, .external_lex_state = 18}, + [2240] = {.lex_state = 535, .external_lex_state = 18}, + [2241] = {.lex_state = 535, .external_lex_state = 18}, + [2242] = {.lex_state = 542, .external_lex_state = 44}, + [2243] = {.lex_state = 535, .external_lex_state = 18}, + [2244] = {.lex_state = 535, .external_lex_state = 18}, + [2245] = {.lex_state = 535, .external_lex_state = 18}, + [2246] = {.lex_state = 535, .external_lex_state = 23}, + [2247] = {.lex_state = 535, .external_lex_state = 18}, + [2248] = {.lex_state = 535, .external_lex_state = 18}, + [2249] = {.lex_state = 535, .external_lex_state = 18}, + [2250] = {.lex_state = 267, .external_lex_state = 21}, + [2251] = {.lex_state = 465, .external_lex_state = 52}, + [2252] = {.lex_state = 535, .external_lex_state = 18}, + [2253] = {.lex_state = 535, .external_lex_state = 18}, + [2254] = {.lex_state = 535, .external_lex_state = 18}, + [2255] = {.lex_state = 535, .external_lex_state = 18}, + [2256] = {.lex_state = 535, .external_lex_state = 18}, + [2257] = {.lex_state = 535, .external_lex_state = 18}, + [2258] = {.lex_state = 535, .external_lex_state = 18}, + [2259] = {.lex_state = 535, .external_lex_state = 18}, + [2260] = {.lex_state = 535, .external_lex_state = 18}, + [2261] = {.lex_state = 542, .external_lex_state = 44}, + [2262] = {.lex_state = 535, .external_lex_state = 18}, + [2263] = {.lex_state = 465, .external_lex_state = 52}, + [2264] = {.lex_state = 533, .external_lex_state = 18}, + [2265] = {.lex_state = 542, .external_lex_state = 44}, [2266] = {.lex_state = 465, .external_lex_state = 52}, - [2267] = {.lex_state = 543, .external_lex_state = 44}, - [2268] = {.lex_state = 465, .external_lex_state = 52}, - [2269] = {.lex_state = 443, .external_lex_state = 53}, - [2270] = {.lex_state = 534, .external_lex_state = 22}, - [2271] = {.lex_state = 443, .external_lex_state = 53}, + [2267] = {.lex_state = 535, .external_lex_state = 18}, + [2268] = {.lex_state = 535, .external_lex_state = 18}, + [2269] = {.lex_state = 535, .external_lex_state = 18}, + [2270] = {.lex_state = 270, .external_lex_state = 23}, + [2271] = {.lex_state = 535, .external_lex_state = 18}, [2272] = {.lex_state = 465, .external_lex_state = 52}, - [2273] = {.lex_state = 443, .external_lex_state = 53}, - [2274] = {.lex_state = 465, .external_lex_state = 52}, - [2275] = {.lex_state = 443, .external_lex_state = 53}, + [2273] = {.lex_state = 535, .external_lex_state = 18}, + [2274] = {.lex_state = 535, .external_lex_state = 18}, + [2275] = {.lex_state = 535, .external_lex_state = 18}, [2276] = {.lex_state = 465, .external_lex_state = 52}, - [2277] = {.lex_state = 464, .external_lex_state = 23}, - [2278] = {.lex_state = 536, .external_lex_state = 22}, - [2279] = {.lex_state = 443, .external_lex_state = 53}, - [2280] = {.lex_state = 465, .external_lex_state = 52}, - [2281] = {.lex_state = 468, .external_lex_state = 54}, - [2282] = {.lex_state = 468, .external_lex_state = 54}, - [2283] = {.lex_state = 468, .external_lex_state = 54}, - [2284] = {.lex_state = 443, .external_lex_state = 53}, - [2285] = {.lex_state = 465, .external_lex_state = 52}, - [2286] = {.lex_state = 468, .external_lex_state = 54}, - [2287] = {.lex_state = 538, .external_lex_state = 22}, - [2288] = {.lex_state = 465, .external_lex_state = 52}, - [2289] = {.lex_state = 468, .external_lex_state = 54}, - [2290] = {.lex_state = 464, .external_lex_state = 23}, - [2291] = {.lex_state = 465, .external_lex_state = 52}, - [2292] = {.lex_state = 536, .external_lex_state = 20}, - [2293] = {.lex_state = 536, .external_lex_state = 20}, - [2294] = {.lex_state = 443, .external_lex_state = 53}, - [2295] = {.lex_state = 468, .external_lex_state = 54}, - [2296] = {.lex_state = 538, .external_lex_state = 22}, - [2297] = {.lex_state = 468, .external_lex_state = 54}, - [2298] = {.lex_state = 288, .external_lex_state = 42}, - [2299] = {.lex_state = 288, .external_lex_state = 42}, - [2300] = {.lex_state = 288, .external_lex_state = 42}, - [2301] = {.lex_state = 468, .external_lex_state = 54}, - [2302] = {.lex_state = 468, .external_lex_state = 54}, - [2303] = {.lex_state = 290, .external_lex_state = 42}, - [2304] = {.lex_state = 290, .external_lex_state = 42}, - [2305] = {.lex_state = 290, .external_lex_state = 42}, - [2306] = {.lex_state = 536, .external_lex_state = 20}, - [2307] = {.lex_state = 538, .external_lex_state = 22}, - [2308] = {.lex_state = 534, .external_lex_state = 22}, - [2309] = {.lex_state = 465, .external_lex_state = 52}, - [2310] = {.lex_state = 465, .external_lex_state = 52}, - [2311] = {.lex_state = 443, .external_lex_state = 53}, - [2312] = {.lex_state = 465, .external_lex_state = 52}, - [2313] = {.lex_state = 465, .external_lex_state = 52}, - [2314] = {.lex_state = 465, .external_lex_state = 52}, - [2315] = {.lex_state = 465, .external_lex_state = 52}, - [2316] = {.lex_state = 465, .external_lex_state = 52}, - [2317] = {.lex_state = 465, .external_lex_state = 52}, - [2318] = {.lex_state = 270, .external_lex_state = 22}, - [2319] = {.lex_state = 468, .external_lex_state = 54}, - [2320] = {.lex_state = 468, .external_lex_state = 54}, - [2321] = {.lex_state = 468, .external_lex_state = 54}, - [2322] = {.lex_state = 443, .external_lex_state = 53}, - [2323] = {.lex_state = 288, .external_lex_state = 42}, - [2324] = {.lex_state = 288, .external_lex_state = 42}, - [2325] = {.lex_state = 290, .external_lex_state = 42}, - [2326] = {.lex_state = 290, .external_lex_state = 42}, - [2327] = {.lex_state = 443, .external_lex_state = 53}, - [2328] = {.lex_state = 288, .external_lex_state = 42}, - [2329] = {.lex_state = 288, .external_lex_state = 42}, - [2330] = {.lex_state = 288, .external_lex_state = 42}, - [2331] = {.lex_state = 288, .external_lex_state = 42}, - [2332] = {.lex_state = 288, .external_lex_state = 42}, - [2333] = {.lex_state = 288, .external_lex_state = 42}, - [2334] = {.lex_state = 288, .external_lex_state = 42}, - [2335] = {.lex_state = 288, .external_lex_state = 42}, - [2336] = {.lex_state = 536, .external_lex_state = 22}, - [2337] = {.lex_state = 465, .external_lex_state = 52}, - [2338] = {.lex_state = 290, .external_lex_state = 42}, - [2339] = {.lex_state = 290, .external_lex_state = 42}, - [2340] = {.lex_state = 465, .external_lex_state = 52}, - [2341] = {.lex_state = 443, .external_lex_state = 53}, - [2342] = {.lex_state = 443, .external_lex_state = 53}, - [2343] = {.lex_state = 465, .external_lex_state = 52}, - [2344] = {.lex_state = 443, .external_lex_state = 53}, - [2345] = {.lex_state = 538, .external_lex_state = 22}, - [2346] = {.lex_state = 466, .external_lex_state = 55}, - [2347] = {.lex_state = 298, .external_lex_state = 56}, - [2348] = {.lex_state = 468, .external_lex_state = 57}, - [2349] = {.lex_state = 443, .external_lex_state = 53}, - [2350] = {.lex_state = 466, .external_lex_state = 55}, - [2351] = {.lex_state = 538, .external_lex_state = 22}, - [2352] = {.lex_state = 464, .external_lex_state = 23}, - [2353] = {.lex_state = 538, .external_lex_state = 22}, - [2354] = {.lex_state = 298, .external_lex_state = 56}, - [2355] = {.lex_state = 298, .external_lex_state = 56}, - [2356] = {.lex_state = 474, .external_lex_state = 55}, - [2357] = {.lex_state = 474, .external_lex_state = 55}, - [2358] = {.lex_state = 468, .external_lex_state = 54}, - [2359] = {.lex_state = 298, .external_lex_state = 56}, - [2360] = {.lex_state = 288, .external_lex_state = 44}, - [2361] = {.lex_state = 288, .external_lex_state = 44}, - [2362] = {.lex_state = 466, .external_lex_state = 55}, - [2363] = {.lex_state = 466, .external_lex_state = 55}, - [2364] = {.lex_state = 298, .external_lex_state = 56}, - [2365] = {.lex_state = 443, .external_lex_state = 53}, - [2366] = {.lex_state = 439, .external_lex_state = 53}, - [2367] = {.lex_state = 468, .external_lex_state = 54}, - [2368] = {.lex_state = 474, .external_lex_state = 55}, - [2369] = {.lex_state = 443, .external_lex_state = 53}, - [2370] = {.lex_state = 464, .external_lex_state = 27}, - [2371] = {.lex_state = 439, .external_lex_state = 53}, - [2372] = {.lex_state = 468, .external_lex_state = 57}, - [2373] = {.lex_state = 468, .external_lex_state = 57}, - [2374] = {.lex_state = 298, .external_lex_state = 56}, - [2375] = {.lex_state = 290, .external_lex_state = 44}, - [2376] = {.lex_state = 468, .external_lex_state = 54}, - [2377] = {.lex_state = 468, .external_lex_state = 54}, - [2378] = {.lex_state = 288, .external_lex_state = 44}, - [2379] = {.lex_state = 290, .external_lex_state = 44}, - [2380] = {.lex_state = 290, .external_lex_state = 44}, - [2381] = {.lex_state = 468, .external_lex_state = 57}, - [2382] = {.lex_state = 468, .external_lex_state = 54}, - [2383] = {.lex_state = 464, .external_lex_state = 27}, - [2384] = {.lex_state = 464, .external_lex_state = 27}, - [2385] = {.lex_state = 443, .external_lex_state = 53}, - [2386] = {.lex_state = 298, .external_lex_state = 56}, - [2387] = {.lex_state = 298, .external_lex_state = 56}, - [2388] = {.lex_state = 288, .external_lex_state = 44}, - [2389] = {.lex_state = 468, .external_lex_state = 54}, - [2390] = {.lex_state = 288, .external_lex_state = 44}, - [2391] = {.lex_state = 474, .external_lex_state = 55}, - [2392] = {.lex_state = 468, .external_lex_state = 54}, - [2393] = {.lex_state = 474, .external_lex_state = 55}, - [2394] = {.lex_state = 466, .external_lex_state = 55}, - [2395] = {.lex_state = 446, .external_lex_state = 46}, - [2396] = {.lex_state = 466, .external_lex_state = 55}, - [2397] = {.lex_state = 468, .external_lex_state = 54}, - [2398] = {.lex_state = 445, .external_lex_state = 53}, - [2399] = {.lex_state = 443, .external_lex_state = 53}, - [2400] = {.lex_state = 466, .external_lex_state = 55}, - [2401] = {.lex_state = 468, .external_lex_state = 54}, - [2402] = {.lex_state = 464, .external_lex_state = 23}, - [2403] = {.lex_state = 468, .external_lex_state = 54}, - [2404] = {.lex_state = 446, .external_lex_state = 46}, - [2405] = {.lex_state = 468, .external_lex_state = 57}, - [2406] = {.lex_state = 298, .external_lex_state = 56}, - [2407] = {.lex_state = 298, .external_lex_state = 56}, - [2408] = {.lex_state = 290, .external_lex_state = 44}, - [2409] = {.lex_state = 290, .external_lex_state = 44}, - [2410] = {.lex_state = 466, .external_lex_state = 55}, - [2411] = {.lex_state = 468, .external_lex_state = 54}, - [2412] = {.lex_state = 298, .external_lex_state = 56}, - [2413] = {.lex_state = 466, .external_lex_state = 55}, - [2414] = {.lex_state = 466, .external_lex_state = 55}, - [2415] = {.lex_state = 468, .external_lex_state = 54}, - [2416] = {.lex_state = 298, .external_lex_state = 56}, - [2417] = {.lex_state = 474, .external_lex_state = 55}, - [2418] = {.lex_state = 474, .external_lex_state = 55}, - [2419] = {.lex_state = 466, .external_lex_state = 55}, - [2420] = {.lex_state = 474, .external_lex_state = 55}, - [2421] = {.lex_state = 443, .external_lex_state = 53}, - [2422] = {.lex_state = 468, .external_lex_state = 57}, - [2423] = {.lex_state = 466, .external_lex_state = 55}, - [2424] = {.lex_state = 443, .external_lex_state = 53}, - [2425] = {.lex_state = 464, .external_lex_state = 27}, - [2426] = {.lex_state = 298, .external_lex_state = 56}, - [2427] = {.lex_state = 443, .external_lex_state = 53}, - [2428] = {.lex_state = 298, .external_lex_state = 56}, - [2429] = {.lex_state = 298, .external_lex_state = 56}, - [2430] = {.lex_state = 468, .external_lex_state = 54}, - [2431] = {.lex_state = 468, .external_lex_state = 54}, - [2432] = {.lex_state = 466, .external_lex_state = 55}, - [2433] = {.lex_state = 443, .external_lex_state = 53}, - [2434] = {.lex_state = 468, .external_lex_state = 54}, - [2435] = {.lex_state = 464, .external_lex_state = 27}, - [2436] = {.lex_state = 468, .external_lex_state = 54}, - [2437] = {.lex_state = 298, .external_lex_state = 56}, - [2438] = {.lex_state = 468, .external_lex_state = 54}, - [2439] = {.lex_state = 468, .external_lex_state = 54}, - [2440] = {.lex_state = 443, .external_lex_state = 53}, - [2441] = {.lex_state = 466, .external_lex_state = 55}, - [2442] = {.lex_state = 468, .external_lex_state = 54}, - [2443] = {.lex_state = 468, .external_lex_state = 57}, - [2444] = {.lex_state = 468, .external_lex_state = 57}, - [2445] = {.lex_state = 468, .external_lex_state = 57}, - [2446] = {.lex_state = 468, .external_lex_state = 57}, - [2447] = {.lex_state = 468, .external_lex_state = 57}, - [2448] = {.lex_state = 474, .external_lex_state = 55}, - [2449] = {.lex_state = 468, .external_lex_state = 57}, - [2450] = {.lex_state = 468, .external_lex_state = 57}, - [2451] = {.lex_state = 468, .external_lex_state = 57}, - [2452] = {.lex_state = 468, .external_lex_state = 57}, - [2453] = {.lex_state = 474, .external_lex_state = 55}, - [2454] = {.lex_state = 466, .external_lex_state = 58}, - [2455] = {.lex_state = 466, .external_lex_state = 58}, - [2456] = {.lex_state = 446, .external_lex_state = 46}, - [2457] = {.lex_state = 464, .external_lex_state = 27}, - [2458] = {.lex_state = 466, .external_lex_state = 58}, - [2459] = {.lex_state = 446, .external_lex_state = 46}, - [2460] = {.lex_state = 467, .external_lex_state = 30}, - [2461] = {.lex_state = 474, .external_lex_state = 55}, - [2462] = {.lex_state = 446, .external_lex_state = 46}, - [2463] = {.lex_state = 437, .external_lex_state = 46}, - [2464] = {.lex_state = 464, .external_lex_state = 27}, - [2465] = {.lex_state = 466, .external_lex_state = 58}, - [2466] = {.lex_state = 466, .external_lex_state = 55}, - [2467] = {.lex_state = 446, .external_lex_state = 46}, - [2468] = {.lex_state = 435, .external_lex_state = 59}, - [2469] = {.lex_state = 435, .external_lex_state = 59}, - [2470] = {.lex_state = 446, .external_lex_state = 46}, - [2471] = {.lex_state = 437, .external_lex_state = 46}, - [2472] = {.lex_state = 466, .external_lex_state = 55}, - [2473] = {.lex_state = 466, .external_lex_state = 55}, - [2474] = {.lex_state = 435, .external_lex_state = 59}, - [2475] = {.lex_state = 435, .external_lex_state = 59}, - [2476] = {.lex_state = 296, .external_lex_state = 44}, - [2477] = {.lex_state = 296, .external_lex_state = 44}, - [2478] = {.lex_state = 296, .external_lex_state = 44}, - [2479] = {.lex_state = 435, .external_lex_state = 59}, - [2480] = {.lex_state = 439, .external_lex_state = 53}, - [2481] = {.lex_state = 470, .external_lex_state = 57}, - [2482] = {.lex_state = 470, .external_lex_state = 57}, - [2483] = {.lex_state = 446, .external_lex_state = 46}, - [2484] = {.lex_state = 437, .external_lex_state = 46}, - [2485] = {.lex_state = 443, .external_lex_state = 53}, - [2486] = {.lex_state = 439, .external_lex_state = 53}, - [2487] = {.lex_state = 437, .external_lex_state = 46}, - [2488] = {.lex_state = 446, .external_lex_state = 46}, - [2489] = {.lex_state = 437, .external_lex_state = 46}, - [2490] = {.lex_state = 446, .external_lex_state = 46}, - [2491] = {.lex_state = 437, .external_lex_state = 46}, - [2492] = {.lex_state = 439, .external_lex_state = 53}, - [2493] = {.lex_state = 435, .external_lex_state = 59}, - [2494] = {.lex_state = 435, .external_lex_state = 59}, - [2495] = {.lex_state = 435, .external_lex_state = 59}, - [2496] = {.lex_state = 466, .external_lex_state = 55}, - [2497] = {.lex_state = 466, .external_lex_state = 55}, - [2498] = {.lex_state = 439, .external_lex_state = 53}, - [2499] = {.lex_state = 439, .external_lex_state = 53}, - [2500] = {.lex_state = 439, .external_lex_state = 53}, - [2501] = {.lex_state = 470, .external_lex_state = 57}, - [2502] = {.lex_state = 470, .external_lex_state = 57}, - [2503] = {.lex_state = 437, .external_lex_state = 46}, - [2504] = {.lex_state = 470, .external_lex_state = 57}, - [2505] = {.lex_state = 466, .external_lex_state = 55}, - [2506] = {.lex_state = 466, .external_lex_state = 55}, - [2507] = {.lex_state = 443, .external_lex_state = 53}, - [2508] = {.lex_state = 443, .external_lex_state = 53}, - [2509] = {.lex_state = 446, .external_lex_state = 46}, - [2510] = {.lex_state = 446, .external_lex_state = 46}, - [2511] = {.lex_state = 446, .external_lex_state = 46}, - [2512] = {.lex_state = 443, .external_lex_state = 53}, - [2513] = {.lex_state = 443, .external_lex_state = 53}, - [2514] = {.lex_state = 474, .external_lex_state = 58}, - [2515] = {.lex_state = 296, .external_lex_state = 44}, - [2516] = {.lex_state = 296, .external_lex_state = 44}, - [2517] = {.lex_state = 474, .external_lex_state = 58}, - [2518] = {.lex_state = 470, .external_lex_state = 57}, - [2519] = {.lex_state = 474, .external_lex_state = 55}, - [2520] = {.lex_state = 468, .external_lex_state = 57}, - [2521] = {.lex_state = 474, .external_lex_state = 55}, - [2522] = {.lex_state = 474, .external_lex_state = 55}, - [2523] = {.lex_state = 464, .external_lex_state = 27}, - [2524] = {.lex_state = 467, .external_lex_state = 30}, - [2525] = {.lex_state = 464, .external_lex_state = 27}, - [2526] = {.lex_state = 468, .external_lex_state = 57}, - [2527] = {.lex_state = 468, .external_lex_state = 57}, - [2528] = {.lex_state = 443, .external_lex_state = 53}, - [2529] = {.lex_state = 464, .external_lex_state = 27}, - [2530] = {.lex_state = 443, .external_lex_state = 53}, - [2531] = {.lex_state = 466, .external_lex_state = 58}, - [2532] = {.lex_state = 466, .external_lex_state = 58}, - [2533] = {.lex_state = 464, .external_lex_state = 27}, - [2534] = {.lex_state = 445, .external_lex_state = 43}, - [2535] = {.lex_state = 468, .external_lex_state = 57}, - [2536] = {.lex_state = 468, .external_lex_state = 57}, - [2537] = {.lex_state = 474, .external_lex_state = 55}, - [2538] = {.lex_state = 474, .external_lex_state = 55}, - [2539] = {.lex_state = 468, .external_lex_state = 57}, - [2540] = {.lex_state = 467, .external_lex_state = 30}, - [2541] = {.lex_state = 474, .external_lex_state = 55}, - [2542] = {.lex_state = 474, .external_lex_state = 55}, - [2543] = {.lex_state = 466, .external_lex_state = 55}, - [2544] = {.lex_state = 474, .external_lex_state = 55}, - [2545] = {.lex_state = 474, .external_lex_state = 55}, - [2546] = {.lex_state = 474, .external_lex_state = 58}, - [2547] = {.lex_state = 435, .external_lex_state = 59}, - [2548] = {.lex_state = 445, .external_lex_state = 43}, - [2549] = {.lex_state = 466, .external_lex_state = 55}, - [2550] = {.lex_state = 474, .external_lex_state = 58}, - [2551] = {.lex_state = 466, .external_lex_state = 55}, - [2552] = {.lex_state = 474, .external_lex_state = 58}, - [2553] = {.lex_state = 474, .external_lex_state = 55}, - [2554] = {.lex_state = 443, .external_lex_state = 53}, - [2555] = {.lex_state = 466, .external_lex_state = 55}, - [2556] = {.lex_state = 446, .external_lex_state = 46}, - [2557] = {.lex_state = 474, .external_lex_state = 55}, - [2558] = {.lex_state = 466, .external_lex_state = 55}, - [2559] = {.lex_state = 466, .external_lex_state = 55}, - [2560] = {.lex_state = 467, .external_lex_state = 30}, - [2561] = {.lex_state = 466, .external_lex_state = 55}, - [2562] = {.lex_state = 466, .external_lex_state = 55}, - [2563] = {.lex_state = 466, .external_lex_state = 55}, - [2564] = {.lex_state = 446, .external_lex_state = 46}, - [2565] = {.lex_state = 474, .external_lex_state = 58}, - [2566] = {.lex_state = 474, .external_lex_state = 55}, - [2567] = {.lex_state = 443, .external_lex_state = 53}, - [2568] = {.lex_state = 439, .external_lex_state = 53}, - [2569] = {.lex_state = 467, .external_lex_state = 30}, - [2570] = {.lex_state = 474, .external_lex_state = 55}, - [2571] = {.lex_state = 474, .external_lex_state = 55}, - [2572] = {.lex_state = 467, .external_lex_state = 30}, - [2573] = {.lex_state = 466, .external_lex_state = 55}, - [2574] = {.lex_state = 466, .external_lex_state = 55}, - [2575] = {.lex_state = 466, .external_lex_state = 55}, - [2576] = {.lex_state = 437, .external_lex_state = 46}, - [2577] = {.lex_state = 468, .external_lex_state = 57}, - [2578] = {.lex_state = 474, .external_lex_state = 55}, - [2579] = {.lex_state = 468, .external_lex_state = 57}, - [2580] = {.lex_state = 468, .external_lex_state = 57}, - [2581] = {.lex_state = 468, .external_lex_state = 57}, - [2582] = {.lex_state = 474, .external_lex_state = 55}, - [2583] = {.lex_state = 439, .external_lex_state = 43}, - [2584] = {.lex_state = 446, .external_lex_state = 46}, - [2585] = {.lex_state = 467, .external_lex_state = 30}, - [2586] = {.lex_state = 439, .external_lex_state = 53}, - [2587] = {.lex_state = 467, .external_lex_state = 30}, - [2588] = {.lex_state = 446, .external_lex_state = 46}, - [2589] = {.lex_state = 437, .external_lex_state = 60}, - [2590] = {.lex_state = 474, .external_lex_state = 58}, - [2591] = {.lex_state = 201, .external_lex_state = 61}, - [2592] = {.lex_state = 201, .external_lex_state = 61}, - [2593] = {.lex_state = 435, .external_lex_state = 43}, - [2594] = {.lex_state = 466, .external_lex_state = 58}, - [2595] = {.lex_state = 466, .external_lex_state = 58}, - [2596] = {.lex_state = 470, .external_lex_state = 57}, - [2597] = {.lex_state = 471, .external_lex_state = 58}, - [2598] = {.lex_state = 470, .external_lex_state = 57}, - [2599] = {.lex_state = 470, .external_lex_state = 57}, - [2600] = {.lex_state = 474, .external_lex_state = 58}, - [2601] = {.lex_state = 466, .external_lex_state = 58}, - [2602] = {.lex_state = 470, .external_lex_state = 57}, - [2603] = {.lex_state = 439, .external_lex_state = 53}, - [2604] = {.lex_state = 466, .external_lex_state = 58}, - [2605] = {.lex_state = 446, .external_lex_state = 46}, - [2606] = {.lex_state = 470, .external_lex_state = 57}, - [2607] = {.lex_state = 467, .external_lex_state = 32}, - [2608] = {.lex_state = 466, .external_lex_state = 58}, - [2609] = {.lex_state = 466, .external_lex_state = 58}, - [2610] = {.lex_state = 471, .external_lex_state = 58}, - [2611] = {.lex_state = 463, .external_lex_state = 29}, - [2612] = {.lex_state = 446, .external_lex_state = 46}, - [2613] = {.lex_state = 446, .external_lex_state = 46}, - [2614] = {.lex_state = 437, .external_lex_state = 60}, - [2615] = {.lex_state = 446, .external_lex_state = 46}, - [2616] = {.lex_state = 437, .external_lex_state = 60}, - [2617] = {.lex_state = 435, .external_lex_state = 43}, - [2618] = {.lex_state = 474, .external_lex_state = 58}, - [2619] = {.lex_state = 467, .external_lex_state = 30}, - [2620] = {.lex_state = 437, .external_lex_state = 60}, - [2621] = {.lex_state = 437, .external_lex_state = 60}, - [2622] = {.lex_state = 463, .external_lex_state = 29}, - [2623] = {.lex_state = 439, .external_lex_state = 43}, - [2624] = {.lex_state = 439, .external_lex_state = 53}, - [2625] = {.lex_state = 446, .external_lex_state = 46}, - [2626] = {.lex_state = 437, .external_lex_state = 60}, - [2627] = {.lex_state = 439, .external_lex_state = 53}, - [2628] = {.lex_state = 446, .external_lex_state = 46}, - [2629] = {.lex_state = 473, .external_lex_state = 29}, - [2630] = {.lex_state = 471, .external_lex_state = 58}, - [2631] = {.lex_state = 463, .external_lex_state = 29}, - [2632] = {.lex_state = 470, .external_lex_state = 57}, - [2633] = {.lex_state = 463, .external_lex_state = 29}, - [2634] = {.lex_state = 470, .external_lex_state = 57}, - [2635] = {.lex_state = 446, .external_lex_state = 46}, - [2636] = {.lex_state = 446, .external_lex_state = 46}, - [2637] = {.lex_state = 443, .external_lex_state = 53}, - [2638] = {.lex_state = 443, .external_lex_state = 53}, - [2639] = {.lex_state = 474, .external_lex_state = 58}, - [2640] = {.lex_state = 446, .external_lex_state = 46}, - [2641] = {.lex_state = 437, .external_lex_state = 60}, - [2642] = {.lex_state = 437, .external_lex_state = 60}, - [2643] = {.lex_state = 437, .external_lex_state = 60}, - [2644] = {.lex_state = 473, .external_lex_state = 29}, - [2645] = {.lex_state = 466, .external_lex_state = 58}, - [2646] = {.lex_state = 446, .external_lex_state = 46}, - [2647] = {.lex_state = 466, .external_lex_state = 58}, - [2648] = {.lex_state = 466, .external_lex_state = 58}, + [2277] = {.lex_state = 535, .external_lex_state = 18}, + [2278] = {.lex_state = 535, .external_lex_state = 18}, + [2279] = {.lex_state = 535, .external_lex_state = 18}, + [2280] = {.lex_state = 535, .external_lex_state = 18}, + [2281] = {.lex_state = 535, .external_lex_state = 18}, + [2282] = {.lex_state = 535, .external_lex_state = 18}, + [2283] = {.lex_state = 535, .external_lex_state = 23}, + [2284] = {.lex_state = 542, .external_lex_state = 44}, + [2285] = {.lex_state = 411, .external_lex_state = 35}, + [2286] = {.lex_state = 535, .external_lex_state = 18}, + [2287] = {.lex_state = 411, .external_lex_state = 35}, + [2288] = {.lex_state = 535, .external_lex_state = 18}, + [2289] = {.lex_state = 542, .external_lex_state = 44}, + [2290] = {.lex_state = 542, .external_lex_state = 44}, + [2291] = {.lex_state = 542, .external_lex_state = 44}, + [2292] = {.lex_state = 542, .external_lex_state = 44}, + [2293] = {.lex_state = 465, .external_lex_state = 52}, + [2294] = {.lex_state = 542, .external_lex_state = 44}, + [2295] = {.lex_state = 542, .external_lex_state = 44}, + [2296] = {.lex_state = 535, .external_lex_state = 18}, + [2297] = {.lex_state = 261, .external_lex_state = 23}, + [2298] = {.lex_state = 535, .external_lex_state = 18}, + [2299] = {.lex_state = 444, .external_lex_state = 53}, + [2300] = {.lex_state = 290, .external_lex_state = 42}, + [2301] = {.lex_state = 537, .external_lex_state = 23}, + [2302] = {.lex_state = 533, .external_lex_state = 23}, + [2303] = {.lex_state = 298, .external_lex_state = 54}, + [2304] = {.lex_state = 298, .external_lex_state = 54}, + [2305] = {.lex_state = 444, .external_lex_state = 53}, + [2306] = {.lex_state = 270, .external_lex_state = 23}, + [2307] = {.lex_state = 535, .external_lex_state = 18}, + [2308] = {.lex_state = 535, .external_lex_state = 18}, + [2309] = {.lex_state = 468, .external_lex_state = 55}, + [2310] = {.lex_state = 468, .external_lex_state = 55}, + [2311] = {.lex_state = 535, .external_lex_state = 18}, + [2312] = {.lex_state = 533, .external_lex_state = 23}, + [2313] = {.lex_state = 468, .external_lex_state = 55}, + [2314] = {.lex_state = 468, .external_lex_state = 55}, + [2315] = {.lex_state = 468, .external_lex_state = 55}, + [2316] = {.lex_state = 444, .external_lex_state = 53}, + [2317] = {.lex_state = 444, .external_lex_state = 53}, + [2318] = {.lex_state = 444, .external_lex_state = 53}, + [2319] = {.lex_state = 444, .external_lex_state = 53}, + [2320] = {.lex_state = 444, .external_lex_state = 53}, + [2321] = {.lex_state = 468, .external_lex_state = 55}, + [2322] = {.lex_state = 468, .external_lex_state = 55}, + [2323] = {.lex_state = 468, .external_lex_state = 55}, + [2324] = {.lex_state = 468, .external_lex_state = 55}, + [2325] = {.lex_state = 468, .external_lex_state = 55}, + [2326] = {.lex_state = 298, .external_lex_state = 54}, + [2327] = {.lex_state = 298, .external_lex_state = 54}, + [2328] = {.lex_state = 298, .external_lex_state = 54}, + [2329] = {.lex_state = 298, .external_lex_state = 54}, + [2330] = {.lex_state = 468, .external_lex_state = 55}, + [2331] = {.lex_state = 298, .external_lex_state = 54}, + [2332] = {.lex_state = 298, .external_lex_state = 54}, + [2333] = {.lex_state = 298, .external_lex_state = 54}, + [2334] = {.lex_state = 298, .external_lex_state = 54}, + [2335] = {.lex_state = 298, .external_lex_state = 54}, + [2336] = {.lex_state = 298, .external_lex_state = 54}, + [2337] = {.lex_state = 298, .external_lex_state = 54}, + [2338] = {.lex_state = 298, .external_lex_state = 54}, + [2339] = {.lex_state = 468, .external_lex_state = 55}, + [2340] = {.lex_state = 298, .external_lex_state = 54}, + [2341] = {.lex_state = 298, .external_lex_state = 54}, + [2342] = {.lex_state = 537, .external_lex_state = 23}, + [2343] = {.lex_state = 444, .external_lex_state = 53}, + [2344] = {.lex_state = 290, .external_lex_state = 42}, + [2345] = {.lex_state = 444, .external_lex_state = 53}, + [2346] = {.lex_state = 444, .external_lex_state = 53}, + [2347] = {.lex_state = 444, .external_lex_state = 53}, + [2348] = {.lex_state = 465, .external_lex_state = 52}, + [2349] = {.lex_state = 465, .external_lex_state = 52}, + [2350] = {.lex_state = 465, .external_lex_state = 52}, + [2351] = {.lex_state = 465, .external_lex_state = 52}, + [2352] = {.lex_state = 465, .external_lex_state = 52}, + [2353] = {.lex_state = 465, .external_lex_state = 52}, + [2354] = {.lex_state = 465, .external_lex_state = 52}, + [2355] = {.lex_state = 288, .external_lex_state = 42}, + [2356] = {.lex_state = 288, .external_lex_state = 42}, + [2357] = {.lex_state = 288, .external_lex_state = 42}, + [2358] = {.lex_state = 290, .external_lex_state = 42}, + [2359] = {.lex_state = 290, .external_lex_state = 42}, + [2360] = {.lex_state = 290, .external_lex_state = 42}, + [2361] = {.lex_state = 465, .external_lex_state = 52}, + [2362] = {.lex_state = 465, .external_lex_state = 52}, + [2363] = {.lex_state = 465, .external_lex_state = 52}, + [2364] = {.lex_state = 465, .external_lex_state = 52}, + [2365] = {.lex_state = 464, .external_lex_state = 22}, + [2366] = {.lex_state = 465, .external_lex_state = 52}, + [2367] = {.lex_state = 465, .external_lex_state = 52}, + [2368] = {.lex_state = 465, .external_lex_state = 52}, + [2369] = {.lex_state = 465, .external_lex_state = 52}, + [2370] = {.lex_state = 444, .external_lex_state = 53}, + [2371] = {.lex_state = 465, .external_lex_state = 52}, + [2372] = {.lex_state = 537, .external_lex_state = 23}, + [2373] = {.lex_state = 465, .external_lex_state = 52}, + [2374] = {.lex_state = 465, .external_lex_state = 52}, + [2375] = {.lex_state = 465, .external_lex_state = 52}, + [2376] = {.lex_state = 465, .external_lex_state = 52}, + [2377] = {.lex_state = 535, .external_lex_state = 23}, + [2378] = {.lex_state = 464, .external_lex_state = 22}, + [2379] = {.lex_state = 537, .external_lex_state = 23}, + [2380] = {.lex_state = 535, .external_lex_state = 23}, + [2381] = {.lex_state = 288, .external_lex_state = 42}, + [2382] = {.lex_state = 288, .external_lex_state = 42}, + [2383] = {.lex_state = 290, .external_lex_state = 42}, + [2384] = {.lex_state = 290, .external_lex_state = 42}, + [2385] = {.lex_state = 288, .external_lex_state = 42}, + [2386] = {.lex_state = 288, .external_lex_state = 42}, + [2387] = {.lex_state = 288, .external_lex_state = 42}, + [2388] = {.lex_state = 288, .external_lex_state = 42}, + [2389] = {.lex_state = 288, .external_lex_state = 42}, + [2390] = {.lex_state = 288, .external_lex_state = 42}, + [2391] = {.lex_state = 288, .external_lex_state = 42}, + [2392] = {.lex_state = 288, .external_lex_state = 42}, + [2393] = {.lex_state = 444, .external_lex_state = 53}, + [2394] = {.lex_state = 466, .external_lex_state = 56}, + [2395] = {.lex_state = 468, .external_lex_state = 55}, + [2396] = {.lex_state = 468, .external_lex_state = 55}, + [2397] = {.lex_state = 466, .external_lex_state = 56}, + [2398] = {.lex_state = 468, .external_lex_state = 55}, + [2399] = {.lex_state = 468, .external_lex_state = 55}, + [2400] = {.lex_state = 468, .external_lex_state = 55}, + [2401] = {.lex_state = 446, .external_lex_state = 53}, + [2402] = {.lex_state = 468, .external_lex_state = 55}, + [2403] = {.lex_state = 464, .external_lex_state = 26}, + [2404] = {.lex_state = 474, .external_lex_state = 56}, + [2405] = {.lex_state = 468, .external_lex_state = 55}, + [2406] = {.lex_state = 288, .external_lex_state = 44}, + [2407] = {.lex_state = 288, .external_lex_state = 44}, + [2408] = {.lex_state = 468, .external_lex_state = 55}, + [2409] = {.lex_state = 444, .external_lex_state = 53}, + [2410] = {.lex_state = 444, .external_lex_state = 53}, + [2411] = {.lex_state = 468, .external_lex_state = 55}, + [2412] = {.lex_state = 441, .external_lex_state = 47}, + [2413] = {.lex_state = 464, .external_lex_state = 26}, + [2414] = {.lex_state = 290, .external_lex_state = 44}, + [2415] = {.lex_state = 290, .external_lex_state = 44}, + [2416] = {.lex_state = 290, .external_lex_state = 44}, + [2417] = {.lex_state = 468, .external_lex_state = 55}, + [2418] = {.lex_state = 468, .external_lex_state = 55}, + [2419] = {.lex_state = 468, .external_lex_state = 55}, + [2420] = {.lex_state = 466, .external_lex_state = 56}, + [2421] = {.lex_state = 464, .external_lex_state = 26}, + [2422] = {.lex_state = 441, .external_lex_state = 47}, + [2423] = {.lex_state = 464, .external_lex_state = 26}, + [2424] = {.lex_state = 288, .external_lex_state = 44}, + [2425] = {.lex_state = 464, .external_lex_state = 22}, + [2426] = {.lex_state = 288, .external_lex_state = 44}, + [2427] = {.lex_state = 288, .external_lex_state = 44}, + [2428] = {.lex_state = 468, .external_lex_state = 55}, + [2429] = {.lex_state = 444, .external_lex_state = 53}, + [2430] = {.lex_state = 442, .external_lex_state = 53}, + [2431] = {.lex_state = 468, .external_lex_state = 57}, + [2432] = {.lex_state = 444, .external_lex_state = 53}, + [2433] = {.lex_state = 468, .external_lex_state = 57}, + [2434] = {.lex_state = 537, .external_lex_state = 23}, + [2435] = {.lex_state = 468, .external_lex_state = 55}, + [2436] = {.lex_state = 444, .external_lex_state = 53}, + [2437] = {.lex_state = 474, .external_lex_state = 56}, + [2438] = {.lex_state = 444, .external_lex_state = 53}, + [2439] = {.lex_state = 466, .external_lex_state = 56}, + [2440] = {.lex_state = 466, .external_lex_state = 56}, + [2441] = {.lex_state = 474, .external_lex_state = 56}, + [2442] = {.lex_state = 444, .external_lex_state = 53}, + [2443] = {.lex_state = 464, .external_lex_state = 22}, + [2444] = {.lex_state = 444, .external_lex_state = 53}, + [2445] = {.lex_state = 537, .external_lex_state = 23}, + [2446] = {.lex_state = 474, .external_lex_state = 56}, + [2447] = {.lex_state = 444, .external_lex_state = 53}, + [2448] = {.lex_state = 466, .external_lex_state = 56}, + [2449] = {.lex_state = 466, .external_lex_state = 56}, + [2450] = {.lex_state = 468, .external_lex_state = 55}, + [2451] = {.lex_state = 466, .external_lex_state = 56}, + [2452] = {.lex_state = 466, .external_lex_state = 56}, + [2453] = {.lex_state = 468, .external_lex_state = 57}, + [2454] = {.lex_state = 474, .external_lex_state = 56}, + [2455] = {.lex_state = 468, .external_lex_state = 57}, + [2456] = {.lex_state = 474, .external_lex_state = 56}, + [2457] = {.lex_state = 468, .external_lex_state = 57}, + [2458] = {.lex_state = 468, .external_lex_state = 57}, + [2459] = {.lex_state = 446, .external_lex_state = 53}, + [2460] = {.lex_state = 464, .external_lex_state = 26}, + [2461] = {.lex_state = 468, .external_lex_state = 55}, + [2462] = {.lex_state = 468, .external_lex_state = 55}, + [2463] = {.lex_state = 466, .external_lex_state = 56}, + [2464] = {.lex_state = 466, .external_lex_state = 56}, + [2465] = {.lex_state = 290, .external_lex_state = 44}, + [2466] = {.lex_state = 290, .external_lex_state = 44}, + [2467] = {.lex_state = 444, .external_lex_state = 53}, + [2468] = {.lex_state = 468, .external_lex_state = 55}, + [2469] = {.lex_state = 466, .external_lex_state = 56}, + [2470] = {.lex_state = 468, .external_lex_state = 55}, + [2471] = {.lex_state = 466, .external_lex_state = 56}, + [2472] = {.lex_state = 468, .external_lex_state = 55}, + [2473] = {.lex_state = 466, .external_lex_state = 56}, + [2474] = {.lex_state = 444, .external_lex_state = 53}, + [2475] = {.lex_state = 474, .external_lex_state = 56}, + [2476] = {.lex_state = 474, .external_lex_state = 56}, + [2477] = {.lex_state = 444, .external_lex_state = 53}, + [2478] = {.lex_state = 444, .external_lex_state = 53}, + [2479] = {.lex_state = 441, .external_lex_state = 47}, + [2480] = {.lex_state = 437, .external_lex_state = 47}, + [2481] = {.lex_state = 296, .external_lex_state = 44}, + [2482] = {.lex_state = 296, .external_lex_state = 44}, + [2483] = {.lex_state = 441, .external_lex_state = 53}, + [2484] = {.lex_state = 296, .external_lex_state = 44}, + [2485] = {.lex_state = 441, .external_lex_state = 47}, + [2486] = {.lex_state = 437, .external_lex_state = 47}, + [2487] = {.lex_state = 441, .external_lex_state = 47}, + [2488] = {.lex_state = 437, .external_lex_state = 47}, + [2489] = {.lex_state = 441, .external_lex_state = 47}, + [2490] = {.lex_state = 437, .external_lex_state = 47}, + [2491] = {.lex_state = 474, .external_lex_state = 56}, + [2492] = {.lex_state = 444, .external_lex_state = 53}, + [2493] = {.lex_state = 467, .external_lex_state = 29}, + [2494] = {.lex_state = 435, .external_lex_state = 58}, + [2495] = {.lex_state = 474, .external_lex_state = 56}, + [2496] = {.lex_state = 474, .external_lex_state = 56}, + [2497] = {.lex_state = 474, .external_lex_state = 56}, + [2498] = {.lex_state = 474, .external_lex_state = 56}, + [2499] = {.lex_state = 474, .external_lex_state = 56}, + [2500] = {.lex_state = 474, .external_lex_state = 59}, + [2501] = {.lex_state = 474, .external_lex_state = 59}, + [2502] = {.lex_state = 437, .external_lex_state = 47}, + [2503] = {.lex_state = 474, .external_lex_state = 59}, + [2504] = {.lex_state = 474, .external_lex_state = 56}, + [2505] = {.lex_state = 435, .external_lex_state = 58}, + [2506] = {.lex_state = 474, .external_lex_state = 56}, + [2507] = {.lex_state = 441, .external_lex_state = 53}, + [2508] = {.lex_state = 444, .external_lex_state = 53}, + [2509] = {.lex_state = 435, .external_lex_state = 58}, + [2510] = {.lex_state = 441, .external_lex_state = 47}, + [2511] = {.lex_state = 441, .external_lex_state = 47}, + [2512] = {.lex_state = 474, .external_lex_state = 59}, + [2513] = {.lex_state = 474, .external_lex_state = 56}, + [2514] = {.lex_state = 474, .external_lex_state = 56}, + [2515] = {.lex_state = 474, .external_lex_state = 56}, + [2516] = {.lex_state = 444, .external_lex_state = 53}, + [2517] = {.lex_state = 444, .external_lex_state = 53}, + [2518] = {.lex_state = 441, .external_lex_state = 53}, + [2519] = {.lex_state = 474, .external_lex_state = 56}, + [2520] = {.lex_state = 296, .external_lex_state = 44}, + [2521] = {.lex_state = 296, .external_lex_state = 44}, + [2522] = {.lex_state = 441, .external_lex_state = 53}, + [2523] = {.lex_state = 441, .external_lex_state = 47}, + [2524] = {.lex_state = 437, .external_lex_state = 47}, + [2525] = {.lex_state = 441, .external_lex_state = 47}, + [2526] = {.lex_state = 474, .external_lex_state = 56}, + [2527] = {.lex_state = 474, .external_lex_state = 56}, + [2528] = {.lex_state = 474, .external_lex_state = 56}, + [2529] = {.lex_state = 474, .external_lex_state = 56}, + [2530] = {.lex_state = 464, .external_lex_state = 26}, + [2531] = {.lex_state = 474, .external_lex_state = 56}, + [2532] = {.lex_state = 441, .external_lex_state = 47}, + [2533] = {.lex_state = 467, .external_lex_state = 29}, + [2534] = {.lex_state = 464, .external_lex_state = 26}, + [2535] = {.lex_state = 474, .external_lex_state = 56}, + [2536] = {.lex_state = 474, .external_lex_state = 56}, + [2537] = {.lex_state = 474, .external_lex_state = 56}, + [2538] = {.lex_state = 435, .external_lex_state = 58}, + [2539] = {.lex_state = 467, .external_lex_state = 29}, + [2540] = {.lex_state = 441, .external_lex_state = 47}, + [2541] = {.lex_state = 435, .external_lex_state = 58}, + [2542] = {.lex_state = 467, .external_lex_state = 29}, + [2543] = {.lex_state = 466, .external_lex_state = 59}, + [2544] = {.lex_state = 466, .external_lex_state = 59}, + [2545] = {.lex_state = 435, .external_lex_state = 58}, + [2546] = {.lex_state = 446, .external_lex_state = 43}, + [2547] = {.lex_state = 464, .external_lex_state = 26}, + [2548] = {.lex_state = 444, .external_lex_state = 53}, + [2549] = {.lex_state = 441, .external_lex_state = 47}, + [2550] = {.lex_state = 435, .external_lex_state = 58}, + [2551] = {.lex_state = 466, .external_lex_state = 56}, + [2552] = {.lex_state = 467, .external_lex_state = 29}, + [2553] = {.lex_state = 464, .external_lex_state = 26}, + [2554] = {.lex_state = 466, .external_lex_state = 56}, + [2555] = {.lex_state = 466, .external_lex_state = 56}, + [2556] = {.lex_state = 466, .external_lex_state = 56}, + [2557] = {.lex_state = 466, .external_lex_state = 56}, + [2558] = {.lex_state = 470, .external_lex_state = 57}, + [2559] = {.lex_state = 470, .external_lex_state = 57}, + [2560] = {.lex_state = 470, .external_lex_state = 57}, + [2561] = {.lex_state = 466, .external_lex_state = 56}, + [2562] = {.lex_state = 466, .external_lex_state = 56}, + [2563] = {.lex_state = 441, .external_lex_state = 47}, + [2564] = {.lex_state = 470, .external_lex_state = 57}, + [2565] = {.lex_state = 468, .external_lex_state = 57}, + [2566] = {.lex_state = 467, .external_lex_state = 29}, + [2567] = {.lex_state = 468, .external_lex_state = 57}, + [2568] = {.lex_state = 468, .external_lex_state = 57}, + [2569] = {.lex_state = 468, .external_lex_state = 57}, + [2570] = {.lex_state = 474, .external_lex_state = 59}, + [2571] = {.lex_state = 468, .external_lex_state = 57}, + [2572] = {.lex_state = 474, .external_lex_state = 59}, + [2573] = {.lex_state = 468, .external_lex_state = 57}, + [2574] = {.lex_state = 468, .external_lex_state = 57}, + [2575] = {.lex_state = 468, .external_lex_state = 57}, + [2576] = {.lex_state = 466, .external_lex_state = 56}, + [2577] = {.lex_state = 466, .external_lex_state = 56}, + [2578] = {.lex_state = 466, .external_lex_state = 56}, + [2579] = {.lex_state = 466, .external_lex_state = 56}, + [2580] = {.lex_state = 466, .external_lex_state = 56}, + [2581] = {.lex_state = 466, .external_lex_state = 56}, + [2582] = {.lex_state = 466, .external_lex_state = 56}, + [2583] = {.lex_state = 466, .external_lex_state = 56}, + [2584] = {.lex_state = 466, .external_lex_state = 56}, + [2585] = {.lex_state = 466, .external_lex_state = 56}, + [2586] = {.lex_state = 466, .external_lex_state = 56}, + [2587] = {.lex_state = 466, .external_lex_state = 56}, + [2588] = {.lex_state = 444, .external_lex_state = 53}, + [2589] = {.lex_state = 468, .external_lex_state = 57}, + [2590] = {.lex_state = 468, .external_lex_state = 57}, + [2591] = {.lex_state = 468, .external_lex_state = 57}, + [2592] = {.lex_state = 468, .external_lex_state = 57}, + [2593] = {.lex_state = 468, .external_lex_state = 57}, + [2594] = {.lex_state = 468, .external_lex_state = 57}, + [2595] = {.lex_state = 468, .external_lex_state = 57}, + [2596] = {.lex_state = 468, .external_lex_state = 57}, + [2597] = {.lex_state = 468, .external_lex_state = 57}, + [2598] = {.lex_state = 468, .external_lex_state = 57}, + [2599] = {.lex_state = 468, .external_lex_state = 57}, + [2600] = {.lex_state = 468, .external_lex_state = 57}, + [2601] = {.lex_state = 464, .external_lex_state = 26}, + [2602] = {.lex_state = 466, .external_lex_state = 59}, + [2603] = {.lex_state = 466, .external_lex_state = 59}, + [2604] = {.lex_state = 464, .external_lex_state = 26}, + [2605] = {.lex_state = 466, .external_lex_state = 59}, + [2606] = {.lex_state = 444, .external_lex_state = 53}, + [2607] = {.lex_state = 446, .external_lex_state = 53}, + [2608] = {.lex_state = 446, .external_lex_state = 43}, + [2609] = {.lex_state = 441, .external_lex_state = 47}, + [2610] = {.lex_state = 437, .external_lex_state = 47}, + [2611] = {.lex_state = 435, .external_lex_state = 58}, + [2612] = {.lex_state = 466, .external_lex_state = 59}, + [2613] = {.lex_state = 441, .external_lex_state = 53}, + [2614] = {.lex_state = 470, .external_lex_state = 57}, + [2615] = {.lex_state = 470, .external_lex_state = 57}, + [2616] = {.lex_state = 441, .external_lex_state = 53}, + [2617] = {.lex_state = 437, .external_lex_state = 47}, + [2618] = {.lex_state = 435, .external_lex_state = 58}, + [2619] = {.lex_state = 466, .external_lex_state = 56}, + [2620] = {.lex_state = 466, .external_lex_state = 59}, + [2621] = {.lex_state = 466, .external_lex_state = 59}, + [2622] = {.lex_state = 466, .external_lex_state = 59}, + [2623] = {.lex_state = 474, .external_lex_state = 59}, + [2624] = {.lex_state = 435, .external_lex_state = 43}, + [2625] = {.lex_state = 441, .external_lex_state = 53}, + [2626] = {.lex_state = 441, .external_lex_state = 47}, + [2627] = {.lex_state = 467, .external_lex_state = 29}, + [2628] = {.lex_state = 435, .external_lex_state = 60}, + [2629] = {.lex_state = 466, .external_lex_state = 59}, + [2630] = {.lex_state = 463, .external_lex_state = 28}, + [2631] = {.lex_state = 474, .external_lex_state = 59}, + [2632] = {.lex_state = 435, .external_lex_state = 60}, + [2633] = {.lex_state = 467, .external_lex_state = 29}, + [2634] = {.lex_state = 441, .external_lex_state = 53}, + [2635] = {.lex_state = 474, .external_lex_state = 59}, + [2636] = {.lex_state = 474, .external_lex_state = 59}, + [2637] = {.lex_state = 474, .external_lex_state = 59}, + [2638] = {.lex_state = 463, .external_lex_state = 28}, + [2639] = {.lex_state = 441, .external_lex_state = 47}, + [2640] = {.lex_state = 437, .external_lex_state = 61}, + [2641] = {.lex_state = 437, .external_lex_state = 61}, + [2642] = {.lex_state = 441, .external_lex_state = 53}, + [2643] = {.lex_state = 437, .external_lex_state = 61}, + [2644] = {.lex_state = 474, .external_lex_state = 59}, + [2645] = {.lex_state = 467, .external_lex_state = 29}, + [2646] = {.lex_state = 467, .external_lex_state = 29}, + [2647] = {.lex_state = 441, .external_lex_state = 47}, + [2648] = {.lex_state = 466, .external_lex_state = 59}, [2649] = {.lex_state = 435, .external_lex_state = 43}, - [2650] = {.lex_state = 439, .external_lex_state = 53}, - [2651] = {.lex_state = 442, .external_lex_state = 62}, - [2652] = {.lex_state = 466, .external_lex_state = 58}, - [2653] = {.lex_state = 439, .external_lex_state = 53}, - [2654] = {.lex_state = 439, .external_lex_state = 53}, - [2655] = {.lex_state = 466, .external_lex_state = 58}, - [2656] = {.lex_state = 446, .external_lex_state = 46}, - [2657] = {.lex_state = 439, .external_lex_state = 53}, - [2658] = {.lex_state = 446, .external_lex_state = 46}, - [2659] = {.lex_state = 446, .external_lex_state = 46}, - [2660] = {.lex_state = 446, .external_lex_state = 46}, - [2661] = {.lex_state = 439, .external_lex_state = 53}, - [2662] = {.lex_state = 463, .external_lex_state = 29}, - [2663] = {.lex_state = 471, .external_lex_state = 58}, - [2664] = {.lex_state = 471, .external_lex_state = 58}, - [2665] = {.lex_state = 439, .external_lex_state = 53}, - [2666] = {.lex_state = 439, .external_lex_state = 53}, - [2667] = {.lex_state = 435, .external_lex_state = 63}, - [2668] = {.lex_state = 439, .external_lex_state = 53}, - [2669] = {.lex_state = 474, .external_lex_state = 58}, - [2670] = {.lex_state = 446, .external_lex_state = 46}, - [2671] = {.lex_state = 463, .external_lex_state = 29}, - [2672] = {.lex_state = 466, .external_lex_state = 58}, - [2673] = {.lex_state = 466, .external_lex_state = 58}, - [2674] = {.lex_state = 435, .external_lex_state = 43}, - [2675] = {.lex_state = 466, .external_lex_state = 58}, - [2676] = {.lex_state = 466, .external_lex_state = 58}, - [2677] = {.lex_state = 439, .external_lex_state = 53}, - [2678] = {.lex_state = 439, .external_lex_state = 53}, - [2679] = {.lex_state = 439, .external_lex_state = 53}, - [2680] = {.lex_state = 466, .external_lex_state = 58}, - [2681] = {.lex_state = 445, .external_lex_state = 43}, - [2682] = {.lex_state = 474, .external_lex_state = 58}, - [2683] = {.lex_state = 437, .external_lex_state = 48}, - [2684] = {.lex_state = 474, .external_lex_state = 58}, - [2685] = {.lex_state = 435, .external_lex_state = 43}, - [2686] = {.lex_state = 474, .external_lex_state = 58}, - [2687] = {.lex_state = 467, .external_lex_state = 30}, - [2688] = {.lex_state = 446, .external_lex_state = 46}, - [2689] = {.lex_state = 474, .external_lex_state = 58}, - [2690] = {.lex_state = 446, .external_lex_state = 46}, - [2691] = {.lex_state = 474, .external_lex_state = 58}, - [2692] = {.lex_state = 474, .external_lex_state = 58}, - [2693] = {.lex_state = 466, .external_lex_state = 58}, - [2694] = {.lex_state = 466, .external_lex_state = 58}, - [2695] = {.lex_state = 474, .external_lex_state = 58}, - [2696] = {.lex_state = 474, .external_lex_state = 58}, - [2697] = {.lex_state = 463, .external_lex_state = 29}, - [2698] = {.lex_state = 466, .external_lex_state = 58}, - [2699] = {.lex_state = 467, .external_lex_state = 32}, - [2700] = {.lex_state = 467, .external_lex_state = 30}, - [2701] = {.lex_state = 474, .external_lex_state = 58}, - [2702] = {.lex_state = 471, .external_lex_state = 58}, - [2703] = {.lex_state = 435, .external_lex_state = 63}, - [2704] = {.lex_state = 474, .external_lex_state = 58}, - [2705] = {.lex_state = 437, .external_lex_state = 48}, - [2706] = {.lex_state = 470, .external_lex_state = 57}, + [2650] = {.lex_state = 437, .external_lex_state = 61}, + [2651] = {.lex_state = 463, .external_lex_state = 28}, + [2652] = {.lex_state = 435, .external_lex_state = 43}, + [2653] = {.lex_state = 442, .external_lex_state = 43}, + [2654] = {.lex_state = 441, .external_lex_state = 47}, + [2655] = {.lex_state = 463, .external_lex_state = 28}, + [2656] = {.lex_state = 467, .external_lex_state = 29}, + [2657] = {.lex_state = 441, .external_lex_state = 47}, + [2658] = {.lex_state = 441, .external_lex_state = 47}, + [2659] = {.lex_state = 435, .external_lex_state = 60}, + [2660] = {.lex_state = 441, .external_lex_state = 47}, + [2661] = {.lex_state = 441, .external_lex_state = 47}, + [2662] = {.lex_state = 473, .external_lex_state = 28}, + [2663] = {.lex_state = 435, .external_lex_state = 60}, + [2664] = {.lex_state = 466, .external_lex_state = 59}, + [2665] = {.lex_state = 470, .external_lex_state = 57}, + [2666] = {.lex_state = 437, .external_lex_state = 61}, + [2667] = {.lex_state = 470, .external_lex_state = 57}, + [2668] = {.lex_state = 470, .external_lex_state = 57}, + [2669] = {.lex_state = 474, .external_lex_state = 59}, + [2670] = {.lex_state = 466, .external_lex_state = 59}, + [2671] = {.lex_state = 470, .external_lex_state = 57}, + [2672] = {.lex_state = 470, .external_lex_state = 57}, + [2673] = {.lex_state = 467, .external_lex_state = 32}, + [2674] = {.lex_state = 470, .external_lex_state = 57}, + [2675] = {.lex_state = 441, .external_lex_state = 47}, + [2676] = {.lex_state = 463, .external_lex_state = 28}, + [2677] = {.lex_state = 470, .external_lex_state = 57}, + [2678] = {.lex_state = 470, .external_lex_state = 57}, + [2679] = {.lex_state = 441, .external_lex_state = 53}, + [2680] = {.lex_state = 467, .external_lex_state = 29}, + [2681] = {.lex_state = 201, .external_lex_state = 62}, + [2682] = {.lex_state = 441, .external_lex_state = 53}, + [2683] = {.lex_state = 435, .external_lex_state = 43}, + [2684] = {.lex_state = 201, .external_lex_state = 62}, + [2685] = {.lex_state = 474, .external_lex_state = 59}, + [2686] = {.lex_state = 435, .external_lex_state = 43}, + [2687] = {.lex_state = 441, .external_lex_state = 53}, + [2688] = {.lex_state = 441, .external_lex_state = 53}, + [2689] = {.lex_state = 473, .external_lex_state = 28}, + [2690] = {.lex_state = 466, .external_lex_state = 59}, + [2691] = {.lex_state = 466, .external_lex_state = 59}, + [2692] = {.lex_state = 437, .external_lex_state = 61}, + [2693] = {.lex_state = 467, .external_lex_state = 29}, + [2694] = {.lex_state = 441, .external_lex_state = 47}, + [2695] = {.lex_state = 466, .external_lex_state = 59}, + [2696] = {.lex_state = 441, .external_lex_state = 53}, + [2697] = {.lex_state = 441, .external_lex_state = 53}, + [2698] = {.lex_state = 441, .external_lex_state = 53}, + [2699] = {.lex_state = 463, .external_lex_state = 28}, + [2700] = {.lex_state = 441, .external_lex_state = 53}, + [2701] = {.lex_state = 467, .external_lex_state = 32}, + [2702] = {.lex_state = 441, .external_lex_state = 53}, + [2703] = {.lex_state = 441, .external_lex_state = 47}, + [2704] = {.lex_state = 441, .external_lex_state = 47}, + [2705] = {.lex_state = 435, .external_lex_state = 43}, + [2706] = {.lex_state = 441, .external_lex_state = 47}, [2707] = {.lex_state = 470, .external_lex_state = 57}, [2708] = {.lex_state = 470, .external_lex_state = 57}, - [2709] = {.lex_state = 470, .external_lex_state = 57}, - [2710] = {.lex_state = 439, .external_lex_state = 53}, - [2711] = {.lex_state = 470, .external_lex_state = 57}, - [2712] = {.lex_state = 473, .external_lex_state = 29}, - [2713] = {.lex_state = 474, .external_lex_state = 58}, - [2714] = {.lex_state = 474, .external_lex_state = 58}, - [2715] = {.lex_state = 474, .external_lex_state = 58}, - [2716] = {.lex_state = 435, .external_lex_state = 43}, - [2717] = {.lex_state = 437, .external_lex_state = 46}, - [2718] = {.lex_state = 470, .external_lex_state = 57}, - [2719] = {.lex_state = 470, .external_lex_state = 57}, - [2720] = {.lex_state = 467, .external_lex_state = 30}, - [2721] = {.lex_state = 470, .external_lex_state = 57}, - [2722] = {.lex_state = 435, .external_lex_state = 43}, - [2723] = {.lex_state = 467, .external_lex_state = 30}, - [2724] = {.lex_state = 474, .external_lex_state = 58}, + [2709] = {.lex_state = 441, .external_lex_state = 53}, + [2710] = {.lex_state = 470, .external_lex_state = 57}, + [2711] = {.lex_state = 437, .external_lex_state = 61}, + [2712] = {.lex_state = 470, .external_lex_state = 57}, + [2713] = {.lex_state = 470, .external_lex_state = 57}, + [2714] = {.lex_state = 470, .external_lex_state = 57}, + [2715] = {.lex_state = 470, .external_lex_state = 57}, + [2716] = {.lex_state = 470, .external_lex_state = 57}, + [2717] = {.lex_state = 441, .external_lex_state = 53}, + [2718] = {.lex_state = 437, .external_lex_state = 61}, + [2719] = {.lex_state = 441, .external_lex_state = 47}, + [2720] = {.lex_state = 441, .external_lex_state = 47}, + [2721] = {.lex_state = 441, .external_lex_state = 47}, + [2722] = {.lex_state = 441, .external_lex_state = 53}, + [2723] = {.lex_state = 474, .external_lex_state = 59}, + [2724] = {.lex_state = 437, .external_lex_state = 50}, [2725] = {.lex_state = 470, .external_lex_state = 57}, - [2726] = {.lex_state = 435, .external_lex_state = 43}, + [2726] = {.lex_state = 470, .external_lex_state = 57}, [2727] = {.lex_state = 470, .external_lex_state = 57}, - [2728] = {.lex_state = 435, .external_lex_state = 43}, - [2729] = {.lex_state = 439, .external_lex_state = 53}, - [2730] = {.lex_state = 470, .external_lex_state = 57}, - [2731] = {.lex_state = 470, .external_lex_state = 57}, - [2732] = {.lex_state = 443, .external_lex_state = 53}, - [2733] = {.lex_state = 435, .external_lex_state = 63}, - [2734] = {.lex_state = 435, .external_lex_state = 63}, - [2735] = {.lex_state = 439, .external_lex_state = 53}, - [2736] = {.lex_state = 439, .external_lex_state = 53}, - [2737] = {.lex_state = 437, .external_lex_state = 46}, - [2738] = {.lex_state = 435, .external_lex_state = 62}, - [2739] = {.lex_state = 471, .external_lex_state = 58}, - [2740] = {.lex_state = 435, .external_lex_state = 62}, - [2741] = {.lex_state = 471, .external_lex_state = 58}, - [2742] = {.lex_state = 437, .external_lex_state = 59}, - [2743] = {.lex_state = 437, .external_lex_state = 46}, - [2744] = {.lex_state = 437, .external_lex_state = 59}, - [2745] = {.lex_state = 435, .external_lex_state = 62}, - [2746] = {.lex_state = 437, .external_lex_state = 59}, - [2747] = {.lex_state = 437, .external_lex_state = 59}, - [2748] = {.lex_state = 437, .external_lex_state = 59}, - [2749] = {.lex_state = 435, .external_lex_state = 62}, - [2750] = {.lex_state = 435, .external_lex_state = 62}, - [2751] = {.lex_state = 473, .external_lex_state = 29}, - [2752] = {.lex_state = 435, .external_lex_state = 62}, - [2753] = {.lex_state = 473, .external_lex_state = 35}, - [2754] = {.lex_state = 435, .external_lex_state = 62}, - [2755] = {.lex_state = 437, .external_lex_state = 46}, - [2756] = {.lex_state = 473, .external_lex_state = 29}, - [2757] = {.lex_state = 435, .external_lex_state = 62}, - [2758] = {.lex_state = 435, .external_lex_state = 62}, - [2759] = {.lex_state = 437, .external_lex_state = 46}, - [2760] = {.lex_state = 435, .external_lex_state = 62}, - [2761] = {.lex_state = 435, .external_lex_state = 62}, - [2762] = {.lex_state = 437, .external_lex_state = 46}, - [2763] = {.lex_state = 435, .external_lex_state = 62}, - [2764] = {.lex_state = 435, .external_lex_state = 62}, - [2765] = {.lex_state = 437, .external_lex_state = 64}, - [2766] = {.lex_state = 437, .external_lex_state = 46}, - [2767] = {.lex_state = 435, .external_lex_state = 62}, - [2768] = {.lex_state = 435, .external_lex_state = 62}, - [2769] = {.lex_state = 435, .external_lex_state = 62}, - [2770] = {.lex_state = 435, .external_lex_state = 62}, - [2771] = {.lex_state = 435, .external_lex_state = 62}, - [2772] = {.lex_state = 435, .external_lex_state = 62}, - [2773] = {.lex_state = 435, .external_lex_state = 62}, - [2774] = {.lex_state = 435, .external_lex_state = 62}, - [2775] = {.lex_state = 437, .external_lex_state = 64}, - [2776] = {.lex_state = 435, .external_lex_state = 62}, - [2777] = {.lex_state = 435, .external_lex_state = 62}, - [2778] = {.lex_state = 435, .external_lex_state = 62}, - [2779] = {.lex_state = 435, .external_lex_state = 62}, - [2780] = {.lex_state = 435, .external_lex_state = 62}, - [2781] = {.lex_state = 472, .external_lex_state = 32}, - [2782] = {.lex_state = 435, .external_lex_state = 62}, - [2783] = {.lex_state = 435, .external_lex_state = 62}, - [2784] = {.lex_state = 471, .external_lex_state = 58}, - [2785] = {.lex_state = 435, .external_lex_state = 62}, - [2786] = {.lex_state = 435, .external_lex_state = 62}, - [2787] = {.lex_state = 435, .external_lex_state = 62}, - [2788] = {.lex_state = 471, .external_lex_state = 58}, - [2789] = {.lex_state = 463, .external_lex_state = 29}, - [2790] = {.lex_state = 435, .external_lex_state = 62}, - [2791] = {.lex_state = 463, .external_lex_state = 29}, - [2792] = {.lex_state = 463, .external_lex_state = 29}, - [2793] = {.lex_state = 435, .external_lex_state = 62}, - [2794] = {.lex_state = 437, .external_lex_state = 64}, - [2795] = {.lex_state = 435, .external_lex_state = 62}, - [2796] = {.lex_state = 437, .external_lex_state = 64}, - [2797] = {.lex_state = 471, .external_lex_state = 58}, - [2798] = {.lex_state = 471, .external_lex_state = 58}, - [2799] = {.lex_state = 437, .external_lex_state = 59}, - [2800] = {.lex_state = 437, .external_lex_state = 59}, - [2801] = {.lex_state = 435, .external_lex_state = 62}, - [2802] = {.lex_state = 463, .external_lex_state = 29}, - [2803] = {.lex_state = 437, .external_lex_state = 59}, - [2804] = {.lex_state = 435, .external_lex_state = 62}, - [2805] = {.lex_state = 435, .external_lex_state = 62}, - [2806] = {.lex_state = 435, .external_lex_state = 62}, - [2807] = {.lex_state = 437, .external_lex_state = 64}, - [2808] = {.lex_state = 437, .external_lex_state = 46}, - [2809] = {.lex_state = 437, .external_lex_state = 46}, - [2810] = {.lex_state = 435, .external_lex_state = 62}, - [2811] = {.lex_state = 471, .external_lex_state = 58}, - [2812] = {.lex_state = 437, .external_lex_state = 46}, - [2813] = {.lex_state = 437, .external_lex_state = 46}, - [2814] = {.lex_state = 435, .external_lex_state = 62}, - [2815] = {.lex_state = 238, .external_lex_state = 61}, - [2816] = {.lex_state = 435, .external_lex_state = 62}, - [2817] = {.lex_state = 435, .external_lex_state = 62}, - [2818] = {.lex_state = 463, .external_lex_state = 35}, - [2819] = {.lex_state = 437, .external_lex_state = 59}, - [2820] = {.lex_state = 437, .external_lex_state = 46}, - [2821] = {.lex_state = 435, .external_lex_state = 62}, - [2822] = {.lex_state = 437, .external_lex_state = 46}, - [2823] = {.lex_state = 471, .external_lex_state = 58}, - [2824] = {.lex_state = 435, .external_lex_state = 62}, - [2825] = {.lex_state = 435, .external_lex_state = 62}, - [2826] = {.lex_state = 435, .external_lex_state = 62}, - [2827] = {.lex_state = 471, .external_lex_state = 58}, - [2828] = {.lex_state = 471, .external_lex_state = 58}, - [2829] = {.lex_state = 435, .external_lex_state = 62}, - [2830] = {.lex_state = 435, .external_lex_state = 62}, - [2831] = {.lex_state = 435, .external_lex_state = 62}, - [2832] = {.lex_state = 463, .external_lex_state = 29}, - [2833] = {.lex_state = 471, .external_lex_state = 58}, - [2834] = {.lex_state = 471, .external_lex_state = 58}, - [2835] = {.lex_state = 437, .external_lex_state = 46}, - [2836] = {.lex_state = 435, .external_lex_state = 62}, - [2837] = {.lex_state = 435, .external_lex_state = 62}, - [2838] = {.lex_state = 435, .external_lex_state = 62}, - [2839] = {.lex_state = 435, .external_lex_state = 62}, - [2840] = {.lex_state = 435, .external_lex_state = 62}, - [2841] = {.lex_state = 435, .external_lex_state = 62}, - [2842] = {.lex_state = 437, .external_lex_state = 46}, - [2843] = {.lex_state = 437, .external_lex_state = 46}, - [2844] = {.lex_state = 435, .external_lex_state = 62}, - [2845] = {.lex_state = 435, .external_lex_state = 62}, - [2846] = {.lex_state = 435, .external_lex_state = 62}, - [2847] = {.lex_state = 437, .external_lex_state = 48}, - [2848] = {.lex_state = 435, .external_lex_state = 62}, - [2849] = {.lex_state = 435, .external_lex_state = 62}, - [2850] = {.lex_state = 435, .external_lex_state = 62}, - [2851] = {.lex_state = 238, .external_lex_state = 61}, - [2852] = {.lex_state = 463, .external_lex_state = 35}, - [2853] = {.lex_state = 435, .external_lex_state = 62}, - [2854] = {.lex_state = 437, .external_lex_state = 64}, - [2855] = {.lex_state = 435, .external_lex_state = 62}, - [2856] = {.lex_state = 437, .external_lex_state = 64}, - [2857] = {.lex_state = 435, .external_lex_state = 62}, - [2858] = {.lex_state = 437, .external_lex_state = 46}, - [2859] = {.lex_state = 435, .external_lex_state = 62}, - [2860] = {.lex_state = 435, .external_lex_state = 62}, - [2861] = {.lex_state = 435, .external_lex_state = 62}, - [2862] = {.lex_state = 471, .external_lex_state = 58}, - [2863] = {.lex_state = 437, .external_lex_state = 64}, - [2864] = {.lex_state = 471, .external_lex_state = 58}, - [2865] = {.lex_state = 437, .external_lex_state = 64}, - [2866] = {.lex_state = 435, .external_lex_state = 62}, - [2867] = {.lex_state = 238, .external_lex_state = 61}, - [2868] = {.lex_state = 435, .external_lex_state = 62}, - [2869] = {.lex_state = 467, .external_lex_state = 32}, - [2870] = {.lex_state = 435, .external_lex_state = 62}, - [2871] = {.lex_state = 238, .external_lex_state = 61}, - [2872] = {.lex_state = 435, .external_lex_state = 62}, - [2873] = {.lex_state = 435, .external_lex_state = 62}, - [2874] = {.lex_state = 463, .external_lex_state = 29}, - [2875] = {.lex_state = 435, .external_lex_state = 62}, - [2876] = {.lex_state = 435, .external_lex_state = 62}, - [2877] = {.lex_state = 437, .external_lex_state = 46}, - [2878] = {.lex_state = 435, .external_lex_state = 62}, - [2879] = {.lex_state = 471, .external_lex_state = 58}, - [2880] = {.lex_state = 435, .external_lex_state = 62}, - [2881] = {.lex_state = 435, .external_lex_state = 62}, - [2882] = {.lex_state = 435, .external_lex_state = 62}, - [2883] = {.lex_state = 435, .external_lex_state = 62}, - [2884] = {.lex_state = 437, .external_lex_state = 46}, - [2885] = {.lex_state = 437, .external_lex_state = 46}, - [2886] = {.lex_state = 435, .external_lex_state = 62}, - [2887] = {.lex_state = 435, .external_lex_state = 62}, - [2888] = {.lex_state = 471, .external_lex_state = 58}, - [2889] = {.lex_state = 437, .external_lex_state = 46}, - [2890] = {.lex_state = 435, .external_lex_state = 62}, - [2891] = {.lex_state = 472, .external_lex_state = 32}, - [2892] = {.lex_state = 471, .external_lex_state = 58}, - [2893] = {.lex_state = 463, .external_lex_state = 29}, - [2894] = {.lex_state = 435, .external_lex_state = 62}, - [2895] = {.lex_state = 435, .external_lex_state = 62}, - [2896] = {.lex_state = 437, .external_lex_state = 46}, - [2897] = {.lex_state = 435, .external_lex_state = 62}, - [2898] = {.lex_state = 473, .external_lex_state = 29}, - [2899] = {.lex_state = 437, .external_lex_state = 46}, - [2900] = {.lex_state = 435, .external_lex_state = 62}, - [2901] = {.lex_state = 241, .external_lex_state = 65}, - [2902] = {.lex_state = 437, .external_lex_state = 46}, - [2903] = {.lex_state = 437, .external_lex_state = 46}, - [2904] = {.lex_state = 435, .external_lex_state = 62}, - [2905] = {.lex_state = 435, .external_lex_state = 62}, - [2906] = {.lex_state = 241, .external_lex_state = 65}, - [2907] = {.lex_state = 439, .external_lex_state = 43}, - [2908] = {.lex_state = 435, .external_lex_state = 62}, - [2909] = {.lex_state = 435, .external_lex_state = 62}, - [2910] = {.lex_state = 471, .external_lex_state = 58}, - [2911] = {.lex_state = 435, .external_lex_state = 62}, - [2912] = {.lex_state = 437, .external_lex_state = 46}, - [2913] = {.lex_state = 435, .external_lex_state = 62}, - [2914] = {.lex_state = 463, .external_lex_state = 29}, - [2915] = {.lex_state = 435, .external_lex_state = 62}, - [2916] = {.lex_state = 437, .external_lex_state = 46}, - [2917] = {.lex_state = 437, .external_lex_state = 46}, - [2918] = {.lex_state = 435, .external_lex_state = 62}, - [2919] = {.lex_state = 435, .external_lex_state = 62}, - [2920] = {.lex_state = 473, .external_lex_state = 35}, - [2921] = {.lex_state = 435, .external_lex_state = 62}, - [2922] = {.lex_state = 437, .external_lex_state = 46}, - [2923] = {.lex_state = 435, .external_lex_state = 62}, - [2924] = {.lex_state = 437, .external_lex_state = 46}, - [2925] = {.lex_state = 435, .external_lex_state = 62}, - [2926] = {.lex_state = 435, .external_lex_state = 62}, - [2927] = {.lex_state = 435, .external_lex_state = 62}, - [2928] = {.lex_state = 435, .external_lex_state = 43}, - [2929] = {.lex_state = 463, .external_lex_state = 29}, - [2930] = {.lex_state = 437, .external_lex_state = 46}, - [2931] = {.lex_state = 435, .external_lex_state = 62}, - [2932] = {.lex_state = 435, .external_lex_state = 62}, - [2933] = {.lex_state = 437, .external_lex_state = 46}, - [2934] = {.lex_state = 473, .external_lex_state = 29}, - [2935] = {.lex_state = 463, .external_lex_state = 29}, - [2936] = {.lex_state = 435, .external_lex_state = 62}, - [2937] = {.lex_state = 435, .external_lex_state = 62}, - [2938] = {.lex_state = 85, .external_lex_state = 66}, - [2939] = {.lex_state = 471, .external_lex_state = 58}, - [2940] = {.lex_state = 435, .external_lex_state = 62}, - [2941] = {.lex_state = 463, .external_lex_state = 29}, - [2942] = {.lex_state = 435, .external_lex_state = 43}, - [2943] = {.lex_state = 530, .external_lex_state = 65}, - [2944] = {.lex_state = 475, .external_lex_state = 67}, - [2945] = {.lex_state = 530, .external_lex_state = 65}, - [2946] = {.lex_state = 475, .external_lex_state = 67}, - [2947] = {.lex_state = 247, .external_lex_state = 65}, - [2948] = {.lex_state = 437, .external_lex_state = 48}, - [2949] = {.lex_state = 247, .external_lex_state = 65}, - [2950] = {.lex_state = 437, .external_lex_state = 43}, - [2951] = {.lex_state = 437, .external_lex_state = 43}, - [2952] = {.lex_state = 437, .external_lex_state = 48}, - [2953] = {.lex_state = 437, .external_lex_state = 48}, - [2954] = {.lex_state = 437, .external_lex_state = 48}, - [2955] = {.lex_state = 435, .external_lex_state = 43}, - [2956] = {.lex_state = 437, .external_lex_state = 48}, - [2957] = {.lex_state = 437, .external_lex_state = 48}, - [2958] = {.lex_state = 435, .external_lex_state = 43}, - [2959] = {.lex_state = 463, .external_lex_state = 35}, - [2960] = {.lex_state = 437, .external_lex_state = 48}, - [2961] = {.lex_state = 435, .external_lex_state = 43}, - [2962] = {.lex_state = 437, .external_lex_state = 48}, - [2963] = {.lex_state = 435, .external_lex_state = 43}, - [2964] = {.lex_state = 437, .external_lex_state = 43}, - [2965] = {.lex_state = 435, .external_lex_state = 43}, - [2966] = {.lex_state = 435, .external_lex_state = 43}, - [2967] = {.lex_state = 437, .external_lex_state = 48}, - [2968] = {.lex_state = 435, .external_lex_state = 43}, - [2969] = {.lex_state = 437, .external_lex_state = 48}, - [2970] = {.lex_state = 475, .external_lex_state = 67}, - [2971] = {.lex_state = 440, .external_lex_state = 62}, - [2972] = {.lex_state = 475, .external_lex_state = 67}, - [2973] = {.lex_state = 475, .external_lex_state = 67}, - [2974] = {.lex_state = 475, .external_lex_state = 67}, - [2975] = {.lex_state = 437, .external_lex_state = 48}, - [2976] = {.lex_state = 437, .external_lex_state = 43}, - [2977] = {.lex_state = 437, .external_lex_state = 48}, - [2978] = {.lex_state = 437, .external_lex_state = 48}, - [2979] = {.lex_state = 435, .external_lex_state = 43}, - [2980] = {.lex_state = 435, .external_lex_state = 43}, - [2981] = {.lex_state = 437, .external_lex_state = 48}, - [2982] = {.lex_state = 435, .external_lex_state = 43}, - [2983] = {.lex_state = 437, .external_lex_state = 43}, - [2984] = {.lex_state = 435, .external_lex_state = 43}, - [2985] = {.lex_state = 85, .external_lex_state = 66}, - [2986] = {.lex_state = 437, .external_lex_state = 48}, - [2987] = {.lex_state = 437, .external_lex_state = 43}, - [2988] = {.lex_state = 435, .external_lex_state = 43}, - [2989] = {.lex_state = 435, .external_lex_state = 43}, - [2990] = {.lex_state = 85, .external_lex_state = 66}, - [2991] = {.lex_state = 475, .external_lex_state = 67}, - [2992] = {.lex_state = 475, .external_lex_state = 67}, - [2993] = {.lex_state = 475, .external_lex_state = 67}, - [2994] = {.lex_state = 475, .external_lex_state = 67}, - [2995] = {.lex_state = 435, .external_lex_state = 43}, - [2996] = {.lex_state = 85, .external_lex_state = 66}, - [2997] = {.lex_state = 435, .external_lex_state = 43}, - [2998] = {.lex_state = 85, .external_lex_state = 66}, - [2999] = {.lex_state = 437, .external_lex_state = 48}, - [3000] = {.lex_state = 435, .external_lex_state = 43}, - [3001] = {.lex_state = 437, .external_lex_state = 48}, - [3002] = {.lex_state = 437, .external_lex_state = 48}, + [2728] = {.lex_state = 437, .external_lex_state = 61}, + [2729] = {.lex_state = 435, .external_lex_state = 43}, + [2730] = {.lex_state = 471, .external_lex_state = 59}, + [2731] = {.lex_state = 441, .external_lex_state = 47}, + [2732] = {.lex_state = 441, .external_lex_state = 53}, + [2733] = {.lex_state = 474, .external_lex_state = 59}, + [2734] = {.lex_state = 463, .external_lex_state = 28}, + [2735] = {.lex_state = 471, .external_lex_state = 59}, + [2736] = {.lex_state = 471, .external_lex_state = 59}, + [2737] = {.lex_state = 471, .external_lex_state = 59}, + [2738] = {.lex_state = 442, .external_lex_state = 43}, + [2739] = {.lex_state = 474, .external_lex_state = 59}, + [2740] = {.lex_state = 444, .external_lex_state = 53}, + [2741] = {.lex_state = 443, .external_lex_state = 63}, + [2742] = {.lex_state = 444, .external_lex_state = 53}, + [2743] = {.lex_state = 471, .external_lex_state = 59}, + [2744] = {.lex_state = 474, .external_lex_state = 59}, + [2745] = {.lex_state = 466, .external_lex_state = 59}, + [2746] = {.lex_state = 466, .external_lex_state = 59}, + [2747] = {.lex_state = 466, .external_lex_state = 59}, + [2748] = {.lex_state = 466, .external_lex_state = 59}, + [2749] = {.lex_state = 471, .external_lex_state = 59}, + [2750] = {.lex_state = 474, .external_lex_state = 59}, + [2751] = {.lex_state = 435, .external_lex_state = 43}, + [2752] = {.lex_state = 466, .external_lex_state = 59}, + [2753] = {.lex_state = 466, .external_lex_state = 59}, + [2754] = {.lex_state = 446, .external_lex_state = 43}, + [2755] = {.lex_state = 474, .external_lex_state = 59}, + [2756] = {.lex_state = 441, .external_lex_state = 47}, + [2757] = {.lex_state = 441, .external_lex_state = 47}, + [2758] = {.lex_state = 435, .external_lex_state = 43}, + [2759] = {.lex_state = 474, .external_lex_state = 59}, + [2760] = {.lex_state = 466, .external_lex_state = 59}, + [2761] = {.lex_state = 474, .external_lex_state = 59}, + [2762] = {.lex_state = 441, .external_lex_state = 47}, + [2763] = {.lex_state = 473, .external_lex_state = 28}, + [2764] = {.lex_state = 474, .external_lex_state = 59}, + [2765] = {.lex_state = 441, .external_lex_state = 53}, + [2766] = {.lex_state = 441, .external_lex_state = 53}, + [2767] = {.lex_state = 474, .external_lex_state = 59}, + [2768] = {.lex_state = 474, .external_lex_state = 59}, + [2769] = {.lex_state = 441, .external_lex_state = 53}, + [2770] = {.lex_state = 437, .external_lex_state = 50}, + [2771] = {.lex_state = 466, .external_lex_state = 59}, + [2772] = {.lex_state = 466, .external_lex_state = 59}, + [2773] = {.lex_state = 437, .external_lex_state = 47}, + [2774] = {.lex_state = 441, .external_lex_state = 53}, + [2775] = {.lex_state = 466, .external_lex_state = 59}, + [2776] = {.lex_state = 474, .external_lex_state = 59}, + [2777] = {.lex_state = 444, .external_lex_state = 53}, + [2778] = {.lex_state = 470, .external_lex_state = 57}, + [2779] = {.lex_state = 463, .external_lex_state = 28}, + [2780] = {.lex_state = 437, .external_lex_state = 58}, + [2781] = {.lex_state = 238, .external_lex_state = 62}, + [2782] = {.lex_state = 238, .external_lex_state = 62}, + [2783] = {.lex_state = 437, .external_lex_state = 58}, + [2784] = {.lex_state = 437, .external_lex_state = 58}, + [2785] = {.lex_state = 238, .external_lex_state = 62}, + [2786] = {.lex_state = 238, .external_lex_state = 62}, + [2787] = {.lex_state = 471, .external_lex_state = 59}, + [2788] = {.lex_state = 241, .external_lex_state = 64}, + [2789] = {.lex_state = 241, .external_lex_state = 64}, + [2790] = {.lex_state = 435, .external_lex_state = 63}, + [2791] = {.lex_state = 435, .external_lex_state = 63}, + [2792] = {.lex_state = 435, .external_lex_state = 63}, + [2793] = {.lex_state = 435, .external_lex_state = 63}, + [2794] = {.lex_state = 437, .external_lex_state = 47}, + [2795] = {.lex_state = 435, .external_lex_state = 63}, + [2796] = {.lex_state = 437, .external_lex_state = 47}, + [2797] = {.lex_state = 435, .external_lex_state = 63}, + [2798] = {.lex_state = 437, .external_lex_state = 47}, + [2799] = {.lex_state = 471, .external_lex_state = 59}, + [2800] = {.lex_state = 475, .external_lex_state = 65}, + [2801] = {.lex_state = 437, .external_lex_state = 47}, + [2802] = {.lex_state = 475, .external_lex_state = 65}, + [2803] = {.lex_state = 475, .external_lex_state = 65}, + [2804] = {.lex_state = 475, .external_lex_state = 65}, + [2805] = {.lex_state = 435, .external_lex_state = 63}, + [2806] = {.lex_state = 435, .external_lex_state = 63}, + [2807] = {.lex_state = 437, .external_lex_state = 47}, + [2808] = {.lex_state = 435, .external_lex_state = 63}, + [2809] = {.lex_state = 435, .external_lex_state = 63}, + [2810] = {.lex_state = 435, .external_lex_state = 63}, + [2811] = {.lex_state = 435, .external_lex_state = 63}, + [2812] = {.lex_state = 435, .external_lex_state = 63}, + [2813] = {.lex_state = 435, .external_lex_state = 63}, + [2814] = {.lex_state = 435, .external_lex_state = 63}, + [2815] = {.lex_state = 437, .external_lex_state = 50}, + [2816] = {.lex_state = 437, .external_lex_state = 47}, + [2817] = {.lex_state = 437, .external_lex_state = 47}, + [2818] = {.lex_state = 471, .external_lex_state = 59}, + [2819] = {.lex_state = 435, .external_lex_state = 63}, + [2820] = {.lex_state = 475, .external_lex_state = 65}, + [2821] = {.lex_state = 475, .external_lex_state = 65}, + [2822] = {.lex_state = 471, .external_lex_state = 59}, + [2823] = {.lex_state = 475, .external_lex_state = 65}, + [2824] = {.lex_state = 475, .external_lex_state = 65}, + [2825] = {.lex_state = 475, .external_lex_state = 65}, + [2826] = {.lex_state = 437, .external_lex_state = 47}, + [2827] = {.lex_state = 435, .external_lex_state = 63}, + [2828] = {.lex_state = 471, .external_lex_state = 59}, + [2829] = {.lex_state = 437, .external_lex_state = 47}, + [2830] = {.lex_state = 435, .external_lex_state = 63}, + [2831] = {.lex_state = 437, .external_lex_state = 47}, + [2832] = {.lex_state = 437, .external_lex_state = 47}, + [2833] = {.lex_state = 437, .external_lex_state = 47}, + [2834] = {.lex_state = 471, .external_lex_state = 59}, + [2835] = {.lex_state = 437, .external_lex_state = 47}, + [2836] = {.lex_state = 437, .external_lex_state = 58}, + [2837] = {.lex_state = 437, .external_lex_state = 47}, + [2838] = {.lex_state = 437, .external_lex_state = 47}, + [2839] = {.lex_state = 437, .external_lex_state = 58}, + [2840] = {.lex_state = 437, .external_lex_state = 58}, + [2841] = {.lex_state = 437, .external_lex_state = 47}, + [2842] = {.lex_state = 437, .external_lex_state = 47}, + [2843] = {.lex_state = 475, .external_lex_state = 65}, + [2844] = {.lex_state = 475, .external_lex_state = 65}, + [2845] = {.lex_state = 475, .external_lex_state = 65}, + [2846] = {.lex_state = 475, .external_lex_state = 65}, + [2847] = {.lex_state = 471, .external_lex_state = 59}, + [2848] = {.lex_state = 435, .external_lex_state = 63}, + [2849] = {.lex_state = 437, .external_lex_state = 47}, + [2850] = {.lex_state = 437, .external_lex_state = 47}, + [2851] = {.lex_state = 437, .external_lex_state = 47}, + [2852] = {.lex_state = 437, .external_lex_state = 47}, + [2853] = {.lex_state = 437, .external_lex_state = 47}, + [2854] = {.lex_state = 437, .external_lex_state = 47}, + [2855] = {.lex_state = 435, .external_lex_state = 63}, + [2856] = {.lex_state = 437, .external_lex_state = 47}, + [2857] = {.lex_state = 475, .external_lex_state = 65}, + [2858] = {.lex_state = 435, .external_lex_state = 63}, + [2859] = {.lex_state = 435, .external_lex_state = 63}, + [2860] = {.lex_state = 435, .external_lex_state = 63}, + [2861] = {.lex_state = 435, .external_lex_state = 63}, + [2862] = {.lex_state = 435, .external_lex_state = 63}, + [2863] = {.lex_state = 435, .external_lex_state = 63}, + [2864] = {.lex_state = 437, .external_lex_state = 47}, + [2865] = {.lex_state = 435, .external_lex_state = 63}, + [2866] = {.lex_state = 435, .external_lex_state = 63}, + [2867] = {.lex_state = 435, .external_lex_state = 63}, + [2868] = {.lex_state = 435, .external_lex_state = 63}, + [2869] = {.lex_state = 435, .external_lex_state = 63}, + [2870] = {.lex_state = 435, .external_lex_state = 63}, + [2871] = {.lex_state = 435, .external_lex_state = 63}, + [2872] = {.lex_state = 435, .external_lex_state = 63}, + [2873] = {.lex_state = 435, .external_lex_state = 63}, + [2874] = {.lex_state = 472, .external_lex_state = 32}, + [2875] = {.lex_state = 435, .external_lex_state = 63}, + [2876] = {.lex_state = 435, .external_lex_state = 63}, + [2877] = {.lex_state = 435, .external_lex_state = 63}, + [2878] = {.lex_state = 435, .external_lex_state = 63}, + [2879] = {.lex_state = 435, .external_lex_state = 63}, + [2880] = {.lex_state = 435, .external_lex_state = 63}, + [2881] = {.lex_state = 435, .external_lex_state = 63}, + [2882] = {.lex_state = 435, .external_lex_state = 63}, + [2883] = {.lex_state = 435, .external_lex_state = 63}, + [2884] = {.lex_state = 463, .external_lex_state = 28}, + [2885] = {.lex_state = 435, .external_lex_state = 63}, + [2886] = {.lex_state = 435, .external_lex_state = 63}, + [2887] = {.lex_state = 463, .external_lex_state = 28}, + [2888] = {.lex_state = 435, .external_lex_state = 63}, + [2889] = {.lex_state = 435, .external_lex_state = 63}, + [2890] = {.lex_state = 435, .external_lex_state = 63}, + [2891] = {.lex_state = 435, .external_lex_state = 63}, + [2892] = {.lex_state = 435, .external_lex_state = 63}, + [2893] = {.lex_state = 435, .external_lex_state = 63}, + [2894] = {.lex_state = 435, .external_lex_state = 63}, + [2895] = {.lex_state = 435, .external_lex_state = 63}, + [2896] = {.lex_state = 435, .external_lex_state = 63}, + [2897] = {.lex_state = 435, .external_lex_state = 63}, + [2898] = {.lex_state = 435, .external_lex_state = 63}, + [2899] = {.lex_state = 437, .external_lex_state = 58}, + [2900] = {.lex_state = 435, .external_lex_state = 63}, + [2901] = {.lex_state = 435, .external_lex_state = 63}, + [2902] = {.lex_state = 437, .external_lex_state = 66}, + [2903] = {.lex_state = 435, .external_lex_state = 63}, + [2904] = {.lex_state = 435, .external_lex_state = 63}, + [2905] = {.lex_state = 463, .external_lex_state = 28}, + [2906] = {.lex_state = 435, .external_lex_state = 63}, + [2907] = {.lex_state = 435, .external_lex_state = 63}, + [2908] = {.lex_state = 435, .external_lex_state = 63}, + [2909] = {.lex_state = 435, .external_lex_state = 63}, + [2910] = {.lex_state = 435, .external_lex_state = 63}, + [2911] = {.lex_state = 437, .external_lex_state = 66}, + [2912] = {.lex_state = 435, .external_lex_state = 63}, + [2913] = {.lex_state = 435, .external_lex_state = 63}, + [2914] = {.lex_state = 435, .external_lex_state = 63}, + [2915] = {.lex_state = 435, .external_lex_state = 63}, + [2916] = {.lex_state = 435, .external_lex_state = 63}, + [2917] = {.lex_state = 435, .external_lex_state = 63}, + [2918] = {.lex_state = 435, .external_lex_state = 63}, + [2919] = {.lex_state = 435, .external_lex_state = 63}, + [2920] = {.lex_state = 435, .external_lex_state = 63}, + [2921] = {.lex_state = 435, .external_lex_state = 63}, + [2922] = {.lex_state = 435, .external_lex_state = 63}, + [2923] = {.lex_state = 435, .external_lex_state = 63}, + [2924] = {.lex_state = 435, .external_lex_state = 63}, + [2925] = {.lex_state = 435, .external_lex_state = 63}, + [2926] = {.lex_state = 435, .external_lex_state = 63}, + [2927] = {.lex_state = 435, .external_lex_state = 63}, + [2928] = {.lex_state = 435, .external_lex_state = 63}, + [2929] = {.lex_state = 435, .external_lex_state = 63}, + [2930] = {.lex_state = 435, .external_lex_state = 63}, + [2931] = {.lex_state = 435, .external_lex_state = 63}, + [2932] = {.lex_state = 471, .external_lex_state = 59}, + [2933] = {.lex_state = 471, .external_lex_state = 59}, + [2934] = {.lex_state = 471, .external_lex_state = 59}, + [2935] = {.lex_state = 437, .external_lex_state = 66}, + [2936] = {.lex_state = 435, .external_lex_state = 63}, + [2937] = {.lex_state = 463, .external_lex_state = 28}, + [2938] = {.lex_state = 437, .external_lex_state = 66}, + [2939] = {.lex_state = 473, .external_lex_state = 28}, + [2940] = {.lex_state = 435, .external_lex_state = 63}, + [2941] = {.lex_state = 437, .external_lex_state = 47}, + [2942] = {.lex_state = 437, .external_lex_state = 66}, + [2943] = {.lex_state = 473, .external_lex_state = 34}, + [2944] = {.lex_state = 471, .external_lex_state = 59}, + [2945] = {.lex_state = 463, .external_lex_state = 28}, + [2946] = {.lex_state = 471, .external_lex_state = 59}, + [2947] = {.lex_state = 473, .external_lex_state = 28}, + [2948] = {.lex_state = 442, .external_lex_state = 43}, + [2949] = {.lex_state = 463, .external_lex_state = 28}, + [2950] = {.lex_state = 463, .external_lex_state = 28}, + [2951] = {.lex_state = 435, .external_lex_state = 63}, + [2952] = {.lex_state = 437, .external_lex_state = 47}, + [2953] = {.lex_state = 437, .external_lex_state = 58}, + [2954] = {.lex_state = 437, .external_lex_state = 47}, + [2955] = {.lex_state = 437, .external_lex_state = 66}, + [2956] = {.lex_state = 437, .external_lex_state = 47}, + [2957] = {.lex_state = 437, .external_lex_state = 66}, + [2958] = {.lex_state = 437, .external_lex_state = 66}, + [2959] = {.lex_state = 435, .external_lex_state = 63}, + [2960] = {.lex_state = 435, .external_lex_state = 63}, + [2961] = {.lex_state = 435, .external_lex_state = 63}, + [2962] = {.lex_state = 435, .external_lex_state = 63}, + [2963] = {.lex_state = 463, .external_lex_state = 28}, + [2964] = {.lex_state = 475, .external_lex_state = 65}, + [2965] = {.lex_state = 475, .external_lex_state = 65}, + [2966] = {.lex_state = 435, .external_lex_state = 63}, + [2967] = {.lex_state = 437, .external_lex_state = 66}, + [2968] = {.lex_state = 463, .external_lex_state = 28}, + [2969] = {.lex_state = 463, .external_lex_state = 28}, + [2970] = {.lex_state = 435, .external_lex_state = 43}, + [2971] = {.lex_state = 472, .external_lex_state = 32}, + [2972] = {.lex_state = 435, .external_lex_state = 63}, + [2973] = {.lex_state = 473, .external_lex_state = 34}, + [2974] = {.lex_state = 435, .external_lex_state = 63}, + [2975] = {.lex_state = 435, .external_lex_state = 63}, + [2976] = {.lex_state = 435, .external_lex_state = 63}, + [2977] = {.lex_state = 435, .external_lex_state = 63}, + [2978] = {.lex_state = 467, .external_lex_state = 32}, + [2979] = {.lex_state = 437, .external_lex_state = 47}, + [2980] = {.lex_state = 435, .external_lex_state = 63}, + [2981] = {.lex_state = 473, .external_lex_state = 28}, + [2982] = {.lex_state = 435, .external_lex_state = 63}, + [2983] = {.lex_state = 87, .external_lex_state = 67}, + [2984] = {.lex_state = 437, .external_lex_state = 47}, + [2985] = {.lex_state = 473, .external_lex_state = 28}, + [2986] = {.lex_state = 435, .external_lex_state = 63}, + [2987] = {.lex_state = 471, .external_lex_state = 59}, + [2988] = {.lex_state = 471, .external_lex_state = 59}, + [2989] = {.lex_state = 471, .external_lex_state = 59}, + [2990] = {.lex_state = 471, .external_lex_state = 59}, + [2991] = {.lex_state = 471, .external_lex_state = 59}, + [2992] = {.lex_state = 435, .external_lex_state = 63}, + [2993] = {.lex_state = 471, .external_lex_state = 59}, + [2994] = {.lex_state = 471, .external_lex_state = 59}, + [2995] = {.lex_state = 471, .external_lex_state = 59}, + [2996] = {.lex_state = 435, .external_lex_state = 63}, + [2997] = {.lex_state = 463, .external_lex_state = 34}, + [2998] = {.lex_state = 437, .external_lex_state = 58}, + [2999] = {.lex_state = 463, .external_lex_state = 34}, + [3000] = {.lex_state = 435, .external_lex_state = 63}, + [3001] = {.lex_state = 437, .external_lex_state = 43}, + [3002] = {.lex_state = 435, .external_lex_state = 43}, [3003] = {.lex_state = 437, .external_lex_state = 43}, - [3004] = {.lex_state = 435, .external_lex_state = 43}, - [3005] = {.lex_state = 461, .external_lex_state = 36}, - [3006] = {.lex_state = 85, .external_lex_state = 66}, + [3004] = {.lex_state = 437, .external_lex_state = 43}, + [3005] = {.lex_state = 437, .external_lex_state = 43}, + [3006] = {.lex_state = 435, .external_lex_state = 43}, [3007] = {.lex_state = 435, .external_lex_state = 43}, - [3008] = {.lex_state = 435, .external_lex_state = 43}, - [3009] = {.lex_state = 250, .external_lex_state = 65}, - [3010] = {.lex_state = 250, .external_lex_state = 65}, - [3011] = {.lex_state = 85, .external_lex_state = 66}, - [3012] = {.lex_state = 472, .external_lex_state = 32}, - [3013] = {.lex_state = 475, .external_lex_state = 67}, + [3008] = {.lex_state = 437, .external_lex_state = 43}, + [3009] = {.lex_state = 435, .external_lex_state = 43}, + [3010] = {.lex_state = 435, .external_lex_state = 43}, + [3011] = {.lex_state = 435, .external_lex_state = 43}, + [3012] = {.lex_state = 435, .external_lex_state = 43}, + [3013] = {.lex_state = 437, .external_lex_state = 50}, [3014] = {.lex_state = 435, .external_lex_state = 43}, [3015] = {.lex_state = 435, .external_lex_state = 43}, - [3016] = {.lex_state = 299, .external_lex_state = 68}, - [3017] = {.lex_state = 299, .external_lex_state = 68}, - [3018] = {.lex_state = 437, .external_lex_state = 48}, - [3019] = {.lex_state = 85, .external_lex_state = 66}, - [3020] = {.lex_state = 85, .external_lex_state = 66}, + [3016] = {.lex_state = 435, .external_lex_state = 43}, + [3017] = {.lex_state = 435, .external_lex_state = 43}, + [3018] = {.lex_state = 437, .external_lex_state = 43}, + [3019] = {.lex_state = 435, .external_lex_state = 43}, + [3020] = {.lex_state = 437, .external_lex_state = 43}, [3021] = {.lex_state = 435, .external_lex_state = 43}, - [3022] = {.lex_state = 85, .external_lex_state = 66}, - [3023] = {.lex_state = 299, .external_lex_state = 68}, - [3024] = {.lex_state = 85, .external_lex_state = 66}, - [3025] = {.lex_state = 437, .external_lex_state = 48}, - [3026] = {.lex_state = 250, .external_lex_state = 65}, - [3027] = {.lex_state = 250, .external_lex_state = 65}, - [3028] = {.lex_state = 85, .external_lex_state = 66}, - [3029] = {.lex_state = 435, .external_lex_state = 43}, - [3030] = {.lex_state = 435, .external_lex_state = 62}, - [3031] = {.lex_state = 437, .external_lex_state = 63}, - [3032] = {.lex_state = 437, .external_lex_state = 63}, - [3033] = {.lex_state = 444, .external_lex_state = 62}, - [3034] = {.lex_state = 435, .external_lex_state = 43}, - [3035] = {.lex_state = 469, .external_lex_state = 35}, - [3036] = {.lex_state = 437, .external_lex_state = 48}, + [3022] = {.lex_state = 435, .external_lex_state = 43}, + [3023] = {.lex_state = 435, .external_lex_state = 43}, + [3024] = {.lex_state = 437, .external_lex_state = 50}, + [3025] = {.lex_state = 435, .external_lex_state = 43}, + [3026] = {.lex_state = 435, .external_lex_state = 43}, + [3027] = {.lex_state = 435, .external_lex_state = 43}, + [3028] = {.lex_state = 435, .external_lex_state = 43}, + [3029] = {.lex_state = 437, .external_lex_state = 43}, + [3030] = {.lex_state = 435, .external_lex_state = 43}, + [3031] = {.lex_state = 443, .external_lex_state = 68}, + [3032] = {.lex_state = 435, .external_lex_state = 43}, + [3033] = {.lex_state = 463, .external_lex_state = 45}, + [3034] = {.lex_state = 244, .external_lex_state = 64}, + [3035] = {.lex_state = 244, .external_lex_state = 64}, + [3036] = {.lex_state = 435, .external_lex_state = 63}, [3037] = {.lex_state = 435, .external_lex_state = 43}, - [3038] = {.lex_state = 435, .external_lex_state = 43}, + [3038] = {.lex_state = 437, .external_lex_state = 43}, [3039] = {.lex_state = 435, .external_lex_state = 43}, - [3040] = {.lex_state = 437, .external_lex_state = 43}, - [3041] = {.lex_state = 437, .external_lex_state = 43}, - [3042] = {.lex_state = 85, .external_lex_state = 66}, - [3043] = {.lex_state = 85, .external_lex_state = 66}, - [3044] = {.lex_state = 85, .external_lex_state = 66}, - [3045] = {.lex_state = 437, .external_lex_state = 43}, - [3046] = {.lex_state = 437, .external_lex_state = 43}, - [3047] = {.lex_state = 437, .external_lex_state = 43}, - [3048] = {.lex_state = 437, .external_lex_state = 43}, - [3049] = {.lex_state = 437, .external_lex_state = 43}, - [3050] = {.lex_state = 437, .external_lex_state = 43}, - [3051] = {.lex_state = 437, .external_lex_state = 43}, - [3052] = {.lex_state = 437, .external_lex_state = 43}, - [3053] = {.lex_state = 437, .external_lex_state = 43}, - [3054] = {.lex_state = 437, .external_lex_state = 43}, - [3055] = {.lex_state = 475, .external_lex_state = 67}, - [3056] = {.lex_state = 437, .external_lex_state = 43}, - [3057] = {.lex_state = 437, .external_lex_state = 43}, - [3058] = {.lex_state = 437, .external_lex_state = 43}, + [3040] = {.lex_state = 244, .external_lex_state = 64}, + [3041] = {.lex_state = 244, .external_lex_state = 64}, + [3042] = {.lex_state = 437, .external_lex_state = 50}, + [3043] = {.lex_state = 435, .external_lex_state = 43}, + [3044] = {.lex_state = 87, .external_lex_state = 67}, + [3045] = {.lex_state = 87, .external_lex_state = 67}, + [3046] = {.lex_state = 87, .external_lex_state = 67}, + [3047] = {.lex_state = 435, .external_lex_state = 43}, + [3048] = {.lex_state = 87, .external_lex_state = 67}, + [3049] = {.lex_state = 87, .external_lex_state = 67}, + [3050] = {.lex_state = 437, .external_lex_state = 69}, + [3051] = {.lex_state = 437, .external_lex_state = 69}, + [3052] = {.lex_state = 87, .external_lex_state = 67}, + [3053] = {.lex_state = 463, .external_lex_state = 45}, + [3054] = {.lex_state = 463, .external_lex_state = 45}, + [3055] = {.lex_state = 463, .external_lex_state = 45}, + [3056] = {.lex_state = 463, .external_lex_state = 45}, + [3057] = {.lex_state = 463, .external_lex_state = 45}, + [3058] = {.lex_state = 463, .external_lex_state = 45}, [3059] = {.lex_state = 437, .external_lex_state = 43}, - [3060] = {.lex_state = 437, .external_lex_state = 63}, - [3061] = {.lex_state = 437, .external_lex_state = 63}, - [3062] = {.lex_state = 475, .external_lex_state = 67}, - [3063] = {.lex_state = 435, .external_lex_state = 43}, - [3064] = {.lex_state = 437, .external_lex_state = 48}, - [3065] = {.lex_state = 435, .external_lex_state = 43}, - [3066] = {.lex_state = 437, .external_lex_state = 48}, - [3067] = {.lex_state = 437, .external_lex_state = 48}, - [3068] = {.lex_state = 85, .external_lex_state = 66}, - [3069] = {.lex_state = 85, .external_lex_state = 66}, - [3070] = {.lex_state = 437, .external_lex_state = 69}, - [3071] = {.lex_state = 437, .external_lex_state = 69}, - [3072] = {.lex_state = 85, .external_lex_state = 66}, - [3073] = {.lex_state = 437, .external_lex_state = 48}, - [3074] = {.lex_state = 435, .external_lex_state = 43}, - [3075] = {.lex_state = 435, .external_lex_state = 43}, - [3076] = {.lex_state = 437, .external_lex_state = 43}, - [3077] = {.lex_state = 437, .external_lex_state = 48}, - [3078] = {.lex_state = 435, .external_lex_state = 43}, - [3079] = {.lex_state = 435, .external_lex_state = 43}, + [3060] = {.lex_state = 437, .external_lex_state = 43}, + [3061] = {.lex_state = 437, .external_lex_state = 50}, + [3062] = {.lex_state = 435, .external_lex_state = 43}, + [3063] = {.lex_state = 437, .external_lex_state = 50}, + [3064] = {.lex_state = 435, .external_lex_state = 43}, + [3065] = {.lex_state = 437, .external_lex_state = 50}, + [3066] = {.lex_state = 437, .external_lex_state = 50}, + [3067] = {.lex_state = 437, .external_lex_state = 50}, + [3068] = {.lex_state = 437, .external_lex_state = 50}, + [3069] = {.lex_state = 437, .external_lex_state = 50}, + [3070] = {.lex_state = 437, .external_lex_state = 50}, + [3071] = {.lex_state = 437, .external_lex_state = 50}, + [3072] = {.lex_state = 437, .external_lex_state = 50}, + [3073] = {.lex_state = 437, .external_lex_state = 50}, + [3074] = {.lex_state = 437, .external_lex_state = 50}, + [3075] = {.lex_state = 437, .external_lex_state = 50}, + [3076] = {.lex_state = 437, .external_lex_state = 50}, + [3077] = {.lex_state = 437, .external_lex_state = 50}, + [3078] = {.lex_state = 437, .external_lex_state = 50}, + [3079] = {.lex_state = 473, .external_lex_state = 34}, [3080] = {.lex_state = 435, .external_lex_state = 43}, - [3081] = {.lex_state = 435, .external_lex_state = 43}, - [3082] = {.lex_state = 435, .external_lex_state = 43}, - [3083] = {.lex_state = 435, .external_lex_state = 43}, - [3084] = {.lex_state = 435, .external_lex_state = 43}, - [3085] = {.lex_state = 85, .external_lex_state = 66}, - [3086] = {.lex_state = 435, .external_lex_state = 43}, - [3087] = {.lex_state = 85, .external_lex_state = 66}, - [3088] = {.lex_state = 435, .external_lex_state = 43}, - [3089] = {.lex_state = 435, .external_lex_state = 43}, - [3090] = {.lex_state = 435, .external_lex_state = 43}, + [3081] = {.lex_state = 437, .external_lex_state = 50}, + [3082] = {.lex_state = 463, .external_lex_state = 45}, + [3083] = {.lex_state = 463, .external_lex_state = 45}, + [3084] = {.lex_state = 437, .external_lex_state = 60}, + [3085] = {.lex_state = 463, .external_lex_state = 45}, + [3086] = {.lex_state = 463, .external_lex_state = 45}, + [3087] = {.lex_state = 463, .external_lex_state = 45}, + [3088] = {.lex_state = 463, .external_lex_state = 45}, + [3089] = {.lex_state = 438, .external_lex_state = 63}, + [3090] = {.lex_state = 437, .external_lex_state = 60}, [3091] = {.lex_state = 435, .external_lex_state = 43}, [3092] = {.lex_state = 435, .external_lex_state = 43}, - [3093] = {.lex_state = 85, .external_lex_state = 66}, - [3094] = {.lex_state = 85, .external_lex_state = 66}, - [3095] = {.lex_state = 85, .external_lex_state = 66}, + [3093] = {.lex_state = 437, .external_lex_state = 43}, + [3094] = {.lex_state = 435, .external_lex_state = 43}, + [3095] = {.lex_state = 435, .external_lex_state = 43}, [3096] = {.lex_state = 435, .external_lex_state = 43}, - [3097] = {.lex_state = 437, .external_lex_state = 69}, - [3098] = {.lex_state = 437, .external_lex_state = 69}, - [3099] = {.lex_state = 85, .external_lex_state = 66}, - [3100] = {.lex_state = 85, .external_lex_state = 66}, - [3101] = {.lex_state = 442, .external_lex_state = 70}, - [3102] = {.lex_state = 435, .external_lex_state = 43}, - [3103] = {.lex_state = 438, .external_lex_state = 62}, - [3104] = {.lex_state = 437, .external_lex_state = 48}, - [3105] = {.lex_state = 435, .external_lex_state = 43}, - [3106] = {.lex_state = 85, .external_lex_state = 66}, - [3107] = {.lex_state = 85, .external_lex_state = 66}, - [3108] = {.lex_state = 85, .external_lex_state = 66}, - [3109] = {.lex_state = 85, .external_lex_state = 66}, - [3110] = {.lex_state = 85, .external_lex_state = 66}, - [3111] = {.lex_state = 437, .external_lex_state = 48}, - [3112] = {.lex_state = 437, .external_lex_state = 48}, - [3113] = {.lex_state = 437, .external_lex_state = 43}, - [3114] = {.lex_state = 475, .external_lex_state = 67}, - [3115] = {.lex_state = 437, .external_lex_state = 48}, - [3116] = {.lex_state = 437, .external_lex_state = 48}, - [3117] = {.lex_state = 437, .external_lex_state = 48}, - [3118] = {.lex_state = 85, .external_lex_state = 66}, - [3119] = {.lex_state = 475, .external_lex_state = 67}, - [3120] = {.lex_state = 253, .external_lex_state = 65}, + [3097] = {.lex_state = 435, .external_lex_state = 43}, + [3098] = {.lex_state = 437, .external_lex_state = 50}, + [3099] = {.lex_state = 435, .external_lex_state = 43}, + [3100] = {.lex_state = 435, .external_lex_state = 43}, + [3101] = {.lex_state = 437, .external_lex_state = 43}, + [3102] = {.lex_state = 437, .external_lex_state = 43}, + [3103] = {.lex_state = 437, .external_lex_state = 43}, + [3104] = {.lex_state = 437, .external_lex_state = 43}, + [3105] = {.lex_state = 437, .external_lex_state = 43}, + [3106] = {.lex_state = 437, .external_lex_state = 43}, + [3107] = {.lex_state = 437, .external_lex_state = 43}, + [3108] = {.lex_state = 435, .external_lex_state = 43}, + [3109] = {.lex_state = 463, .external_lex_state = 45}, + [3110] = {.lex_state = 463, .external_lex_state = 45}, + [3111] = {.lex_state = 437, .external_lex_state = 43}, + [3112] = {.lex_state = 463, .external_lex_state = 45}, + [3113] = {.lex_state = 463, .external_lex_state = 45}, + [3114] = {.lex_state = 463, .external_lex_state = 45}, + [3115] = {.lex_state = 463, .external_lex_state = 45}, + [3116] = {.lex_state = 435, .external_lex_state = 43}, + [3117] = {.lex_state = 435, .external_lex_state = 43}, + [3118] = {.lex_state = 437, .external_lex_state = 43}, + [3119] = {.lex_state = 437, .external_lex_state = 43}, + [3120] = {.lex_state = 437, .external_lex_state = 43}, [3121] = {.lex_state = 437, .external_lex_state = 43}, - [3122] = {.lex_state = 253, .external_lex_state = 65}, - [3123] = {.lex_state = 435, .external_lex_state = 43}, - [3124] = {.lex_state = 437, .external_lex_state = 43}, - [3125] = {.lex_state = 85, .external_lex_state = 66}, - [3126] = {.lex_state = 437, .external_lex_state = 43}, + [3122] = {.lex_state = 435, .external_lex_state = 43}, + [3123] = {.lex_state = 437, .external_lex_state = 43}, + [3124] = {.lex_state = 435, .external_lex_state = 43}, + [3125] = {.lex_state = 437, .external_lex_state = 60}, + [3126] = {.lex_state = 437, .external_lex_state = 60}, [3127] = {.lex_state = 435, .external_lex_state = 43}, - [3128] = {.lex_state = 435, .external_lex_state = 43}, - [3129] = {.lex_state = 435, .external_lex_state = 43}, + [3128] = {.lex_state = 437, .external_lex_state = 43}, + [3129] = {.lex_state = 87, .external_lex_state = 67}, [3130] = {.lex_state = 435, .external_lex_state = 43}, - [3131] = {.lex_state = 435, .external_lex_state = 43}, - [3132] = {.lex_state = 435, .external_lex_state = 43}, - [3133] = {.lex_state = 435, .external_lex_state = 43}, - [3134] = {.lex_state = 299, .external_lex_state = 68}, - [3135] = {.lex_state = 437, .external_lex_state = 48}, - [3136] = {.lex_state = 435, .external_lex_state = 43}, - [3137] = {.lex_state = 435, .external_lex_state = 43}, - [3138] = {.lex_state = 435, .external_lex_state = 43}, - [3139] = {.lex_state = 435, .external_lex_state = 43}, - [3140] = {.lex_state = 435, .external_lex_state = 43}, - [3141] = {.lex_state = 435, .external_lex_state = 43}, - [3142] = {.lex_state = 85, .external_lex_state = 66}, - [3143] = {.lex_state = 435, .external_lex_state = 43}, - [3144] = {.lex_state = 435, .external_lex_state = 43}, - [3145] = {.lex_state = 435, .external_lex_state = 43}, - [3146] = {.lex_state = 299, .external_lex_state = 68}, - [3147] = {.lex_state = 469, .external_lex_state = 35}, - [3148] = {.lex_state = 435, .external_lex_state = 43}, - [3149] = {.lex_state = 299, .external_lex_state = 68}, - [3150] = {.lex_state = 473, .external_lex_state = 35}, + [3131] = {.lex_state = 463, .external_lex_state = 45}, + [3132] = {.lex_state = 247, .external_lex_state = 64}, + [3133] = {.lex_state = 87, .external_lex_state = 67}, + [3134] = {.lex_state = 435, .external_lex_state = 43}, + [3135] = {.lex_state = 87, .external_lex_state = 67}, + [3136] = {.lex_state = 87, .external_lex_state = 67}, + [3137] = {.lex_state = 87, .external_lex_state = 67}, + [3138] = {.lex_state = 437, .external_lex_state = 50}, + [3139] = {.lex_state = 437, .external_lex_state = 50}, + [3140] = {.lex_state = 437, .external_lex_state = 50}, + [3141] = {.lex_state = 437, .external_lex_state = 50}, + [3142] = {.lex_state = 87, .external_lex_state = 67}, + [3143] = {.lex_state = 87, .external_lex_state = 67}, + [3144] = {.lex_state = 87, .external_lex_state = 67}, + [3145] = {.lex_state = 87, .external_lex_state = 67}, + [3146] = {.lex_state = 435, .external_lex_state = 43}, + [3147] = {.lex_state = 435, .external_lex_state = 43}, + [3148] = {.lex_state = 437, .external_lex_state = 69}, + [3149] = {.lex_state = 463, .external_lex_state = 45}, + [3150] = {.lex_state = 440, .external_lex_state = 63}, [3151] = {.lex_state = 435, .external_lex_state = 43}, [3152] = {.lex_state = 435, .external_lex_state = 43}, [3153] = {.lex_state = 435, .external_lex_state = 43}, [3154] = {.lex_state = 435, .external_lex_state = 43}, [3155] = {.lex_state = 435, .external_lex_state = 43}, - [3156] = {.lex_state = 437, .external_lex_state = 43}, + [3156] = {.lex_state = 435, .external_lex_state = 43}, [3157] = {.lex_state = 435, .external_lex_state = 43}, [3158] = {.lex_state = 435, .external_lex_state = 43}, [3159] = {.lex_state = 435, .external_lex_state = 43}, [3160] = {.lex_state = 435, .external_lex_state = 43}, [3161] = {.lex_state = 435, .external_lex_state = 43}, - [3162] = {.lex_state = 475, .external_lex_state = 67}, + [3162] = {.lex_state = 435, .external_lex_state = 43}, [3163] = {.lex_state = 435, .external_lex_state = 43}, - [3164] = {.lex_state = 437, .external_lex_state = 43}, - [3165] = {.lex_state = 437, .external_lex_state = 62}, - [3166] = {.lex_state = 444, .external_lex_state = 62}, - [3167] = {.lex_state = 438, .external_lex_state = 62}, - [3168] = {.lex_state = 437, .external_lex_state = 70}, - [3169] = {.lex_state = 444, .external_lex_state = 62}, - [3170] = {.lex_state = 438, .external_lex_state = 62}, - [3171] = {.lex_state = 437, .external_lex_state = 70}, - [3172] = {.lex_state = 437, .external_lex_state = 70}, - [3173] = {.lex_state = 437, .external_lex_state = 70}, - [3174] = {.lex_state = 299, .external_lex_state = 68}, - [3175] = {.lex_state = 438, .external_lex_state = 62}, - [3176] = {.lex_state = 437, .external_lex_state = 70}, - [3177] = {.lex_state = 438, .external_lex_state = 62}, - [3178] = {.lex_state = 437, .external_lex_state = 70}, - [3179] = {.lex_state = 438, .external_lex_state = 62}, - [3180] = {.lex_state = 437, .external_lex_state = 70}, - [3181] = {.lex_state = 299, .external_lex_state = 68}, - [3182] = {.lex_state = 535, .external_lex_state = 65}, - [3183] = {.lex_state = 437, .external_lex_state = 70}, - [3184] = {.lex_state = 438, .external_lex_state = 62}, - [3185] = {.lex_state = 299, .external_lex_state = 68}, - [3186] = {.lex_state = 437, .external_lex_state = 70}, - [3187] = {.lex_state = 438, .external_lex_state = 62}, - [3188] = {.lex_state = 463, .external_lex_state = 47}, - [3189] = {.lex_state = 463, .external_lex_state = 47}, - [3190] = {.lex_state = 463, .external_lex_state = 47}, - [3191] = {.lex_state = 463, .external_lex_state = 47}, - [3192] = {.lex_state = 463, .external_lex_state = 47}, - [3193] = {.lex_state = 463, .external_lex_state = 47}, - [3194] = {.lex_state = 437, .external_lex_state = 70}, - [3195] = {.lex_state = 438, .external_lex_state = 62}, - [3196] = {.lex_state = 444, .external_lex_state = 62}, - [3197] = {.lex_state = 438, .external_lex_state = 62}, - [3198] = {.lex_state = 438, .external_lex_state = 62}, - [3199] = {.lex_state = 437, .external_lex_state = 70}, - [3200] = {.lex_state = 437, .external_lex_state = 70}, - [3201] = {.lex_state = 437, .external_lex_state = 62}, - [3202] = {.lex_state = 437, .external_lex_state = 70}, - [3203] = {.lex_state = 299, .external_lex_state = 68}, - [3204] = {.lex_state = 438, .external_lex_state = 62}, - [3205] = {.lex_state = 259, .external_lex_state = 65}, - [3206] = {.lex_state = 437, .external_lex_state = 70}, - [3207] = {.lex_state = 444, .external_lex_state = 62}, - [3208] = {.lex_state = 259, .external_lex_state = 65}, - [3209] = {.lex_state = 435, .external_lex_state = 62}, - [3210] = {.lex_state = 299, .external_lex_state = 68}, - [3211] = {.lex_state = 437, .external_lex_state = 70}, - [3212] = {.lex_state = 437, .external_lex_state = 70}, - [3213] = {.lex_state = 437, .external_lex_state = 70}, - [3214] = {.lex_state = 437, .external_lex_state = 70}, - [3215] = {.lex_state = 437, .external_lex_state = 62}, - [3216] = {.lex_state = 437, .external_lex_state = 70}, - [3217] = {.lex_state = 437, .external_lex_state = 70}, - [3218] = {.lex_state = 437, .external_lex_state = 70}, - [3219] = {.lex_state = 437, .external_lex_state = 70}, - [3220] = {.lex_state = 437, .external_lex_state = 70}, - [3221] = {.lex_state = 437, .external_lex_state = 70}, - [3222] = {.lex_state = 437, .external_lex_state = 70}, - [3223] = {.lex_state = 437, .external_lex_state = 70}, - [3224] = {.lex_state = 437, .external_lex_state = 70}, - [3225] = {.lex_state = 437, .external_lex_state = 62}, - [3226] = {.lex_state = 437, .external_lex_state = 70}, - [3227] = {.lex_state = 437, .external_lex_state = 70}, - [3228] = {.lex_state = 437, .external_lex_state = 70}, - [3229] = {.lex_state = 437, .external_lex_state = 70}, - [3230] = {.lex_state = 437, .external_lex_state = 62}, - [3231] = {.lex_state = 437, .external_lex_state = 70}, - [3232] = {.lex_state = 437, .external_lex_state = 70}, - [3233] = {.lex_state = 437, .external_lex_state = 70}, - [3234] = {.lex_state = 437, .external_lex_state = 70}, - [3235] = {.lex_state = 437, .external_lex_state = 70}, - [3236] = {.lex_state = 437, .external_lex_state = 70}, - [3237] = {.lex_state = 437, .external_lex_state = 70}, - [3238] = {.lex_state = 438, .external_lex_state = 62}, - [3239] = {.lex_state = 463, .external_lex_state = 47}, - [3240] = {.lex_state = 437, .external_lex_state = 70}, - [3241] = {.lex_state = 444, .external_lex_state = 62}, - [3242] = {.lex_state = 437, .external_lex_state = 62}, - [3243] = {.lex_state = 444, .external_lex_state = 62}, - [3244] = {.lex_state = 437, .external_lex_state = 70}, - [3245] = {.lex_state = 437, .external_lex_state = 70}, - [3246] = {.lex_state = 444, .external_lex_state = 62}, - [3247] = {.lex_state = 444, .external_lex_state = 62}, - [3248] = {.lex_state = 437, .external_lex_state = 70}, - [3249] = {.lex_state = 437, .external_lex_state = 70}, - [3250] = {.lex_state = 437, .external_lex_state = 70}, - [3251] = {.lex_state = 437, .external_lex_state = 62}, - [3252] = {.lex_state = 437, .external_lex_state = 62}, - [3253] = {.lex_state = 437, .external_lex_state = 70}, - [3254] = {.lex_state = 437, .external_lex_state = 62}, - [3255] = {.lex_state = 437, .external_lex_state = 70}, - [3256] = {.lex_state = 438, .external_lex_state = 62}, - [3257] = {.lex_state = 530, .external_lex_state = 65}, - [3258] = {.lex_state = 437, .external_lex_state = 70}, - [3259] = {.lex_state = 299, .external_lex_state = 68}, - [3260] = {.lex_state = 299, .external_lex_state = 68}, - [3261] = {.lex_state = 437, .external_lex_state = 70}, - [3262] = {.lex_state = 530, .external_lex_state = 65}, - [3263] = {.lex_state = 299, .external_lex_state = 68}, - [3264] = {.lex_state = 437, .external_lex_state = 70}, - [3265] = {.lex_state = 437, .external_lex_state = 70}, - [3266] = {.lex_state = 299, .external_lex_state = 68}, - [3267] = {.lex_state = 437, .external_lex_state = 62}, - [3268] = {.lex_state = 437, .external_lex_state = 70}, - [3269] = {.lex_state = 437, .external_lex_state = 70}, - [3270] = {.lex_state = 437, .external_lex_state = 70}, - [3271] = {.lex_state = 437, .external_lex_state = 62}, - [3272] = {.lex_state = 438, .external_lex_state = 62}, - [3273] = {.lex_state = 437, .external_lex_state = 70}, - [3274] = {.lex_state = 444, .external_lex_state = 62}, - [3275] = {.lex_state = 437, .external_lex_state = 70}, - [3276] = {.lex_state = 437, .external_lex_state = 62}, - [3277] = {.lex_state = 438, .external_lex_state = 62}, - [3278] = {.lex_state = 463, .external_lex_state = 47}, - [3279] = {.lex_state = 437, .external_lex_state = 62}, - [3280] = {.lex_state = 437, .external_lex_state = 62}, - [3281] = {.lex_state = 437, .external_lex_state = 62}, - [3282] = {.lex_state = 437, .external_lex_state = 62}, - [3283] = {.lex_state = 437, .external_lex_state = 62}, - [3284] = {.lex_state = 535, .external_lex_state = 65}, - [3285] = {.lex_state = 437, .external_lex_state = 70}, - [3286] = {.lex_state = 438, .external_lex_state = 62}, - [3287] = {.lex_state = 438, .external_lex_state = 62}, - [3288] = {.lex_state = 299, .external_lex_state = 68}, - [3289] = {.lex_state = 299, .external_lex_state = 68}, - [3290] = {.lex_state = 437, .external_lex_state = 70}, - [3291] = {.lex_state = 438, .external_lex_state = 62}, - [3292] = {.lex_state = 437, .external_lex_state = 70}, - [3293] = {.lex_state = 444, .external_lex_state = 62}, - [3294] = {.lex_state = 437, .external_lex_state = 70}, - [3295] = {.lex_state = 535, .external_lex_state = 65}, - [3296] = {.lex_state = 299, .external_lex_state = 68}, - [3297] = {.lex_state = 444, .external_lex_state = 62}, - [3298] = {.lex_state = 444, .external_lex_state = 62}, - [3299] = {.lex_state = 535, .external_lex_state = 65}, - [3300] = {.lex_state = 437, .external_lex_state = 70}, - [3301] = {.lex_state = 438, .external_lex_state = 62}, - [3302] = {.lex_state = 437, .external_lex_state = 70}, - [3303] = {.lex_state = 435, .external_lex_state = 62}, - [3304] = {.lex_state = 437, .external_lex_state = 70}, - [3305] = {.lex_state = 299, .external_lex_state = 68}, - [3306] = {.lex_state = 437, .external_lex_state = 70}, - [3307] = {.lex_state = 437, .external_lex_state = 70}, - [3308] = {.lex_state = 444, .external_lex_state = 62}, - [3309] = {.lex_state = 438, .external_lex_state = 62}, - [3310] = {.lex_state = 262, .external_lex_state = 65}, - [3311] = {.lex_state = 437, .external_lex_state = 62}, - [3312] = {.lex_state = 444, .external_lex_state = 62}, - [3313] = {.lex_state = 262, .external_lex_state = 65}, - [3314] = {.lex_state = 437, .external_lex_state = 70}, - [3315] = {.lex_state = 437, .external_lex_state = 62}, - [3316] = {.lex_state = 437, .external_lex_state = 70}, - [3317] = {.lex_state = 437, .external_lex_state = 62}, - [3318] = {.lex_state = 437, .external_lex_state = 62}, - [3319] = {.lex_state = 437, .external_lex_state = 62}, - [3320] = {.lex_state = 437, .external_lex_state = 62}, - [3321] = {.lex_state = 437, .external_lex_state = 70}, - [3322] = {.lex_state = 437, .external_lex_state = 62}, - [3323] = {.lex_state = 437, .external_lex_state = 62}, - [3324] = {.lex_state = 437, .external_lex_state = 62}, - [3325] = {.lex_state = 437, .external_lex_state = 62}, - [3326] = {.lex_state = 437, .external_lex_state = 62}, - [3327] = {.lex_state = 437, .external_lex_state = 62}, - [3328] = {.lex_state = 437, .external_lex_state = 62}, - [3329] = {.lex_state = 437, .external_lex_state = 62}, - [3330] = {.lex_state = 437, .external_lex_state = 70}, - [3331] = {.lex_state = 437, .external_lex_state = 70}, - [3332] = {.lex_state = 463, .external_lex_state = 47}, - [3333] = {.lex_state = 463, .external_lex_state = 47}, - [3334] = {.lex_state = 437, .external_lex_state = 70}, - [3335] = {.lex_state = 437, .external_lex_state = 70}, - [3336] = {.lex_state = 444, .external_lex_state = 62}, - [3337] = {.lex_state = 444, .external_lex_state = 62}, - [3338] = {.lex_state = 444, .external_lex_state = 62}, - [3339] = {.lex_state = 444, .external_lex_state = 62}, - [3340] = {.lex_state = 444, .external_lex_state = 62}, - [3341] = {.lex_state = 444, .external_lex_state = 62}, - [3342] = {.lex_state = 262, .external_lex_state = 65}, - [3343] = {.lex_state = 444, .external_lex_state = 62}, - [3344] = {.lex_state = 463, .external_lex_state = 47}, - [3345] = {.lex_state = 444, .external_lex_state = 62}, - [3346] = {.lex_state = 444, .external_lex_state = 62}, - [3347] = {.lex_state = 444, .external_lex_state = 62}, - [3348] = {.lex_state = 444, .external_lex_state = 62}, - [3349] = {.lex_state = 444, .external_lex_state = 62}, - [3350] = {.lex_state = 444, .external_lex_state = 62}, - [3351] = {.lex_state = 437, .external_lex_state = 70}, - [3352] = {.lex_state = 463, .external_lex_state = 47}, - [3353] = {.lex_state = 262, .external_lex_state = 65}, - [3354] = {.lex_state = 437, .external_lex_state = 70}, - [3355] = {.lex_state = 437, .external_lex_state = 70}, - [3356] = {.lex_state = 444, .external_lex_state = 62}, - [3357] = {.lex_state = 463, .external_lex_state = 47}, - [3358] = {.lex_state = 438, .external_lex_state = 62}, - [3359] = {.lex_state = 437, .external_lex_state = 70}, - [3360] = {.lex_state = 463, .external_lex_state = 47}, - [3361] = {.lex_state = 437, .external_lex_state = 70}, - [3362] = {.lex_state = 437, .external_lex_state = 62}, - [3363] = {.lex_state = 259, .external_lex_state = 65}, - [3364] = {.lex_state = 438, .external_lex_state = 62}, - [3365] = {.lex_state = 437, .external_lex_state = 70}, - [3366] = {.lex_state = 438, .external_lex_state = 62}, - [3367] = {.lex_state = 444, .external_lex_state = 62}, - [3368] = {.lex_state = 444, .external_lex_state = 62}, - [3369] = {.lex_state = 437, .external_lex_state = 70}, - [3370] = {.lex_state = 438, .external_lex_state = 62}, - [3371] = {.lex_state = 438, .external_lex_state = 62}, - [3372] = {.lex_state = 444, .external_lex_state = 62}, - [3373] = {.lex_state = 437, .external_lex_state = 70}, - [3374] = {.lex_state = 437, .external_lex_state = 62}, - [3375] = {.lex_state = 437, .external_lex_state = 62}, - [3376] = {.lex_state = 437, .external_lex_state = 70}, - [3377] = {.lex_state = 463, .external_lex_state = 47}, - [3378] = {.lex_state = 437, .external_lex_state = 62}, - [3379] = {.lex_state = 437, .external_lex_state = 62}, - [3380] = {.lex_state = 437, .external_lex_state = 70}, - [3381] = {.lex_state = 259, .external_lex_state = 65}, - [3382] = {.lex_state = 437, .external_lex_state = 70}, - [3383] = {.lex_state = 437, .external_lex_state = 62}, - [3384] = {.lex_state = 437, .external_lex_state = 70}, - [3385] = {.lex_state = 437, .external_lex_state = 70}, - [3386] = {.lex_state = 437, .external_lex_state = 62}, - [3387] = {.lex_state = 435, .external_lex_state = 43}, - [3388] = {.lex_state = 435, .external_lex_state = 43}, - [3389] = {.lex_state = 435, .external_lex_state = 43}, - [3390] = {.lex_state = 435, .external_lex_state = 43}, - [3391] = {.lex_state = 435, .external_lex_state = 43}, - [3392] = {.lex_state = 435, .external_lex_state = 43}, - [3393] = {.lex_state = 435, .external_lex_state = 43}, - [3394] = {.lex_state = 435, .external_lex_state = 43}, - [3395] = {.lex_state = 435, .external_lex_state = 43}, - [3396] = {.lex_state = 435, .external_lex_state = 43}, - [3397] = {.lex_state = 435, .external_lex_state = 43}, - [3398] = {.lex_state = 435, .external_lex_state = 43}, - [3399] = {.lex_state = 435, .external_lex_state = 43}, - [3400] = {.lex_state = 435, .external_lex_state = 43}, + [3164] = {.lex_state = 435, .external_lex_state = 43}, + [3165] = {.lex_state = 463, .external_lex_state = 45}, + [3166] = {.lex_state = 437, .external_lex_state = 69}, + [3167] = {.lex_state = 437, .external_lex_state = 43}, + [3168] = {.lex_state = 435, .external_lex_state = 43}, + [3169] = {.lex_state = 435, .external_lex_state = 43}, + [3170] = {.lex_state = 87, .external_lex_state = 67}, + [3171] = {.lex_state = 531, .external_lex_state = 64}, + [3172] = {.lex_state = 531, .external_lex_state = 64}, + [3173] = {.lex_state = 437, .external_lex_state = 50}, + [3174] = {.lex_state = 87, .external_lex_state = 67}, + [3175] = {.lex_state = 437, .external_lex_state = 50}, + [3176] = {.lex_state = 435, .external_lex_state = 43}, + [3177] = {.lex_state = 299, .external_lex_state = 70}, + [3178] = {.lex_state = 247, .external_lex_state = 64}, + [3179] = {.lex_state = 299, .external_lex_state = 70}, + [3180] = {.lex_state = 437, .external_lex_state = 50}, + [3181] = {.lex_state = 472, .external_lex_state = 32}, + [3182] = {.lex_state = 87, .external_lex_state = 67}, + [3183] = {.lex_state = 87, .external_lex_state = 67}, + [3184] = {.lex_state = 435, .external_lex_state = 43}, + [3185] = {.lex_state = 87, .external_lex_state = 67}, + [3186] = {.lex_state = 87, .external_lex_state = 67}, + [3187] = {.lex_state = 437, .external_lex_state = 50}, + [3188] = {.lex_state = 437, .external_lex_state = 43}, + [3189] = {.lex_state = 437, .external_lex_state = 50}, + [3190] = {.lex_state = 437, .external_lex_state = 50}, + [3191] = {.lex_state = 253, .external_lex_state = 64}, + [3192] = {.lex_state = 253, .external_lex_state = 64}, + [3193] = {.lex_state = 435, .external_lex_state = 43}, + [3194] = {.lex_state = 437, .external_lex_state = 43}, + [3195] = {.lex_state = 87, .external_lex_state = 67}, + [3196] = {.lex_state = 299, .external_lex_state = 70}, + [3197] = {.lex_state = 435, .external_lex_state = 43}, + [3198] = {.lex_state = 299, .external_lex_state = 70}, + [3199] = {.lex_state = 299, .external_lex_state = 70}, + [3200] = {.lex_state = 87, .external_lex_state = 67}, + [3201] = {.lex_state = 87, .external_lex_state = 67}, + [3202] = {.lex_state = 87, .external_lex_state = 67}, + [3203] = {.lex_state = 435, .external_lex_state = 43}, + [3204] = {.lex_state = 299, .external_lex_state = 70}, + [3205] = {.lex_state = 469, .external_lex_state = 34}, + [3206] = {.lex_state = 435, .external_lex_state = 43}, + [3207] = {.lex_state = 437, .external_lex_state = 50}, + [3208] = {.lex_state = 461, .external_lex_state = 35}, + [3209] = {.lex_state = 87, .external_lex_state = 67}, + [3210] = {.lex_state = 87, .external_lex_state = 67}, + [3211] = {.lex_state = 463, .external_lex_state = 45}, + [3212] = {.lex_state = 87, .external_lex_state = 67}, + [3213] = {.lex_state = 435, .external_lex_state = 43}, + [3214] = {.lex_state = 435, .external_lex_state = 43}, + [3215] = {.lex_state = 463, .external_lex_state = 45}, + [3216] = {.lex_state = 437, .external_lex_state = 43}, + [3217] = {.lex_state = 87, .external_lex_state = 67}, + [3218] = {.lex_state = 469, .external_lex_state = 34}, + [3219] = {.lex_state = 87, .external_lex_state = 67}, + [3220] = {.lex_state = 87, .external_lex_state = 67}, + [3221] = {.lex_state = 435, .external_lex_state = 43}, + [3222] = {.lex_state = 435, .external_lex_state = 43}, + [3223] = {.lex_state = 435, .external_lex_state = 43}, + [3224] = {.lex_state = 445, .external_lex_state = 63}, + [3225] = {.lex_state = 435, .external_lex_state = 43}, + [3226] = {.lex_state = 435, .external_lex_state = 43}, + [3227] = {.lex_state = 435, .external_lex_state = 43}, + [3228] = {.lex_state = 437, .external_lex_state = 50}, + [3229] = {.lex_state = 435, .external_lex_state = 43}, + [3230] = {.lex_state = 463, .external_lex_state = 34}, + [3231] = {.lex_state = 87, .external_lex_state = 67}, + [3232] = {.lex_state = 437, .external_lex_state = 68}, + [3233] = {.lex_state = 437, .external_lex_state = 68}, + [3234] = {.lex_state = 299, .external_lex_state = 70}, + [3235] = {.lex_state = 438, .external_lex_state = 63}, + [3236] = {.lex_state = 437, .external_lex_state = 63}, + [3237] = {.lex_state = 437, .external_lex_state = 63}, + [3238] = {.lex_state = 300, .external_lex_state = 71}, + [3239] = {.lex_state = 437, .external_lex_state = 63}, + [3240] = {.lex_state = 437, .external_lex_state = 63}, + [3241] = {.lex_state = 437, .external_lex_state = 63}, + [3242] = {.lex_state = 437, .external_lex_state = 68}, + [3243] = {.lex_state = 437, .external_lex_state = 63}, + [3244] = {.lex_state = 437, .external_lex_state = 68}, + [3245] = {.lex_state = 437, .external_lex_state = 68}, + [3246] = {.lex_state = 437, .external_lex_state = 63}, + [3247] = {.lex_state = 437, .external_lex_state = 68}, + [3248] = {.lex_state = 437, .external_lex_state = 68}, + [3249] = {.lex_state = 437, .external_lex_state = 68}, + [3250] = {.lex_state = 438, .external_lex_state = 63}, + [3251] = {.lex_state = 437, .external_lex_state = 68}, + [3252] = {.lex_state = 437, .external_lex_state = 63}, + [3253] = {.lex_state = 437, .external_lex_state = 68}, + [3254] = {.lex_state = 437, .external_lex_state = 68}, + [3255] = {.lex_state = 437, .external_lex_state = 63}, + [3256] = {.lex_state = 437, .external_lex_state = 63}, + [3257] = {.lex_state = 437, .external_lex_state = 63}, + [3258] = {.lex_state = 437, .external_lex_state = 68}, + [3259] = {.lex_state = 534, .external_lex_state = 64}, + [3260] = {.lex_state = 438, .external_lex_state = 63}, + [3261] = {.lex_state = 437, .external_lex_state = 63}, + [3262] = {.lex_state = 437, .external_lex_state = 68}, + [3263] = {.lex_state = 437, .external_lex_state = 63}, + [3264] = {.lex_state = 438, .external_lex_state = 63}, + [3265] = {.lex_state = 438, .external_lex_state = 63}, + [3266] = {.lex_state = 438, .external_lex_state = 63}, + [3267] = {.lex_state = 438, .external_lex_state = 63}, + [3268] = {.lex_state = 438, .external_lex_state = 63}, + [3269] = {.lex_state = 437, .external_lex_state = 63}, + [3270] = {.lex_state = 438, .external_lex_state = 63}, + [3271] = {.lex_state = 438, .external_lex_state = 63}, + [3272] = {.lex_state = 437, .external_lex_state = 63}, + [3273] = {.lex_state = 437, .external_lex_state = 63}, + [3274] = {.lex_state = 438, .external_lex_state = 63}, + [3275] = {.lex_state = 438, .external_lex_state = 63}, + [3276] = {.lex_state = 437, .external_lex_state = 63}, + [3277] = {.lex_state = 438, .external_lex_state = 63}, + [3278] = {.lex_state = 445, .external_lex_state = 63}, + [3279] = {.lex_state = 299, .external_lex_state = 70}, + [3280] = {.lex_state = 534, .external_lex_state = 64}, + [3281] = {.lex_state = 438, .external_lex_state = 63}, + [3282] = {.lex_state = 438, .external_lex_state = 63}, + [3283] = {.lex_state = 437, .external_lex_state = 63}, + [3284] = {.lex_state = 438, .external_lex_state = 63}, + [3285] = {.lex_state = 445, .external_lex_state = 63}, + [3286] = {.lex_state = 437, .external_lex_state = 63}, + [3287] = {.lex_state = 437, .external_lex_state = 63}, + [3288] = {.lex_state = 438, .external_lex_state = 63}, + [3289] = {.lex_state = 437, .external_lex_state = 63}, + [3290] = {.lex_state = 437, .external_lex_state = 63}, + [3291] = {.lex_state = 437, .external_lex_state = 68}, + [3292] = {.lex_state = 438, .external_lex_state = 63}, + [3293] = {.lex_state = 437, .external_lex_state = 68}, + [3294] = {.lex_state = 437, .external_lex_state = 63}, + [3295] = {.lex_state = 437, .external_lex_state = 68}, + [3296] = {.lex_state = 476, .external_lex_state = 72}, + [3297] = {.lex_state = 437, .external_lex_state = 63}, + [3298] = {.lex_state = 437, .external_lex_state = 68}, + [3299] = {.lex_state = 437, .external_lex_state = 68}, + [3300] = {.lex_state = 437, .external_lex_state = 68}, + [3301] = {.lex_state = 437, .external_lex_state = 68}, + [3302] = {.lex_state = 437, .external_lex_state = 68}, + [3303] = {.lex_state = 437, .external_lex_state = 63}, + [3304] = {.lex_state = 437, .external_lex_state = 63}, + [3305] = {.lex_state = 437, .external_lex_state = 63}, + [3306] = {.lex_state = 437, .external_lex_state = 68}, + [3307] = {.lex_state = 437, .external_lex_state = 68}, + [3308] = {.lex_state = 437, .external_lex_state = 68}, + [3309] = {.lex_state = 463, .external_lex_state = 45}, + [3310] = {.lex_state = 437, .external_lex_state = 68}, + [3311] = {.lex_state = 437, .external_lex_state = 68}, + [3312] = {.lex_state = 435, .external_lex_state = 63}, + [3313] = {.lex_state = 437, .external_lex_state = 68}, + [3314] = {.lex_state = 437, .external_lex_state = 68}, + [3315] = {.lex_state = 437, .external_lex_state = 68}, + [3316] = {.lex_state = 435, .external_lex_state = 63}, + [3317] = {.lex_state = 437, .external_lex_state = 68}, + [3318] = {.lex_state = 445, .external_lex_state = 63}, + [3319] = {.lex_state = 445, .external_lex_state = 63}, + [3320] = {.lex_state = 437, .external_lex_state = 68}, + [3321] = {.lex_state = 437, .external_lex_state = 68}, + [3322] = {.lex_state = 437, .external_lex_state = 68}, + [3323] = {.lex_state = 437, .external_lex_state = 68}, + [3324] = {.lex_state = 437, .external_lex_state = 68}, + [3325] = {.lex_state = 437, .external_lex_state = 68}, + [3326] = {.lex_state = 437, .external_lex_state = 68}, + [3327] = {.lex_state = 437, .external_lex_state = 68}, + [3328] = {.lex_state = 534, .external_lex_state = 64}, + [3329] = {.lex_state = 437, .external_lex_state = 68}, + [3330] = {.lex_state = 534, .external_lex_state = 64}, + [3331] = {.lex_state = 300, .external_lex_state = 71}, + [3332] = {.lex_state = 437, .external_lex_state = 63}, + [3333] = {.lex_state = 437, .external_lex_state = 68}, + [3334] = {.lex_state = 437, .external_lex_state = 68}, + [3335] = {.lex_state = 445, .external_lex_state = 63}, + [3336] = {.lex_state = 437, .external_lex_state = 63}, + [3337] = {.lex_state = 437, .external_lex_state = 63}, + [3338] = {.lex_state = 437, .external_lex_state = 63}, + [3339] = {.lex_state = 445, .external_lex_state = 63}, + [3340] = {.lex_state = 438, .external_lex_state = 63}, + [3341] = {.lex_state = 445, .external_lex_state = 63}, + [3342] = {.lex_state = 438, .external_lex_state = 63}, + [3343] = {.lex_state = 438, .external_lex_state = 63}, + [3344] = {.lex_state = 437, .external_lex_state = 68}, + [3345] = {.lex_state = 445, .external_lex_state = 63}, + [3346] = {.lex_state = 445, .external_lex_state = 63}, + [3347] = {.lex_state = 445, .external_lex_state = 63}, + [3348] = {.lex_state = 438, .external_lex_state = 63}, + [3349] = {.lex_state = 437, .external_lex_state = 63}, + [3350] = {.lex_state = 445, .external_lex_state = 63}, + [3351] = {.lex_state = 437, .external_lex_state = 68}, + [3352] = {.lex_state = 438, .external_lex_state = 63}, + [3353] = {.lex_state = 437, .external_lex_state = 68}, + [3354] = {.lex_state = 437, .external_lex_state = 68}, + [3355] = {.lex_state = 438, .external_lex_state = 63}, + [3356] = {.lex_state = 438, .external_lex_state = 63}, + [3357] = {.lex_state = 445, .external_lex_state = 63}, + [3358] = {.lex_state = 438, .external_lex_state = 63}, + [3359] = {.lex_state = 445, .external_lex_state = 63}, + [3360] = {.lex_state = 445, .external_lex_state = 63}, + [3361] = {.lex_state = 445, .external_lex_state = 63}, + [3362] = {.lex_state = 445, .external_lex_state = 63}, + [3363] = {.lex_state = 438, .external_lex_state = 63}, + [3364] = {.lex_state = 445, .external_lex_state = 63}, + [3365] = {.lex_state = 437, .external_lex_state = 68}, + [3366] = {.lex_state = 437, .external_lex_state = 68}, + [3367] = {.lex_state = 437, .external_lex_state = 68}, + [3368] = {.lex_state = 437, .external_lex_state = 68}, + [3369] = {.lex_state = 476, .external_lex_state = 72}, + [3370] = {.lex_state = 437, .external_lex_state = 68}, + [3371] = {.lex_state = 437, .external_lex_state = 68}, + [3372] = {.lex_state = 438, .external_lex_state = 63}, + [3373] = {.lex_state = 438, .external_lex_state = 63}, + [3374] = {.lex_state = 438, .external_lex_state = 63}, + [3375] = {.lex_state = 437, .external_lex_state = 68}, + [3376] = {.lex_state = 445, .external_lex_state = 63}, + [3377] = {.lex_state = 437, .external_lex_state = 68}, + [3378] = {.lex_state = 437, .external_lex_state = 68}, + [3379] = {.lex_state = 437, .external_lex_state = 68}, + [3380] = {.lex_state = 437, .external_lex_state = 68}, + [3381] = {.lex_state = 259, .external_lex_state = 64}, + [3382] = {.lex_state = 437, .external_lex_state = 68}, + [3383] = {.lex_state = 437, .external_lex_state = 68}, + [3384] = {.lex_state = 445, .external_lex_state = 63}, + [3385] = {.lex_state = 437, .external_lex_state = 68}, + [3386] = {.lex_state = 437, .external_lex_state = 63}, + [3387] = {.lex_state = 437, .external_lex_state = 68}, + [3388] = {.lex_state = 300, .external_lex_state = 71}, + [3389] = {.lex_state = 437, .external_lex_state = 68}, + [3390] = {.lex_state = 438, .external_lex_state = 63}, + [3391] = {.lex_state = 437, .external_lex_state = 68}, + [3392] = {.lex_state = 437, .external_lex_state = 68}, + [3393] = {.lex_state = 262, .external_lex_state = 64}, + [3394] = {.lex_state = 299, .external_lex_state = 70}, + [3395] = {.lex_state = 262, .external_lex_state = 64}, + [3396] = {.lex_state = 437, .external_lex_state = 68}, + [3397] = {.lex_state = 437, .external_lex_state = 68}, + [3398] = {.lex_state = 437, .external_lex_state = 68}, + [3399] = {.lex_state = 437, .external_lex_state = 68}, + [3400] = {.lex_state = 299, .external_lex_state = 70}, [3401] = {.lex_state = 435, .external_lex_state = 43}, - [3402] = {.lex_state = 463, .external_lex_state = 47}, - [3403] = {.lex_state = 463, .external_lex_state = 47}, - [3404] = {.lex_state = 437, .external_lex_state = 70}, - [3405] = {.lex_state = 437, .external_lex_state = 70}, - [3406] = {.lex_state = 437, .external_lex_state = 70}, - [3407] = {.lex_state = 437, .external_lex_state = 62}, - [3408] = {.lex_state = 437, .external_lex_state = 70}, - [3409] = {.lex_state = 437, .external_lex_state = 62}, - [3410] = {.lex_state = 437, .external_lex_state = 62}, - [3411] = {.lex_state = 438, .external_lex_state = 62}, - [3412] = {.lex_state = 437, .external_lex_state = 62}, - [3413] = {.lex_state = 437, .external_lex_state = 70}, - [3414] = {.lex_state = 438, .external_lex_state = 62}, - [3415] = {.lex_state = 437, .external_lex_state = 70}, - [3416] = {.lex_state = 438, .external_lex_state = 62}, - [3417] = {.lex_state = 299, .external_lex_state = 68}, - [3418] = {.lex_state = 437, .external_lex_state = 70}, - [3419] = {.lex_state = 437, .external_lex_state = 70}, - [3420] = {.lex_state = 437, .external_lex_state = 70}, - [3421] = {.lex_state = 444, .external_lex_state = 62}, - [3422] = {.lex_state = 299, .external_lex_state = 68}, - [3423] = {.lex_state = 299, .external_lex_state = 68}, - [3424] = {.lex_state = 437, .external_lex_state = 70}, - [3425] = {.lex_state = 437, .external_lex_state = 70}, + [3402] = {.lex_state = 437, .external_lex_state = 68}, + [3403] = {.lex_state = 437, .external_lex_state = 68}, + [3404] = {.lex_state = 437, .external_lex_state = 68}, + [3405] = {.lex_state = 437, .external_lex_state = 68}, + [3406] = {.lex_state = 437, .external_lex_state = 68}, + [3407] = {.lex_state = 437, .external_lex_state = 63}, + [3408] = {.lex_state = 437, .external_lex_state = 68}, + [3409] = {.lex_state = 262, .external_lex_state = 64}, + [3410] = {.lex_state = 299, .external_lex_state = 70}, + [3411] = {.lex_state = 437, .external_lex_state = 68}, + [3412] = {.lex_state = 262, .external_lex_state = 64}, + [3413] = {.lex_state = 299, .external_lex_state = 70}, + [3414] = {.lex_state = 299, .external_lex_state = 70}, + [3415] = {.lex_state = 437, .external_lex_state = 68}, + [3416] = {.lex_state = 437, .external_lex_state = 68}, + [3417] = {.lex_state = 437, .external_lex_state = 68}, + [3418] = {.lex_state = 299, .external_lex_state = 70}, + [3419] = {.lex_state = 437, .external_lex_state = 68}, + [3420] = {.lex_state = 437, .external_lex_state = 68}, + [3421] = {.lex_state = 437, .external_lex_state = 68}, + [3422] = {.lex_state = 445, .external_lex_state = 63}, + [3423] = {.lex_state = 299, .external_lex_state = 70}, + [3424] = {.lex_state = 437, .external_lex_state = 68}, + [3425] = {.lex_state = 435, .external_lex_state = 43}, [3426] = {.lex_state = 435, .external_lex_state = 43}, - [3427] = {.lex_state = 469, .external_lex_state = 35}, - [3428] = {.lex_state = 437, .external_lex_state = 70}, - [3429] = {.lex_state = 437, .external_lex_state = 70}, - [3430] = {.lex_state = 299, .external_lex_state = 68}, - [3431] = {.lex_state = 299, .external_lex_state = 68}, - [3432] = {.lex_state = 437, .external_lex_state = 70}, - [3433] = {.lex_state = 437, .external_lex_state = 70}, - [3434] = {.lex_state = 437, .external_lex_state = 70}, - [3435] = {.lex_state = 438, .external_lex_state = 62}, - [3436] = {.lex_state = 437, .external_lex_state = 70}, - [3437] = {.lex_state = 435, .external_lex_state = 62}, - [3438] = {.lex_state = 437, .external_lex_state = 70}, - [3439] = {.lex_state = 437, .external_lex_state = 70}, - [3440] = {.lex_state = 463, .external_lex_state = 47}, - [3441] = {.lex_state = 463, .external_lex_state = 47}, - [3442] = {.lex_state = 299, .external_lex_state = 68}, - [3443] = {.lex_state = 463, .external_lex_state = 47}, - [3444] = {.lex_state = 437, .external_lex_state = 70}, - [3445] = {.lex_state = 438, .external_lex_state = 62}, - [3446] = {.lex_state = 463, .external_lex_state = 47}, - [3447] = {.lex_state = 437, .external_lex_state = 70}, - [3448] = {.lex_state = 435, .external_lex_state = 43}, - [3449] = {.lex_state = 435, .external_lex_state = 43}, - [3450] = {.lex_state = 435, .external_lex_state = 43}, - [3451] = {.lex_state = 463, .external_lex_state = 47}, - [3452] = {.lex_state = 463, .external_lex_state = 47}, - [3453] = {.lex_state = 438, .external_lex_state = 62}, - [3454] = {.lex_state = 438, .external_lex_state = 62}, - [3455] = {.lex_state = 463, .external_lex_state = 47}, - [3456] = {.lex_state = 300, .external_lex_state = 71}, - [3457] = {.lex_state = 273, .external_lex_state = 26}, - [3458] = {.lex_state = 291, .external_lex_state = 72}, - [3459] = {.lex_state = 462, .external_lex_state = 73}, - [3460] = {.lex_state = 273, .external_lex_state = 26}, - [3461] = {.lex_state = 462, .external_lex_state = 73}, - [3462] = {.lex_state = 462, .external_lex_state = 73}, - [3463] = {.lex_state = 476, .external_lex_state = 74}, - [3464] = {.lex_state = 462, .external_lex_state = 73}, - [3465] = {.lex_state = 462, .external_lex_state = 73}, - [3466] = {.lex_state = 462, .external_lex_state = 73}, - [3467] = {.lex_state = 462, .external_lex_state = 73}, - [3468] = {.lex_state = 463, .external_lex_state = 47}, - [3469] = {.lex_state = 476, .external_lex_state = 74}, - [3470] = {.lex_state = 462, .external_lex_state = 73}, - [3471] = {.lex_state = 462, .external_lex_state = 73}, - [3472] = {.lex_state = 462, .external_lex_state = 73}, - [3473] = {.lex_state = 462, .external_lex_state = 73}, - [3474] = {.lex_state = 476, .external_lex_state = 74}, - [3475] = {.lex_state = 462, .external_lex_state = 73}, - [3476] = {.lex_state = 462, .external_lex_state = 73}, - [3477] = {.lex_state = 462, .external_lex_state = 73}, - [3478] = {.lex_state = 535, .external_lex_state = 65}, - [3479] = {.lex_state = 300, .external_lex_state = 71}, - [3480] = {.lex_state = 291, .external_lex_state = 72}, - [3481] = {.lex_state = 535, .external_lex_state = 65}, - [3482] = {.lex_state = 535, .external_lex_state = 65}, - [3483] = {.lex_state = 535, .external_lex_state = 65}, - [3484] = {.lex_state = 300, .external_lex_state = 71}, - [3485] = {.lex_state = 300, .external_lex_state = 71}, - [3486] = {.lex_state = 300, .external_lex_state = 71}, - [3487] = {.lex_state = 462, .external_lex_state = 73}, - [3488] = {.lex_state = 462, .external_lex_state = 73}, - [3489] = {.lex_state = 462, .external_lex_state = 73}, - [3490] = {.lex_state = 481, .external_lex_state = 75}, - [3491] = {.lex_state = 462, .external_lex_state = 73}, - [3492] = {.lex_state = 481, .external_lex_state = 75}, - [3493] = {.lex_state = 481, .external_lex_state = 75}, - [3494] = {.lex_state = 481, .external_lex_state = 75}, - [3495] = {.lex_state = 462, .external_lex_state = 73}, - [3496] = {.lex_state = 462, .external_lex_state = 73}, - [3497] = {.lex_state = 273, .external_lex_state = 26}, - [3498] = {.lex_state = 462, .external_lex_state = 73}, - [3499] = {.lex_state = 481, .external_lex_state = 75}, - [3500] = {.lex_state = 481, .external_lex_state = 75}, - [3501] = {.lex_state = 481, .external_lex_state = 75}, - [3502] = {.lex_state = 481, .external_lex_state = 75}, - [3503] = {.lex_state = 481, .external_lex_state = 75}, - [3504] = {.lex_state = 462, .external_lex_state = 73}, - [3505] = {.lex_state = 462, .external_lex_state = 73}, - [3506] = {.lex_state = 481, .external_lex_state = 75}, - [3507] = {.lex_state = 462, .external_lex_state = 73}, - [3508] = {.lex_state = 462, .external_lex_state = 73}, + [3427] = {.lex_state = 435, .external_lex_state = 43}, + [3428] = {.lex_state = 435, .external_lex_state = 43}, + [3429] = {.lex_state = 435, .external_lex_state = 43}, + [3430] = {.lex_state = 435, .external_lex_state = 43}, + [3431] = {.lex_state = 435, .external_lex_state = 43}, + [3432] = {.lex_state = 435, .external_lex_state = 43}, + [3433] = {.lex_state = 435, .external_lex_state = 43}, + [3434] = {.lex_state = 435, .external_lex_state = 43}, + [3435] = {.lex_state = 435, .external_lex_state = 43}, + [3436] = {.lex_state = 435, .external_lex_state = 43}, + [3437] = {.lex_state = 435, .external_lex_state = 43}, + [3438] = {.lex_state = 435, .external_lex_state = 43}, + [3439] = {.lex_state = 299, .external_lex_state = 70}, + [3440] = {.lex_state = 435, .external_lex_state = 43}, + [3441] = {.lex_state = 437, .external_lex_state = 68}, + [3442] = {.lex_state = 445, .external_lex_state = 63}, + [3443] = {.lex_state = 437, .external_lex_state = 68}, + [3444] = {.lex_state = 300, .external_lex_state = 71}, + [3445] = {.lex_state = 437, .external_lex_state = 63}, + [3446] = {.lex_state = 445, .external_lex_state = 63}, + [3447] = {.lex_state = 299, .external_lex_state = 70}, + [3448] = {.lex_state = 299, .external_lex_state = 70}, + [3449] = {.lex_state = 531, .external_lex_state = 64}, + [3450] = {.lex_state = 299, .external_lex_state = 70}, + [3451] = {.lex_state = 531, .external_lex_state = 64}, + [3452] = {.lex_state = 437, .external_lex_state = 68}, + [3453] = {.lex_state = 435, .external_lex_state = 63}, + [3454] = {.lex_state = 259, .external_lex_state = 64}, + [3455] = {.lex_state = 437, .external_lex_state = 68}, + [3456] = {.lex_state = 437, .external_lex_state = 68}, + [3457] = {.lex_state = 437, .external_lex_state = 68}, + [3458] = {.lex_state = 437, .external_lex_state = 68}, + [3459] = {.lex_state = 437, .external_lex_state = 68}, + [3460] = {.lex_state = 445, .external_lex_state = 63}, + [3461] = {.lex_state = 437, .external_lex_state = 68}, + [3462] = {.lex_state = 445, .external_lex_state = 63}, + [3463] = {.lex_state = 437, .external_lex_state = 68}, + [3464] = {.lex_state = 437, .external_lex_state = 68}, + [3465] = {.lex_state = 300, .external_lex_state = 71}, + [3466] = {.lex_state = 299, .external_lex_state = 70}, + [3467] = {.lex_state = 437, .external_lex_state = 68}, + [3468] = {.lex_state = 437, .external_lex_state = 68}, + [3469] = {.lex_state = 437, .external_lex_state = 68}, + [3470] = {.lex_state = 437, .external_lex_state = 68}, + [3471] = {.lex_state = 437, .external_lex_state = 68}, + [3472] = {.lex_state = 299, .external_lex_state = 70}, + [3473] = {.lex_state = 445, .external_lex_state = 63}, + [3474] = {.lex_state = 299, .external_lex_state = 70}, + [3475] = {.lex_state = 445, .external_lex_state = 63}, + [3476] = {.lex_state = 437, .external_lex_state = 63}, + [3477] = {.lex_state = 469, .external_lex_state = 34}, + [3478] = {.lex_state = 259, .external_lex_state = 64}, + [3479] = {.lex_state = 437, .external_lex_state = 68}, + [3480] = {.lex_state = 437, .external_lex_state = 68}, + [3481] = {.lex_state = 299, .external_lex_state = 70}, + [3482] = {.lex_state = 437, .external_lex_state = 63}, + [3483] = {.lex_state = 437, .external_lex_state = 68}, + [3484] = {.lex_state = 299, .external_lex_state = 70}, + [3485] = {.lex_state = 437, .external_lex_state = 68}, + [3486] = {.lex_state = 445, .external_lex_state = 63}, + [3487] = {.lex_state = 259, .external_lex_state = 64}, + [3488] = {.lex_state = 299, .external_lex_state = 70}, + [3489] = {.lex_state = 476, .external_lex_state = 72}, + [3490] = {.lex_state = 445, .external_lex_state = 63}, + [3491] = {.lex_state = 437, .external_lex_state = 63}, + [3492] = {.lex_state = 437, .external_lex_state = 63}, + [3493] = {.lex_state = 299, .external_lex_state = 70}, + [3494] = {.lex_state = 445, .external_lex_state = 63}, + [3495] = {.lex_state = 437, .external_lex_state = 68}, + [3496] = {.lex_state = 437, .external_lex_state = 63}, + [3497] = {.lex_state = 445, .external_lex_state = 63}, + [3498] = {.lex_state = 438, .external_lex_state = 63}, + [3499] = {.lex_state = 445, .external_lex_state = 63}, + [3500] = {.lex_state = 445, .external_lex_state = 63}, + [3501] = {.lex_state = 437, .external_lex_state = 68}, + [3502] = {.lex_state = 435, .external_lex_state = 43}, + [3503] = {.lex_state = 435, .external_lex_state = 43}, + [3504] = {.lex_state = 435, .external_lex_state = 43}, + [3505] = {.lex_state = 437, .external_lex_state = 68}, + [3506] = {.lex_state = 437, .external_lex_state = 63}, + [3507] = {.lex_state = 437, .external_lex_state = 63}, + [3508] = {.lex_state = 437, .external_lex_state = 68}, [3509] = {.lex_state = 462, .external_lex_state = 73}, - [3510] = {.lex_state = 481, .external_lex_state = 75}, - [3511] = {.lex_state = 481, .external_lex_state = 75}, - [3512] = {.lex_state = 481, .external_lex_state = 75}, - [3513] = {.lex_state = 462, .external_lex_state = 73}, - [3514] = {.lex_state = 481, .external_lex_state = 75}, - [3515] = {.lex_state = 481, .external_lex_state = 75}, - [3516] = {.lex_state = 481, .external_lex_state = 75}, - [3517] = {.lex_state = 481, .external_lex_state = 75}, - [3518] = {.lex_state = 462, .external_lex_state = 73}, - [3519] = {.lex_state = 481, .external_lex_state = 75}, - [3520] = {.lex_state = 481, .external_lex_state = 75}, - [3521] = {.lex_state = 481, .external_lex_state = 75}, - [3522] = {.lex_state = 481, .external_lex_state = 75}, - [3523] = {.lex_state = 462, .external_lex_state = 73}, - [3524] = {.lex_state = 462, .external_lex_state = 73}, - [3525] = {.lex_state = 481, .external_lex_state = 75}, - [3526] = {.lex_state = 481, .external_lex_state = 75}, - [3527] = {.lex_state = 484, .external_lex_state = 76}, + [3510] = {.lex_state = 481, .external_lex_state = 74}, + [3511] = {.lex_state = 481, .external_lex_state = 74}, + [3512] = {.lex_state = 481, .external_lex_state = 74}, + [3513] = {.lex_state = 481, .external_lex_state = 74}, + [3514] = {.lex_state = 481, .external_lex_state = 74}, + [3515] = {.lex_state = 481, .external_lex_state = 74}, + [3516] = {.lex_state = 481, .external_lex_state = 74}, + [3517] = {.lex_state = 481, .external_lex_state = 74}, + [3518] = {.lex_state = 481, .external_lex_state = 74}, + [3519] = {.lex_state = 481, .external_lex_state = 74}, + [3520] = {.lex_state = 481, .external_lex_state = 74}, + [3521] = {.lex_state = 481, .external_lex_state = 74}, + [3522] = {.lex_state = 481, .external_lex_state = 74}, + [3523] = {.lex_state = 481, .external_lex_state = 74}, + [3524] = {.lex_state = 481, .external_lex_state = 74}, + [3525] = {.lex_state = 481, .external_lex_state = 74}, + [3526] = {.lex_state = 481, .external_lex_state = 74}, + [3527] = {.lex_state = 481, .external_lex_state = 74}, [3528] = {.lex_state = 462, .external_lex_state = 73}, [3529] = {.lex_state = 462, .external_lex_state = 73}, [3530] = {.lex_state = 462, .external_lex_state = 73}, - [3531] = {.lex_state = 461, .external_lex_state = 36}, - [3532] = {.lex_state = 461, .external_lex_state = 36}, - [3533] = {.lex_state = 461, .external_lex_state = 36}, - [3534] = {.lex_state = 461, .external_lex_state = 36}, - [3535] = {.lex_state = 461, .external_lex_state = 36}, - [3536] = {.lex_state = 484, .external_lex_state = 76}, - [3537] = {.lex_state = 447, .external_lex_state = 77}, - [3538] = {.lex_state = 265, .external_lex_state = 65}, - [3539] = {.lex_state = 265, .external_lex_state = 65}, - [3540] = {.lex_state = 461, .external_lex_state = 36}, - [3541] = {.lex_state = 447, .external_lex_state = 77}, - [3542] = {.lex_state = 461, .external_lex_state = 36}, - [3543] = {.lex_state = 484, .external_lex_state = 76}, - [3544] = {.lex_state = 484, .external_lex_state = 76}, - [3545] = {.lex_state = 484, .external_lex_state = 76}, - [3546] = {.lex_state = 461, .external_lex_state = 36}, - [3547] = {.lex_state = 461, .external_lex_state = 36}, - [3548] = {.lex_state = 261, .external_lex_state = 71}, - [3549] = {.lex_state = 463, .external_lex_state = 78}, - [3550] = {.lex_state = 463, .external_lex_state = 78}, - [3551] = {.lex_state = 463, .external_lex_state = 78}, - [3552] = {.lex_state = 461, .external_lex_state = 36}, - [3553] = {.lex_state = 261, .external_lex_state = 71}, - [3554] = {.lex_state = 461, .external_lex_state = 36}, - [3555] = {.lex_state = 261, .external_lex_state = 71}, - [3556] = {.lex_state = 261, .external_lex_state = 71}, - [3557] = {.lex_state = 463, .external_lex_state = 78}, - [3558] = {.lex_state = 418, .external_lex_state = 79}, - [3559] = {.lex_state = 461, .external_lex_state = 36}, - [3560] = {.lex_state = 463, .external_lex_state = 78}, - [3561] = {.lex_state = 463, .external_lex_state = 78}, - [3562] = {.lex_state = 261, .external_lex_state = 71}, - [3563] = {.lex_state = 463, .external_lex_state = 78}, - [3564] = {.lex_state = 261, .external_lex_state = 71}, - [3565] = {.lex_state = 463, .external_lex_state = 78}, - [3566] = {.lex_state = 463, .external_lex_state = 78}, - [3567] = {.lex_state = 463, .external_lex_state = 78}, - [3568] = {.lex_state = 463, .external_lex_state = 78}, - [3569] = {.lex_state = 463, .external_lex_state = 80}, - [3570] = {.lex_state = 418, .external_lex_state = 79}, - [3571] = {.lex_state = 463, .external_lex_state = 78}, - [3572] = {.lex_state = 463, .external_lex_state = 78}, - [3573] = {.lex_state = 463, .external_lex_state = 80}, - [3574] = {.lex_state = 463, .external_lex_state = 78}, - [3575] = {.lex_state = 463, .external_lex_state = 78}, - [3576] = {.lex_state = 449, .external_lex_state = 77}, - [3577] = {.lex_state = 463, .external_lex_state = 78}, - [3578] = {.lex_state = 261, .external_lex_state = 71}, - [3579] = {.lex_state = 461, .external_lex_state = 36}, - [3580] = {.lex_state = 293, .external_lex_state = 72}, - [3581] = {.lex_state = 268, .external_lex_state = 65}, + [3531] = {.lex_state = 481, .external_lex_state = 74}, + [3532] = {.lex_state = 462, .external_lex_state = 73}, + [3533] = {.lex_state = 462, .external_lex_state = 73}, + [3534] = {.lex_state = 481, .external_lex_state = 74}, + [3535] = {.lex_state = 291, .external_lex_state = 75}, + [3536] = {.lex_state = 291, .external_lex_state = 75}, + [3537] = {.lex_state = 273, .external_lex_state = 25}, + [3538] = {.lex_state = 462, .external_lex_state = 73}, + [3539] = {.lex_state = 462, .external_lex_state = 73}, + [3540] = {.lex_state = 462, .external_lex_state = 73}, + [3541] = {.lex_state = 534, .external_lex_state = 64}, + [3542] = {.lex_state = 534, .external_lex_state = 64}, + [3543] = {.lex_state = 481, .external_lex_state = 74}, + [3544] = {.lex_state = 273, .external_lex_state = 25}, + [3545] = {.lex_state = 481, .external_lex_state = 74}, + [3546] = {.lex_state = 462, .external_lex_state = 73}, + [3547] = {.lex_state = 534, .external_lex_state = 64}, + [3548] = {.lex_state = 534, .external_lex_state = 64}, + [3549] = {.lex_state = 481, .external_lex_state = 74}, + [3550] = {.lex_state = 462, .external_lex_state = 73}, + [3551] = {.lex_state = 462, .external_lex_state = 73}, + [3552] = {.lex_state = 462, .external_lex_state = 73}, + [3553] = {.lex_state = 462, .external_lex_state = 73}, + [3554] = {.lex_state = 462, .external_lex_state = 73}, + [3555] = {.lex_state = 462, .external_lex_state = 73}, + [3556] = {.lex_state = 462, .external_lex_state = 73}, + [3557] = {.lex_state = 462, .external_lex_state = 73}, + [3558] = {.lex_state = 462, .external_lex_state = 73}, + [3559] = {.lex_state = 462, .external_lex_state = 73}, + [3560] = {.lex_state = 462, .external_lex_state = 73}, + [3561] = {.lex_state = 462, .external_lex_state = 73}, + [3562] = {.lex_state = 462, .external_lex_state = 73}, + [3563] = {.lex_state = 462, .external_lex_state = 73}, + [3564] = {.lex_state = 462, .external_lex_state = 73}, + [3565] = {.lex_state = 462, .external_lex_state = 73}, + [3566] = {.lex_state = 462, .external_lex_state = 73}, + [3567] = {.lex_state = 462, .external_lex_state = 73}, + [3568] = {.lex_state = 462, .external_lex_state = 73}, + [3569] = {.lex_state = 484, .external_lex_state = 76}, + [3570] = {.lex_state = 273, .external_lex_state = 25}, + [3571] = {.lex_state = 462, .external_lex_state = 73}, + [3572] = {.lex_state = 462, .external_lex_state = 73}, + [3573] = {.lex_state = 462, .external_lex_state = 73}, + [3574] = {.lex_state = 462, .external_lex_state = 73}, + [3575] = {.lex_state = 462, .external_lex_state = 73}, + [3576] = {.lex_state = 261, .external_lex_state = 71}, + [3577] = {.lex_state = 261, .external_lex_state = 71}, + [3578] = {.lex_state = 447, .external_lex_state = 77}, + [3579] = {.lex_state = 484, .external_lex_state = 76}, + [3580] = {.lex_state = 261, .external_lex_state = 71}, + [3581] = {.lex_state = 261, .external_lex_state = 71}, [3582] = {.lex_state = 463, .external_lex_state = 78}, - [3583] = {.lex_state = 461, .external_lex_state = 36}, + [3583] = {.lex_state = 461, .external_lex_state = 35}, [3584] = {.lex_state = 463, .external_lex_state = 78}, - [3585] = {.lex_state = 463, .external_lex_state = 78}, + [3585] = {.lex_state = 261, .external_lex_state = 71}, [3586] = {.lex_state = 463, .external_lex_state = 78}, [3587] = {.lex_state = 463, .external_lex_state = 78}, - [3588] = {.lex_state = 448, .external_lex_state = 81}, - [3589] = {.lex_state = 448, .external_lex_state = 81}, - [3590] = {.lex_state = 463, .external_lex_state = 78}, - [3591] = {.lex_state = 461, .external_lex_state = 36}, - [3592] = {.lex_state = 461, .external_lex_state = 36}, - [3593] = {.lex_state = 261, .external_lex_state = 71}, + [3588] = {.lex_state = 463, .external_lex_state = 78}, + [3589] = {.lex_state = 463, .external_lex_state = 78}, + [3590] = {.lex_state = 261, .external_lex_state = 71}, + [3591] = {.lex_state = 463, .external_lex_state = 79}, + [3592] = {.lex_state = 463, .external_lex_state = 78}, + [3593] = {.lex_state = 463, .external_lex_state = 78}, [3594] = {.lex_state = 463, .external_lex_state = 78}, [3595] = {.lex_state = 463, .external_lex_state = 78}, - [3596] = {.lex_state = 268, .external_lex_state = 65}, + [3596] = {.lex_state = 461, .external_lex_state = 35}, [3597] = {.lex_state = 463, .external_lex_state = 78}, [3598] = {.lex_state = 463, .external_lex_state = 78}, [3599] = {.lex_state = 463, .external_lex_state = 78}, - [3600] = {.lex_state = 293, .external_lex_state = 72}, - [3601] = {.lex_state = 463, .external_lex_state = 80}, - [3602] = {.lex_state = 261, .external_lex_state = 71}, + [3600] = {.lex_state = 461, .external_lex_state = 35}, + [3601] = {.lex_state = 463, .external_lex_state = 78}, + [3602] = {.lex_state = 484, .external_lex_state = 76}, [3603] = {.lex_state = 463, .external_lex_state = 78}, - [3604] = {.lex_state = 268, .external_lex_state = 65}, + [3604] = {.lex_state = 463, .external_lex_state = 78}, [3605] = {.lex_state = 463, .external_lex_state = 78}, [3606] = {.lex_state = 463, .external_lex_state = 78}, - [3607] = {.lex_state = 261, .external_lex_state = 71}, + [3607] = {.lex_state = 463, .external_lex_state = 78}, [3608] = {.lex_state = 463, .external_lex_state = 78}, - [3609] = {.lex_state = 463, .external_lex_state = 78}, - [3610] = {.lex_state = 449, .external_lex_state = 77}, + [3609] = {.lex_state = 447, .external_lex_state = 77}, + [3610] = {.lex_state = 463, .external_lex_state = 78}, [3611] = {.lex_state = 463, .external_lex_state = 78}, - [3612] = {.lex_state = 268, .external_lex_state = 65}, - [3613] = {.lex_state = 261, .external_lex_state = 71}, + [3612] = {.lex_state = 463, .external_lex_state = 78}, + [3613] = {.lex_state = 463, .external_lex_state = 78}, [3614] = {.lex_state = 463, .external_lex_state = 78}, - [3615] = {.lex_state = 463, .external_lex_state = 78}, - [3616] = {.lex_state = 482, .external_lex_state = 82}, - [3617] = {.lex_state = 463, .external_lex_state = 83}, - [3618] = {.lex_state = 463, .external_lex_state = 78}, + [3615] = {.lex_state = 463, .external_lex_state = 79}, + [3616] = {.lex_state = 463, .external_lex_state = 78}, + [3617] = {.lex_state = 463, .external_lex_state = 78}, + [3618] = {.lex_state = 261, .external_lex_state = 71}, [3619] = {.lex_state = 463, .external_lex_state = 78}, - [3620] = {.lex_state = 482, .external_lex_state = 82}, - [3621] = {.lex_state = 463, .external_lex_state = 78}, - [3622] = {.lex_state = 450, .external_lex_state = 81}, - [3623] = {.lex_state = 463, .external_lex_state = 83}, + [3620] = {.lex_state = 461, .external_lex_state = 35}, + [3621] = {.lex_state = 261, .external_lex_state = 71}, + [3622] = {.lex_state = 484, .external_lex_state = 76}, + [3623] = {.lex_state = 463, .external_lex_state = 79}, [3624] = {.lex_state = 463, .external_lex_state = 78}, - [3625] = {.lex_state = 482, .external_lex_state = 82}, - [3626] = {.lex_state = 463, .external_lex_state = 78}, + [3625] = {.lex_state = 461, .external_lex_state = 35}, + [3626] = {.lex_state = 484, .external_lex_state = 76}, [3627] = {.lex_state = 463, .external_lex_state = 78}, - [3628] = {.lex_state = 463, .external_lex_state = 78}, + [3628] = {.lex_state = 261, .external_lex_state = 71}, [3629] = {.lex_state = 463, .external_lex_state = 78}, - [3630] = {.lex_state = 463, .external_lex_state = 78}, - [3631] = {.lex_state = 463, .external_lex_state = 78}, - [3632] = {.lex_state = 450, .external_lex_state = 81}, - [3633] = {.lex_state = 482, .external_lex_state = 82}, - [3634] = {.lex_state = 450, .external_lex_state = 81}, - [3635] = {.lex_state = 463, .external_lex_state = 78}, - [3636] = {.lex_state = 463, .external_lex_state = 78}, + [3630] = {.lex_state = 261, .external_lex_state = 71}, + [3631] = {.lex_state = 265, .external_lex_state = 64}, + [3632] = {.lex_state = 461, .external_lex_state = 35}, + [3633] = {.lex_state = 463, .external_lex_state = 78}, + [3634] = {.lex_state = 461, .external_lex_state = 35}, + [3635] = {.lex_state = 261, .external_lex_state = 71}, + [3636] = {.lex_state = 265, .external_lex_state = 64}, [3637] = {.lex_state = 463, .external_lex_state = 78}, - [3638] = {.lex_state = 463, .external_lex_state = 78}, + [3638] = {.lex_state = 449, .external_lex_state = 77}, [3639] = {.lex_state = 463, .external_lex_state = 78}, [3640] = {.lex_state = 463, .external_lex_state = 78}, [3641] = {.lex_state = 463, .external_lex_state = 78}, - [3642] = {.lex_state = 484, .external_lex_state = 84}, - [3643] = {.lex_state = 463, .external_lex_state = 78}, - [3644] = {.lex_state = 482, .external_lex_state = 82}, - [3645] = {.lex_state = 463, .external_lex_state = 78}, - [3646] = {.lex_state = 463, .external_lex_state = 83}, - [3647] = {.lex_state = 482, .external_lex_state = 82}, - [3648] = {.lex_state = 463, .external_lex_state = 78}, - [3649] = {.lex_state = 463, .external_lex_state = 78}, - [3650] = {.lex_state = 482, .external_lex_state = 82}, + [3642] = {.lex_state = 463, .external_lex_state = 78}, + [3643] = {.lex_state = 461, .external_lex_state = 35}, + [3644] = {.lex_state = 448, .external_lex_state = 80}, + [3645] = {.lex_state = 448, .external_lex_state = 80}, + [3646] = {.lex_state = 463, .external_lex_state = 78}, + [3647] = {.lex_state = 293, .external_lex_state = 75}, + [3648] = {.lex_state = 418, .external_lex_state = 81}, + [3649] = {.lex_state = 418, .external_lex_state = 81}, + [3650] = {.lex_state = 463, .external_lex_state = 82}, [3651] = {.lex_state = 463, .external_lex_state = 78}, - [3652] = {.lex_state = 463, .external_lex_state = 78}, - [3653] = {.lex_state = 463, .external_lex_state = 78}, + [3652] = {.lex_state = 482, .external_lex_state = 83}, + [3653] = {.lex_state = 463, .external_lex_state = 82}, [3654] = {.lex_state = 463, .external_lex_state = 78}, - [3655] = {.lex_state = 463, .external_lex_state = 78}, - [3656] = {.lex_state = 482, .external_lex_state = 82}, + [3655] = {.lex_state = 463, .external_lex_state = 82}, + [3656] = {.lex_state = 463, .external_lex_state = 78}, [3657] = {.lex_state = 463, .external_lex_state = 78}, [3658] = {.lex_state = 463, .external_lex_state = 78}, [3659] = {.lex_state = 463, .external_lex_state = 78}, [3660] = {.lex_state = 463, .external_lex_state = 78}, [3661] = {.lex_state = 463, .external_lex_state = 78}, - [3662] = {.lex_state = 482, .external_lex_state = 82}, - [3663] = {.lex_state = 463, .external_lex_state = 78}, + [3662] = {.lex_state = 482, .external_lex_state = 83}, + [3663] = {.lex_state = 482, .external_lex_state = 83}, [3664] = {.lex_state = 463, .external_lex_state = 78}, - [3665] = {.lex_state = 463, .external_lex_state = 78}, - [3666] = {.lex_state = 463, .external_lex_state = 83}, + [3665] = {.lex_state = 461, .external_lex_state = 35}, + [3666] = {.lex_state = 463, .external_lex_state = 82}, [3667] = {.lex_state = 463, .external_lex_state = 78}, - [3668] = {.lex_state = 463, .external_lex_state = 83}, + [3668] = {.lex_state = 463, .external_lex_state = 78}, [3669] = {.lex_state = 463, .external_lex_state = 78}, [3670] = {.lex_state = 463, .external_lex_state = 78}, [3671] = {.lex_state = 463, .external_lex_state = 78}, - [3672] = {.lex_state = 463, .external_lex_state = 78}, - [3673] = {.lex_state = 463, .external_lex_state = 78}, - [3674] = {.lex_state = 463, .external_lex_state = 78}, - [3675] = {.lex_state = 450, .external_lex_state = 81}, + [3672] = {.lex_state = 461, .external_lex_state = 35}, + [3673] = {.lex_state = 293, .external_lex_state = 75}, + [3674] = {.lex_state = 482, .external_lex_state = 83}, + [3675] = {.lex_state = 463, .external_lex_state = 78}, [3676] = {.lex_state = 463, .external_lex_state = 78}, [3677] = {.lex_state = 463, .external_lex_state = 78}, - [3678] = {.lex_state = 482, .external_lex_state = 82}, - [3679] = {.lex_state = 482, .external_lex_state = 82}, + [3678] = {.lex_state = 268, .external_lex_state = 64}, + [3679] = {.lex_state = 463, .external_lex_state = 78}, [3680] = {.lex_state = 463, .external_lex_state = 78}, - [3681] = {.lex_state = 463, .external_lex_state = 78}, + [3681] = {.lex_state = 461, .external_lex_state = 35}, [3682] = {.lex_state = 463, .external_lex_state = 78}, - [3683] = {.lex_state = 463, .external_lex_state = 78}, + [3683] = {.lex_state = 463, .external_lex_state = 82}, [3684] = {.lex_state = 463, .external_lex_state = 78}, [3685] = {.lex_state = 463, .external_lex_state = 78}, - [3686] = {.lex_state = 463, .external_lex_state = 78}, - [3687] = {.lex_state = 482, .external_lex_state = 82}, - [3688] = {.lex_state = 463, .external_lex_state = 83}, + [3686] = {.lex_state = 463, .external_lex_state = 82}, + [3687] = {.lex_state = 463, .external_lex_state = 78}, + [3688] = {.lex_state = 268, .external_lex_state = 64}, [3689] = {.lex_state = 463, .external_lex_state = 78}, [3690] = {.lex_state = 463, .external_lex_state = 78}, [3691] = {.lex_state = 463, .external_lex_state = 78}, [3692] = {.lex_state = 463, .external_lex_state = 78}, [3693] = {.lex_state = 463, .external_lex_state = 78}, [3694] = {.lex_state = 463, .external_lex_state = 78}, - [3695] = {.lex_state = 463, .external_lex_state = 78}, - [3696] = {.lex_state = 463, .external_lex_state = 83}, - [3697] = {.lex_state = 463, .external_lex_state = 78}, - [3698] = {.lex_state = 481, .external_lex_state = 85}, - [3699] = {.lex_state = 481, .external_lex_state = 85}, - [3700] = {.lex_state = 481, .external_lex_state = 85}, - [3701] = {.lex_state = 481, .external_lex_state = 85}, - [3702] = {.lex_state = 481, .external_lex_state = 85}, - [3703] = {.lex_state = 481, .external_lex_state = 85}, - [3704] = {.lex_state = 481, .external_lex_state = 85}, + [3695] = {.lex_state = 482, .external_lex_state = 83}, + [3696] = {.lex_state = 482, .external_lex_state = 83}, + [3697] = {.lex_state = 482, .external_lex_state = 83}, + [3698] = {.lex_state = 482, .external_lex_state = 83}, + [3699] = {.lex_state = 463, .external_lex_state = 78}, + [3700] = {.lex_state = 463, .external_lex_state = 78}, + [3701] = {.lex_state = 463, .external_lex_state = 78}, + [3702] = {.lex_state = 463, .external_lex_state = 78}, + [3703] = {.lex_state = 463, .external_lex_state = 78}, + [3704] = {.lex_state = 463, .external_lex_state = 78}, [3705] = {.lex_state = 463, .external_lex_state = 78}, - [3706] = {.lex_state = 481, .external_lex_state = 85}, - [3707] = {.lex_state = 481, .external_lex_state = 85}, - [3708] = {.lex_state = 454, .external_lex_state = 86}, - [3709] = {.lex_state = 454, .external_lex_state = 86}, - [3710] = {.lex_state = 454, .external_lex_state = 86}, - [3711] = {.lex_state = 454, .external_lex_state = 86}, - [3712] = {.lex_state = 454, .external_lex_state = 86}, - [3713] = {.lex_state = 454, .external_lex_state = 86}, - [3714] = {.lex_state = 454, .external_lex_state = 86}, - [3715] = {.lex_state = 481, .external_lex_state = 85}, - [3716] = {.lex_state = 454, .external_lex_state = 86}, - [3717] = {.lex_state = 454, .external_lex_state = 86}, - [3718] = {.lex_state = 454, .external_lex_state = 86}, - [3719] = {.lex_state = 481, .external_lex_state = 85}, - [3720] = {.lex_state = 481, .external_lex_state = 85}, - [3721] = {.lex_state = 454, .external_lex_state = 86}, - [3722] = {.lex_state = 454, .external_lex_state = 86}, - [3723] = {.lex_state = 454, .external_lex_state = 86}, - [3724] = {.lex_state = 481, .external_lex_state = 85}, - [3725] = {.lex_state = 481, .external_lex_state = 85}, - [3726] = {.lex_state = 454, .external_lex_state = 86}, - [3727] = {.lex_state = 481, .external_lex_state = 85}, - [3728] = {.lex_state = 454, .external_lex_state = 86}, - [3729] = {.lex_state = 481, .external_lex_state = 85}, - [3730] = {.lex_state = 481, .external_lex_state = 85}, - [3731] = {.lex_state = 481, .external_lex_state = 85}, - [3732] = {.lex_state = 481, .external_lex_state = 85}, - [3733] = {.lex_state = 481, .external_lex_state = 85}, - [3734] = {.lex_state = 481, .external_lex_state = 85}, - [3735] = {.lex_state = 481, .external_lex_state = 85}, - [3736] = {.lex_state = 481, .external_lex_state = 85}, - [3737] = {.lex_state = 481, .external_lex_state = 85}, - [3738] = {.lex_state = 481, .external_lex_state = 85}, - [3739] = {.lex_state = 481, .external_lex_state = 85}, - [3740] = {.lex_state = 481, .external_lex_state = 85}, - [3741] = {.lex_state = 481, .external_lex_state = 85}, - [3742] = {.lex_state = 481, .external_lex_state = 85}, - [3743] = {.lex_state = 454, .external_lex_state = 86}, - [3744] = {.lex_state = 481, .external_lex_state = 85}, - [3745] = {.lex_state = 481, .external_lex_state = 85}, - [3746] = {.lex_state = 454, .external_lex_state = 86}, - [3747] = {.lex_state = 481, .external_lex_state = 85}, - [3748] = {.lex_state = 454, .external_lex_state = 86}, - [3749] = {.lex_state = 481, .external_lex_state = 85}, - [3750] = {.lex_state = 481, .external_lex_state = 85}, - [3751] = {.lex_state = 454, .external_lex_state = 86}, - [3752] = {.lex_state = 481, .external_lex_state = 85}, - [3753] = {.lex_state = 454, .external_lex_state = 86}, - [3754] = {.lex_state = 454, .external_lex_state = 86}, - [3755] = {.lex_state = 454, .external_lex_state = 86}, - [3756] = {.lex_state = 454, .external_lex_state = 86}, - [3757] = {.lex_state = 481, .external_lex_state = 85}, - [3758] = {.lex_state = 481, .external_lex_state = 85}, - [3759] = {.lex_state = 454, .external_lex_state = 86}, - [3760] = {.lex_state = 481, .external_lex_state = 85}, - [3761] = {.lex_state = 481, .external_lex_state = 85}, - [3762] = {.lex_state = 481, .external_lex_state = 85}, - [3763] = {.lex_state = 481, .external_lex_state = 85}, - [3764] = {.lex_state = 454, .external_lex_state = 86}, - [3765] = {.lex_state = 481, .external_lex_state = 85}, - [3766] = {.lex_state = 481, .external_lex_state = 85}, - [3767] = {.lex_state = 481, .external_lex_state = 85}, - [3768] = {.lex_state = 481, .external_lex_state = 85}, - [3769] = {.lex_state = 481, .external_lex_state = 85}, - [3770] = {.lex_state = 481, .external_lex_state = 85}, - [3771] = {.lex_state = 454, .external_lex_state = 86}, - [3772] = {.lex_state = 454, .external_lex_state = 86}, - [3773] = {.lex_state = 454, .external_lex_state = 86}, - [3774] = {.lex_state = 481, .external_lex_state = 85}, - [3775] = {.lex_state = 454, .external_lex_state = 86}, - [3776] = {.lex_state = 481, .external_lex_state = 85}, - [3777] = {.lex_state = 481, .external_lex_state = 85}, - [3778] = {.lex_state = 481, .external_lex_state = 85}, - [3779] = {.lex_state = 481, .external_lex_state = 85}, - [3780] = {.lex_state = 481, .external_lex_state = 85}, - [3781] = {.lex_state = 454, .external_lex_state = 86}, - [3782] = {.lex_state = 481, .external_lex_state = 85}, - [3783] = {.lex_state = 481, .external_lex_state = 85}, - [3784] = {.lex_state = 481, .external_lex_state = 85}, - [3785] = {.lex_state = 481, .external_lex_state = 85}, - [3786] = {.lex_state = 481, .external_lex_state = 85}, - [3787] = {.lex_state = 454, .external_lex_state = 86}, - [3788] = {.lex_state = 454, .external_lex_state = 86}, - [3789] = {.lex_state = 454, .external_lex_state = 86}, - [3790] = {.lex_state = 481, .external_lex_state = 85}, - [3791] = {.lex_state = 481, .external_lex_state = 85}, - [3792] = {.lex_state = 481, .external_lex_state = 85}, - [3793] = {.lex_state = 481, .external_lex_state = 85}, + [3706] = {.lex_state = 463, .external_lex_state = 78}, + [3707] = {.lex_state = 463, .external_lex_state = 78}, + [3708] = {.lex_state = 463, .external_lex_state = 78}, + [3709] = {.lex_state = 463, .external_lex_state = 78}, + [3710] = {.lex_state = 463, .external_lex_state = 78}, + [3711] = {.lex_state = 268, .external_lex_state = 64}, + [3712] = {.lex_state = 463, .external_lex_state = 78}, + [3713] = {.lex_state = 461, .external_lex_state = 35}, + [3714] = {.lex_state = 463, .external_lex_state = 78}, + [3715] = {.lex_state = 463, .external_lex_state = 78}, + [3716] = {.lex_state = 449, .external_lex_state = 77}, + [3717] = {.lex_state = 482, .external_lex_state = 83}, + [3718] = {.lex_state = 482, .external_lex_state = 83}, + [3719] = {.lex_state = 463, .external_lex_state = 78}, + [3720] = {.lex_state = 463, .external_lex_state = 78}, + [3721] = {.lex_state = 463, .external_lex_state = 82}, + [3722] = {.lex_state = 463, .external_lex_state = 78}, + [3723] = {.lex_state = 463, .external_lex_state = 78}, + [3724] = {.lex_state = 461, .external_lex_state = 35}, + [3725] = {.lex_state = 463, .external_lex_state = 78}, + [3726] = {.lex_state = 463, .external_lex_state = 78}, + [3727] = {.lex_state = 461, .external_lex_state = 35}, + [3728] = {.lex_state = 463, .external_lex_state = 78}, + [3729] = {.lex_state = 463, .external_lex_state = 78}, + [3730] = {.lex_state = 482, .external_lex_state = 83}, + [3731] = {.lex_state = 268, .external_lex_state = 64}, + [3732] = {.lex_state = 463, .external_lex_state = 78}, + [3733] = {.lex_state = 463, .external_lex_state = 78}, + [3734] = {.lex_state = 482, .external_lex_state = 83}, + [3735] = {.lex_state = 463, .external_lex_state = 78}, + [3736] = {.lex_state = 461, .external_lex_state = 35}, + [3737] = {.lex_state = 461, .external_lex_state = 35}, + [3738] = {.lex_state = 463, .external_lex_state = 78}, + [3739] = {.lex_state = 481, .external_lex_state = 84}, + [3740] = {.lex_state = 481, .external_lex_state = 84}, + [3741] = {.lex_state = 463, .external_lex_state = 78}, + [3742] = {.lex_state = 481, .external_lex_state = 84}, + [3743] = {.lex_state = 463, .external_lex_state = 78}, + [3744] = {.lex_state = 463, .external_lex_state = 78}, + [3745] = {.lex_state = 481, .external_lex_state = 84}, + [3746] = {.lex_state = 481, .external_lex_state = 84}, + [3747] = {.lex_state = 481, .external_lex_state = 84}, + [3748] = {.lex_state = 481, .external_lex_state = 84}, + [3749] = {.lex_state = 481, .external_lex_state = 84}, + [3750] = {.lex_state = 481, .external_lex_state = 84}, + [3751] = {.lex_state = 481, .external_lex_state = 84}, + [3752] = {.lex_state = 481, .external_lex_state = 84}, + [3753] = {.lex_state = 463, .external_lex_state = 78}, + [3754] = {.lex_state = 463, .external_lex_state = 78}, + [3755] = {.lex_state = 463, .external_lex_state = 78}, + [3756] = {.lex_state = 481, .external_lex_state = 84}, + [3757] = {.lex_state = 481, .external_lex_state = 84}, + [3758] = {.lex_state = 481, .external_lex_state = 84}, + [3759] = {.lex_state = 481, .external_lex_state = 84}, + [3760] = {.lex_state = 463, .external_lex_state = 78}, + [3761] = {.lex_state = 481, .external_lex_state = 84}, + [3762] = {.lex_state = 463, .external_lex_state = 78}, + [3763] = {.lex_state = 481, .external_lex_state = 84}, + [3764] = {.lex_state = 481, .external_lex_state = 84}, + [3765] = {.lex_state = 481, .external_lex_state = 84}, + [3766] = {.lex_state = 481, .external_lex_state = 84}, + [3767] = {.lex_state = 481, .external_lex_state = 84}, + [3768] = {.lex_state = 481, .external_lex_state = 84}, + [3769] = {.lex_state = 463, .external_lex_state = 78}, + [3770] = {.lex_state = 481, .external_lex_state = 84}, + [3771] = {.lex_state = 463, .external_lex_state = 78}, + [3772] = {.lex_state = 481, .external_lex_state = 84}, + [3773] = {.lex_state = 481, .external_lex_state = 84}, + [3774] = {.lex_state = 481, .external_lex_state = 84}, + [3775] = {.lex_state = 481, .external_lex_state = 84}, + [3776] = {.lex_state = 463, .external_lex_state = 78}, + [3777] = {.lex_state = 463, .external_lex_state = 78}, + [3778] = {.lex_state = 463, .external_lex_state = 78}, + [3779] = {.lex_state = 481, .external_lex_state = 84}, + [3780] = {.lex_state = 481, .external_lex_state = 84}, + [3781] = {.lex_state = 481, .external_lex_state = 84}, + [3782] = {.lex_state = 481, .external_lex_state = 84}, + [3783] = {.lex_state = 463, .external_lex_state = 78}, + [3784] = {.lex_state = 481, .external_lex_state = 84}, + [3785] = {.lex_state = 463, .external_lex_state = 78}, + [3786] = {.lex_state = 463, .external_lex_state = 78}, + [3787] = {.lex_state = 481, .external_lex_state = 84}, + [3788] = {.lex_state = 481, .external_lex_state = 84}, + [3789] = {.lex_state = 481, .external_lex_state = 84}, + [3790] = {.lex_state = 463, .external_lex_state = 78}, + [3791] = {.lex_state = 463, .external_lex_state = 78}, + [3792] = {.lex_state = 481, .external_lex_state = 84}, + [3793] = {.lex_state = 481, .external_lex_state = 84}, [3794] = {.lex_state = 463, .external_lex_state = 78}, [3795] = {.lex_state = 463, .external_lex_state = 78}, - [3796] = {.lex_state = 481, .external_lex_state = 85}, - [3797] = {.lex_state = 481, .external_lex_state = 85}, - [3798] = {.lex_state = 454, .external_lex_state = 86}, - [3799] = {.lex_state = 454, .external_lex_state = 86}, - [3800] = {.lex_state = 454, .external_lex_state = 86}, - [3801] = {.lex_state = 454, .external_lex_state = 86}, - [3802] = {.lex_state = 454, .external_lex_state = 86}, - [3803] = {.lex_state = 454, .external_lex_state = 86}, - [3804] = {.lex_state = 454, .external_lex_state = 86}, - [3805] = {.lex_state = 454, .external_lex_state = 86}, - [3806] = {.lex_state = 454, .external_lex_state = 86}, - [3807] = {.lex_state = 454, .external_lex_state = 86}, - [3808] = {.lex_state = 454, .external_lex_state = 86}, - [3809] = {.lex_state = 454, .external_lex_state = 86}, - [3810] = {.lex_state = 454, .external_lex_state = 86}, - [3811] = {.lex_state = 481, .external_lex_state = 85}, - [3812] = {.lex_state = 481, .external_lex_state = 85}, - [3813] = {.lex_state = 481, .external_lex_state = 85}, - [3814] = {.lex_state = 481, .external_lex_state = 85}, - [3815] = {.lex_state = 481, .external_lex_state = 85}, - [3816] = {.lex_state = 481, .external_lex_state = 85}, - [3817] = {.lex_state = 481, .external_lex_state = 85}, - [3818] = {.lex_state = 481, .external_lex_state = 85}, - [3819] = {.lex_state = 481, .external_lex_state = 85}, - [3820] = {.lex_state = 481, .external_lex_state = 85}, - [3821] = {.lex_state = 481, .external_lex_state = 85}, - [3822] = {.lex_state = 481, .external_lex_state = 85}, - [3823] = {.lex_state = 481, .external_lex_state = 85}, - [3824] = {.lex_state = 481, .external_lex_state = 85}, - [3825] = {.lex_state = 481, .external_lex_state = 85}, - [3826] = {.lex_state = 481, .external_lex_state = 85}, - [3827] = {.lex_state = 481, .external_lex_state = 85}, - [3828] = {.lex_state = 481, .external_lex_state = 85}, - [3829] = {.lex_state = 481, .external_lex_state = 85}, - [3830] = {.lex_state = 481, .external_lex_state = 85}, - [3831] = {.lex_state = 481, .external_lex_state = 85}, - [3832] = {.lex_state = 481, .external_lex_state = 85}, - [3833] = {.lex_state = 481, .external_lex_state = 85}, - [3834] = {.lex_state = 481, .external_lex_state = 85}, - [3835] = {.lex_state = 481, .external_lex_state = 85}, - [3836] = {.lex_state = 481, .external_lex_state = 85}, - [3837] = {.lex_state = 481, .external_lex_state = 85}, - [3838] = {.lex_state = 481, .external_lex_state = 85}, - [3839] = {.lex_state = 481, .external_lex_state = 85}, - [3840] = {.lex_state = 481, .external_lex_state = 85}, - [3841] = {.lex_state = 463, .external_lex_state = 78}, - [3842] = {.lex_state = 463, .external_lex_state = 78}, - [3843] = {.lex_state = 481, .external_lex_state = 85}, - [3844] = {.lex_state = 481, .external_lex_state = 85}, - [3845] = {.lex_state = 481, .external_lex_state = 85}, - [3846] = {.lex_state = 481, .external_lex_state = 85}, - [3847] = {.lex_state = 481, .external_lex_state = 85}, - [3848] = {.lex_state = 481, .external_lex_state = 85}, - [3849] = {.lex_state = 481, .external_lex_state = 85}, - [3850] = {.lex_state = 481, .external_lex_state = 85}, - [3851] = {.lex_state = 481, .external_lex_state = 85}, - [3852] = {.lex_state = 481, .external_lex_state = 85}, - [3853] = {.lex_state = 481, .external_lex_state = 85}, - [3854] = {.lex_state = 481, .external_lex_state = 85}, - [3855] = {.lex_state = 481, .external_lex_state = 85}, - [3856] = {.lex_state = 481, .external_lex_state = 85}, - [3857] = {.lex_state = 481, .external_lex_state = 85}, - [3858] = {.lex_state = 481, .external_lex_state = 85}, - [3859] = {.lex_state = 481, .external_lex_state = 85}, - [3860] = {.lex_state = 481, .external_lex_state = 85}, - [3861] = {.lex_state = 481, .external_lex_state = 85}, - [3862] = {.lex_state = 481, .external_lex_state = 85}, - [3863] = {.lex_state = 481, .external_lex_state = 85}, - [3864] = {.lex_state = 463, .external_lex_state = 78}, - [3865] = {.lex_state = 463, .external_lex_state = 78}, - [3866] = {.lex_state = 481, .external_lex_state = 85}, - [3867] = {.lex_state = 481, .external_lex_state = 85}, - [3868] = {.lex_state = 481, .external_lex_state = 85}, - [3869] = {.lex_state = 481, .external_lex_state = 85}, - [3870] = {.lex_state = 481, .external_lex_state = 85}, - [3871] = {.lex_state = 481, .external_lex_state = 85}, - [3872] = {.lex_state = 481, .external_lex_state = 85}, - [3873] = {.lex_state = 481, .external_lex_state = 85}, - [3874] = {.lex_state = 481, .external_lex_state = 85}, - [3875] = {.lex_state = 481, .external_lex_state = 85}, - [3876] = {.lex_state = 463, .external_lex_state = 78}, - [3877] = {.lex_state = 463, .external_lex_state = 78}, - [3878] = {.lex_state = 481, .external_lex_state = 85}, - [3879] = {.lex_state = 481, .external_lex_state = 85}, - [3880] = {.lex_state = 481, .external_lex_state = 85}, - [3881] = {.lex_state = 481, .external_lex_state = 85}, - [3882] = {.lex_state = 481, .external_lex_state = 85}, - [3883] = {.lex_state = 481, .external_lex_state = 85}, - [3884] = {.lex_state = 481, .external_lex_state = 85}, - [3885] = {.lex_state = 481, .external_lex_state = 85}, - [3886] = {.lex_state = 463, .external_lex_state = 78}, - [3887] = {.lex_state = 463, .external_lex_state = 78}, - [3888] = {.lex_state = 454, .external_lex_state = 86}, - [3889] = {.lex_state = 481, .external_lex_state = 85}, + [3796] = {.lex_state = 463, .external_lex_state = 78}, + [3797] = {.lex_state = 463, .external_lex_state = 78}, + [3798] = {.lex_state = 463, .external_lex_state = 78}, + [3799] = {.lex_state = 481, .external_lex_state = 84}, + [3800] = {.lex_state = 463, .external_lex_state = 78}, + [3801] = {.lex_state = 463, .external_lex_state = 78}, + [3802] = {.lex_state = 463, .external_lex_state = 78}, + [3803] = {.lex_state = 481, .external_lex_state = 84}, + [3804] = {.lex_state = 463, .external_lex_state = 78}, + [3805] = {.lex_state = 481, .external_lex_state = 84}, + [3806] = {.lex_state = 463, .external_lex_state = 78}, + [3807] = {.lex_state = 481, .external_lex_state = 84}, + [3808] = {.lex_state = 481, .external_lex_state = 84}, + [3809] = {.lex_state = 481, .external_lex_state = 84}, + [3810] = {.lex_state = 463, .external_lex_state = 78}, + [3811] = {.lex_state = 481, .external_lex_state = 84}, + [3812] = {.lex_state = 481, .external_lex_state = 84}, + [3813] = {.lex_state = 463, .external_lex_state = 78}, + [3814] = {.lex_state = 481, .external_lex_state = 84}, + [3815] = {.lex_state = 463, .external_lex_state = 78}, + [3816] = {.lex_state = 481, .external_lex_state = 84}, + [3817] = {.lex_state = 481, .external_lex_state = 84}, + [3818] = {.lex_state = 481, .external_lex_state = 84}, + [3819] = {.lex_state = 481, .external_lex_state = 84}, + [3820] = {.lex_state = 481, .external_lex_state = 84}, + [3821] = {.lex_state = 481, .external_lex_state = 84}, + [3822] = {.lex_state = 481, .external_lex_state = 84}, + [3823] = {.lex_state = 481, .external_lex_state = 84}, + [3824] = {.lex_state = 481, .external_lex_state = 84}, + [3825] = {.lex_state = 481, .external_lex_state = 84}, + [3826] = {.lex_state = 481, .external_lex_state = 84}, + [3827] = {.lex_state = 481, .external_lex_state = 84}, + [3828] = {.lex_state = 481, .external_lex_state = 84}, + [3829] = {.lex_state = 481, .external_lex_state = 84}, + [3830] = {.lex_state = 481, .external_lex_state = 84}, + [3831] = {.lex_state = 481, .external_lex_state = 84}, + [3832] = {.lex_state = 481, .external_lex_state = 84}, + [3833] = {.lex_state = 481, .external_lex_state = 84}, + [3834] = {.lex_state = 481, .external_lex_state = 84}, + [3835] = {.lex_state = 481, .external_lex_state = 84}, + [3836] = {.lex_state = 481, .external_lex_state = 84}, + [3837] = {.lex_state = 463, .external_lex_state = 78}, + [3838] = {.lex_state = 481, .external_lex_state = 84}, + [3839] = {.lex_state = 481, .external_lex_state = 84}, + [3840] = {.lex_state = 463, .external_lex_state = 78}, + [3841] = {.lex_state = 481, .external_lex_state = 84}, + [3842] = {.lex_state = 481, .external_lex_state = 84}, + [3843] = {.lex_state = 481, .external_lex_state = 84}, + [3844] = {.lex_state = 481, .external_lex_state = 84}, + [3845] = {.lex_state = 463, .external_lex_state = 78}, + [3846] = {.lex_state = 481, .external_lex_state = 84}, + [3847] = {.lex_state = 481, .external_lex_state = 84}, + [3848] = {.lex_state = 481, .external_lex_state = 84}, + [3849] = {.lex_state = 463, .external_lex_state = 78}, + [3850] = {.lex_state = 481, .external_lex_state = 84}, + [3851] = {.lex_state = 481, .external_lex_state = 84}, + [3852] = {.lex_state = 481, .external_lex_state = 84}, + [3853] = {.lex_state = 481, .external_lex_state = 84}, + [3854] = {.lex_state = 481, .external_lex_state = 84}, + [3855] = {.lex_state = 481, .external_lex_state = 84}, + [3856] = {.lex_state = 481, .external_lex_state = 84}, + [3857] = {.lex_state = 481, .external_lex_state = 84}, + [3858] = {.lex_state = 481, .external_lex_state = 84}, + [3859] = {.lex_state = 481, .external_lex_state = 84}, + [3860] = {.lex_state = 481, .external_lex_state = 84}, + [3861] = {.lex_state = 481, .external_lex_state = 84}, + [3862] = {.lex_state = 481, .external_lex_state = 84}, + [3863] = {.lex_state = 481, .external_lex_state = 84}, + [3864] = {.lex_state = 481, .external_lex_state = 84}, + [3865] = {.lex_state = 481, .external_lex_state = 84}, + [3866] = {.lex_state = 481, .external_lex_state = 84}, + [3867] = {.lex_state = 481, .external_lex_state = 84}, + [3868] = {.lex_state = 481, .external_lex_state = 84}, + [3869] = {.lex_state = 481, .external_lex_state = 84}, + [3870] = {.lex_state = 481, .external_lex_state = 84}, + [3871] = {.lex_state = 481, .external_lex_state = 84}, + [3872] = {.lex_state = 481, .external_lex_state = 84}, + [3873] = {.lex_state = 481, .external_lex_state = 84}, + [3874] = {.lex_state = 481, .external_lex_state = 84}, + [3875] = {.lex_state = 481, .external_lex_state = 84}, + [3876] = {.lex_state = 481, .external_lex_state = 84}, + [3877] = {.lex_state = 481, .external_lex_state = 84}, + [3878] = {.lex_state = 481, .external_lex_state = 84}, + [3879] = {.lex_state = 463, .external_lex_state = 78}, + [3880] = {.lex_state = 484, .external_lex_state = 85}, + [3881] = {.lex_state = 481, .external_lex_state = 84}, + [3882] = {.lex_state = 481, .external_lex_state = 84}, + [3883] = {.lex_state = 481, .external_lex_state = 84}, + [3884] = {.lex_state = 463, .external_lex_state = 78}, + [3885] = {.lex_state = 481, .external_lex_state = 84}, + [3886] = {.lex_state = 481, .external_lex_state = 84}, + [3887] = {.lex_state = 481, .external_lex_state = 84}, + [3888] = {.lex_state = 481, .external_lex_state = 84}, + [3889] = {.lex_state = 463, .external_lex_state = 78}, [3890] = {.lex_state = 463, .external_lex_state = 78}, [3891] = {.lex_state = 463, .external_lex_state = 78}, - [3892] = {.lex_state = 481, .external_lex_state = 85}, - [3893] = {.lex_state = 481, .external_lex_state = 85}, - [3894] = {.lex_state = 481, .external_lex_state = 85}, - [3895] = {.lex_state = 463, .external_lex_state = 78}, - [3896] = {.lex_state = 463, .external_lex_state = 78}, - [3897] = {.lex_state = 481, .external_lex_state = 85}, - [3898] = {.lex_state = 463, .external_lex_state = 78}, - [3899] = {.lex_state = 463, .external_lex_state = 78}, - [3900] = {.lex_state = 481, .external_lex_state = 85}, + [3892] = {.lex_state = 481, .external_lex_state = 84}, + [3893] = {.lex_state = 481, .external_lex_state = 84}, + [3894] = {.lex_state = 481, .external_lex_state = 84}, + [3895] = {.lex_state = 481, .external_lex_state = 84}, + [3896] = {.lex_state = 481, .external_lex_state = 84}, + [3897] = {.lex_state = 481, .external_lex_state = 84}, + [3898] = {.lex_state = 481, .external_lex_state = 84}, + [3899] = {.lex_state = 481, .external_lex_state = 84}, + [3900] = {.lex_state = 481, .external_lex_state = 84}, [3901] = {.lex_state = 463, .external_lex_state = 78}, [3902] = {.lex_state = 463, .external_lex_state = 78}, - [3903] = {.lex_state = 481, .external_lex_state = 85}, + [3903] = {.lex_state = 481, .external_lex_state = 84}, [3904] = {.lex_state = 463, .external_lex_state = 78}, - [3905] = {.lex_state = 463, .external_lex_state = 78}, - [3906] = {.lex_state = 481, .external_lex_state = 85}, - [3907] = {.lex_state = 481, .external_lex_state = 85}, - [3908] = {.lex_state = 481, .external_lex_state = 85}, - [3909] = {.lex_state = 463, .external_lex_state = 78}, - [3910] = {.lex_state = 463, .external_lex_state = 78}, - [3911] = {.lex_state = 481, .external_lex_state = 85}, - [3912] = {.lex_state = 463, .external_lex_state = 78}, - [3913] = {.lex_state = 481, .external_lex_state = 85}, - [3914] = {.lex_state = 463, .external_lex_state = 78}, - [3915] = {.lex_state = 481, .external_lex_state = 85}, - [3916] = {.lex_state = 463, .external_lex_state = 78}, - [3917] = {.lex_state = 463, .external_lex_state = 78}, - [3918] = {.lex_state = 481, .external_lex_state = 85}, - [3919] = {.lex_state = 463, .external_lex_state = 78}, - [3920] = {.lex_state = 463, .external_lex_state = 78}, - [3921] = {.lex_state = 481, .external_lex_state = 85}, - [3922] = {.lex_state = 463, .external_lex_state = 78}, - [3923] = {.lex_state = 463, .external_lex_state = 78}, - [3924] = {.lex_state = 481, .external_lex_state = 85}, + [3905] = {.lex_state = 481, .external_lex_state = 84}, + [3906] = {.lex_state = 463, .external_lex_state = 78}, + [3907] = {.lex_state = 481, .external_lex_state = 84}, + [3908] = {.lex_state = 481, .external_lex_state = 84}, + [3909] = {.lex_state = 481, .external_lex_state = 84}, + [3910] = {.lex_state = 481, .external_lex_state = 84}, + [3911] = {.lex_state = 481, .external_lex_state = 84}, + [3912] = {.lex_state = 481, .external_lex_state = 84}, + [3913] = {.lex_state = 481, .external_lex_state = 84}, + [3914] = {.lex_state = 481, .external_lex_state = 84}, + [3915] = {.lex_state = 481, .external_lex_state = 84}, + [3916] = {.lex_state = 481, .external_lex_state = 84}, + [3917] = {.lex_state = 481, .external_lex_state = 84}, + [3918] = {.lex_state = 481, .external_lex_state = 84}, + [3919] = {.lex_state = 481, .external_lex_state = 84}, + [3920] = {.lex_state = 481, .external_lex_state = 84}, + [3921] = {.lex_state = 481, .external_lex_state = 84}, + [3922] = {.lex_state = 481, .external_lex_state = 84}, + [3923] = {.lex_state = 481, .external_lex_state = 84}, + [3924] = {.lex_state = 481, .external_lex_state = 84}, [3925] = {.lex_state = 463, .external_lex_state = 78}, - [3926] = {.lex_state = 481, .external_lex_state = 85}, - [3927] = {.lex_state = 463, .external_lex_state = 78}, - [3928] = {.lex_state = 481, .external_lex_state = 85}, - [3929] = {.lex_state = 463, .external_lex_state = 78}, - [3930] = {.lex_state = 481, .external_lex_state = 85}, - [3931] = {.lex_state = 463, .external_lex_state = 78}, - [3932] = {.lex_state = 481, .external_lex_state = 85}, - [3933] = {.lex_state = 463, .external_lex_state = 78}, - [3934] = {.lex_state = 463, .external_lex_state = 78}, - [3935] = {.lex_state = 481, .external_lex_state = 85}, - [3936] = {.lex_state = 463, .external_lex_state = 78}, - [3937] = {.lex_state = 463, .external_lex_state = 78}, - [3938] = {.lex_state = 481, .external_lex_state = 85}, - [3939] = {.lex_state = 463, .external_lex_state = 78}, - [3940] = {.lex_state = 481, .external_lex_state = 85}, - [3941] = {.lex_state = 463, .external_lex_state = 78}, - [3942] = {.lex_state = 463, .external_lex_state = 78}, - [3943] = {.lex_state = 481, .external_lex_state = 85}, - [3944] = {.lex_state = 463, .external_lex_state = 78}, - [3945] = {.lex_state = 463, .external_lex_state = 78}, - [3946] = {.lex_state = 481, .external_lex_state = 85}, - [3947] = {.lex_state = 481, .external_lex_state = 85}, - [3948] = {.lex_state = 481, .external_lex_state = 85}, - [3949] = {.lex_state = 481, .external_lex_state = 85}, - [3950] = {.lex_state = 481, .external_lex_state = 85}, - [3951] = {.lex_state = 481, .external_lex_state = 85}, - [3952] = {.lex_state = 481, .external_lex_state = 85}, - [3953] = {.lex_state = 481, .external_lex_state = 85}, - [3954] = {.lex_state = 481, .external_lex_state = 85}, - [3955] = {.lex_state = 481, .external_lex_state = 85}, - [3956] = {.lex_state = 481, .external_lex_state = 85}, - [3957] = {.lex_state = 481, .external_lex_state = 85}, - [3958] = {.lex_state = 481, .external_lex_state = 85}, - [3959] = {.lex_state = 481, .external_lex_state = 85}, - [3960] = {.lex_state = 481, .external_lex_state = 85}, - [3961] = {.lex_state = 481, .external_lex_state = 85}, - [3962] = {.lex_state = 481, .external_lex_state = 85}, - [3963] = {.lex_state = 481, .external_lex_state = 85}, - [3964] = {.lex_state = 481, .external_lex_state = 85}, - [3965] = {.lex_state = 481, .external_lex_state = 85}, - [3966] = {.lex_state = 481, .external_lex_state = 85}, - [3967] = {.lex_state = 481, .external_lex_state = 85}, - [3968] = {.lex_state = 481, .external_lex_state = 85}, - [3969] = {.lex_state = 481, .external_lex_state = 85}, - [3970] = {.lex_state = 481, .external_lex_state = 85}, - [3971] = {.lex_state = 481, .external_lex_state = 85}, - [3972] = {.lex_state = 481, .external_lex_state = 85}, - [3973] = {.lex_state = 481, .external_lex_state = 85}, - [3974] = {.lex_state = 481, .external_lex_state = 85}, - [3975] = {.lex_state = 481, .external_lex_state = 85}, - [3976] = {.lex_state = 481, .external_lex_state = 85}, - [3977] = {.lex_state = 481, .external_lex_state = 85}, - [3978] = {.lex_state = 481, .external_lex_state = 85}, - [3979] = {.lex_state = 481, .external_lex_state = 85}, - [3980] = {.lex_state = 481, .external_lex_state = 85}, - [3981] = {.lex_state = 481, .external_lex_state = 85}, - [3982] = {.lex_state = 481, .external_lex_state = 85}, - [3983] = {.lex_state = 481, .external_lex_state = 85}, - [3984] = {.lex_state = 481, .external_lex_state = 85}, - [3985] = {.lex_state = 481, .external_lex_state = 85}, - [3986] = {.lex_state = 481, .external_lex_state = 85}, - [3987] = {.lex_state = 481, .external_lex_state = 85}, - [3988] = {.lex_state = 481, .external_lex_state = 85}, - [3989] = {.lex_state = 481, .external_lex_state = 85}, - [3990] = {.lex_state = 481, .external_lex_state = 85}, - [3991] = {.lex_state = 454, .external_lex_state = 86}, - [3992] = {.lex_state = 454, .external_lex_state = 86}, - [3993] = {.lex_state = 481, .external_lex_state = 85}, - [3994] = {.lex_state = 454, .external_lex_state = 86}, - [3995] = {.lex_state = 454, .external_lex_state = 86}, - [3996] = {.lex_state = 481, .external_lex_state = 85}, - [3997] = {.lex_state = 481, .external_lex_state = 85}, - [3998] = {.lex_state = 463, .external_lex_state = 78}, + [3926] = {.lex_state = 481, .external_lex_state = 84}, + [3927] = {.lex_state = 481, .external_lex_state = 84}, + [3928] = {.lex_state = 481, .external_lex_state = 84}, + [3929] = {.lex_state = 481, .external_lex_state = 84}, + [3930] = {.lex_state = 481, .external_lex_state = 84}, + [3931] = {.lex_state = 481, .external_lex_state = 84}, + [3932] = {.lex_state = 481, .external_lex_state = 84}, + [3933] = {.lex_state = 481, .external_lex_state = 84}, + [3934] = {.lex_state = 481, .external_lex_state = 84}, + [3935] = {.lex_state = 481, .external_lex_state = 84}, + [3936] = {.lex_state = 481, .external_lex_state = 84}, + [3937] = {.lex_state = 481, .external_lex_state = 84}, + [3938] = {.lex_state = 481, .external_lex_state = 84}, + [3939] = {.lex_state = 481, .external_lex_state = 84}, + [3940] = {.lex_state = 481, .external_lex_state = 84}, + [3941] = {.lex_state = 481, .external_lex_state = 84}, + [3942] = {.lex_state = 481, .external_lex_state = 84}, + [3943] = {.lex_state = 481, .external_lex_state = 84}, + [3944] = {.lex_state = 481, .external_lex_state = 84}, + [3945] = {.lex_state = 481, .external_lex_state = 84}, + [3946] = {.lex_state = 481, .external_lex_state = 84}, + [3947] = {.lex_state = 481, .external_lex_state = 84}, + [3948] = {.lex_state = 481, .external_lex_state = 84}, + [3949] = {.lex_state = 481, .external_lex_state = 84}, + [3950] = {.lex_state = 481, .external_lex_state = 84}, + [3951] = {.lex_state = 481, .external_lex_state = 84}, + [3952] = {.lex_state = 481, .external_lex_state = 84}, + [3953] = {.lex_state = 481, .external_lex_state = 84}, + [3954] = {.lex_state = 463, .external_lex_state = 78}, + [3955] = {.lex_state = 481, .external_lex_state = 84}, + [3956] = {.lex_state = 481, .external_lex_state = 84}, + [3957] = {.lex_state = 481, .external_lex_state = 84}, + [3958] = {.lex_state = 481, .external_lex_state = 84}, + [3959] = {.lex_state = 450, .external_lex_state = 80}, + [3960] = {.lex_state = 481, .external_lex_state = 84}, + [3961] = {.lex_state = 481, .external_lex_state = 84}, + [3962] = {.lex_state = 481, .external_lex_state = 84}, + [3963] = {.lex_state = 481, .external_lex_state = 84}, + [3964] = {.lex_state = 481, .external_lex_state = 84}, + [3965] = {.lex_state = 481, .external_lex_state = 84}, + [3966] = {.lex_state = 481, .external_lex_state = 84}, + [3967] = {.lex_state = 463, .external_lex_state = 78}, + [3968] = {.lex_state = 481, .external_lex_state = 84}, + [3969] = {.lex_state = 463, .external_lex_state = 78}, + [3970] = {.lex_state = 463, .external_lex_state = 78}, + [3971] = {.lex_state = 463, .external_lex_state = 78}, + [3972] = {.lex_state = 481, .external_lex_state = 84}, + [3973] = {.lex_state = 481, .external_lex_state = 84}, + [3974] = {.lex_state = 463, .external_lex_state = 78}, + [3975] = {.lex_state = 463, .external_lex_state = 78}, + [3976] = {.lex_state = 481, .external_lex_state = 84}, + [3977] = {.lex_state = 481, .external_lex_state = 84}, + [3978] = {.lex_state = 481, .external_lex_state = 84}, + [3979] = {.lex_state = 481, .external_lex_state = 84}, + [3980] = {.lex_state = 481, .external_lex_state = 84}, + [3981] = {.lex_state = 481, .external_lex_state = 84}, + [3982] = {.lex_state = 481, .external_lex_state = 84}, + [3983] = {.lex_state = 481, .external_lex_state = 84}, + [3984] = {.lex_state = 463, .external_lex_state = 78}, + [3985] = {.lex_state = 481, .external_lex_state = 84}, + [3986] = {.lex_state = 481, .external_lex_state = 84}, + [3987] = {.lex_state = 481, .external_lex_state = 84}, + [3988] = {.lex_state = 481, .external_lex_state = 84}, + [3989] = {.lex_state = 481, .external_lex_state = 84}, + [3990] = {.lex_state = 481, .external_lex_state = 84}, + [3991] = {.lex_state = 481, .external_lex_state = 84}, + [3992] = {.lex_state = 481, .external_lex_state = 84}, + [3993] = {.lex_state = 463, .external_lex_state = 78}, + [3994] = {.lex_state = 481, .external_lex_state = 84}, + [3995] = {.lex_state = 481, .external_lex_state = 84}, + [3996] = {.lex_state = 481, .external_lex_state = 84}, + [3997] = {.lex_state = 481, .external_lex_state = 84}, + [3998] = {.lex_state = 481, .external_lex_state = 84}, [3999] = {.lex_state = 463, .external_lex_state = 78}, - [4000] = {.lex_state = 463, .external_lex_state = 78}, - [4001] = {.lex_state = 463, .external_lex_state = 78}, - [4002] = {.lex_state = 463, .external_lex_state = 78}, - [4003] = {.lex_state = 463, .external_lex_state = 78}, - [4004] = {.lex_state = 481, .external_lex_state = 85}, - [4005] = {.lex_state = 463, .external_lex_state = 78}, - [4006] = {.lex_state = 463, .external_lex_state = 78}, - [4007] = {.lex_state = 481, .external_lex_state = 85}, - [4008] = {.lex_state = 454, .external_lex_state = 86}, - [4009] = {.lex_state = 454, .external_lex_state = 86}, - [4010] = {.lex_state = 454, .external_lex_state = 86}, - [4011] = {.lex_state = 454, .external_lex_state = 86}, - [4012] = {.lex_state = 481, .external_lex_state = 85}, - [4013] = {.lex_state = 481, .external_lex_state = 85}, - [4014] = {.lex_state = 481, .external_lex_state = 85}, - [4015] = {.lex_state = 463, .external_lex_state = 78}, - [4016] = {.lex_state = 463, .external_lex_state = 78}, - [4017] = {.lex_state = 463, .external_lex_state = 78}, - [4018] = {.lex_state = 463, .external_lex_state = 78}, - [4019] = {.lex_state = 463, .external_lex_state = 78}, - [4020] = {.lex_state = 463, .external_lex_state = 78}, - [4021] = {.lex_state = 463, .external_lex_state = 78}, - [4022] = {.lex_state = 463, .external_lex_state = 78}, - [4023] = {.lex_state = 481, .external_lex_state = 85}, - [4024] = {.lex_state = 454, .external_lex_state = 86}, - [4025] = {.lex_state = 454, .external_lex_state = 86}, - [4026] = {.lex_state = 481, .external_lex_state = 85}, - [4027] = {.lex_state = 463, .external_lex_state = 78}, - [4028] = {.lex_state = 463, .external_lex_state = 78}, + [4000] = {.lex_state = 481, .external_lex_state = 84}, + [4001] = {.lex_state = 481, .external_lex_state = 84}, + [4002] = {.lex_state = 450, .external_lex_state = 80}, + [4003] = {.lex_state = 481, .external_lex_state = 84}, + [4004] = {.lex_state = 463, .external_lex_state = 78}, + [4005] = {.lex_state = 481, .external_lex_state = 84}, + [4006] = {.lex_state = 481, .external_lex_state = 84}, + [4007] = {.lex_state = 481, .external_lex_state = 84}, + [4008] = {.lex_state = 463, .external_lex_state = 78}, + [4009] = {.lex_state = 481, .external_lex_state = 84}, + [4010] = {.lex_state = 481, .external_lex_state = 84}, + [4011] = {.lex_state = 463, .external_lex_state = 78}, + [4012] = {.lex_state = 481, .external_lex_state = 84}, + [4013] = {.lex_state = 481, .external_lex_state = 84}, + [4014] = {.lex_state = 463, .external_lex_state = 78}, + [4015] = {.lex_state = 481, .external_lex_state = 84}, + [4016] = {.lex_state = 481, .external_lex_state = 84}, + [4017] = {.lex_state = 481, .external_lex_state = 84}, + [4018] = {.lex_state = 481, .external_lex_state = 84}, + [4019] = {.lex_state = 481, .external_lex_state = 84}, + [4020] = {.lex_state = 481, .external_lex_state = 84}, + [4021] = {.lex_state = 481, .external_lex_state = 84}, + [4022] = {.lex_state = 481, .external_lex_state = 84}, + [4023] = {.lex_state = 463, .external_lex_state = 78}, + [4024] = {.lex_state = 481, .external_lex_state = 84}, + [4025] = {.lex_state = 481, .external_lex_state = 84}, + [4026] = {.lex_state = 481, .external_lex_state = 84}, + [4027] = {.lex_state = 481, .external_lex_state = 84}, + [4028] = {.lex_state = 450, .external_lex_state = 80}, [4029] = {.lex_state = 463, .external_lex_state = 78}, [4030] = {.lex_state = 463, .external_lex_state = 78}, - [4031] = {.lex_state = 454, .external_lex_state = 86}, - [4032] = {.lex_state = 454, .external_lex_state = 86}, - [4033] = {.lex_state = 481, .external_lex_state = 85}, - [4034] = {.lex_state = 481, .external_lex_state = 85}, - [4035] = {.lex_state = 463, .external_lex_state = 78}, + [4031] = {.lex_state = 481, .external_lex_state = 84}, + [4032] = {.lex_state = 481, .external_lex_state = 84}, + [4033] = {.lex_state = 463, .external_lex_state = 78}, + [4034] = {.lex_state = 481, .external_lex_state = 84}, + [4035] = {.lex_state = 481, .external_lex_state = 84}, [4036] = {.lex_state = 463, .external_lex_state = 78}, [4037] = {.lex_state = 463, .external_lex_state = 78}, - [4038] = {.lex_state = 463, .external_lex_state = 78}, - [4039] = {.lex_state = 454, .external_lex_state = 86}, - [4040] = {.lex_state = 454, .external_lex_state = 86}, - [4041] = {.lex_state = 454, .external_lex_state = 86}, - [4042] = {.lex_state = 454, .external_lex_state = 86}, - [4043] = {.lex_state = 454, .external_lex_state = 86}, - [4044] = {.lex_state = 454, .external_lex_state = 86}, - [4045] = {.lex_state = 481, .external_lex_state = 85}, - [4046] = {.lex_state = 454, .external_lex_state = 86}, - [4047] = {.lex_state = 454, .external_lex_state = 86}, - [4048] = {.lex_state = 481, .external_lex_state = 85}, - [4049] = {.lex_state = 454, .external_lex_state = 86}, - [4050] = {.lex_state = 454, .external_lex_state = 86}, - [4051] = {.lex_state = 454, .external_lex_state = 86}, - [4052] = {.lex_state = 454, .external_lex_state = 86}, - [4053] = {.lex_state = 454, .external_lex_state = 86}, - [4054] = {.lex_state = 454, .external_lex_state = 86}, - [4055] = {.lex_state = 454, .external_lex_state = 86}, - [4056] = {.lex_state = 454, .external_lex_state = 86}, - [4057] = {.lex_state = 454, .external_lex_state = 86}, - [4058] = {.lex_state = 454, .external_lex_state = 86}, - [4059] = {.lex_state = 454, .external_lex_state = 86}, - [4060] = {.lex_state = 454, .external_lex_state = 86}, - [4061] = {.lex_state = 454, .external_lex_state = 86}, - [4062] = {.lex_state = 454, .external_lex_state = 86}, - [4063] = {.lex_state = 454, .external_lex_state = 86}, - [4064] = {.lex_state = 481, .external_lex_state = 85}, - [4065] = {.lex_state = 454, .external_lex_state = 86}, - [4066] = {.lex_state = 454, .external_lex_state = 86}, - [4067] = {.lex_state = 454, .external_lex_state = 86}, - [4068] = {.lex_state = 481, .external_lex_state = 85}, - [4069] = {.lex_state = 454, .external_lex_state = 86}, - [4070] = {.lex_state = 454, .external_lex_state = 86}, + [4038] = {.lex_state = 450, .external_lex_state = 80}, + [4039] = {.lex_state = 463, .external_lex_state = 78}, + [4040] = {.lex_state = 463, .external_lex_state = 78}, + [4041] = {.lex_state = 481, .external_lex_state = 84}, + [4042] = {.lex_state = 481, .external_lex_state = 84}, + [4043] = {.lex_state = 481, .external_lex_state = 84}, + [4044] = {.lex_state = 481, .external_lex_state = 84}, + [4045] = {.lex_state = 481, .external_lex_state = 84}, + [4046] = {.lex_state = 481, .external_lex_state = 84}, + [4047] = {.lex_state = 481, .external_lex_state = 84}, + [4048] = {.lex_state = 481, .external_lex_state = 84}, + [4049] = {.lex_state = 481, .external_lex_state = 84}, + [4050] = {.lex_state = 481, .external_lex_state = 84}, + [4051] = {.lex_state = 481, .external_lex_state = 84}, + [4052] = {.lex_state = 481, .external_lex_state = 84}, + [4053] = {.lex_state = 481, .external_lex_state = 84}, + [4054] = {.lex_state = 481, .external_lex_state = 84}, + [4055] = {.lex_state = 481, .external_lex_state = 84}, + [4056] = {.lex_state = 481, .external_lex_state = 84}, + [4057] = {.lex_state = 463, .external_lex_state = 78}, + [4058] = {.lex_state = 481, .external_lex_state = 84}, + [4059] = {.lex_state = 481, .external_lex_state = 84}, + [4060] = {.lex_state = 463, .external_lex_state = 78}, + [4061] = {.lex_state = 463, .external_lex_state = 78}, + [4062] = {.lex_state = 463, .external_lex_state = 78}, + [4063] = {.lex_state = 481, .external_lex_state = 84}, + [4064] = {.lex_state = 463, .external_lex_state = 78}, + [4065] = {.lex_state = 481, .external_lex_state = 84}, + [4066] = {.lex_state = 481, .external_lex_state = 84}, + [4067] = {.lex_state = 481, .external_lex_state = 84}, + [4068] = {.lex_state = 481, .external_lex_state = 84}, + [4069] = {.lex_state = 481, .external_lex_state = 84}, + [4070] = {.lex_state = 463, .external_lex_state = 78}, [4071] = {.lex_state = 454, .external_lex_state = 86}, [4072] = {.lex_state = 454, .external_lex_state = 86}, [4073] = {.lex_state = 454, .external_lex_state = 86}, @@ -25579,11 +25825,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4078] = {.lex_state = 454, .external_lex_state = 86}, [4079] = {.lex_state = 454, .external_lex_state = 86}, [4080] = {.lex_state = 454, .external_lex_state = 86}, - [4081] = {.lex_state = 481, .external_lex_state = 85}, - [4082] = {.lex_state = 481, .external_lex_state = 85}, + [4081] = {.lex_state = 454, .external_lex_state = 86}, + [4082] = {.lex_state = 454, .external_lex_state = 86}, [4083] = {.lex_state = 454, .external_lex_state = 86}, [4084] = {.lex_state = 454, .external_lex_state = 86}, - [4085] = {.lex_state = 481, .external_lex_state = 85}, + [4085] = {.lex_state = 454, .external_lex_state = 86}, [4086] = {.lex_state = 454, .external_lex_state = 86}, [4087] = {.lex_state = 454, .external_lex_state = 86}, [4088] = {.lex_state = 454, .external_lex_state = 86}, @@ -25596,28 +25842,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4095] = {.lex_state = 454, .external_lex_state = 86}, [4096] = {.lex_state = 454, .external_lex_state = 86}, [4097] = {.lex_state = 454, .external_lex_state = 86}, - [4098] = {.lex_state = 481, .external_lex_state = 85}, + [4098] = {.lex_state = 454, .external_lex_state = 86}, [4099] = {.lex_state = 454, .external_lex_state = 86}, [4100] = {.lex_state = 454, .external_lex_state = 86}, - [4101] = {.lex_state = 481, .external_lex_state = 85}, + [4101] = {.lex_state = 454, .external_lex_state = 86}, [4102] = {.lex_state = 454, .external_lex_state = 86}, [4103] = {.lex_state = 454, .external_lex_state = 86}, - [4104] = {.lex_state = 481, .external_lex_state = 85}, + [4104] = {.lex_state = 454, .external_lex_state = 86}, [4105] = {.lex_state = 454, .external_lex_state = 86}, [4106] = {.lex_state = 454, .external_lex_state = 86}, [4107] = {.lex_state = 454, .external_lex_state = 86}, [4108] = {.lex_state = 454, .external_lex_state = 86}, [4109] = {.lex_state = 454, .external_lex_state = 86}, [4110] = {.lex_state = 454, .external_lex_state = 86}, - [4111] = {.lex_state = 481, .external_lex_state = 85}, + [4111] = {.lex_state = 454, .external_lex_state = 86}, [4112] = {.lex_state = 454, .external_lex_state = 86}, [4113] = {.lex_state = 454, .external_lex_state = 86}, [4114] = {.lex_state = 454, .external_lex_state = 86}, [4115] = {.lex_state = 454, .external_lex_state = 86}, - [4116] = {.lex_state = 481, .external_lex_state = 85}, + [4116] = {.lex_state = 454, .external_lex_state = 86}, [4117] = {.lex_state = 454, .external_lex_state = 86}, [4118] = {.lex_state = 454, .external_lex_state = 86}, - [4119] = {.lex_state = 481, .external_lex_state = 85}, + [4119] = {.lex_state = 454, .external_lex_state = 86}, [4120] = {.lex_state = 454, .external_lex_state = 86}, [4121] = {.lex_state = 454, .external_lex_state = 86}, [4122] = {.lex_state = 454, .external_lex_state = 86}, @@ -25632,16 +25878,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4131] = {.lex_state = 454, .external_lex_state = 86}, [4132] = {.lex_state = 454, .external_lex_state = 86}, [4133] = {.lex_state = 454, .external_lex_state = 86}, - [4134] = {.lex_state = 481, .external_lex_state = 85}, - [4135] = {.lex_state = 463, .external_lex_state = 78}, + [4134] = {.lex_state = 454, .external_lex_state = 86}, + [4135] = {.lex_state = 454, .external_lex_state = 86}, [4136] = {.lex_state = 454, .external_lex_state = 86}, [4137] = {.lex_state = 454, .external_lex_state = 86}, - [4138] = {.lex_state = 481, .external_lex_state = 85}, + [4138] = {.lex_state = 454, .external_lex_state = 86}, [4139] = {.lex_state = 454, .external_lex_state = 86}, [4140] = {.lex_state = 454, .external_lex_state = 86}, [4141] = {.lex_state = 454, .external_lex_state = 86}, [4142] = {.lex_state = 454, .external_lex_state = 86}, - [4143] = {.lex_state = 463, .external_lex_state = 78}, + [4143] = {.lex_state = 454, .external_lex_state = 86}, [4144] = {.lex_state = 454, .external_lex_state = 86}, [4145] = {.lex_state = 454, .external_lex_state = 86}, [4146] = {.lex_state = 454, .external_lex_state = 86}, @@ -25650,10 +25896,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4149] = {.lex_state = 454, .external_lex_state = 86}, [4150] = {.lex_state = 454, .external_lex_state = 86}, [4151] = {.lex_state = 454, .external_lex_state = 86}, - [4152] = {.lex_state = 481, .external_lex_state = 85}, + [4152] = {.lex_state = 454, .external_lex_state = 86}, [4153] = {.lex_state = 454, .external_lex_state = 86}, [4154] = {.lex_state = 454, .external_lex_state = 86}, - [4155] = {.lex_state = 481, .external_lex_state = 85}, + [4155] = {.lex_state = 454, .external_lex_state = 86}, [4156] = {.lex_state = 454, .external_lex_state = 86}, [4157] = {.lex_state = 454, .external_lex_state = 86}, [4158] = {.lex_state = 454, .external_lex_state = 86}, @@ -25666,10 +25912,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4165] = {.lex_state = 454, .external_lex_state = 86}, [4166] = {.lex_state = 454, .external_lex_state = 86}, [4167] = {.lex_state = 454, .external_lex_state = 86}, - [4168] = {.lex_state = 481, .external_lex_state = 85}, + [4168] = {.lex_state = 454, .external_lex_state = 86}, [4169] = {.lex_state = 454, .external_lex_state = 86}, [4170] = {.lex_state = 454, .external_lex_state = 86}, - [4171] = {.lex_state = 481, .external_lex_state = 85}, + [4171] = {.lex_state = 454, .external_lex_state = 86}, [4172] = {.lex_state = 454, .external_lex_state = 86}, [4173] = {.lex_state = 454, .external_lex_state = 86}, [4174] = {.lex_state = 454, .external_lex_state = 86}, @@ -25682,1586 +25928,1586 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4181] = {.lex_state = 454, .external_lex_state = 86}, [4182] = {.lex_state = 454, .external_lex_state = 86}, [4183] = {.lex_state = 454, .external_lex_state = 86}, - [4184] = {.lex_state = 481, .external_lex_state = 85}, - [4185] = {.lex_state = 481, .external_lex_state = 85}, - [4186] = {.lex_state = 481, .external_lex_state = 85}, - [4187] = {.lex_state = 481, .external_lex_state = 85}, - [4188] = {.lex_state = 481, .external_lex_state = 85}, - [4189] = {.lex_state = 463, .external_lex_state = 78}, + [4184] = {.lex_state = 454, .external_lex_state = 86}, + [4185] = {.lex_state = 454, .external_lex_state = 86}, + [4186] = {.lex_state = 454, .external_lex_state = 86}, + [4187] = {.lex_state = 454, .external_lex_state = 86}, + [4188] = {.lex_state = 454, .external_lex_state = 86}, + [4189] = {.lex_state = 454, .external_lex_state = 86}, [4190] = {.lex_state = 454, .external_lex_state = 86}, [4191] = {.lex_state = 454, .external_lex_state = 86}, [4192] = {.lex_state = 454, .external_lex_state = 86}, - [4193] = {.lex_state = 481, .external_lex_state = 85}, - [4194] = {.lex_state = 481, .external_lex_state = 85}, - [4195] = {.lex_state = 481, .external_lex_state = 85}, + [4193] = {.lex_state = 454, .external_lex_state = 86}, + [4194] = {.lex_state = 454, .external_lex_state = 86}, + [4195] = {.lex_state = 454, .external_lex_state = 86}, [4196] = {.lex_state = 454, .external_lex_state = 86}, [4197] = {.lex_state = 454, .external_lex_state = 86}, - [4198] = {.lex_state = 481, .external_lex_state = 85}, + [4198] = {.lex_state = 454, .external_lex_state = 86}, [4199] = {.lex_state = 454, .external_lex_state = 86}, - [4200] = {.lex_state = 481, .external_lex_state = 85}, - [4201] = {.lex_state = 481, .external_lex_state = 85}, + [4200] = {.lex_state = 454, .external_lex_state = 86}, + [4201] = {.lex_state = 454, .external_lex_state = 86}, [4202] = {.lex_state = 454, .external_lex_state = 86}, - [4203] = {.lex_state = 481, .external_lex_state = 85}, - [4204] = {.lex_state = 481, .external_lex_state = 85}, - [4205] = {.lex_state = 463, .external_lex_state = 78}, - [4206] = {.lex_state = 481, .external_lex_state = 85}, - [4207] = {.lex_state = 481, .external_lex_state = 85}, - [4208] = {.lex_state = 481, .external_lex_state = 85}, - [4209] = {.lex_state = 481, .external_lex_state = 85}, - [4210] = {.lex_state = 481, .external_lex_state = 85}, - [4211] = {.lex_state = 481, .external_lex_state = 85}, - [4212] = {.lex_state = 463, .external_lex_state = 78}, - [4213] = {.lex_state = 481, .external_lex_state = 85}, - [4214] = {.lex_state = 481, .external_lex_state = 85}, - [4215] = {.lex_state = 463, .external_lex_state = 78}, - [4216] = {.lex_state = 271, .external_lex_state = 87}, - [4217] = {.lex_state = 88, .external_lex_state = 88}, - [4218] = {.lex_state = 86, .external_lex_state = 89}, - [4219] = {.lex_state = 88, .external_lex_state = 88}, - [4220] = {.lex_state = 89, .external_lex_state = 90}, - [4221] = {.lex_state = 88, .external_lex_state = 88}, - [4222] = {.lex_state = 88, .external_lex_state = 91}, - [4223] = {.lex_state = 86, .external_lex_state = 89}, - [4224] = {.lex_state = 88, .external_lex_state = 88}, - [4225] = {.lex_state = 271, .external_lex_state = 87}, - [4226] = {.lex_state = 86, .external_lex_state = 89}, - [4227] = {.lex_state = 86, .external_lex_state = 89}, - [4228] = {.lex_state = 484, .external_lex_state = 92}, - [4229] = {.lex_state = 89, .external_lex_state = 91}, - [4230] = {.lex_state = 89, .external_lex_state = 61}, - [4231] = {.lex_state = 88, .external_lex_state = 93}, - [4232] = {.lex_state = 89, .external_lex_state = 61}, - [4233] = {.lex_state = 89, .external_lex_state = 90}, - [4234] = {.lex_state = 88, .external_lex_state = 91}, - [4235] = {.lex_state = 88, .external_lex_state = 93}, - [4236] = {.lex_state = 86, .external_lex_state = 89}, - [4237] = {.lex_state = 88, .external_lex_state = 91}, - [4238] = {.lex_state = 88, .external_lex_state = 91}, - [4239] = {.lex_state = 88, .external_lex_state = 91}, - [4240] = {.lex_state = 522, .external_lex_state = 94}, - [4241] = {.lex_state = 88, .external_lex_state = 91}, - [4242] = {.lex_state = 88, .external_lex_state = 91}, - [4243] = {.lex_state = 88, .external_lex_state = 91}, - [4244] = {.lex_state = 88, .external_lex_state = 91}, - [4245] = {.lex_state = 524, .external_lex_state = 95}, - [4246] = {.lex_state = 88, .external_lex_state = 91}, - [4247] = {.lex_state = 88, .external_lex_state = 91}, - [4248] = {.lex_state = 88, .external_lex_state = 91}, - [4249] = {.lex_state = 86, .external_lex_state = 89}, - [4250] = {.lex_state = 88, .external_lex_state = 88}, - [4251] = {.lex_state = 88, .external_lex_state = 93}, - [4252] = {.lex_state = 88, .external_lex_state = 93}, - [4253] = {.lex_state = 88, .external_lex_state = 94}, - [4254] = {.lex_state = 88, .external_lex_state = 88}, - [4255] = {.lex_state = 89, .external_lex_state = 95}, - [4256] = {.lex_state = 89, .external_lex_state = 90}, - [4257] = {.lex_state = 89, .external_lex_state = 90}, - [4258] = {.lex_state = 89, .external_lex_state = 90}, - [4259] = {.lex_state = 89, .external_lex_state = 90}, - [4260] = {.lex_state = 86, .external_lex_state = 89}, - [4261] = {.lex_state = 523, .external_lex_state = 93}, - [4262] = {.lex_state = 89, .external_lex_state = 90}, - [4263] = {.lex_state = 522, .external_lex_state = 93}, - [4264] = {.lex_state = 522, .external_lex_state = 94}, - [4265] = {.lex_state = 89, .external_lex_state = 88}, - [4266] = {.lex_state = 88, .external_lex_state = 88}, - [4267] = {.lex_state = 88, .external_lex_state = 94}, - [4268] = {.lex_state = 88, .external_lex_state = 94}, - [4269] = {.lex_state = 89, .external_lex_state = 90}, - [4270] = {.lex_state = 89, .external_lex_state = 90}, - [4271] = {.lex_state = 89, .external_lex_state = 65}, - [4272] = {.lex_state = 88, .external_lex_state = 88}, - [4273] = {.lex_state = 88, .external_lex_state = 91}, - [4274] = {.lex_state = 484, .external_lex_state = 96}, - [4275] = {.lex_state = 88, .external_lex_state = 94}, - [4276] = {.lex_state = 88, .external_lex_state = 94}, - [4277] = {.lex_state = 88, .external_lex_state = 91}, - [4278] = {.lex_state = 484, .external_lex_state = 96}, - [4279] = {.lex_state = 89, .external_lex_state = 90}, - [4280] = {.lex_state = 89, .external_lex_state = 90}, - [4281] = {.lex_state = 89, .external_lex_state = 90}, - [4282] = {.lex_state = 89, .external_lex_state = 90}, - [4283] = {.lex_state = 89, .external_lex_state = 94}, - [4284] = {.lex_state = 88, .external_lex_state = 94}, - [4285] = {.lex_state = 88, .external_lex_state = 94}, - [4286] = {.lex_state = 88, .external_lex_state = 94}, - [4287] = {.lex_state = 524, .external_lex_state = 94}, - [4288] = {.lex_state = 524, .external_lex_state = 95}, - [4289] = {.lex_state = 484, .external_lex_state = 96}, - [4290] = {.lex_state = 484, .external_lex_state = 96}, - [4291] = {.lex_state = 89, .external_lex_state = 90}, - [4292] = {.lex_state = 88, .external_lex_state = 88}, - [4293] = {.lex_state = 88, .external_lex_state = 88}, - [4294] = {.lex_state = 88, .external_lex_state = 94}, - [4295] = {.lex_state = 88, .external_lex_state = 94}, - [4296] = {.lex_state = 522, .external_lex_state = 93}, - [4297] = {.lex_state = 522, .external_lex_state = 94}, - [4298] = {.lex_state = 524, .external_lex_state = 95}, - [4299] = {.lex_state = 522, .external_lex_state = 94}, - [4300] = {.lex_state = 522, .external_lex_state = 94}, - [4301] = {.lex_state = 88, .external_lex_state = 91}, - [4302] = {.lex_state = 89, .external_lex_state = 90}, - [4303] = {.lex_state = 88, .external_lex_state = 91}, - [4304] = {.lex_state = 522, .external_lex_state = 94}, - [4305] = {.lex_state = 522, .external_lex_state = 94}, - [4306] = {.lex_state = 522, .external_lex_state = 94}, - [4307] = {.lex_state = 524, .external_lex_state = 95}, - [4308] = {.lex_state = 88, .external_lex_state = 94}, - [4309] = {.lex_state = 88, .external_lex_state = 88}, - [4310] = {.lex_state = 89, .external_lex_state = 90}, - [4311] = {.lex_state = 523, .external_lex_state = 93}, - [4312] = {.lex_state = 522, .external_lex_state = 93}, - [4313] = {.lex_state = 525, .external_lex_state = 65}, - [4314] = {.lex_state = 89, .external_lex_state = 90}, - [4315] = {.lex_state = 89, .external_lex_state = 90}, - [4316] = {.lex_state = 524, .external_lex_state = 95}, - [4317] = {.lex_state = 88, .external_lex_state = 88}, - [4318] = {.lex_state = 522, .external_lex_state = 94}, - [4319] = {.lex_state = 524, .external_lex_state = 95}, - [4320] = {.lex_state = 89, .external_lex_state = 95}, - [4321] = {.lex_state = 88, .external_lex_state = 88}, - [4322] = {.lex_state = 524, .external_lex_state = 95}, - [4323] = {.lex_state = 89, .external_lex_state = 95}, - [4324] = {.lex_state = 88, .external_lex_state = 91}, - [4325] = {.lex_state = 522, .external_lex_state = 94}, - [4326] = {.lex_state = 88, .external_lex_state = 94}, - [4327] = {.lex_state = 89, .external_lex_state = 91}, - [4328] = {.lex_state = 522, .external_lex_state = 94}, - [4329] = {.lex_state = 88, .external_lex_state = 91}, - [4330] = {.lex_state = 524, .external_lex_state = 95}, - [4331] = {.lex_state = 522, .external_lex_state = 93}, - [4332] = {.lex_state = 88, .external_lex_state = 91}, - [4333] = {.lex_state = 89, .external_lex_state = 91}, - [4334] = {.lex_state = 524, .external_lex_state = 95}, - [4335] = {.lex_state = 88, .external_lex_state = 93}, - [4336] = {.lex_state = 89, .external_lex_state = 91}, - [4337] = {.lex_state = 88, .external_lex_state = 88}, - [4338] = {.lex_state = 89, .external_lex_state = 90}, - [4339] = {.lex_state = 89, .external_lex_state = 91}, - [4340] = {.lex_state = 523, .external_lex_state = 93}, - [4341] = {.lex_state = 88, .external_lex_state = 91}, - [4342] = {.lex_state = 89, .external_lex_state = 95}, - [4343] = {.lex_state = 89, .external_lex_state = 91}, - [4344] = {.lex_state = 89, .external_lex_state = 95}, - [4345] = {.lex_state = 522, .external_lex_state = 94}, - [4346] = {.lex_state = 89, .external_lex_state = 91}, - [4347] = {.lex_state = 89, .external_lex_state = 90}, - [4348] = {.lex_state = 89, .external_lex_state = 95}, - [4349] = {.lex_state = 88, .external_lex_state = 91}, - [4350] = {.lex_state = 89, .external_lex_state = 88}, - [4351] = {.lex_state = 522, .external_lex_state = 94}, - [4352] = {.lex_state = 522, .external_lex_state = 94}, - [4353] = {.lex_state = 522, .external_lex_state = 94}, - [4354] = {.lex_state = 524, .external_lex_state = 95}, - [4355] = {.lex_state = 522, .external_lex_state = 94}, - [4356] = {.lex_state = 524, .external_lex_state = 95}, - [4357] = {.lex_state = 89, .external_lex_state = 91}, - [4358] = {.lex_state = 89, .external_lex_state = 91}, - [4359] = {.lex_state = 89, .external_lex_state = 90}, - [4360] = {.lex_state = 89, .external_lex_state = 90}, - [4361] = {.lex_state = 525, .external_lex_state = 65}, - [4362] = {.lex_state = 89, .external_lex_state = 61}, - [4363] = {.lex_state = 524, .external_lex_state = 95}, - [4364] = {.lex_state = 523, .external_lex_state = 93}, - [4365] = {.lex_state = 524, .external_lex_state = 95}, - [4366] = {.lex_state = 88, .external_lex_state = 91}, - [4367] = {.lex_state = 522, .external_lex_state = 94}, - [4368] = {.lex_state = 89, .external_lex_state = 90}, - [4369] = {.lex_state = 89, .external_lex_state = 65}, - [4370] = {.lex_state = 89, .external_lex_state = 90}, - [4371] = {.lex_state = 89, .external_lex_state = 91}, - [4372] = {.lex_state = 89, .external_lex_state = 91}, - [4373] = {.lex_state = 89, .external_lex_state = 88}, - [4374] = {.lex_state = 89, .external_lex_state = 88}, - [4375] = {.lex_state = 522, .external_lex_state = 93}, - [4376] = {.lex_state = 522, .external_lex_state = 94}, - [4377] = {.lex_state = 522, .external_lex_state = 94}, - [4378] = {.lex_state = 523, .external_lex_state = 93}, - [4379] = {.lex_state = 522, .external_lex_state = 94}, - [4380] = {.lex_state = 522, .external_lex_state = 93}, - [4381] = {.lex_state = 89, .external_lex_state = 88}, - [4382] = {.lex_state = 522, .external_lex_state = 94}, - [4383] = {.lex_state = 88, .external_lex_state = 91}, - [4384] = {.lex_state = 88, .external_lex_state = 91}, - [4385] = {.lex_state = 524, .external_lex_state = 95}, - [4386] = {.lex_state = 524, .external_lex_state = 95}, - [4387] = {.lex_state = 88, .external_lex_state = 91}, - [4388] = {.lex_state = 88, .external_lex_state = 91}, - [4389] = {.lex_state = 88, .external_lex_state = 93}, - [4390] = {.lex_state = 522, .external_lex_state = 93}, - [4391] = {.lex_state = 524, .external_lex_state = 95}, - [4392] = {.lex_state = 524, .external_lex_state = 95}, - [4393] = {.lex_state = 88, .external_lex_state = 91}, - [4394] = {.lex_state = 89, .external_lex_state = 90}, - [4395] = {.lex_state = 523, .external_lex_state = 93}, - [4396] = {.lex_state = 523, .external_lex_state = 93}, - [4397] = {.lex_state = 522, .external_lex_state = 94}, - [4398] = {.lex_state = 522, .external_lex_state = 93}, - [4399] = {.lex_state = 88, .external_lex_state = 91}, - [4400] = {.lex_state = 524, .external_lex_state = 95}, - [4401] = {.lex_state = 524, .external_lex_state = 95}, - [4402] = {.lex_state = 522, .external_lex_state = 94}, - [4403] = {.lex_state = 524, .external_lex_state = 95}, - [4404] = {.lex_state = 523, .external_lex_state = 93}, - [4405] = {.lex_state = 524, .external_lex_state = 95}, - [4406] = {.lex_state = 524, .external_lex_state = 95}, - [4407] = {.lex_state = 89, .external_lex_state = 88}, - [4408] = {.lex_state = 88, .external_lex_state = 91}, - [4409] = {.lex_state = 88, .external_lex_state = 91}, - [4410] = {.lex_state = 88, .external_lex_state = 91}, - [4411] = {.lex_state = 524, .external_lex_state = 95}, - [4412] = {.lex_state = 89, .external_lex_state = 61}, - [4413] = {.lex_state = 523, .external_lex_state = 93}, - [4414] = {.lex_state = 89, .external_lex_state = 91}, - [4415] = {.lex_state = 525, .external_lex_state = 93}, - [4416] = {.lex_state = 89, .external_lex_state = 95}, - [4417] = {.lex_state = 89, .external_lex_state = 94}, - [4418] = {.lex_state = 89, .external_lex_state = 94}, - [4419] = {.lex_state = 88, .external_lex_state = 94}, - [4420] = {.lex_state = 88, .external_lex_state = 94}, - [4421] = {.lex_state = 88, .external_lex_state = 94}, - [4422] = {.lex_state = 89, .external_lex_state = 88}, - [4423] = {.lex_state = 89, .external_lex_state = 95}, - [4424] = {.lex_state = 89, .external_lex_state = 95}, - [4425] = {.lex_state = 89, .external_lex_state = 95}, - [4426] = {.lex_state = 89, .external_lex_state = 94}, - [4427] = {.lex_state = 89, .external_lex_state = 94}, - [4428] = {.lex_state = 89, .external_lex_state = 91}, - [4429] = {.lex_state = 89, .external_lex_state = 88}, - [4430] = {.lex_state = 522, .external_lex_state = 93}, - [4431] = {.lex_state = 88, .external_lex_state = 93}, - [4432] = {.lex_state = 522, .external_lex_state = 93}, - [4433] = {.lex_state = 89, .external_lex_state = 93}, - [4434] = {.lex_state = 522, .external_lex_state = 93}, - [4435] = {.lex_state = 89, .external_lex_state = 88}, - [4436] = {.lex_state = 89, .external_lex_state = 93}, - [4437] = {.lex_state = 89, .external_lex_state = 94}, - [4438] = {.lex_state = 89, .external_lex_state = 91}, - [4439] = {.lex_state = 89, .external_lex_state = 91}, - [4440] = {.lex_state = 88, .external_lex_state = 93}, - [4441] = {.lex_state = 89, .external_lex_state = 94}, - [4442] = {.lex_state = 89, .external_lex_state = 94}, - [4443] = {.lex_state = 88, .external_lex_state = 93}, - [4444] = {.lex_state = 524, .external_lex_state = 94}, - [4445] = {.lex_state = 524, .external_lex_state = 94}, - [4446] = {.lex_state = 524, .external_lex_state = 94}, - [4447] = {.lex_state = 88, .external_lex_state = 93}, - [4448] = {.lex_state = 524, .external_lex_state = 94}, - [4449] = {.lex_state = 484, .external_lex_state = 76}, - [4450] = {.lex_state = 524, .external_lex_state = 94}, - [4451] = {.lex_state = 484, .external_lex_state = 76}, - [4452] = {.lex_state = 88, .external_lex_state = 93}, - [4453] = {.lex_state = 484, .external_lex_state = 76}, - [4454] = {.lex_state = 484, .external_lex_state = 76}, - [4455] = {.lex_state = 524, .external_lex_state = 94}, - [4456] = {.lex_state = 524, .external_lex_state = 94}, - [4457] = {.lex_state = 524, .external_lex_state = 94}, - [4458] = {.lex_state = 522, .external_lex_state = 94}, - [4459] = {.lex_state = 522, .external_lex_state = 94}, - [4460] = {.lex_state = 89, .external_lex_state = 65}, - [4461] = {.lex_state = 524, .external_lex_state = 94}, - [4462] = {.lex_state = 522, .external_lex_state = 94}, - [4463] = {.lex_state = 522, .external_lex_state = 94}, - [4464] = {.lex_state = 88, .external_lex_state = 94}, - [4465] = {.lex_state = 524, .external_lex_state = 95}, - [4466] = {.lex_state = 524, .external_lex_state = 95}, - [4467] = {.lex_state = 88, .external_lex_state = 94}, - [4468] = {.lex_state = 522, .external_lex_state = 93}, - [4469] = {.lex_state = 522, .external_lex_state = 93}, - [4470] = {.lex_state = 89, .external_lex_state = 91}, - [4471] = {.lex_state = 88, .external_lex_state = 94}, - [4472] = {.lex_state = 524, .external_lex_state = 94}, - [4473] = {.lex_state = 301, .external_lex_state = 97}, - [4474] = {.lex_state = 524, .external_lex_state = 94}, - [4475] = {.lex_state = 301, .external_lex_state = 97}, - [4476] = {.lex_state = 524, .external_lex_state = 94}, + [4203] = {.lex_state = 454, .external_lex_state = 86}, + [4204] = {.lex_state = 454, .external_lex_state = 86}, + [4205] = {.lex_state = 454, .external_lex_state = 86}, + [4206] = {.lex_state = 454, .external_lex_state = 86}, + [4207] = {.lex_state = 454, .external_lex_state = 86}, + [4208] = {.lex_state = 454, .external_lex_state = 86}, + [4209] = {.lex_state = 454, .external_lex_state = 86}, + [4210] = {.lex_state = 454, .external_lex_state = 86}, + [4211] = {.lex_state = 454, .external_lex_state = 86}, + [4212] = {.lex_state = 454, .external_lex_state = 86}, + [4213] = {.lex_state = 454, .external_lex_state = 86}, + [4214] = {.lex_state = 454, .external_lex_state = 86}, + [4215] = {.lex_state = 454, .external_lex_state = 86}, + [4216] = {.lex_state = 454, .external_lex_state = 86}, + [4217] = {.lex_state = 454, .external_lex_state = 86}, + [4218] = {.lex_state = 454, .external_lex_state = 86}, + [4219] = {.lex_state = 454, .external_lex_state = 86}, + [4220] = {.lex_state = 454, .external_lex_state = 86}, + [4221] = {.lex_state = 454, .external_lex_state = 86}, + [4222] = {.lex_state = 454, .external_lex_state = 86}, + [4223] = {.lex_state = 454, .external_lex_state = 86}, + [4224] = {.lex_state = 454, .external_lex_state = 86}, + [4225] = {.lex_state = 454, .external_lex_state = 86}, + [4226] = {.lex_state = 454, .external_lex_state = 86}, + [4227] = {.lex_state = 454, .external_lex_state = 86}, + [4228] = {.lex_state = 454, .external_lex_state = 86}, + [4229] = {.lex_state = 454, .external_lex_state = 86}, + [4230] = {.lex_state = 454, .external_lex_state = 86}, + [4231] = {.lex_state = 454, .external_lex_state = 86}, + [4232] = {.lex_state = 454, .external_lex_state = 86}, + [4233] = {.lex_state = 454, .external_lex_state = 86}, + [4234] = {.lex_state = 454, .external_lex_state = 86}, + [4235] = {.lex_state = 454, .external_lex_state = 86}, + [4236] = {.lex_state = 454, .external_lex_state = 86}, + [4237] = {.lex_state = 454, .external_lex_state = 86}, + [4238] = {.lex_state = 454, .external_lex_state = 86}, + [4239] = {.lex_state = 454, .external_lex_state = 86}, + [4240] = {.lex_state = 454, .external_lex_state = 86}, + [4241] = {.lex_state = 454, .external_lex_state = 86}, + [4242] = {.lex_state = 454, .external_lex_state = 86}, + [4243] = {.lex_state = 454, .external_lex_state = 86}, + [4244] = {.lex_state = 454, .external_lex_state = 86}, + [4245] = {.lex_state = 454, .external_lex_state = 86}, + [4246] = {.lex_state = 454, .external_lex_state = 86}, + [4247] = {.lex_state = 454, .external_lex_state = 86}, + [4248] = {.lex_state = 454, .external_lex_state = 86}, + [4249] = {.lex_state = 454, .external_lex_state = 86}, + [4250] = {.lex_state = 454, .external_lex_state = 86}, + [4251] = {.lex_state = 454, .external_lex_state = 86}, + [4252] = {.lex_state = 454, .external_lex_state = 86}, + [4253] = {.lex_state = 454, .external_lex_state = 86}, + [4254] = {.lex_state = 454, .external_lex_state = 86}, + [4255] = {.lex_state = 454, .external_lex_state = 86}, + [4256] = {.lex_state = 454, .external_lex_state = 86}, + [4257] = {.lex_state = 454, .external_lex_state = 86}, + [4258] = {.lex_state = 454, .external_lex_state = 86}, + [4259] = {.lex_state = 454, .external_lex_state = 86}, + [4260] = {.lex_state = 454, .external_lex_state = 86}, + [4261] = {.lex_state = 271, .external_lex_state = 87}, + [4262] = {.lex_state = 90, .external_lex_state = 88}, + [4263] = {.lex_state = 90, .external_lex_state = 89}, + [4264] = {.lex_state = 88, .external_lex_state = 90}, + [4265] = {.lex_state = 88, .external_lex_state = 90}, + [4266] = {.lex_state = 91, .external_lex_state = 91}, + [4267] = {.lex_state = 90, .external_lex_state = 88}, + [4268] = {.lex_state = 90, .external_lex_state = 88}, + [4269] = {.lex_state = 271, .external_lex_state = 87}, + [4270] = {.lex_state = 484, .external_lex_state = 92}, + [4271] = {.lex_state = 90, .external_lex_state = 88}, + [4272] = {.lex_state = 88, .external_lex_state = 90}, + [4273] = {.lex_state = 88, .external_lex_state = 90}, + [4274] = {.lex_state = 91, .external_lex_state = 91}, + [4275] = {.lex_state = 90, .external_lex_state = 89}, + [4276] = {.lex_state = 90, .external_lex_state = 93}, + [4277] = {.lex_state = 91, .external_lex_state = 94}, + [4278] = {.lex_state = 90, .external_lex_state = 88}, + [4279] = {.lex_state = 88, .external_lex_state = 90}, + [4280] = {.lex_state = 90, .external_lex_state = 89}, + [4281] = {.lex_state = 90, .external_lex_state = 89}, + [4282] = {.lex_state = 90, .external_lex_state = 89}, + [4283] = {.lex_state = 90, .external_lex_state = 89}, + [4284] = {.lex_state = 90, .external_lex_state = 95}, + [4285] = {.lex_state = 88, .external_lex_state = 90}, + [4286] = {.lex_state = 90, .external_lex_state = 95}, + [4287] = {.lex_state = 90, .external_lex_state = 95}, + [4288] = {.lex_state = 90, .external_lex_state = 88}, + [4289] = {.lex_state = 521, .external_lex_state = 93}, + [4290] = {.lex_state = 88, .external_lex_state = 90}, + [4291] = {.lex_state = 523, .external_lex_state = 94}, + [4292] = {.lex_state = 90, .external_lex_state = 95}, + [4293] = {.lex_state = 91, .external_lex_state = 62}, + [4294] = {.lex_state = 91, .external_lex_state = 89}, + [4295] = {.lex_state = 90, .external_lex_state = 89}, + [4296] = {.lex_state = 90, .external_lex_state = 89}, + [4297] = {.lex_state = 90, .external_lex_state = 89}, + [4298] = {.lex_state = 91, .external_lex_state = 91}, + [4299] = {.lex_state = 91, .external_lex_state = 91}, + [4300] = {.lex_state = 91, .external_lex_state = 91}, + [4301] = {.lex_state = 91, .external_lex_state = 91}, + [4302] = {.lex_state = 91, .external_lex_state = 62}, + [4303] = {.lex_state = 90, .external_lex_state = 89}, + [4304] = {.lex_state = 90, .external_lex_state = 89}, + [4305] = {.lex_state = 90, .external_lex_state = 89}, + [4306] = {.lex_state = 523, .external_lex_state = 94}, + [4307] = {.lex_state = 90, .external_lex_state = 93}, + [4308] = {.lex_state = 90, .external_lex_state = 93}, + [4309] = {.lex_state = 91, .external_lex_state = 91}, + [4310] = {.lex_state = 521, .external_lex_state = 95}, + [4311] = {.lex_state = 90, .external_lex_state = 88}, + [4312] = {.lex_state = 90, .external_lex_state = 89}, + [4313] = {.lex_state = 90, .external_lex_state = 88}, + [4314] = {.lex_state = 90, .external_lex_state = 89}, + [4315] = {.lex_state = 90, .external_lex_state = 89}, + [4316] = {.lex_state = 90, .external_lex_state = 88}, + [4317] = {.lex_state = 521, .external_lex_state = 95}, + [4318] = {.lex_state = 90, .external_lex_state = 89}, + [4319] = {.lex_state = 91, .external_lex_state = 88}, + [4320] = {.lex_state = 91, .external_lex_state = 88}, + [4321] = {.lex_state = 521, .external_lex_state = 95}, + [4322] = {.lex_state = 91, .external_lex_state = 64}, + [4323] = {.lex_state = 484, .external_lex_state = 96}, + [4324] = {.lex_state = 484, .external_lex_state = 96}, + [4325] = {.lex_state = 90, .external_lex_state = 89}, + [4326] = {.lex_state = 484, .external_lex_state = 96}, + [4327] = {.lex_state = 484, .external_lex_state = 96}, + [4328] = {.lex_state = 522, .external_lex_state = 95}, + [4329] = {.lex_state = 522, .external_lex_state = 95}, + [4330] = {.lex_state = 522, .external_lex_state = 95}, + [4331] = {.lex_state = 521, .external_lex_state = 95}, + [4332] = {.lex_state = 90, .external_lex_state = 95}, + [4333] = {.lex_state = 521, .external_lex_state = 95}, + [4334] = {.lex_state = 91, .external_lex_state = 91}, + [4335] = {.lex_state = 521, .external_lex_state = 95}, + [4336] = {.lex_state = 90, .external_lex_state = 93}, + [4337] = {.lex_state = 90, .external_lex_state = 93}, + [4338] = {.lex_state = 90, .external_lex_state = 93}, + [4339] = {.lex_state = 90, .external_lex_state = 93}, + [4340] = {.lex_state = 91, .external_lex_state = 91}, + [4341] = {.lex_state = 91, .external_lex_state = 91}, + [4342] = {.lex_state = 523, .external_lex_state = 93}, + [4343] = {.lex_state = 524, .external_lex_state = 64}, + [4344] = {.lex_state = 521, .external_lex_state = 95}, + [4345] = {.lex_state = 521, .external_lex_state = 93}, + [4346] = {.lex_state = 521, .external_lex_state = 93}, + [4347] = {.lex_state = 521, .external_lex_state = 93}, + [4348] = {.lex_state = 91, .external_lex_state = 91}, + [4349] = {.lex_state = 521, .external_lex_state = 93}, + [4350] = {.lex_state = 521, .external_lex_state = 93}, + [4351] = {.lex_state = 521, .external_lex_state = 93}, + [4352] = {.lex_state = 521, .external_lex_state = 93}, + [4353] = {.lex_state = 521, .external_lex_state = 93}, + [4354] = {.lex_state = 521, .external_lex_state = 93}, + [4355] = {.lex_state = 522, .external_lex_state = 95}, + [4356] = {.lex_state = 521, .external_lex_state = 93}, + [4357] = {.lex_state = 521, .external_lex_state = 93}, + [4358] = {.lex_state = 521, .external_lex_state = 93}, + [4359] = {.lex_state = 521, .external_lex_state = 93}, + [4360] = {.lex_state = 521, .external_lex_state = 93}, + [4361] = {.lex_state = 521, .external_lex_state = 93}, + [4362] = {.lex_state = 521, .external_lex_state = 93}, + [4363] = {.lex_state = 521, .external_lex_state = 93}, + [4364] = {.lex_state = 521, .external_lex_state = 93}, + [4365] = {.lex_state = 522, .external_lex_state = 95}, + [4366] = {.lex_state = 90, .external_lex_state = 95}, + [4367] = {.lex_state = 521, .external_lex_state = 93}, + [4368] = {.lex_state = 521, .external_lex_state = 93}, + [4369] = {.lex_state = 521, .external_lex_state = 93}, + [4370] = {.lex_state = 522, .external_lex_state = 95}, + [4371] = {.lex_state = 91, .external_lex_state = 91}, + [4372] = {.lex_state = 523, .external_lex_state = 94}, + [4373] = {.lex_state = 523, .external_lex_state = 94}, + [4374] = {.lex_state = 91, .external_lex_state = 94}, + [4375] = {.lex_state = 90, .external_lex_state = 89}, + [4376] = {.lex_state = 522, .external_lex_state = 95}, + [4377] = {.lex_state = 523, .external_lex_state = 94}, + [4378] = {.lex_state = 523, .external_lex_state = 94}, + [4379] = {.lex_state = 522, .external_lex_state = 95}, + [4380] = {.lex_state = 523, .external_lex_state = 94}, + [4381] = {.lex_state = 524, .external_lex_state = 64}, + [4382] = {.lex_state = 523, .external_lex_state = 94}, + [4383] = {.lex_state = 523, .external_lex_state = 94}, + [4384] = {.lex_state = 523, .external_lex_state = 94}, + [4385] = {.lex_state = 521, .external_lex_state = 93}, + [4386] = {.lex_state = 523, .external_lex_state = 94}, + [4387] = {.lex_state = 523, .external_lex_state = 94}, + [4388] = {.lex_state = 523, .external_lex_state = 94}, + [4389] = {.lex_state = 521, .external_lex_state = 93}, + [4390] = {.lex_state = 91, .external_lex_state = 94}, + [4391] = {.lex_state = 523, .external_lex_state = 94}, + [4392] = {.lex_state = 523, .external_lex_state = 94}, + [4393] = {.lex_state = 523, .external_lex_state = 94}, + [4394] = {.lex_state = 523, .external_lex_state = 94}, + [4395] = {.lex_state = 523, .external_lex_state = 94}, + [4396] = {.lex_state = 523, .external_lex_state = 94}, + [4397] = {.lex_state = 523, .external_lex_state = 94}, + [4398] = {.lex_state = 523, .external_lex_state = 94}, + [4399] = {.lex_state = 523, .external_lex_state = 94}, + [4400] = {.lex_state = 523, .external_lex_state = 94}, + [4401] = {.lex_state = 90, .external_lex_state = 89}, + [4402] = {.lex_state = 91, .external_lex_state = 89}, + [4403] = {.lex_state = 91, .external_lex_state = 89}, + [4404] = {.lex_state = 90, .external_lex_state = 89}, + [4405] = {.lex_state = 91, .external_lex_state = 89}, + [4406] = {.lex_state = 522, .external_lex_state = 95}, + [4407] = {.lex_state = 91, .external_lex_state = 91}, + [4408] = {.lex_state = 91, .external_lex_state = 89}, + [4409] = {.lex_state = 91, .external_lex_state = 89}, + [4410] = {.lex_state = 90, .external_lex_state = 89}, + [4411] = {.lex_state = 90, .external_lex_state = 89}, + [4412] = {.lex_state = 91, .external_lex_state = 91}, + [4413] = {.lex_state = 90, .external_lex_state = 89}, + [4414] = {.lex_state = 90, .external_lex_state = 89}, + [4415] = {.lex_state = 90, .external_lex_state = 89}, + [4416] = {.lex_state = 91, .external_lex_state = 91}, + [4417] = {.lex_state = 91, .external_lex_state = 91}, + [4418] = {.lex_state = 91, .external_lex_state = 91}, + [4419] = {.lex_state = 91, .external_lex_state = 91}, + [4420] = {.lex_state = 90, .external_lex_state = 89}, + [4421] = {.lex_state = 90, .external_lex_state = 89}, + [4422] = {.lex_state = 90, .external_lex_state = 89}, + [4423] = {.lex_state = 91, .external_lex_state = 89}, + [4424] = {.lex_state = 91, .external_lex_state = 89}, + [4425] = {.lex_state = 91, .external_lex_state = 62}, + [4426] = {.lex_state = 91, .external_lex_state = 91}, + [4427] = {.lex_state = 90, .external_lex_state = 88}, + [4428] = {.lex_state = 91, .external_lex_state = 91}, + [4429] = {.lex_state = 90, .external_lex_state = 88}, + [4430] = {.lex_state = 91, .external_lex_state = 91}, + [4431] = {.lex_state = 91, .external_lex_state = 91}, + [4432] = {.lex_state = 91, .external_lex_state = 91}, + [4433] = {.lex_state = 91, .external_lex_state = 88}, + [4434] = {.lex_state = 91, .external_lex_state = 88}, + [4435] = {.lex_state = 91, .external_lex_state = 91}, + [4436] = {.lex_state = 91, .external_lex_state = 88}, + [4437] = {.lex_state = 91, .external_lex_state = 62}, + [4438] = {.lex_state = 521, .external_lex_state = 95}, + [4439] = {.lex_state = 91, .external_lex_state = 89}, + [4440] = {.lex_state = 91, .external_lex_state = 89}, + [4441] = {.lex_state = 90, .external_lex_state = 89}, + [4442] = {.lex_state = 90, .external_lex_state = 89}, + [4443] = {.lex_state = 91, .external_lex_state = 89}, + [4444] = {.lex_state = 91, .external_lex_state = 89}, + [4445] = {.lex_state = 90, .external_lex_state = 88}, + [4446] = {.lex_state = 91, .external_lex_state = 91}, + [4447] = {.lex_state = 91, .external_lex_state = 91}, + [4448] = {.lex_state = 90, .external_lex_state = 93}, + [4449] = {.lex_state = 90, .external_lex_state = 93}, + [4450] = {.lex_state = 90, .external_lex_state = 88}, + [4451] = {.lex_state = 91, .external_lex_state = 93}, + [4452] = {.lex_state = 90, .external_lex_state = 93}, + [4453] = {.lex_state = 90, .external_lex_state = 89}, + [4454] = {.lex_state = 90, .external_lex_state = 89}, + [4455] = {.lex_state = 90, .external_lex_state = 93}, + [4456] = {.lex_state = 90, .external_lex_state = 93}, + [4457] = {.lex_state = 91, .external_lex_state = 64}, + [4458] = {.lex_state = 91, .external_lex_state = 88}, + [4459] = {.lex_state = 90, .external_lex_state = 88}, + [4460] = {.lex_state = 91, .external_lex_state = 94}, + [4461] = {.lex_state = 91, .external_lex_state = 94}, + [4462] = {.lex_state = 91, .external_lex_state = 94}, + [4463] = {.lex_state = 523, .external_lex_state = 94}, + [4464] = {.lex_state = 90, .external_lex_state = 93}, + [4465] = {.lex_state = 91, .external_lex_state = 88}, + [4466] = {.lex_state = 91, .external_lex_state = 94}, + [4467] = {.lex_state = 90, .external_lex_state = 95}, + [4468] = {.lex_state = 524, .external_lex_state = 95}, + [4469] = {.lex_state = 524, .external_lex_state = 95}, + [4470] = {.lex_state = 91, .external_lex_state = 89}, + [4471] = {.lex_state = 91, .external_lex_state = 94}, + [4472] = {.lex_state = 90, .external_lex_state = 95}, + [4473] = {.lex_state = 91, .external_lex_state = 95}, + [4474] = {.lex_state = 91, .external_lex_state = 95}, + [4475] = {.lex_state = 90, .external_lex_state = 93}, + [4476] = {.lex_state = 523, .external_lex_state = 93}, [4477] = {.lex_state = 523, .external_lex_state = 93}, - [4478] = {.lex_state = 89, .external_lex_state = 91}, - [4479] = {.lex_state = 301, .external_lex_state = 97}, - [4480] = {.lex_state = 524, .external_lex_state = 94}, - [4481] = {.lex_state = 524, .external_lex_state = 94}, - [4482] = {.lex_state = 524, .external_lex_state = 94}, - [4483] = {.lex_state = 524, .external_lex_state = 94}, - [4484] = {.lex_state = 522, .external_lex_state = 94}, - [4485] = {.lex_state = 524, .external_lex_state = 95}, - [4486] = {.lex_state = 89, .external_lex_state = 95}, - [4487] = {.lex_state = 89, .external_lex_state = 95}, - [4488] = {.lex_state = 524, .external_lex_state = 94}, - [4489] = {.lex_state = 522, .external_lex_state = 94}, - [4490] = {.lex_state = 522, .external_lex_state = 94}, - [4491] = {.lex_state = 88, .external_lex_state = 94}, - [4492] = {.lex_state = 89, .external_lex_state = 93}, - [4493] = {.lex_state = 524, .external_lex_state = 94}, - [4494] = {.lex_state = 301, .external_lex_state = 97}, - [4495] = {.lex_state = 523, .external_lex_state = 93}, - [4496] = {.lex_state = 88, .external_lex_state = 94}, - [4497] = {.lex_state = 524, .external_lex_state = 94}, - [4498] = {.lex_state = 522, .external_lex_state = 94}, - [4499] = {.lex_state = 522, .external_lex_state = 94}, - [4500] = {.lex_state = 524, .external_lex_state = 95}, - [4501] = {.lex_state = 524, .external_lex_state = 95}, - [4502] = {.lex_state = 522, .external_lex_state = 93}, - [4503] = {.lex_state = 525, .external_lex_state = 93}, - [4504] = {.lex_state = 523, .external_lex_state = 93}, - [4505] = {.lex_state = 525, .external_lex_state = 93}, - [4506] = {.lex_state = 524, .external_lex_state = 94}, - [4507] = {.lex_state = 524, .external_lex_state = 94}, - [4508] = {.lex_state = 524, .external_lex_state = 94}, - [4509] = {.lex_state = 89, .external_lex_state = 93}, - [4510] = {.lex_state = 89, .external_lex_state = 95}, - [4511] = {.lex_state = 88, .external_lex_state = 94}, - [4512] = {.lex_state = 89, .external_lex_state = 93}, - [4513] = {.lex_state = 88, .external_lex_state = 88}, - [4514] = {.lex_state = 522, .external_lex_state = 93}, - [4515] = {.lex_state = 89, .external_lex_state = 95}, - [4516] = {.lex_state = 88, .external_lex_state = 94}, - [4517] = {.lex_state = 89, .external_lex_state = 95}, - [4518] = {.lex_state = 89, .external_lex_state = 91}, - [4519] = {.lex_state = 89, .external_lex_state = 91}, - [4520] = {.lex_state = 88, .external_lex_state = 93}, - [4521] = {.lex_state = 89, .external_lex_state = 95}, - [4522] = {.lex_state = 89, .external_lex_state = 91}, - [4523] = {.lex_state = 89, .external_lex_state = 91}, - [4524] = {.lex_state = 89, .external_lex_state = 94}, - [4525] = {.lex_state = 525, .external_lex_state = 93}, - [4526] = {.lex_state = 89, .external_lex_state = 94}, - [4527] = {.lex_state = 525, .external_lex_state = 93}, - [4528] = {.lex_state = 89, .external_lex_state = 91}, - [4529] = {.lex_state = 524, .external_lex_state = 95}, - [4530] = {.lex_state = 524, .external_lex_state = 95}, - [4531] = {.lex_state = 89, .external_lex_state = 88}, - [4532] = {.lex_state = 89, .external_lex_state = 94}, - [4533] = {.lex_state = 89, .external_lex_state = 94}, - [4534] = {.lex_state = 89, .external_lex_state = 95}, - [4535] = {.lex_state = 89, .external_lex_state = 91}, - [4536] = {.lex_state = 89, .external_lex_state = 88}, - [4537] = {.lex_state = 301, .external_lex_state = 97}, - [4538] = {.lex_state = 89, .external_lex_state = 65}, - [4539] = {.lex_state = 301, .external_lex_state = 97}, - [4540] = {.lex_state = 89, .external_lex_state = 93}, - [4541] = {.lex_state = 522, .external_lex_state = 93}, - [4542] = {.lex_state = 89, .external_lex_state = 91}, - [4543] = {.lex_state = 524, .external_lex_state = 65}, - [4544] = {.lex_state = 89, .external_lex_state = 91}, - [4545] = {.lex_state = 89, .external_lex_state = 91}, - [4546] = {.lex_state = 522, .external_lex_state = 93}, - [4547] = {.lex_state = 88, .external_lex_state = 93}, - [4548] = {.lex_state = 88, .external_lex_state = 94}, - [4549] = {.lex_state = 88, .external_lex_state = 93}, - [4550] = {.lex_state = 524, .external_lex_state = 95}, - [4551] = {.lex_state = 89, .external_lex_state = 91}, - [4552] = {.lex_state = 524, .external_lex_state = 95}, - [4553] = {.lex_state = 88, .external_lex_state = 94}, - [4554] = {.lex_state = 89, .external_lex_state = 91}, - [4555] = {.lex_state = 89, .external_lex_state = 91}, - [4556] = {.lex_state = 522, .external_lex_state = 94}, - [4557] = {.lex_state = 522, .external_lex_state = 93}, - [4558] = {.lex_state = 89, .external_lex_state = 91}, - [4559] = {.lex_state = 89, .external_lex_state = 61}, - [4560] = {.lex_state = 89, .external_lex_state = 95}, - [4561] = {.lex_state = 89, .external_lex_state = 95}, - [4562] = {.lex_state = 522, .external_lex_state = 94}, - [4563] = {.lex_state = 88, .external_lex_state = 94}, - [4564] = {.lex_state = 88, .external_lex_state = 94}, - [4565] = {.lex_state = 89, .external_lex_state = 95}, - [4566] = {.lex_state = 89, .external_lex_state = 95}, - [4567] = {.lex_state = 525, .external_lex_state = 65}, - [4568] = {.lex_state = 89, .external_lex_state = 91}, - [4569] = {.lex_state = 524, .external_lex_state = 65}, - [4570] = {.lex_state = 524, .external_lex_state = 65}, - [4571] = {.lex_state = 524, .external_lex_state = 65}, - [4572] = {.lex_state = 522, .external_lex_state = 94}, - [4573] = {.lex_state = 522, .external_lex_state = 94}, - [4574] = {.lex_state = 524, .external_lex_state = 95}, - [4575] = {.lex_state = 524, .external_lex_state = 95}, - [4576] = {.lex_state = 522, .external_lex_state = 94}, - [4577] = {.lex_state = 522, .external_lex_state = 94}, - [4578] = {.lex_state = 522, .external_lex_state = 94}, - [4579] = {.lex_state = 522, .external_lex_state = 94}, - [4580] = {.lex_state = 522, .external_lex_state = 94}, - [4581] = {.lex_state = 522, .external_lex_state = 94}, - [4582] = {.lex_state = 522, .external_lex_state = 94}, - [4583] = {.lex_state = 522, .external_lex_state = 94}, - [4584] = {.lex_state = 522, .external_lex_state = 94}, - [4585] = {.lex_state = 88, .external_lex_state = 94}, - [4586] = {.lex_state = 522, .external_lex_state = 94}, - [4587] = {.lex_state = 88, .external_lex_state = 94}, - [4588] = {.lex_state = 88, .external_lex_state = 94}, - [4589] = {.lex_state = 88, .external_lex_state = 94}, - [4590] = {.lex_state = 88, .external_lex_state = 94}, - [4591] = {.lex_state = 89, .external_lex_state = 95}, - [4592] = {.lex_state = 89, .external_lex_state = 95}, - [4593] = {.lex_state = 525, .external_lex_state = 65}, - [4594] = {.lex_state = 89, .external_lex_state = 95}, - [4595] = {.lex_state = 525, .external_lex_state = 65}, - [4596] = {.lex_state = 524, .external_lex_state = 95}, - [4597] = {.lex_state = 524, .external_lex_state = 95}, - [4598] = {.lex_state = 522, .external_lex_state = 94}, - [4599] = {.lex_state = 522, .external_lex_state = 94}, - [4600] = {.lex_state = 522, .external_lex_state = 94}, - [4601] = {.lex_state = 522, .external_lex_state = 94}, - [4602] = {.lex_state = 522, .external_lex_state = 94}, - [4603] = {.lex_state = 522, .external_lex_state = 94}, - [4604] = {.lex_state = 522, .external_lex_state = 94}, - [4605] = {.lex_state = 522, .external_lex_state = 94}, - [4606] = {.lex_state = 89, .external_lex_state = 95}, - [4607] = {.lex_state = 524, .external_lex_state = 94}, - [4608] = {.lex_state = 459, .external_lex_state = 98}, - [4609] = {.lex_state = 477, .external_lex_state = 99}, - [4610] = {.lex_state = 522, .external_lex_state = 93}, - [4611] = {.lex_state = 459, .external_lex_state = 98}, - [4612] = {.lex_state = 89, .external_lex_state = 94}, - [4613] = {.lex_state = 88, .external_lex_state = 88}, - [4614] = {.lex_state = 89, .external_lex_state = 94}, - [4615] = {.lex_state = 459, .external_lex_state = 98}, - [4616] = {.lex_state = 525, .external_lex_state = 93}, - [4617] = {.lex_state = 477, .external_lex_state = 99}, - [4618] = {.lex_state = 523, .external_lex_state = 93}, - [4619] = {.lex_state = 524, .external_lex_state = 94}, - [4620] = {.lex_state = 524, .external_lex_state = 94}, - [4621] = {.lex_state = 459, .external_lex_state = 98}, - [4622] = {.lex_state = 523, .external_lex_state = 93}, - [4623] = {.lex_state = 477, .external_lex_state = 99}, - [4624] = {.lex_state = 459, .external_lex_state = 98}, - [4625] = {.lex_state = 523, .external_lex_state = 93}, - [4626] = {.lex_state = 522, .external_lex_state = 93}, - [4627] = {.lex_state = 522, .external_lex_state = 93}, - [4628] = {.lex_state = 459, .external_lex_state = 98}, - [4629] = {.lex_state = 89, .external_lex_state = 94}, - [4630] = {.lex_state = 89, .external_lex_state = 94}, - [4631] = {.lex_state = 523, .external_lex_state = 93}, - [4632] = {.lex_state = 459, .external_lex_state = 98}, - [4633] = {.lex_state = 459, .external_lex_state = 98}, - [4634] = {.lex_state = 524, .external_lex_state = 93}, - [4635] = {.lex_state = 524, .external_lex_state = 93}, - [4636] = {.lex_state = 301, .external_lex_state = 97}, - [4637] = {.lex_state = 459, .external_lex_state = 98}, - [4638] = {.lex_state = 459, .external_lex_state = 98}, - [4639] = {.lex_state = 301, .external_lex_state = 97}, - [4640] = {.lex_state = 301, .external_lex_state = 97}, - [4641] = {.lex_state = 459, .external_lex_state = 98}, - [4642] = {.lex_state = 89, .external_lex_state = 88}, - [4643] = {.lex_state = 301, .external_lex_state = 97}, - [4644] = {.lex_state = 301, .external_lex_state = 97}, - [4645] = {.lex_state = 89, .external_lex_state = 93}, - [4646] = {.lex_state = 459, .external_lex_state = 98}, - [4647] = {.lex_state = 524, .external_lex_state = 94}, - [4648] = {.lex_state = 522, .external_lex_state = 94}, - [4649] = {.lex_state = 522, .external_lex_state = 94}, - [4650] = {.lex_state = 524, .external_lex_state = 95}, - [4651] = {.lex_state = 524, .external_lex_state = 95}, - [4652] = {.lex_state = 459, .external_lex_state = 98}, - [4653] = {.lex_state = 459, .external_lex_state = 98}, - [4654] = {.lex_state = 459, .external_lex_state = 98}, - [4655] = {.lex_state = 459, .external_lex_state = 98}, - [4656] = {.lex_state = 525, .external_lex_state = 93}, - [4657] = {.lex_state = 301, .external_lex_state = 97}, - [4658] = {.lex_state = 477, .external_lex_state = 99}, - [4659] = {.lex_state = 301, .external_lex_state = 97}, - [4660] = {.lex_state = 459, .external_lex_state = 98}, - [4661] = {.lex_state = 524, .external_lex_state = 94}, - [4662] = {.lex_state = 523, .external_lex_state = 93}, - [4663] = {.lex_state = 524, .external_lex_state = 94}, - [4664] = {.lex_state = 89, .external_lex_state = 93}, - [4665] = {.lex_state = 524, .external_lex_state = 94}, - [4666] = {.lex_state = 524, .external_lex_state = 94}, + [4478] = {.lex_state = 523, .external_lex_state = 93}, + [4479] = {.lex_state = 524, .external_lex_state = 95}, + [4480] = {.lex_state = 90, .external_lex_state = 93}, + [4481] = {.lex_state = 523, .external_lex_state = 93}, + [4482] = {.lex_state = 524, .external_lex_state = 95}, + [4483] = {.lex_state = 523, .external_lex_state = 94}, + [4484] = {.lex_state = 523, .external_lex_state = 94}, + [4485] = {.lex_state = 523, .external_lex_state = 93}, + [4486] = {.lex_state = 91, .external_lex_state = 93}, + [4487] = {.lex_state = 523, .external_lex_state = 93}, + [4488] = {.lex_state = 91, .external_lex_state = 93}, + [4489] = {.lex_state = 523, .external_lex_state = 93}, + [4490] = {.lex_state = 523, .external_lex_state = 93}, + [4491] = {.lex_state = 523, .external_lex_state = 93}, + [4492] = {.lex_state = 521, .external_lex_state = 93}, + [4493] = {.lex_state = 521, .external_lex_state = 93}, + [4494] = {.lex_state = 524, .external_lex_state = 95}, + [4495] = {.lex_state = 91, .external_lex_state = 89}, + [4496] = {.lex_state = 91, .external_lex_state = 94}, + [4497] = {.lex_state = 91, .external_lex_state = 95}, + [4498] = {.lex_state = 91, .external_lex_state = 88}, + [4499] = {.lex_state = 91, .external_lex_state = 94}, + [4500] = {.lex_state = 91, .external_lex_state = 94}, + [4501] = {.lex_state = 523, .external_lex_state = 93}, + [4502] = {.lex_state = 301, .external_lex_state = 97}, + [4503] = {.lex_state = 523, .external_lex_state = 93}, + [4504] = {.lex_state = 301, .external_lex_state = 97}, + [4505] = {.lex_state = 523, .external_lex_state = 93}, + [4506] = {.lex_state = 522, .external_lex_state = 95}, + [4507] = {.lex_state = 91, .external_lex_state = 89}, + [4508] = {.lex_state = 301, .external_lex_state = 97}, + [4509] = {.lex_state = 523, .external_lex_state = 93}, + [4510] = {.lex_state = 523, .external_lex_state = 93}, + [4511] = {.lex_state = 523, .external_lex_state = 93}, + [4512] = {.lex_state = 523, .external_lex_state = 93}, + [4513] = {.lex_state = 523, .external_lex_state = 93}, + [4514] = {.lex_state = 523, .external_lex_state = 93}, + [4515] = {.lex_state = 301, .external_lex_state = 97}, + [4516] = {.lex_state = 90, .external_lex_state = 95}, + [4517] = {.lex_state = 523, .external_lex_state = 93}, + [4518] = {.lex_state = 523, .external_lex_state = 93}, + [4519] = {.lex_state = 523, .external_lex_state = 93}, + [4520] = {.lex_state = 91, .external_lex_state = 64}, + [4521] = {.lex_state = 90, .external_lex_state = 93}, + [4522] = {.lex_state = 90, .external_lex_state = 93}, + [4523] = {.lex_state = 90, .external_lex_state = 93}, + [4524] = {.lex_state = 521, .external_lex_state = 93}, + [4525] = {.lex_state = 521, .external_lex_state = 93}, + [4526] = {.lex_state = 90, .external_lex_state = 93}, + [4527] = {.lex_state = 90, .external_lex_state = 93}, + [4528] = {.lex_state = 521, .external_lex_state = 93}, + [4529] = {.lex_state = 521, .external_lex_state = 93}, + [4530] = {.lex_state = 91, .external_lex_state = 94}, + [4531] = {.lex_state = 91, .external_lex_state = 94}, + [4532] = {.lex_state = 523, .external_lex_state = 94}, + [4533] = {.lex_state = 91, .external_lex_state = 94}, + [4534] = {.lex_state = 523, .external_lex_state = 94}, + [4535] = {.lex_state = 521, .external_lex_state = 93}, + [4536] = {.lex_state = 521, .external_lex_state = 93}, + [4537] = {.lex_state = 91, .external_lex_state = 94}, + [4538] = {.lex_state = 91, .external_lex_state = 94}, + [4539] = {.lex_state = 90, .external_lex_state = 93}, + [4540] = {.lex_state = 521, .external_lex_state = 95}, + [4541] = {.lex_state = 90, .external_lex_state = 93}, + [4542] = {.lex_state = 90, .external_lex_state = 93}, + [4543] = {.lex_state = 521, .external_lex_state = 93}, + [4544] = {.lex_state = 521, .external_lex_state = 93}, + [4545] = {.lex_state = 91, .external_lex_state = 94}, + [4546] = {.lex_state = 91, .external_lex_state = 94}, + [4547] = {.lex_state = 91, .external_lex_state = 94}, + [4548] = {.lex_state = 91, .external_lex_state = 94}, + [4549] = {.lex_state = 90, .external_lex_state = 95}, + [4550] = {.lex_state = 523, .external_lex_state = 93}, + [4551] = {.lex_state = 521, .external_lex_state = 93}, + [4552] = {.lex_state = 521, .external_lex_state = 93}, + [4553] = {.lex_state = 523, .external_lex_state = 94}, + [4554] = {.lex_state = 523, .external_lex_state = 94}, + [4555] = {.lex_state = 523, .external_lex_state = 64}, + [4556] = {.lex_state = 524, .external_lex_state = 64}, + [4557] = {.lex_state = 521, .external_lex_state = 95}, + [4558] = {.lex_state = 521, .external_lex_state = 95}, + [4559] = {.lex_state = 301, .external_lex_state = 97}, + [4560] = {.lex_state = 301, .external_lex_state = 97}, + [4561] = {.lex_state = 521, .external_lex_state = 93}, + [4562] = {.lex_state = 523, .external_lex_state = 94}, + [4563] = {.lex_state = 523, .external_lex_state = 93}, + [4564] = {.lex_state = 521, .external_lex_state = 93}, + [4565] = {.lex_state = 521, .external_lex_state = 93}, + [4566] = {.lex_state = 90, .external_lex_state = 93}, + [4567] = {.lex_state = 523, .external_lex_state = 94}, + [4568] = {.lex_state = 523, .external_lex_state = 94}, + [4569] = {.lex_state = 521, .external_lex_state = 95}, + [4570] = {.lex_state = 521, .external_lex_state = 95}, + [4571] = {.lex_state = 91, .external_lex_state = 94}, + [4572] = {.lex_state = 521, .external_lex_state = 95}, + [4573] = {.lex_state = 91, .external_lex_state = 89}, + [4574] = {.lex_state = 521, .external_lex_state = 95}, + [4575] = {.lex_state = 90, .external_lex_state = 95}, + [4576] = {.lex_state = 91, .external_lex_state = 89}, + [4577] = {.lex_state = 91, .external_lex_state = 95}, + [4578] = {.lex_state = 90, .external_lex_state = 93}, + [4579] = {.lex_state = 521, .external_lex_state = 95}, + [4580] = {.lex_state = 91, .external_lex_state = 89}, + [4581] = {.lex_state = 91, .external_lex_state = 89}, + [4582] = {.lex_state = 91, .external_lex_state = 89}, + [4583] = {.lex_state = 91, .external_lex_state = 89}, + [4584] = {.lex_state = 91, .external_lex_state = 89}, + [4585] = {.lex_state = 91, .external_lex_state = 95}, + [4586] = {.lex_state = 90, .external_lex_state = 93}, + [4587] = {.lex_state = 91, .external_lex_state = 95}, + [4588] = {.lex_state = 90, .external_lex_state = 93}, + [4589] = {.lex_state = 91, .external_lex_state = 89}, + [4590] = {.lex_state = 91, .external_lex_state = 89}, + [4591] = {.lex_state = 91, .external_lex_state = 89}, + [4592] = {.lex_state = 91, .external_lex_state = 88}, + [4593] = {.lex_state = 91, .external_lex_state = 94}, + [4594] = {.lex_state = 90, .external_lex_state = 93}, + [4595] = {.lex_state = 91, .external_lex_state = 94}, + [4596] = {.lex_state = 90, .external_lex_state = 93}, + [4597] = {.lex_state = 91, .external_lex_state = 89}, + [4598] = {.lex_state = 90, .external_lex_state = 95}, + [4599] = {.lex_state = 91, .external_lex_state = 89}, + [4600] = {.lex_state = 484, .external_lex_state = 76}, + [4601] = {.lex_state = 91, .external_lex_state = 94}, + [4602] = {.lex_state = 484, .external_lex_state = 76}, + [4603] = {.lex_state = 90, .external_lex_state = 88}, + [4604] = {.lex_state = 90, .external_lex_state = 95}, + [4605] = {.lex_state = 91, .external_lex_state = 93}, + [4606] = {.lex_state = 91, .external_lex_state = 93}, + [4607] = {.lex_state = 484, .external_lex_state = 76}, + [4608] = {.lex_state = 91, .external_lex_state = 89}, + [4609] = {.lex_state = 522, .external_lex_state = 95}, + [4610] = {.lex_state = 91, .external_lex_state = 89}, + [4611] = {.lex_state = 91, .external_lex_state = 62}, + [4612] = {.lex_state = 484, .external_lex_state = 76}, + [4613] = {.lex_state = 523, .external_lex_state = 64}, + [4614] = {.lex_state = 523, .external_lex_state = 64}, + [4615] = {.lex_state = 521, .external_lex_state = 95}, + [4616] = {.lex_state = 91, .external_lex_state = 93}, + [4617] = {.lex_state = 91, .external_lex_state = 93}, + [4618] = {.lex_state = 91, .external_lex_state = 88}, + [4619] = {.lex_state = 522, .external_lex_state = 95}, + [4620] = {.lex_state = 91, .external_lex_state = 88}, + [4621] = {.lex_state = 91, .external_lex_state = 93}, + [4622] = {.lex_state = 91, .external_lex_state = 89}, + [4623] = {.lex_state = 91, .external_lex_state = 89}, + [4624] = {.lex_state = 91, .external_lex_state = 93}, + [4625] = {.lex_state = 523, .external_lex_state = 94}, + [4626] = {.lex_state = 523, .external_lex_state = 94}, + [4627] = {.lex_state = 521, .external_lex_state = 93}, + [4628] = {.lex_state = 521, .external_lex_state = 93}, + [4629] = {.lex_state = 521, .external_lex_state = 93}, + [4630] = {.lex_state = 521, .external_lex_state = 93}, + [4631] = {.lex_state = 521, .external_lex_state = 93}, + [4632] = {.lex_state = 521, .external_lex_state = 93}, + [4633] = {.lex_state = 521, .external_lex_state = 93}, + [4634] = {.lex_state = 521, .external_lex_state = 93}, + [4635] = {.lex_state = 91, .external_lex_state = 93}, + [4636] = {.lex_state = 91, .external_lex_state = 94}, + [4637] = {.lex_state = 91, .external_lex_state = 93}, + [4638] = {.lex_state = 91, .external_lex_state = 93}, + [4639] = {.lex_state = 90, .external_lex_state = 93}, + [4640] = {.lex_state = 90, .external_lex_state = 93}, + [4641] = {.lex_state = 91, .external_lex_state = 94}, + [4642] = {.lex_state = 523, .external_lex_state = 64}, + [4643] = {.lex_state = 524, .external_lex_state = 64}, + [4644] = {.lex_state = 524, .external_lex_state = 64}, + [4645] = {.lex_state = 523, .external_lex_state = 94}, + [4646] = {.lex_state = 523, .external_lex_state = 94}, + [4647] = {.lex_state = 521, .external_lex_state = 93}, + [4648] = {.lex_state = 521, .external_lex_state = 93}, + [4649] = {.lex_state = 521, .external_lex_state = 93}, + [4650] = {.lex_state = 521, .external_lex_state = 93}, + [4651] = {.lex_state = 521, .external_lex_state = 93}, + [4652] = {.lex_state = 521, .external_lex_state = 93}, + [4653] = {.lex_state = 521, .external_lex_state = 93}, + [4654] = {.lex_state = 521, .external_lex_state = 93}, + [4655] = {.lex_state = 90, .external_lex_state = 95}, + [4656] = {.lex_state = 91, .external_lex_state = 64}, + [4657] = {.lex_state = 521, .external_lex_state = 95}, + [4658] = {.lex_state = 90, .external_lex_state = 93}, + [4659] = {.lex_state = 91, .external_lex_state = 89}, + [4660] = {.lex_state = 91, .external_lex_state = 95}, + [4661] = {.lex_state = 459, .external_lex_state = 98}, + [4662] = {.lex_state = 523, .external_lex_state = 95}, + [4663] = {.lex_state = 523, .external_lex_state = 93}, + [4664] = {.lex_state = 91, .external_lex_state = 88}, + [4665] = {.lex_state = 459, .external_lex_state = 98}, + [4666] = {.lex_state = 522, .external_lex_state = 95}, [4667] = {.lex_state = 459, .external_lex_state = 98}, - [4668] = {.lex_state = 523, .external_lex_state = 93}, - [4669] = {.lex_state = 524, .external_lex_state = 93}, - [4670] = {.lex_state = 525, .external_lex_state = 93}, - [4671] = {.lex_state = 459, .external_lex_state = 98}, - [4672] = {.lex_state = 524, .external_lex_state = 94}, - [4673] = {.lex_state = 89, .external_lex_state = 88}, - [4674] = {.lex_state = 524, .external_lex_state = 94}, + [4668] = {.lex_state = 459, .external_lex_state = 98}, + [4669] = {.lex_state = 522, .external_lex_state = 95}, + [4670] = {.lex_state = 459, .external_lex_state = 98}, + [4671] = {.lex_state = 523, .external_lex_state = 93}, + [4672] = {.lex_state = 459, .external_lex_state = 98}, + [4673] = {.lex_state = 459, .external_lex_state = 98}, + [4674] = {.lex_state = 301, .external_lex_state = 97}, [4675] = {.lex_state = 459, .external_lex_state = 98}, - [4676] = {.lex_state = 89, .external_lex_state = 88}, - [4677] = {.lex_state = 523, .external_lex_state = 93}, - [4678] = {.lex_state = 525, .external_lex_state = 93}, - [4679] = {.lex_state = 523, .external_lex_state = 93}, - [4680] = {.lex_state = 525, .external_lex_state = 93}, - [4681] = {.lex_state = 89, .external_lex_state = 88}, - [4682] = {.lex_state = 525, .external_lex_state = 93}, - [4683] = {.lex_state = 523, .external_lex_state = 93}, + [4676] = {.lex_state = 459, .external_lex_state = 98}, + [4677] = {.lex_state = 459, .external_lex_state = 98}, + [4678] = {.lex_state = 459, .external_lex_state = 98}, + [4679] = {.lex_state = 459, .external_lex_state = 98}, + [4680] = {.lex_state = 301, .external_lex_state = 97}, + [4681] = {.lex_state = 459, .external_lex_state = 98}, + [4682] = {.lex_state = 459, .external_lex_state = 98}, + [4683] = {.lex_state = 459, .external_lex_state = 98}, [4684] = {.lex_state = 459, .external_lex_state = 98}, - [4685] = {.lex_state = 523, .external_lex_state = 93}, + [4685] = {.lex_state = 459, .external_lex_state = 98}, [4686] = {.lex_state = 459, .external_lex_state = 98}, - [4687] = {.lex_state = 477, .external_lex_state = 99}, + [4687] = {.lex_state = 523, .external_lex_state = 95}, [4688] = {.lex_state = 459, .external_lex_state = 98}, - [4689] = {.lex_state = 523, .external_lex_state = 93}, - [4690] = {.lex_state = 459, .external_lex_state = 98}, - [4691] = {.lex_state = 459, .external_lex_state = 98}, - [4692] = {.lex_state = 524, .external_lex_state = 93}, - [4693] = {.lex_state = 523, .external_lex_state = 93}, - [4694] = {.lex_state = 524, .external_lex_state = 94}, - [4695] = {.lex_state = 88, .external_lex_state = 93}, - [4696] = {.lex_state = 459, .external_lex_state = 98}, - [4697] = {.lex_state = 459, .external_lex_state = 98}, - [4698] = {.lex_state = 524, .external_lex_state = 94}, - [4699] = {.lex_state = 459, .external_lex_state = 98}, - [4700] = {.lex_state = 459, .external_lex_state = 98}, - [4701] = {.lex_state = 524, .external_lex_state = 94}, - [4702] = {.lex_state = 89, .external_lex_state = 94}, - [4703] = {.lex_state = 301, .external_lex_state = 97}, - [4704] = {.lex_state = 89, .external_lex_state = 94}, - [4705] = {.lex_state = 525, .external_lex_state = 65}, - [4706] = {.lex_state = 89, .external_lex_state = 93}, + [4689] = {.lex_state = 522, .external_lex_state = 95}, + [4690] = {.lex_state = 522, .external_lex_state = 95}, + [4691] = {.lex_state = 477, .external_lex_state = 99}, + [4692] = {.lex_state = 301, .external_lex_state = 97}, + [4693] = {.lex_state = 90, .external_lex_state = 88}, + [4694] = {.lex_state = 522, .external_lex_state = 95}, + [4695] = {.lex_state = 301, .external_lex_state = 97}, + [4696] = {.lex_state = 91, .external_lex_state = 93}, + [4697] = {.lex_state = 522, .external_lex_state = 95}, + [4698] = {.lex_state = 523, .external_lex_state = 93}, + [4699] = {.lex_state = 523, .external_lex_state = 93}, + [4700] = {.lex_state = 523, .external_lex_state = 93}, + [4701] = {.lex_state = 459, .external_lex_state = 98}, + [4702] = {.lex_state = 301, .external_lex_state = 97}, + [4703] = {.lex_state = 91, .external_lex_state = 95}, + [4704] = {.lex_state = 90, .external_lex_state = 88}, + [4705] = {.lex_state = 523, .external_lex_state = 93}, + [4706] = {.lex_state = 459, .external_lex_state = 98}, [4707] = {.lex_state = 459, .external_lex_state = 98}, - [4708] = {.lex_state = 301, .external_lex_state = 97}, + [4708] = {.lex_state = 521, .external_lex_state = 95}, [4709] = {.lex_state = 301, .external_lex_state = 97}, - [4710] = {.lex_state = 523, .external_lex_state = 93}, - [4711] = {.lex_state = 88, .external_lex_state = 88}, - [4712] = {.lex_state = 459, .external_lex_state = 98}, + [4710] = {.lex_state = 521, .external_lex_state = 95}, + [4711] = {.lex_state = 459, .external_lex_state = 98}, + [4712] = {.lex_state = 91, .external_lex_state = 88}, [4713] = {.lex_state = 301, .external_lex_state = 97}, - [4714] = {.lex_state = 89, .external_lex_state = 93}, - [4715] = {.lex_state = 88, .external_lex_state = 88}, - [4716] = {.lex_state = 522, .external_lex_state = 93}, - [4717] = {.lex_state = 89, .external_lex_state = 88}, - [4718] = {.lex_state = 301, .external_lex_state = 97}, - [4719] = {.lex_state = 459, .external_lex_state = 98}, - [4720] = {.lex_state = 525, .external_lex_state = 93}, - [4721] = {.lex_state = 301, .external_lex_state = 97}, - [4722] = {.lex_state = 89, .external_lex_state = 65}, - [4723] = {.lex_state = 301, .external_lex_state = 97}, - [4724] = {.lex_state = 523, .external_lex_state = 93}, - [4725] = {.lex_state = 524, .external_lex_state = 93}, - [4726] = {.lex_state = 301, .external_lex_state = 97}, - [4727] = {.lex_state = 89, .external_lex_state = 94}, - [4728] = {.lex_state = 89, .external_lex_state = 61}, - [4729] = {.lex_state = 524, .external_lex_state = 93}, - [4730] = {.lex_state = 459, .external_lex_state = 98}, - [4731] = {.lex_state = 301, .external_lex_state = 97}, - [4732] = {.lex_state = 89, .external_lex_state = 94}, - [4733] = {.lex_state = 522, .external_lex_state = 93}, - [4734] = {.lex_state = 524, .external_lex_state = 93}, - [4735] = {.lex_state = 89, .external_lex_state = 88}, - [4736] = {.lex_state = 477, .external_lex_state = 99}, - [4737] = {.lex_state = 477, .external_lex_state = 99}, - [4738] = {.lex_state = 524, .external_lex_state = 93}, - [4739] = {.lex_state = 459, .external_lex_state = 98}, - [4740] = {.lex_state = 524, .external_lex_state = 93}, - [4741] = {.lex_state = 524, .external_lex_state = 93}, - [4742] = {.lex_state = 301, .external_lex_state = 97}, - [4743] = {.lex_state = 301, .external_lex_state = 97}, - [4744] = {.lex_state = 301, .external_lex_state = 97}, - [4745] = {.lex_state = 459, .external_lex_state = 98}, - [4746] = {.lex_state = 459, .external_lex_state = 98}, - [4747] = {.lex_state = 459, .external_lex_state = 98}, - [4748] = {.lex_state = 522, .external_lex_state = 93}, - [4749] = {.lex_state = 88, .external_lex_state = 88}, - [4750] = {.lex_state = 523, .external_lex_state = 93}, - [4751] = {.lex_state = 525, .external_lex_state = 65}, + [4714] = {.lex_state = 524, .external_lex_state = 95}, + [4715] = {.lex_state = 523, .external_lex_state = 93}, + [4716] = {.lex_state = 521, .external_lex_state = 93}, + [4717] = {.lex_state = 521, .external_lex_state = 93}, + [4718] = {.lex_state = 459, .external_lex_state = 98}, + [4719] = {.lex_state = 523, .external_lex_state = 94}, + [4720] = {.lex_state = 523, .external_lex_state = 94}, + [4721] = {.lex_state = 91, .external_lex_state = 93}, + [4722] = {.lex_state = 459, .external_lex_state = 98}, + [4723] = {.lex_state = 523, .external_lex_state = 95}, + [4724] = {.lex_state = 521, .external_lex_state = 95}, + [4725] = {.lex_state = 523, .external_lex_state = 93}, + [4726] = {.lex_state = 523, .external_lex_state = 93}, + [4727] = {.lex_state = 477, .external_lex_state = 99}, + [4728] = {.lex_state = 91, .external_lex_state = 64}, + [4729] = {.lex_state = 459, .external_lex_state = 98}, + [4730] = {.lex_state = 523, .external_lex_state = 93}, + [4731] = {.lex_state = 459, .external_lex_state = 98}, + [4732] = {.lex_state = 90, .external_lex_state = 88}, + [4733] = {.lex_state = 523, .external_lex_state = 93}, + [4734] = {.lex_state = 524, .external_lex_state = 64}, + [4735] = {.lex_state = 91, .external_lex_state = 88}, + [4736] = {.lex_state = 459, .external_lex_state = 98}, + [4737] = {.lex_state = 90, .external_lex_state = 88}, + [4738] = {.lex_state = 523, .external_lex_state = 93}, + [4739] = {.lex_state = 523, .external_lex_state = 95}, + [4740] = {.lex_state = 90, .external_lex_state = 88}, + [4741] = {.lex_state = 459, .external_lex_state = 98}, + [4742] = {.lex_state = 523, .external_lex_state = 93}, + [4743] = {.lex_state = 90, .external_lex_state = 88}, + [4744] = {.lex_state = 459, .external_lex_state = 98}, + [4745] = {.lex_state = 90, .external_lex_state = 88}, + [4746] = {.lex_state = 522, .external_lex_state = 95}, + [4747] = {.lex_state = 522, .external_lex_state = 95}, + [4748] = {.lex_state = 477, .external_lex_state = 99}, + [4749] = {.lex_state = 477, .external_lex_state = 99}, + [4750] = {.lex_state = 477, .external_lex_state = 99}, + [4751] = {.lex_state = 522, .external_lex_state = 95}, [4752] = {.lex_state = 459, .external_lex_state = 98}, [4753] = {.lex_state = 459, .external_lex_state = 98}, - [4754] = {.lex_state = 459, .external_lex_state = 98}, - [4755] = {.lex_state = 88, .external_lex_state = 88}, - [4756] = {.lex_state = 523, .external_lex_state = 93}, - [4757] = {.lex_state = 459, .external_lex_state = 98}, - [4758] = {.lex_state = 88, .external_lex_state = 88}, - [4759] = {.lex_state = 88, .external_lex_state = 88}, - [4760] = {.lex_state = 459, .external_lex_state = 98}, + [4754] = {.lex_state = 91, .external_lex_state = 93}, + [4755] = {.lex_state = 459, .external_lex_state = 98}, + [4756] = {.lex_state = 521, .external_lex_state = 95}, + [4757] = {.lex_state = 523, .external_lex_state = 95}, + [4758] = {.lex_state = 524, .external_lex_state = 95}, + [4759] = {.lex_state = 91, .external_lex_state = 95}, + [4760] = {.lex_state = 91, .external_lex_state = 93}, [4761] = {.lex_state = 459, .external_lex_state = 98}, - [4762] = {.lex_state = 459, .external_lex_state = 98}, - [4763] = {.lex_state = 89, .external_lex_state = 94}, - [4764] = {.lex_state = 459, .external_lex_state = 98}, - [4765] = {.lex_state = 88, .external_lex_state = 88}, - [4766] = {.lex_state = 89, .external_lex_state = 94}, - [4767] = {.lex_state = 522, .external_lex_state = 93}, - [4768] = {.lex_state = 524, .external_lex_state = 94}, - [4769] = {.lex_state = 88, .external_lex_state = 88}, - [4770] = {.lex_state = 459, .external_lex_state = 98}, - [4771] = {.lex_state = 523, .external_lex_state = 93}, - [4772] = {.lex_state = 88, .external_lex_state = 88}, - [4773] = {.lex_state = 525, .external_lex_state = 65}, - [4774] = {.lex_state = 459, .external_lex_state = 98}, - [4775] = {.lex_state = 459, .external_lex_state = 98}, - [4776] = {.lex_state = 89, .external_lex_state = 93}, - [4777] = {.lex_state = 524, .external_lex_state = 94}, - [4778] = {.lex_state = 459, .external_lex_state = 98}, + [4762] = {.lex_state = 522, .external_lex_state = 95}, + [4763] = {.lex_state = 523, .external_lex_state = 95}, + [4764] = {.lex_state = 523, .external_lex_state = 95}, + [4765] = {.lex_state = 91, .external_lex_state = 93}, + [4766] = {.lex_state = 459, .external_lex_state = 98}, + [4767] = {.lex_state = 459, .external_lex_state = 98}, + [4768] = {.lex_state = 459, .external_lex_state = 98}, + [4769] = {.lex_state = 521, .external_lex_state = 95}, + [4770] = {.lex_state = 91, .external_lex_state = 93}, + [4771] = {.lex_state = 459, .external_lex_state = 98}, + [4772] = {.lex_state = 521, .external_lex_state = 95}, + [4773] = {.lex_state = 91, .external_lex_state = 88}, + [4774] = {.lex_state = 91, .external_lex_state = 93}, + [4775] = {.lex_state = 522, .external_lex_state = 95}, + [4776] = {.lex_state = 91, .external_lex_state = 93}, + [4777] = {.lex_state = 521, .external_lex_state = 95}, + [4778] = {.lex_state = 91, .external_lex_state = 88}, [4779] = {.lex_state = 459, .external_lex_state = 98}, - [4780] = {.lex_state = 459, .external_lex_state = 98}, - [4781] = {.lex_state = 525, .external_lex_state = 93}, + [4780] = {.lex_state = 90, .external_lex_state = 88}, + [4781] = {.lex_state = 521, .external_lex_state = 95}, [4782] = {.lex_state = 459, .external_lex_state = 98}, - [4783] = {.lex_state = 88, .external_lex_state = 88}, + [4783] = {.lex_state = 90, .external_lex_state = 88}, [4784] = {.lex_state = 459, .external_lex_state = 98}, - [4785] = {.lex_state = 477, .external_lex_state = 99}, - [4786] = {.lex_state = 88, .external_lex_state = 88}, - [4787] = {.lex_state = 459, .external_lex_state = 98}, - [4788] = {.lex_state = 523, .external_lex_state = 93}, - [4789] = {.lex_state = 524, .external_lex_state = 93}, - [4790] = {.lex_state = 89, .external_lex_state = 94}, - [4791] = {.lex_state = 459, .external_lex_state = 98}, - [4792] = {.lex_state = 89, .external_lex_state = 94}, - [4793] = {.lex_state = 89, .external_lex_state = 94}, - [4794] = {.lex_state = 89, .external_lex_state = 94}, - [4795] = {.lex_state = 459, .external_lex_state = 98}, - [4796] = {.lex_state = 89, .external_lex_state = 61}, - [4797] = {.lex_state = 524, .external_lex_state = 94}, - [4798] = {.lex_state = 524, .external_lex_state = 94}, - [4799] = {.lex_state = 524, .external_lex_state = 94}, - [4800] = {.lex_state = 524, .external_lex_state = 94}, - [4801] = {.lex_state = 524, .external_lex_state = 94}, - [4802] = {.lex_state = 524, .external_lex_state = 94}, - [4803] = {.lex_state = 524, .external_lex_state = 94}, - [4804] = {.lex_state = 524, .external_lex_state = 94}, - [4805] = {.lex_state = 88, .external_lex_state = 88}, - [4806] = {.lex_state = 459, .external_lex_state = 98}, - [4807] = {.lex_state = 522, .external_lex_state = 93}, - [4808] = {.lex_state = 89, .external_lex_state = 94}, + [4785] = {.lex_state = 91, .external_lex_state = 62}, + [4786] = {.lex_state = 522, .external_lex_state = 95}, + [4787] = {.lex_state = 91, .external_lex_state = 93}, + [4788] = {.lex_state = 459, .external_lex_state = 98}, + [4789] = {.lex_state = 301, .external_lex_state = 97}, + [4790] = {.lex_state = 459, .external_lex_state = 98}, + [4791] = {.lex_state = 477, .external_lex_state = 99}, + [4792] = {.lex_state = 522, .external_lex_state = 95}, + [4793] = {.lex_state = 90, .external_lex_state = 88}, + [4794] = {.lex_state = 301, .external_lex_state = 97}, + [4795] = {.lex_state = 301, .external_lex_state = 97}, + [4796] = {.lex_state = 522, .external_lex_state = 95}, + [4797] = {.lex_state = 522, .external_lex_state = 95}, + [4798] = {.lex_state = 459, .external_lex_state = 98}, + [4799] = {.lex_state = 477, .external_lex_state = 99}, + [4800] = {.lex_state = 477, .external_lex_state = 99}, + [4801] = {.lex_state = 524, .external_lex_state = 95}, + [4802] = {.lex_state = 91, .external_lex_state = 88}, + [4803] = {.lex_state = 91, .external_lex_state = 95}, + [4804] = {.lex_state = 523, .external_lex_state = 93}, + [4805] = {.lex_state = 459, .external_lex_state = 98}, + [4806] = {.lex_state = 522, .external_lex_state = 95}, + [4807] = {.lex_state = 524, .external_lex_state = 95}, + [4808] = {.lex_state = 91, .external_lex_state = 93}, [4809] = {.lex_state = 459, .external_lex_state = 98}, - [4810] = {.lex_state = 459, .external_lex_state = 98}, - [4811] = {.lex_state = 459, .external_lex_state = 98}, - [4812] = {.lex_state = 524, .external_lex_state = 93}, - [4813] = {.lex_state = 477, .external_lex_state = 99}, + [4810] = {.lex_state = 301, .external_lex_state = 97}, + [4811] = {.lex_state = 90, .external_lex_state = 88}, + [4812] = {.lex_state = 459, .external_lex_state = 98}, + [4813] = {.lex_state = 90, .external_lex_state = 88}, [4814] = {.lex_state = 459, .external_lex_state = 98}, - [4815] = {.lex_state = 89, .external_lex_state = 61}, - [4816] = {.lex_state = 524, .external_lex_state = 65}, - [4817] = {.lex_state = 459, .external_lex_state = 98}, - [4818] = {.lex_state = 523, .external_lex_state = 93}, - [4819] = {.lex_state = 524, .external_lex_state = 65}, - [4820] = {.lex_state = 459, .external_lex_state = 98}, + [4815] = {.lex_state = 91, .external_lex_state = 62}, + [4816] = {.lex_state = 91, .external_lex_state = 62}, + [4817] = {.lex_state = 90, .external_lex_state = 88}, + [4818] = {.lex_state = 523, .external_lex_state = 95}, + [4819] = {.lex_state = 90, .external_lex_state = 88}, + [4820] = {.lex_state = 301, .external_lex_state = 97}, [4821] = {.lex_state = 459, .external_lex_state = 98}, - [4822] = {.lex_state = 523, .external_lex_state = 93}, - [4823] = {.lex_state = 89, .external_lex_state = 94}, - [4824] = {.lex_state = 89, .external_lex_state = 94}, - [4825] = {.lex_state = 459, .external_lex_state = 98}, - [4826] = {.lex_state = 88, .external_lex_state = 88}, - [4827] = {.lex_state = 89, .external_lex_state = 94}, - [4828] = {.lex_state = 459, .external_lex_state = 98}, - [4829] = {.lex_state = 524, .external_lex_state = 95}, - [4830] = {.lex_state = 524, .external_lex_state = 95}, - [4831] = {.lex_state = 522, .external_lex_state = 94}, - [4832] = {.lex_state = 522, .external_lex_state = 94}, - [4833] = {.lex_state = 522, .external_lex_state = 94}, - [4834] = {.lex_state = 522, .external_lex_state = 94}, - [4835] = {.lex_state = 522, .external_lex_state = 94}, - [4836] = {.lex_state = 522, .external_lex_state = 94}, - [4837] = {.lex_state = 522, .external_lex_state = 94}, - [4838] = {.lex_state = 522, .external_lex_state = 94}, - [4839] = {.lex_state = 459, .external_lex_state = 98}, - [4840] = {.lex_state = 88, .external_lex_state = 88}, - [4841] = {.lex_state = 88, .external_lex_state = 88}, - [4842] = {.lex_state = 88, .external_lex_state = 88}, + [4822] = {.lex_state = 459, .external_lex_state = 98}, + [4823] = {.lex_state = 91, .external_lex_state = 95}, + [4824] = {.lex_state = 524, .external_lex_state = 95}, + [4825] = {.lex_state = 523, .external_lex_state = 95}, + [4826] = {.lex_state = 459, .external_lex_state = 98}, + [4827] = {.lex_state = 522, .external_lex_state = 95}, + [4828] = {.lex_state = 301, .external_lex_state = 97}, + [4829] = {.lex_state = 301, .external_lex_state = 97}, + [4830] = {.lex_state = 459, .external_lex_state = 98}, + [4831] = {.lex_state = 301, .external_lex_state = 97}, + [4832] = {.lex_state = 459, .external_lex_state = 98}, + [4833] = {.lex_state = 523, .external_lex_state = 93}, + [4834] = {.lex_state = 523, .external_lex_state = 93}, + [4835] = {.lex_state = 523, .external_lex_state = 93}, + [4836] = {.lex_state = 523, .external_lex_state = 93}, + [4837] = {.lex_state = 523, .external_lex_state = 93}, + [4838] = {.lex_state = 523, .external_lex_state = 93}, + [4839] = {.lex_state = 523, .external_lex_state = 93}, + [4840] = {.lex_state = 523, .external_lex_state = 93}, + [4841] = {.lex_state = 459, .external_lex_state = 98}, + [4842] = {.lex_state = 524, .external_lex_state = 64}, [4843] = {.lex_state = 459, .external_lex_state = 98}, - [4844] = {.lex_state = 459, .external_lex_state = 98}, + [4844] = {.lex_state = 301, .external_lex_state = 97}, [4845] = {.lex_state = 459, .external_lex_state = 98}, [4846] = {.lex_state = 459, .external_lex_state = 98}, - [4847] = {.lex_state = 524, .external_lex_state = 94}, - [4848] = {.lex_state = 524, .external_lex_state = 94}, - [4849] = {.lex_state = 524, .external_lex_state = 94}, - [4850] = {.lex_state = 524, .external_lex_state = 94}, - [4851] = {.lex_state = 524, .external_lex_state = 94}, - [4852] = {.lex_state = 524, .external_lex_state = 94}, - [4853] = {.lex_state = 524, .external_lex_state = 94}, - [4854] = {.lex_state = 524, .external_lex_state = 94}, - [4855] = {.lex_state = 459, .external_lex_state = 98}, - [4856] = {.lex_state = 459, .external_lex_state = 98}, - [4857] = {.lex_state = 459, .external_lex_state = 98}, - [4858] = {.lex_state = 459, .external_lex_state = 98}, - [4859] = {.lex_state = 459, .external_lex_state = 98}, - [4860] = {.lex_state = 459, .external_lex_state = 98}, - [4861] = {.lex_state = 459, .external_lex_state = 98}, - [4862] = {.lex_state = 459, .external_lex_state = 98}, - [4863] = {.lex_state = 89, .external_lex_state = 94}, - [4864] = {.lex_state = 525, .external_lex_state = 93}, - [4865] = {.lex_state = 525, .external_lex_state = 93}, - [4866] = {.lex_state = 89, .external_lex_state = 88}, - [4867] = {.lex_state = 88, .external_lex_state = 93}, - [4868] = {.lex_state = 89, .external_lex_state = 65}, - [4869] = {.lex_state = 88, .external_lex_state = 93}, - [4870] = {.lex_state = 525, .external_lex_state = 93}, - [4871] = {.lex_state = 89, .external_lex_state = 65}, - [4872] = {.lex_state = 525, .external_lex_state = 93}, - [4873] = {.lex_state = 525, .external_lex_state = 93}, - [4874] = {.lex_state = 89, .external_lex_state = 88}, - [4875] = {.lex_state = 89, .external_lex_state = 88}, - [4876] = {.lex_state = 525, .external_lex_state = 93}, - [4877] = {.lex_state = 88, .external_lex_state = 93}, - [4878] = {.lex_state = 89, .external_lex_state = 88}, - [4879] = {.lex_state = 89, .external_lex_state = 88}, - [4880] = {.lex_state = 525, .external_lex_state = 93}, - [4881] = {.lex_state = 477, .external_lex_state = 99}, - [4882] = {.lex_state = 89, .external_lex_state = 88}, - [4883] = {.lex_state = 89, .external_lex_state = 88}, - [4884] = {.lex_state = 89, .external_lex_state = 88}, - [4885] = {.lex_state = 89, .external_lex_state = 88}, - [4886] = {.lex_state = 525, .external_lex_state = 93}, - [4887] = {.lex_state = 89, .external_lex_state = 88}, - [4888] = {.lex_state = 89, .external_lex_state = 88}, - [4889] = {.lex_state = 89, .external_lex_state = 88}, - [4890] = {.lex_state = 525, .external_lex_state = 93}, - [4891] = {.lex_state = 477, .external_lex_state = 99}, - [4892] = {.lex_state = 89, .external_lex_state = 88}, - [4893] = {.lex_state = 525, .external_lex_state = 93}, - [4894] = {.lex_state = 525, .external_lex_state = 93}, - [4895] = {.lex_state = 89, .external_lex_state = 88}, - [4896] = {.lex_state = 88, .external_lex_state = 93}, - [4897] = {.lex_state = 89, .external_lex_state = 88}, - [4898] = {.lex_state = 89, .external_lex_state = 88}, - [4899] = {.lex_state = 89, .external_lex_state = 65}, - [4900] = {.lex_state = 89, .external_lex_state = 93}, - [4901] = {.lex_state = 88, .external_lex_state = 93}, - [4902] = {.lex_state = 88, .external_lex_state = 93}, - [4903] = {.lex_state = 525, .external_lex_state = 93}, - [4904] = {.lex_state = 525, .external_lex_state = 93}, - [4905] = {.lex_state = 525, .external_lex_state = 93}, - [4906] = {.lex_state = 525, .external_lex_state = 93}, - [4907] = {.lex_state = 89, .external_lex_state = 88}, - [4908] = {.lex_state = 89, .external_lex_state = 88}, - [4909] = {.lex_state = 89, .external_lex_state = 88}, - [4910] = {.lex_state = 525, .external_lex_state = 93}, - [4911] = {.lex_state = 89, .external_lex_state = 88}, - [4912] = {.lex_state = 89, .external_lex_state = 88}, - [4913] = {.lex_state = 525, .external_lex_state = 93}, - [4914] = {.lex_state = 525, .external_lex_state = 93}, - [4915] = {.lex_state = 525, .external_lex_state = 93}, - [4916] = {.lex_state = 525, .external_lex_state = 93}, - [4917] = {.lex_state = 89, .external_lex_state = 88}, - [4918] = {.lex_state = 89, .external_lex_state = 88}, - [4919] = {.lex_state = 88, .external_lex_state = 93}, - [4920] = {.lex_state = 300, .external_lex_state = 71}, - [4921] = {.lex_state = 88, .external_lex_state = 93}, - [4922] = {.lex_state = 89, .external_lex_state = 88}, - [4923] = {.lex_state = 524, .external_lex_state = 94}, - [4924] = {.lex_state = 524, .external_lex_state = 94}, - [4925] = {.lex_state = 89, .external_lex_state = 88}, - [4926] = {.lex_state = 88, .external_lex_state = 93}, - [4927] = {.lex_state = 524, .external_lex_state = 93}, - [4928] = {.lex_state = 525, .external_lex_state = 93}, - [4929] = {.lex_state = 88, .external_lex_state = 93}, - [4930] = {.lex_state = 525, .external_lex_state = 93}, - [4931] = {.lex_state = 89, .external_lex_state = 88}, - [4932] = {.lex_state = 525, .external_lex_state = 93}, - [4933] = {.lex_state = 89, .external_lex_state = 88}, - [4934] = {.lex_state = 89, .external_lex_state = 88}, - [4935] = {.lex_state = 525, .external_lex_state = 93}, - [4936] = {.lex_state = 89, .external_lex_state = 88}, - [4937] = {.lex_state = 525, .external_lex_state = 93}, - [4938] = {.lex_state = 525, .external_lex_state = 93}, - [4939] = {.lex_state = 88, .external_lex_state = 93}, - [4940] = {.lex_state = 477, .external_lex_state = 99}, - [4941] = {.lex_state = 525, .external_lex_state = 93}, - [4942] = {.lex_state = 89, .external_lex_state = 88}, - [4943] = {.lex_state = 89, .external_lex_state = 88}, - [4944] = {.lex_state = 89, .external_lex_state = 88}, - [4945] = {.lex_state = 524, .external_lex_state = 93}, - [4946] = {.lex_state = 525, .external_lex_state = 93}, - [4947] = {.lex_state = 89, .external_lex_state = 88}, - [4948] = {.lex_state = 89, .external_lex_state = 88}, - [4949] = {.lex_state = 89, .external_lex_state = 88}, - [4950] = {.lex_state = 525, .external_lex_state = 93}, - [4951] = {.lex_state = 525, .external_lex_state = 93}, - [4952] = {.lex_state = 89, .external_lex_state = 88}, - [4953] = {.lex_state = 88, .external_lex_state = 93}, - [4954] = {.lex_state = 525, .external_lex_state = 93}, - [4955] = {.lex_state = 89, .external_lex_state = 88}, - [4956] = {.lex_state = 522, .external_lex_state = 93}, - [4957] = {.lex_state = 89, .external_lex_state = 88}, - [4958] = {.lex_state = 88, .external_lex_state = 93}, - [4959] = {.lex_state = 477, .external_lex_state = 99}, - [4960] = {.lex_state = 89, .external_lex_state = 88}, - [4961] = {.lex_state = 89, .external_lex_state = 88}, - [4962] = {.lex_state = 89, .external_lex_state = 88}, - [4963] = {.lex_state = 89, .external_lex_state = 88}, - [4964] = {.lex_state = 89, .external_lex_state = 93}, - [4965] = {.lex_state = 477, .external_lex_state = 99}, - [4966] = {.lex_state = 89, .external_lex_state = 88}, - [4967] = {.lex_state = 89, .external_lex_state = 88}, - [4968] = {.lex_state = 525, .external_lex_state = 93}, - [4969] = {.lex_state = 89, .external_lex_state = 88}, - [4970] = {.lex_state = 525, .external_lex_state = 93}, - [4971] = {.lex_state = 524, .external_lex_state = 93}, - [4972] = {.lex_state = 89, .external_lex_state = 88}, - [4973] = {.lex_state = 89, .external_lex_state = 88}, - [4974] = {.lex_state = 525, .external_lex_state = 93}, - [4975] = {.lex_state = 89, .external_lex_state = 88}, - [4976] = {.lex_state = 525, .external_lex_state = 93}, - [4977] = {.lex_state = 89, .external_lex_state = 88}, - [4978] = {.lex_state = 524, .external_lex_state = 93}, - [4979] = {.lex_state = 88, .external_lex_state = 93}, - [4980] = {.lex_state = 88, .external_lex_state = 93}, - [4981] = {.lex_state = 525, .external_lex_state = 93}, - [4982] = {.lex_state = 525, .external_lex_state = 93}, - [4983] = {.lex_state = 525, .external_lex_state = 93}, - [4984] = {.lex_state = 525, .external_lex_state = 93}, - [4985] = {.lex_state = 89, .external_lex_state = 88}, - [4986] = {.lex_state = 525, .external_lex_state = 93}, - [4987] = {.lex_state = 525, .external_lex_state = 93}, - [4988] = {.lex_state = 525, .external_lex_state = 93}, - [4989] = {.lex_state = 477, .external_lex_state = 99}, - [4990] = {.lex_state = 300, .external_lex_state = 71}, - [4991] = {.lex_state = 89, .external_lex_state = 88}, - [4992] = {.lex_state = 477, .external_lex_state = 99}, - [4993] = {.lex_state = 477, .external_lex_state = 99}, - [4994] = {.lex_state = 477, .external_lex_state = 99}, - [4995] = {.lex_state = 89, .external_lex_state = 93}, - [4996] = {.lex_state = 525, .external_lex_state = 93}, - [4997] = {.lex_state = 525, .external_lex_state = 93}, - [4998] = {.lex_state = 525, .external_lex_state = 93}, - [4999] = {.lex_state = 89, .external_lex_state = 93}, - [5000] = {.lex_state = 525, .external_lex_state = 93}, - [5001] = {.lex_state = 525, .external_lex_state = 93}, - [5002] = {.lex_state = 525, .external_lex_state = 93}, - [5003] = {.lex_state = 89, .external_lex_state = 88}, - [5004] = {.lex_state = 524, .external_lex_state = 94}, - [5005] = {.lex_state = 524, .external_lex_state = 94}, - [5006] = {.lex_state = 524, .external_lex_state = 94}, - [5007] = {.lex_state = 524, .external_lex_state = 94}, - [5008] = {.lex_state = 524, .external_lex_state = 94}, - [5009] = {.lex_state = 524, .external_lex_state = 94}, - [5010] = {.lex_state = 524, .external_lex_state = 94}, - [5011] = {.lex_state = 524, .external_lex_state = 94}, - [5012] = {.lex_state = 525, .external_lex_state = 93}, - [5013] = {.lex_state = 89, .external_lex_state = 88}, - [5014] = {.lex_state = 89, .external_lex_state = 88}, - [5015] = {.lex_state = 525, .external_lex_state = 93}, - [5016] = {.lex_state = 524, .external_lex_state = 93}, - [5017] = {.lex_state = 525, .external_lex_state = 93}, - [5018] = {.lex_state = 89, .external_lex_state = 88}, - [5019] = {.lex_state = 522, .external_lex_state = 93}, - [5020] = {.lex_state = 525, .external_lex_state = 93}, - [5021] = {.lex_state = 524, .external_lex_state = 93}, - [5022] = {.lex_state = 88, .external_lex_state = 93}, - [5023] = {.lex_state = 89, .external_lex_state = 93}, - [5024] = {.lex_state = 524, .external_lex_state = 93}, - [5025] = {.lex_state = 525, .external_lex_state = 93}, - [5026] = {.lex_state = 88, .external_lex_state = 93}, - [5027] = {.lex_state = 524, .external_lex_state = 93}, - [5028] = {.lex_state = 525, .external_lex_state = 93}, - [5029] = {.lex_state = 525, .external_lex_state = 93}, - [5030] = {.lex_state = 525, .external_lex_state = 93}, - [5031] = {.lex_state = 89, .external_lex_state = 93}, - [5032] = {.lex_state = 522, .external_lex_state = 93}, - [5033] = {.lex_state = 89, .external_lex_state = 88}, - [5034] = {.lex_state = 89, .external_lex_state = 93}, - [5035] = {.lex_state = 89, .external_lex_state = 93}, - [5036] = {.lex_state = 89, .external_lex_state = 93}, - [5037] = {.lex_state = 525, .external_lex_state = 93}, - [5038] = {.lex_state = 89, .external_lex_state = 93}, - [5039] = {.lex_state = 288, .external_lex_state = 97}, - [5040] = {.lex_state = 89, .external_lex_state = 93}, - [5041] = {.lex_state = 466, .external_lex_state = 100}, - [5042] = {.lex_state = 89, .external_lex_state = 93}, - [5043] = {.lex_state = 89, .external_lex_state = 93}, - [5044] = {.lex_state = 89, .external_lex_state = 93}, - [5045] = {.lex_state = 89, .external_lex_state = 93}, - [5046] = {.lex_state = 89, .external_lex_state = 93}, - [5047] = {.lex_state = 89, .external_lex_state = 93}, - [5048] = {.lex_state = 89, .external_lex_state = 93}, - [5049] = {.lex_state = 89, .external_lex_state = 93}, - [5050] = {.lex_state = 466, .external_lex_state = 100}, - [5051] = {.lex_state = 89, .external_lex_state = 93}, - [5052] = {.lex_state = 89, .external_lex_state = 93}, - [5053] = {.lex_state = 89, .external_lex_state = 93}, - [5054] = {.lex_state = 89, .external_lex_state = 93}, - [5055] = {.lex_state = 89, .external_lex_state = 93}, - [5056] = {.lex_state = 89, .external_lex_state = 93}, - [5057] = {.lex_state = 89, .external_lex_state = 93}, - [5058] = {.lex_state = 89, .external_lex_state = 93}, - [5059] = {.lex_state = 89, .external_lex_state = 93}, - [5060] = {.lex_state = 89, .external_lex_state = 93}, - [5061] = {.lex_state = 89, .external_lex_state = 93}, - [5062] = {.lex_state = 89, .external_lex_state = 93}, - [5063] = {.lex_state = 89, .external_lex_state = 93}, - [5064] = {.lex_state = 89, .external_lex_state = 93}, - [5065] = {.lex_state = 89, .external_lex_state = 93}, - [5066] = {.lex_state = 89, .external_lex_state = 93}, - [5067] = {.lex_state = 89, .external_lex_state = 93}, - [5068] = {.lex_state = 525, .external_lex_state = 93}, - [5069] = {.lex_state = 524, .external_lex_state = 93}, - [5070] = {.lex_state = 89, .external_lex_state = 93}, - [5071] = {.lex_state = 524, .external_lex_state = 93}, - [5072] = {.lex_state = 89, .external_lex_state = 93}, - [5073] = {.lex_state = 89, .external_lex_state = 93}, - [5074] = {.lex_state = 89, .external_lex_state = 93}, - [5075] = {.lex_state = 524, .external_lex_state = 93}, - [5076] = {.lex_state = 300, .external_lex_state = 71}, - [5077] = {.lex_state = 524, .external_lex_state = 93}, - [5078] = {.lex_state = 524, .external_lex_state = 93}, - [5079] = {.lex_state = 524, .external_lex_state = 93}, - [5080] = {.lex_state = 88, .external_lex_state = 93}, - [5081] = {.lex_state = 89, .external_lex_state = 93}, - [5082] = {.lex_state = 288, .external_lex_state = 97}, - [5083] = {.lex_state = 288, .external_lex_state = 97}, - [5084] = {.lex_state = 89, .external_lex_state = 93}, - [5085] = {.lex_state = 288, .external_lex_state = 97}, - [5086] = {.lex_state = 525, .external_lex_state = 93}, - [5087] = {.lex_state = 466, .external_lex_state = 100}, - [5088] = {.lex_state = 89, .external_lex_state = 93}, - [5089] = {.lex_state = 89, .external_lex_state = 93}, - [5090] = {.lex_state = 89, .external_lex_state = 93}, - [5091] = {.lex_state = 88, .external_lex_state = 94}, - [5092] = {.lex_state = 89, .external_lex_state = 95}, - [5093] = {.lex_state = 88, .external_lex_state = 93}, - [5094] = {.lex_state = 524, .external_lex_state = 93}, - [5095] = {.lex_state = 89, .external_lex_state = 93}, - [5096] = {.lex_state = 525, .external_lex_state = 93}, - [5097] = {.lex_state = 89, .external_lex_state = 93}, - [5098] = {.lex_state = 88, .external_lex_state = 93}, - [5099] = {.lex_state = 89, .external_lex_state = 93}, - [5100] = {.lex_state = 88, .external_lex_state = 93}, - [5101] = {.lex_state = 89, .external_lex_state = 93}, - [5102] = {.lex_state = 89, .external_lex_state = 93}, - [5103] = {.lex_state = 89, .external_lex_state = 93}, - [5104] = {.lex_state = 89, .external_lex_state = 93}, - [5105] = {.lex_state = 89, .external_lex_state = 93}, - [5106] = {.lex_state = 524, .external_lex_state = 93}, - [5107] = {.lex_state = 89, .external_lex_state = 93}, - [5108] = {.lex_state = 466, .external_lex_state = 100}, - [5109] = {.lex_state = 288, .external_lex_state = 97}, - [5110] = {.lex_state = 89, .external_lex_state = 93}, - [5111] = {.lex_state = 89, .external_lex_state = 93}, - [5112] = {.lex_state = 89, .external_lex_state = 93}, - [5113] = {.lex_state = 89, .external_lex_state = 93}, - [5114] = {.lex_state = 89, .external_lex_state = 93}, - [5115] = {.lex_state = 466, .external_lex_state = 100}, - [5116] = {.lex_state = 89, .external_lex_state = 93}, - [5117] = {.lex_state = 489, .external_lex_state = 101}, - [5118] = {.lex_state = 89, .external_lex_state = 93}, - [5119] = {.lex_state = 466, .external_lex_state = 100}, - [5120] = {.lex_state = 89, .external_lex_state = 93}, - [5121] = {.lex_state = 88, .external_lex_state = 94}, - [5122] = {.lex_state = 475, .external_lex_state = 67}, - [5123] = {.lex_state = 466, .external_lex_state = 100}, - [5124] = {.lex_state = 489, .external_lex_state = 101}, - [5125] = {.lex_state = 477, .external_lex_state = 99}, - [5126] = {.lex_state = 466, .external_lex_state = 100}, - [5127] = {.lex_state = 475, .external_lex_state = 67}, - [5128] = {.lex_state = 475, .external_lex_state = 67}, - [5129] = {.lex_state = 477, .external_lex_state = 99}, - [5130] = {.lex_state = 489, .external_lex_state = 101}, - [5131] = {.lex_state = 475, .external_lex_state = 67}, - [5132] = {.lex_state = 524, .external_lex_state = 93}, - [5133] = {.lex_state = 454, .external_lex_state = 102}, - [5134] = {.lex_state = 88, .external_lex_state = 93}, - [5135] = {.lex_state = 524, .external_lex_state = 93}, - [5136] = {.lex_state = 475, .external_lex_state = 67}, - [5137] = {.lex_state = 475, .external_lex_state = 67}, - [5138] = {.lex_state = 475, .external_lex_state = 67}, - [5139] = {.lex_state = 454, .external_lex_state = 102}, - [5140] = {.lex_state = 477, .external_lex_state = 99}, - [5141] = {.lex_state = 477, .external_lex_state = 99}, - [5142] = {.lex_state = 486, .external_lex_state = 103}, - [5143] = {.lex_state = 477, .external_lex_state = 99}, - [5144] = {.lex_state = 475, .external_lex_state = 67}, - [5145] = {.lex_state = 466, .external_lex_state = 100}, - [5146] = {.lex_state = 489, .external_lex_state = 101}, - [5147] = {.lex_state = 454, .external_lex_state = 102}, - [5148] = {.lex_state = 475, .external_lex_state = 67}, - [5149] = {.lex_state = 89, .external_lex_state = 94}, - [5150] = {.lex_state = 475, .external_lex_state = 67}, - [5151] = {.lex_state = 88, .external_lex_state = 94}, - [5152] = {.lex_state = 524, .external_lex_state = 93}, - [5153] = {.lex_state = 88, .external_lex_state = 94}, - [5154] = {.lex_state = 477, .external_lex_state = 99}, - [5155] = {.lex_state = 475, .external_lex_state = 67}, - [5156] = {.lex_state = 89, .external_lex_state = 95}, - [5157] = {.lex_state = 89, .external_lex_state = 95}, - [5158] = {.lex_state = 466, .external_lex_state = 100}, - [5159] = {.lex_state = 477, .external_lex_state = 99}, - [5160] = {.lex_state = 477, .external_lex_state = 99}, - [5161] = {.lex_state = 477, .external_lex_state = 99}, - [5162] = {.lex_state = 477, .external_lex_state = 99}, - [5163] = {.lex_state = 477, .external_lex_state = 99}, - [5164] = {.lex_state = 466, .external_lex_state = 100}, - [5165] = {.lex_state = 489, .external_lex_state = 101}, - [5166] = {.lex_state = 477, .external_lex_state = 99}, - [5167] = {.lex_state = 477, .external_lex_state = 99}, - [5168] = {.lex_state = 477, .external_lex_state = 99}, - [5169] = {.lex_state = 477, .external_lex_state = 99}, - [5170] = {.lex_state = 489, .external_lex_state = 101}, - [5171] = {.lex_state = 454, .external_lex_state = 104}, - [5172] = {.lex_state = 466, .external_lex_state = 100}, - [5173] = {.lex_state = 477, .external_lex_state = 99}, - [5174] = {.lex_state = 477, .external_lex_state = 99}, - [5175] = {.lex_state = 477, .external_lex_state = 99}, - [5176] = {.lex_state = 477, .external_lex_state = 99}, - [5177] = {.lex_state = 466, .external_lex_state = 100}, + [4847] = {.lex_state = 91, .external_lex_state = 93}, + [4848] = {.lex_state = 91, .external_lex_state = 93}, + [4849] = {.lex_state = 459, .external_lex_state = 98}, + [4850] = {.lex_state = 459, .external_lex_state = 98}, + [4851] = {.lex_state = 459, .external_lex_state = 98}, + [4852] = {.lex_state = 459, .external_lex_state = 98}, + [4853] = {.lex_state = 524, .external_lex_state = 64}, + [4854] = {.lex_state = 90, .external_lex_state = 88}, + [4855] = {.lex_state = 523, .external_lex_state = 64}, + [4856] = {.lex_state = 523, .external_lex_state = 64}, + [4857] = {.lex_state = 524, .external_lex_state = 95}, + [4858] = {.lex_state = 91, .external_lex_state = 93}, + [4859] = {.lex_state = 91, .external_lex_state = 93}, + [4860] = {.lex_state = 524, .external_lex_state = 95}, + [4861] = {.lex_state = 524, .external_lex_state = 95}, + [4862] = {.lex_state = 522, .external_lex_state = 95}, + [4863] = {.lex_state = 90, .external_lex_state = 88}, + [4864] = {.lex_state = 522, .external_lex_state = 95}, + [4865] = {.lex_state = 91, .external_lex_state = 93}, + [4866] = {.lex_state = 91, .external_lex_state = 93}, + [4867] = {.lex_state = 459, .external_lex_state = 98}, + [4868] = {.lex_state = 459, .external_lex_state = 98}, + [4869] = {.lex_state = 523, .external_lex_state = 95}, + [4870] = {.lex_state = 301, .external_lex_state = 97}, + [4871] = {.lex_state = 523, .external_lex_state = 95}, + [4872] = {.lex_state = 523, .external_lex_state = 94}, + [4873] = {.lex_state = 523, .external_lex_state = 94}, + [4874] = {.lex_state = 521, .external_lex_state = 93}, + [4875] = {.lex_state = 521, .external_lex_state = 93}, + [4876] = {.lex_state = 521, .external_lex_state = 93}, + [4877] = {.lex_state = 521, .external_lex_state = 93}, + [4878] = {.lex_state = 301, .external_lex_state = 97}, + [4879] = {.lex_state = 521, .external_lex_state = 93}, + [4880] = {.lex_state = 521, .external_lex_state = 93}, + [4881] = {.lex_state = 521, .external_lex_state = 93}, + [4882] = {.lex_state = 521, .external_lex_state = 93}, + [4883] = {.lex_state = 301, .external_lex_state = 97}, + [4884] = {.lex_state = 459, .external_lex_state = 98}, + [4885] = {.lex_state = 91, .external_lex_state = 93}, + [4886] = {.lex_state = 90, .external_lex_state = 95}, + [4887] = {.lex_state = 91, .external_lex_state = 93}, + [4888] = {.lex_state = 459, .external_lex_state = 98}, + [4889] = {.lex_state = 90, .external_lex_state = 88}, + [4890] = {.lex_state = 523, .external_lex_state = 95}, + [4891] = {.lex_state = 459, .external_lex_state = 98}, + [4892] = {.lex_state = 91, .external_lex_state = 93}, + [4893] = {.lex_state = 459, .external_lex_state = 98}, + [4894] = {.lex_state = 523, .external_lex_state = 93}, + [4895] = {.lex_state = 523, .external_lex_state = 93}, + [4896] = {.lex_state = 523, .external_lex_state = 93}, + [4897] = {.lex_state = 523, .external_lex_state = 93}, + [4898] = {.lex_state = 523, .external_lex_state = 93}, + [4899] = {.lex_state = 523, .external_lex_state = 93}, + [4900] = {.lex_state = 523, .external_lex_state = 93}, + [4901] = {.lex_state = 523, .external_lex_state = 93}, + [4902] = {.lex_state = 477, .external_lex_state = 99}, + [4903] = {.lex_state = 459, .external_lex_state = 98}, + [4904] = {.lex_state = 91, .external_lex_state = 93}, + [4905] = {.lex_state = 459, .external_lex_state = 98}, + [4906] = {.lex_state = 459, .external_lex_state = 98}, + [4907] = {.lex_state = 459, .external_lex_state = 98}, + [4908] = {.lex_state = 459, .external_lex_state = 98}, + [4909] = {.lex_state = 459, .external_lex_state = 98}, + [4910] = {.lex_state = 459, .external_lex_state = 98}, + [4911] = {.lex_state = 523, .external_lex_state = 93}, + [4912] = {.lex_state = 459, .external_lex_state = 98}, + [4913] = {.lex_state = 459, .external_lex_state = 98}, + [4914] = {.lex_state = 522, .external_lex_state = 95}, + [4915] = {.lex_state = 301, .external_lex_state = 97}, + [4916] = {.lex_state = 459, .external_lex_state = 98}, + [4917] = {.lex_state = 459, .external_lex_state = 98}, + [4918] = {.lex_state = 459, .external_lex_state = 98}, + [4919] = {.lex_state = 523, .external_lex_state = 93}, + [4920] = {.lex_state = 91, .external_lex_state = 88}, + [4921] = {.lex_state = 90, .external_lex_state = 95}, + [4922] = {.lex_state = 91, .external_lex_state = 88}, + [4923] = {.lex_state = 90, .external_lex_state = 95}, + [4924] = {.lex_state = 524, .external_lex_state = 95}, + [4925] = {.lex_state = 90, .external_lex_state = 95}, + [4926] = {.lex_state = 91, .external_lex_state = 95}, + [4927] = {.lex_state = 91, .external_lex_state = 88}, + [4928] = {.lex_state = 90, .external_lex_state = 95}, + [4929] = {.lex_state = 90, .external_lex_state = 95}, + [4930] = {.lex_state = 90, .external_lex_state = 95}, + [4931] = {.lex_state = 91, .external_lex_state = 95}, + [4932] = {.lex_state = 91, .external_lex_state = 88}, + [4933] = {.lex_state = 524, .external_lex_state = 95}, + [4934] = {.lex_state = 524, .external_lex_state = 95}, + [4935] = {.lex_state = 524, .external_lex_state = 95}, + [4936] = {.lex_state = 91, .external_lex_state = 88}, + [4937] = {.lex_state = 91, .external_lex_state = 88}, + [4938] = {.lex_state = 91, .external_lex_state = 95}, + [4939] = {.lex_state = 524, .external_lex_state = 95}, + [4940] = {.lex_state = 524, .external_lex_state = 95}, + [4941] = {.lex_state = 524, .external_lex_state = 95}, + [4942] = {.lex_state = 91, .external_lex_state = 88}, + [4943] = {.lex_state = 91, .external_lex_state = 88}, + [4944] = {.lex_state = 524, .external_lex_state = 95}, + [4945] = {.lex_state = 524, .external_lex_state = 95}, + [4946] = {.lex_state = 90, .external_lex_state = 95}, + [4947] = {.lex_state = 91, .external_lex_state = 88}, + [4948] = {.lex_state = 524, .external_lex_state = 95}, + [4949] = {.lex_state = 524, .external_lex_state = 95}, + [4950] = {.lex_state = 524, .external_lex_state = 95}, + [4951] = {.lex_state = 91, .external_lex_state = 88}, + [4952] = {.lex_state = 91, .external_lex_state = 88}, + [4953] = {.lex_state = 524, .external_lex_state = 95}, + [4954] = {.lex_state = 524, .external_lex_state = 95}, + [4955] = {.lex_state = 523, .external_lex_state = 95}, + [4956] = {.lex_state = 91, .external_lex_state = 88}, + [4957] = {.lex_state = 90, .external_lex_state = 95}, + [4958] = {.lex_state = 477, .external_lex_state = 99}, + [4959] = {.lex_state = 91, .external_lex_state = 88}, + [4960] = {.lex_state = 524, .external_lex_state = 95}, + [4961] = {.lex_state = 91, .external_lex_state = 88}, + [4962] = {.lex_state = 524, .external_lex_state = 95}, + [4963] = {.lex_state = 524, .external_lex_state = 95}, + [4964] = {.lex_state = 524, .external_lex_state = 95}, + [4965] = {.lex_state = 524, .external_lex_state = 95}, + [4966] = {.lex_state = 524, .external_lex_state = 95}, + [4967] = {.lex_state = 91, .external_lex_state = 88}, + [4968] = {.lex_state = 91, .external_lex_state = 88}, + [4969] = {.lex_state = 91, .external_lex_state = 88}, + [4970] = {.lex_state = 91, .external_lex_state = 95}, + [4971] = {.lex_state = 524, .external_lex_state = 95}, + [4972] = {.lex_state = 91, .external_lex_state = 88}, + [4973] = {.lex_state = 524, .external_lex_state = 95}, + [4974] = {.lex_state = 91, .external_lex_state = 88}, + [4975] = {.lex_state = 91, .external_lex_state = 88}, + [4976] = {.lex_state = 524, .external_lex_state = 95}, + [4977] = {.lex_state = 477, .external_lex_state = 99}, + [4978] = {.lex_state = 477, .external_lex_state = 99}, + [4979] = {.lex_state = 91, .external_lex_state = 88}, + [4980] = {.lex_state = 91, .external_lex_state = 88}, + [4981] = {.lex_state = 91, .external_lex_state = 88}, + [4982] = {.lex_state = 524, .external_lex_state = 95}, + [4983] = {.lex_state = 91, .external_lex_state = 88}, + [4984] = {.lex_state = 91, .external_lex_state = 88}, + [4985] = {.lex_state = 524, .external_lex_state = 95}, + [4986] = {.lex_state = 524, .external_lex_state = 95}, + [4987] = {.lex_state = 524, .external_lex_state = 95}, + [4988] = {.lex_state = 524, .external_lex_state = 95}, + [4989] = {.lex_state = 524, .external_lex_state = 95}, + [4990] = {.lex_state = 91, .external_lex_state = 88}, + [4991] = {.lex_state = 524, .external_lex_state = 95}, + [4992] = {.lex_state = 91, .external_lex_state = 88}, + [4993] = {.lex_state = 524, .external_lex_state = 95}, + [4994] = {.lex_state = 90, .external_lex_state = 95}, + [4995] = {.lex_state = 91, .external_lex_state = 88}, + [4996] = {.lex_state = 524, .external_lex_state = 95}, + [4997] = {.lex_state = 524, .external_lex_state = 95}, + [4998] = {.lex_state = 524, .external_lex_state = 95}, + [4999] = {.lex_state = 524, .external_lex_state = 95}, + [5000] = {.lex_state = 91, .external_lex_state = 88}, + [5001] = {.lex_state = 524, .external_lex_state = 95}, + [5002] = {.lex_state = 91, .external_lex_state = 88}, + [5003] = {.lex_state = 524, .external_lex_state = 95}, + [5004] = {.lex_state = 91, .external_lex_state = 88}, + [5005] = {.lex_state = 91, .external_lex_state = 88}, + [5006] = {.lex_state = 524, .external_lex_state = 95}, + [5007] = {.lex_state = 91, .external_lex_state = 88}, + [5008] = {.lex_state = 523, .external_lex_state = 95}, + [5009] = {.lex_state = 477, .external_lex_state = 99}, + [5010] = {.lex_state = 524, .external_lex_state = 95}, + [5011] = {.lex_state = 91, .external_lex_state = 88}, + [5012] = {.lex_state = 91, .external_lex_state = 95}, + [5013] = {.lex_state = 524, .external_lex_state = 95}, + [5014] = {.lex_state = 91, .external_lex_state = 88}, + [5015] = {.lex_state = 91, .external_lex_state = 88}, + [5016] = {.lex_state = 91, .external_lex_state = 88}, + [5017] = {.lex_state = 91, .external_lex_state = 88}, + [5018] = {.lex_state = 524, .external_lex_state = 95}, + [5019] = {.lex_state = 91, .external_lex_state = 88}, + [5020] = {.lex_state = 91, .external_lex_state = 88}, + [5021] = {.lex_state = 91, .external_lex_state = 88}, + [5022] = {.lex_state = 91, .external_lex_state = 88}, + [5023] = {.lex_state = 91, .external_lex_state = 64}, + [5024] = {.lex_state = 524, .external_lex_state = 95}, + [5025] = {.lex_state = 91, .external_lex_state = 64}, + [5026] = {.lex_state = 524, .external_lex_state = 95}, + [5027] = {.lex_state = 91, .external_lex_state = 88}, + [5028] = {.lex_state = 91, .external_lex_state = 88}, + [5029] = {.lex_state = 90, .external_lex_state = 95}, + [5030] = {.lex_state = 524, .external_lex_state = 95}, + [5031] = {.lex_state = 91, .external_lex_state = 88}, + [5032] = {.lex_state = 91, .external_lex_state = 88}, + [5033] = {.lex_state = 524, .external_lex_state = 95}, + [5034] = {.lex_state = 91, .external_lex_state = 88}, + [5035] = {.lex_state = 91, .external_lex_state = 88}, + [5036] = {.lex_state = 523, .external_lex_state = 95}, + [5037] = {.lex_state = 91, .external_lex_state = 88}, + [5038] = {.lex_state = 91, .external_lex_state = 88}, + [5039] = {.lex_state = 91, .external_lex_state = 88}, + [5040] = {.lex_state = 477, .external_lex_state = 99}, + [5041] = {.lex_state = 91, .external_lex_state = 88}, + [5042] = {.lex_state = 91, .external_lex_state = 88}, + [5043] = {.lex_state = 91, .external_lex_state = 88}, + [5044] = {.lex_state = 524, .external_lex_state = 95}, + [5045] = {.lex_state = 523, .external_lex_state = 93}, + [5046] = {.lex_state = 523, .external_lex_state = 93}, + [5047] = {.lex_state = 523, .external_lex_state = 93}, + [5048] = {.lex_state = 523, .external_lex_state = 93}, + [5049] = {.lex_state = 523, .external_lex_state = 93}, + [5050] = {.lex_state = 91, .external_lex_state = 95}, + [5051] = {.lex_state = 523, .external_lex_state = 93}, + [5052] = {.lex_state = 523, .external_lex_state = 93}, + [5053] = {.lex_state = 477, .external_lex_state = 99}, + [5054] = {.lex_state = 523, .external_lex_state = 95}, + [5055] = {.lex_state = 477, .external_lex_state = 99}, + [5056] = {.lex_state = 524, .external_lex_state = 95}, + [5057] = {.lex_state = 91, .external_lex_state = 88}, + [5058] = {.lex_state = 523, .external_lex_state = 95}, + [5059] = {.lex_state = 90, .external_lex_state = 95}, + [5060] = {.lex_state = 521, .external_lex_state = 95}, + [5061] = {.lex_state = 523, .external_lex_state = 95}, + [5062] = {.lex_state = 523, .external_lex_state = 95}, + [5063] = {.lex_state = 523, .external_lex_state = 95}, + [5064] = {.lex_state = 521, .external_lex_state = 95}, + [5065] = {.lex_state = 521, .external_lex_state = 95}, + [5066] = {.lex_state = 90, .external_lex_state = 95}, + [5067] = {.lex_state = 524, .external_lex_state = 95}, + [5068] = {.lex_state = 90, .external_lex_state = 95}, + [5069] = {.lex_state = 477, .external_lex_state = 99}, + [5070] = {.lex_state = 90, .external_lex_state = 95}, + [5071] = {.lex_state = 300, .external_lex_state = 71}, + [5072] = {.lex_state = 300, .external_lex_state = 71}, + [5073] = {.lex_state = 90, .external_lex_state = 95}, + [5074] = {.lex_state = 524, .external_lex_state = 95}, + [5075] = {.lex_state = 523, .external_lex_state = 93}, + [5076] = {.lex_state = 523, .external_lex_state = 93}, + [5077] = {.lex_state = 90, .external_lex_state = 95}, + [5078] = {.lex_state = 524, .external_lex_state = 95}, + [5079] = {.lex_state = 90, .external_lex_state = 95}, + [5080] = {.lex_state = 91, .external_lex_state = 64}, + [5081] = {.lex_state = 91, .external_lex_state = 88}, + [5082] = {.lex_state = 524, .external_lex_state = 95}, + [5083] = {.lex_state = 524, .external_lex_state = 95}, + [5084] = {.lex_state = 524, .external_lex_state = 95}, + [5085] = {.lex_state = 524, .external_lex_state = 95}, + [5086] = {.lex_state = 524, .external_lex_state = 95}, + [5087] = {.lex_state = 524, .external_lex_state = 95}, + [5088] = {.lex_state = 477, .external_lex_state = 99}, + [5089] = {.lex_state = 91, .external_lex_state = 95}, + [5090] = {.lex_state = 91, .external_lex_state = 95}, + [5091] = {.lex_state = 91, .external_lex_state = 95}, + [5092] = {.lex_state = 91, .external_lex_state = 95}, + [5093] = {.lex_state = 91, .external_lex_state = 95}, + [5094] = {.lex_state = 466, .external_lex_state = 100}, + [5095] = {.lex_state = 466, .external_lex_state = 100}, + [5096] = {.lex_state = 91, .external_lex_state = 95}, + [5097] = {.lex_state = 91, .external_lex_state = 95}, + [5098] = {.lex_state = 91, .external_lex_state = 95}, + [5099] = {.lex_state = 466, .external_lex_state = 100}, + [5100] = {.lex_state = 91, .external_lex_state = 95}, + [5101] = {.lex_state = 91, .external_lex_state = 95}, + [5102] = {.lex_state = 91, .external_lex_state = 95}, + [5103] = {.lex_state = 91, .external_lex_state = 95}, + [5104] = {.lex_state = 466, .external_lex_state = 100}, + [5105] = {.lex_state = 91, .external_lex_state = 95}, + [5106] = {.lex_state = 523, .external_lex_state = 95}, + [5107] = {.lex_state = 91, .external_lex_state = 95}, + [5108] = {.lex_state = 523, .external_lex_state = 95}, + [5109] = {.lex_state = 91, .external_lex_state = 95}, + [5110] = {.lex_state = 91, .external_lex_state = 95}, + [5111] = {.lex_state = 91, .external_lex_state = 95}, + [5112] = {.lex_state = 91, .external_lex_state = 95}, + [5113] = {.lex_state = 91, .external_lex_state = 95}, + [5114] = {.lex_state = 466, .external_lex_state = 100}, + [5115] = {.lex_state = 91, .external_lex_state = 95}, + [5116] = {.lex_state = 524, .external_lex_state = 95}, + [5117] = {.lex_state = 523, .external_lex_state = 95}, + [5118] = {.lex_state = 90, .external_lex_state = 95}, + [5119] = {.lex_state = 90, .external_lex_state = 95}, + [5120] = {.lex_state = 524, .external_lex_state = 95}, + [5121] = {.lex_state = 91, .external_lex_state = 95}, + [5122] = {.lex_state = 91, .external_lex_state = 95}, + [5123] = {.lex_state = 91, .external_lex_state = 95}, + [5124] = {.lex_state = 91, .external_lex_state = 95}, + [5125] = {.lex_state = 91, .external_lex_state = 95}, + [5126] = {.lex_state = 91, .external_lex_state = 95}, + [5127] = {.lex_state = 91, .external_lex_state = 95}, + [5128] = {.lex_state = 91, .external_lex_state = 95}, + [5129] = {.lex_state = 91, .external_lex_state = 95}, + [5130] = {.lex_state = 288, .external_lex_state = 97}, + [5131] = {.lex_state = 288, .external_lex_state = 97}, + [5132] = {.lex_state = 288, .external_lex_state = 97}, + [5133] = {.lex_state = 91, .external_lex_state = 95}, + [5134] = {.lex_state = 524, .external_lex_state = 95}, + [5135] = {.lex_state = 91, .external_lex_state = 95}, + [5136] = {.lex_state = 478, .external_lex_state = 101}, + [5137] = {.lex_state = 91, .external_lex_state = 95}, + [5138] = {.lex_state = 91, .external_lex_state = 95}, + [5139] = {.lex_state = 91, .external_lex_state = 95}, + [5140] = {.lex_state = 523, .external_lex_state = 95}, + [5141] = {.lex_state = 91, .external_lex_state = 95}, + [5142] = {.lex_state = 288, .external_lex_state = 97}, + [5143] = {.lex_state = 300, .external_lex_state = 71}, + [5144] = {.lex_state = 91, .external_lex_state = 95}, + [5145] = {.lex_state = 91, .external_lex_state = 95}, + [5146] = {.lex_state = 91, .external_lex_state = 95}, + [5147] = {.lex_state = 91, .external_lex_state = 95}, + [5148] = {.lex_state = 91, .external_lex_state = 95}, + [5149] = {.lex_state = 523, .external_lex_state = 95}, + [5150] = {.lex_state = 91, .external_lex_state = 95}, + [5151] = {.lex_state = 91, .external_lex_state = 95}, + [5152] = {.lex_state = 91, .external_lex_state = 95}, + [5153] = {.lex_state = 91, .external_lex_state = 95}, + [5154] = {.lex_state = 91, .external_lex_state = 95}, + [5155] = {.lex_state = 91, .external_lex_state = 95}, + [5156] = {.lex_state = 523, .external_lex_state = 95}, + [5157] = {.lex_state = 524, .external_lex_state = 95}, + [5158] = {.lex_state = 91, .external_lex_state = 95}, + [5159] = {.lex_state = 91, .external_lex_state = 95}, + [5160] = {.lex_state = 90, .external_lex_state = 93}, + [5161] = {.lex_state = 288, .external_lex_state = 97}, + [5162] = {.lex_state = 91, .external_lex_state = 95}, + [5163] = {.lex_state = 91, .external_lex_state = 95}, + [5164] = {.lex_state = 91, .external_lex_state = 94}, + [5165] = {.lex_state = 91, .external_lex_state = 95}, + [5166] = {.lex_state = 523, .external_lex_state = 95}, + [5167] = {.lex_state = 91, .external_lex_state = 95}, + [5168] = {.lex_state = 466, .external_lex_state = 100}, + [5169] = {.lex_state = 523, .external_lex_state = 95}, + [5170] = {.lex_state = 90, .external_lex_state = 95}, + [5171] = {.lex_state = 91, .external_lex_state = 95}, + [5172] = {.lex_state = 91, .external_lex_state = 95}, + [5173] = {.lex_state = 90, .external_lex_state = 95}, + [5174] = {.lex_state = 486, .external_lex_state = 102}, + [5175] = {.lex_state = 91, .external_lex_state = 95}, + [5176] = {.lex_state = 91, .external_lex_state = 95}, + [5177] = {.lex_state = 90, .external_lex_state = 93}, [5178] = {.lex_state = 466, .external_lex_state = 100}, - [5179] = {.lex_state = 477, .external_lex_state = 99}, - [5180] = {.lex_state = 477, .external_lex_state = 99}, - [5181] = {.lex_state = 477, .external_lex_state = 99}, - [5182] = {.lex_state = 489, .external_lex_state = 101}, - [5183] = {.lex_state = 477, .external_lex_state = 99}, - [5184] = {.lex_state = 478, .external_lex_state = 105}, - [5185] = {.lex_state = 88, .external_lex_state = 93}, - [5186] = {.lex_state = 475, .external_lex_state = 67}, - [5187] = {.lex_state = 489, .external_lex_state = 101}, - [5188] = {.lex_state = 477, .external_lex_state = 99}, + [5179] = {.lex_state = 523, .external_lex_state = 95}, + [5180] = {.lex_state = 475, .external_lex_state = 65}, + [5181] = {.lex_state = 475, .external_lex_state = 65}, + [5182] = {.lex_state = 475, .external_lex_state = 65}, + [5183] = {.lex_state = 466, .external_lex_state = 100}, + [5184] = {.lex_state = 454, .external_lex_state = 103}, + [5185] = {.lex_state = 475, .external_lex_state = 65}, + [5186] = {.lex_state = 487, .external_lex_state = 104}, + [5187] = {.lex_state = 475, .external_lex_state = 65}, + [5188] = {.lex_state = 454, .external_lex_state = 105}, [5189] = {.lex_state = 477, .external_lex_state = 99}, - [5190] = {.lex_state = 466, .external_lex_state = 100}, + [5190] = {.lex_state = 477, .external_lex_state = 99}, [5191] = {.lex_state = 477, .external_lex_state = 99}, [5192] = {.lex_state = 477, .external_lex_state = 99}, - [5193] = {.lex_state = 466, .external_lex_state = 100}, - [5194] = {.lex_state = 475, .external_lex_state = 67}, + [5193] = {.lex_state = 477, .external_lex_state = 99}, + [5194] = {.lex_state = 477, .external_lex_state = 99}, [5195] = {.lex_state = 477, .external_lex_state = 99}, - [5196] = {.lex_state = 466, .external_lex_state = 100}, - [5197] = {.lex_state = 466, .external_lex_state = 100}, - [5198] = {.lex_state = 475, .external_lex_state = 67}, - [5199] = {.lex_state = 87, .external_lex_state = 106}, - [5200] = {.lex_state = 475, .external_lex_state = 67}, - [5201] = {.lex_state = 487, .external_lex_state = 107}, - [5202] = {.lex_state = 466, .external_lex_state = 100}, - [5203] = {.lex_state = 475, .external_lex_state = 67}, - [5204] = {.lex_state = 466, .external_lex_state = 100}, - [5205] = {.lex_state = 477, .external_lex_state = 99}, + [5196] = {.lex_state = 477, .external_lex_state = 99}, + [5197] = {.lex_state = 523, .external_lex_state = 95}, + [5198] = {.lex_state = 477, .external_lex_state = 99}, + [5199] = {.lex_state = 486, .external_lex_state = 102}, + [5200] = {.lex_state = 486, .external_lex_state = 102}, + [5201] = {.lex_state = 475, .external_lex_state = 65}, + [5202] = {.lex_state = 475, .external_lex_state = 65}, + [5203] = {.lex_state = 477, .external_lex_state = 99}, + [5204] = {.lex_state = 477, .external_lex_state = 99}, + [5205] = {.lex_state = 466, .external_lex_state = 100}, [5206] = {.lex_state = 477, .external_lex_state = 99}, - [5207] = {.lex_state = 466, .external_lex_state = 100}, - [5208] = {.lex_state = 477, .external_lex_state = 99}, - [5209] = {.lex_state = 466, .external_lex_state = 100}, - [5210] = {.lex_state = 524, .external_lex_state = 93}, - [5211] = {.lex_state = 490, .external_lex_state = 101}, - [5212] = {.lex_state = 475, .external_lex_state = 67}, - [5213] = {.lex_state = 489, .external_lex_state = 101}, - [5214] = {.lex_state = 466, .external_lex_state = 100}, - [5215] = {.lex_state = 466, .external_lex_state = 100}, - [5216] = {.lex_state = 475, .external_lex_state = 67}, - [5217] = {.lex_state = 524, .external_lex_state = 93}, - [5218] = {.lex_state = 477, .external_lex_state = 99}, - [5219] = {.lex_state = 87, .external_lex_state = 106}, - [5220] = {.lex_state = 524, .external_lex_state = 93}, - [5221] = {.lex_state = 477, .external_lex_state = 99}, - [5222] = {.lex_state = 87, .external_lex_state = 106}, - [5223] = {.lex_state = 477, .external_lex_state = 99}, + [5207] = {.lex_state = 90, .external_lex_state = 95}, + [5208] = {.lex_state = 90, .external_lex_state = 95}, + [5209] = {.lex_state = 486, .external_lex_state = 102}, + [5210] = {.lex_state = 486, .external_lex_state = 102}, + [5211] = {.lex_state = 466, .external_lex_state = 100}, + [5212] = {.lex_state = 466, .external_lex_state = 100}, + [5213] = {.lex_state = 466, .external_lex_state = 100}, + [5214] = {.lex_state = 475, .external_lex_state = 65}, + [5215] = {.lex_state = 475, .external_lex_state = 65}, + [5216] = {.lex_state = 466, .external_lex_state = 100}, + [5217] = {.lex_state = 91, .external_lex_state = 93}, + [5218] = {.lex_state = 90, .external_lex_state = 93}, + [5219] = {.lex_state = 90, .external_lex_state = 93}, + [5220] = {.lex_state = 91, .external_lex_state = 94}, + [5221] = {.lex_state = 91, .external_lex_state = 94}, + [5222] = {.lex_state = 466, .external_lex_state = 100}, + [5223] = {.lex_state = 466, .external_lex_state = 100}, [5224] = {.lex_state = 466, .external_lex_state = 100}, - [5225] = {.lex_state = 475, .external_lex_state = 67}, - [5226] = {.lex_state = 489, .external_lex_state = 101}, - [5227] = {.lex_state = 475, .external_lex_state = 67}, - [5228] = {.lex_state = 475, .external_lex_state = 67}, - [5229] = {.lex_state = 454, .external_lex_state = 104}, - [5230] = {.lex_state = 89, .external_lex_state = 65}, - [5231] = {.lex_state = 475, .external_lex_state = 67}, - [5232] = {.lex_state = 89, .external_lex_state = 65}, - [5233] = {.lex_state = 89, .external_lex_state = 95}, - [5234] = {.lex_state = 89, .external_lex_state = 95}, - [5235] = {.lex_state = 477, .external_lex_state = 99}, - [5236] = {.lex_state = 88, .external_lex_state = 94}, - [5237] = {.lex_state = 88, .external_lex_state = 94}, - [5238] = {.lex_state = 88, .external_lex_state = 94}, - [5239] = {.lex_state = 88, .external_lex_state = 94}, - [5240] = {.lex_state = 88, .external_lex_state = 94}, - [5241] = {.lex_state = 88, .external_lex_state = 94}, - [5242] = {.lex_state = 88, .external_lex_state = 94}, - [5243] = {.lex_state = 475, .external_lex_state = 67}, - [5244] = {.lex_state = 477, .external_lex_state = 99}, - [5245] = {.lex_state = 477, .external_lex_state = 99}, - [5246] = {.lex_state = 489, .external_lex_state = 101}, - [5247] = {.lex_state = 475, .external_lex_state = 67}, - [5248] = {.lex_state = 477, .external_lex_state = 99}, - [5249] = {.lex_state = 489, .external_lex_state = 101}, + [5225] = {.lex_state = 489, .external_lex_state = 106}, + [5226] = {.lex_state = 89, .external_lex_state = 107}, + [5227] = {.lex_state = 89, .external_lex_state = 107}, + [5228] = {.lex_state = 475, .external_lex_state = 65}, + [5229] = {.lex_state = 454, .external_lex_state = 103}, + [5230] = {.lex_state = 466, .external_lex_state = 100}, + [5231] = {.lex_state = 475, .external_lex_state = 65}, + [5232] = {.lex_state = 475, .external_lex_state = 65}, + [5233] = {.lex_state = 486, .external_lex_state = 102}, + [5234] = {.lex_state = 486, .external_lex_state = 102}, + [5235] = {.lex_state = 475, .external_lex_state = 65}, + [5236] = {.lex_state = 486, .external_lex_state = 102}, + [5237] = {.lex_state = 486, .external_lex_state = 102}, + [5238] = {.lex_state = 477, .external_lex_state = 99}, + [5239] = {.lex_state = 454, .external_lex_state = 103}, + [5240] = {.lex_state = 475, .external_lex_state = 65}, + [5241] = {.lex_state = 454, .external_lex_state = 105}, + [5242] = {.lex_state = 466, .external_lex_state = 100}, + [5243] = {.lex_state = 466, .external_lex_state = 100}, + [5244] = {.lex_state = 466, .external_lex_state = 100}, + [5245] = {.lex_state = 523, .external_lex_state = 95}, + [5246] = {.lex_state = 475, .external_lex_state = 65}, + [5247] = {.lex_state = 475, .external_lex_state = 65}, + [5248] = {.lex_state = 475, .external_lex_state = 65}, + [5249] = {.lex_state = 475, .external_lex_state = 65}, [5250] = {.lex_state = 477, .external_lex_state = 99}, - [5251] = {.lex_state = 463, .external_lex_state = 47}, - [5252] = {.lex_state = 463, .external_lex_state = 47}, - [5253] = {.lex_state = 463, .external_lex_state = 47}, - [5254] = {.lex_state = 463, .external_lex_state = 47}, - [5255] = {.lex_state = 454, .external_lex_state = 102}, - [5256] = {.lex_state = 490, .external_lex_state = 101}, - [5257] = {.lex_state = 490, .external_lex_state = 101}, - [5258] = {.lex_state = 490, .external_lex_state = 101}, - [5259] = {.lex_state = 489, .external_lex_state = 107}, - [5260] = {.lex_state = 463, .external_lex_state = 47}, - [5261] = {.lex_state = 489, .external_lex_state = 107}, - [5262] = {.lex_state = 486, .external_lex_state = 103}, - [5263] = {.lex_state = 490, .external_lex_state = 101}, - [5264] = {.lex_state = 486, .external_lex_state = 103}, - [5265] = {.lex_state = 477, .external_lex_state = 104}, - [5266] = {.lex_state = 463, .external_lex_state = 47}, - [5267] = {.lex_state = 463, .external_lex_state = 47}, - [5268] = {.lex_state = 454, .external_lex_state = 104}, - [5269] = {.lex_state = 489, .external_lex_state = 107}, - [5270] = {.lex_state = 489, .external_lex_state = 107}, - [5271] = {.lex_state = 463, .external_lex_state = 47}, - [5272] = {.lex_state = 463, .external_lex_state = 47}, - [5273] = {.lex_state = 463, .external_lex_state = 47}, - [5274] = {.lex_state = 463, .external_lex_state = 47}, - [5275] = {.lex_state = 463, .external_lex_state = 47}, - [5276] = {.lex_state = 463, .external_lex_state = 47}, - [5277] = {.lex_state = 463, .external_lex_state = 47}, - [5278] = {.lex_state = 463, .external_lex_state = 47}, - [5279] = {.lex_state = 477, .external_lex_state = 104}, - [5280] = {.lex_state = 261, .external_lex_state = 71}, - [5281] = {.lex_state = 463, .external_lex_state = 47}, - [5282] = {.lex_state = 463, .external_lex_state = 47}, - [5283] = {.lex_state = 463, .external_lex_state = 47}, - [5284] = {.lex_state = 477, .external_lex_state = 104}, - [5285] = {.lex_state = 477, .external_lex_state = 104}, - [5286] = {.lex_state = 477, .external_lex_state = 81}, - [5287] = {.lex_state = 463, .external_lex_state = 47}, - [5288] = {.lex_state = 477, .external_lex_state = 104}, - [5289] = {.lex_state = 463, .external_lex_state = 47}, - [5290] = {.lex_state = 463, .external_lex_state = 47}, - [5291] = {.lex_state = 463, .external_lex_state = 47}, - [5292] = {.lex_state = 463, .external_lex_state = 47}, - [5293] = {.lex_state = 463, .external_lex_state = 47}, - [5294] = {.lex_state = 463, .external_lex_state = 47}, - [5295] = {.lex_state = 454, .external_lex_state = 102}, - [5296] = {.lex_state = 463, .external_lex_state = 47}, - [5297] = {.lex_state = 89, .external_lex_state = 93}, - [5298] = {.lex_state = 88, .external_lex_state = 93}, - [5299] = {.lex_state = 89, .external_lex_state = 93}, - [5300] = {.lex_state = 89, .external_lex_state = 93}, - [5301] = {.lex_state = 89, .external_lex_state = 93}, - [5302] = {.lex_state = 88, .external_lex_state = 93}, - [5303] = {.lex_state = 88, .external_lex_state = 93}, - [5304] = {.lex_state = 89, .external_lex_state = 93}, - [5305] = {.lex_state = 477, .external_lex_state = 104}, - [5306] = {.lex_state = 463, .external_lex_state = 78}, - [5307] = {.lex_state = 463, .external_lex_state = 47}, - [5308] = {.lex_state = 463, .external_lex_state = 47}, - [5309] = {.lex_state = 454, .external_lex_state = 104}, - [5310] = {.lex_state = 463, .external_lex_state = 47}, - [5311] = {.lex_state = 463, .external_lex_state = 47}, - [5312] = {.lex_state = 463, .external_lex_state = 47}, - [5313] = {.lex_state = 463, .external_lex_state = 47}, - [5314] = {.lex_state = 463, .external_lex_state = 47}, - [5315] = {.lex_state = 463, .external_lex_state = 47}, - [5316] = {.lex_state = 463, .external_lex_state = 47}, - [5317] = {.lex_state = 463, .external_lex_state = 47}, - [5318] = {.lex_state = 89, .external_lex_state = 93}, - [5319] = {.lex_state = 463, .external_lex_state = 47}, - [5320] = {.lex_state = 463, .external_lex_state = 47}, - [5321] = {.lex_state = 477, .external_lex_state = 104}, - [5322] = {.lex_state = 89, .external_lex_state = 94}, - [5323] = {.lex_state = 89, .external_lex_state = 94}, - [5324] = {.lex_state = 463, .external_lex_state = 78}, - [5325] = {.lex_state = 477, .external_lex_state = 104}, - [5326] = {.lex_state = 463, .external_lex_state = 47}, - [5327] = {.lex_state = 463, .external_lex_state = 47}, - [5328] = {.lex_state = 490, .external_lex_state = 101}, - [5329] = {.lex_state = 490, .external_lex_state = 101}, - [5330] = {.lex_state = 463, .external_lex_state = 47}, - [5331] = {.lex_state = 463, .external_lex_state = 47}, - [5332] = {.lex_state = 463, .external_lex_state = 47}, - [5333] = {.lex_state = 463, .external_lex_state = 47}, - [5334] = {.lex_state = 463, .external_lex_state = 47}, - [5335] = {.lex_state = 490, .external_lex_state = 101}, - [5336] = {.lex_state = 463, .external_lex_state = 47}, - [5337] = {.lex_state = 490, .external_lex_state = 101}, - [5338] = {.lex_state = 463, .external_lex_state = 47}, - [5339] = {.lex_state = 490, .external_lex_state = 101}, - [5340] = {.lex_state = 454, .external_lex_state = 104}, - [5341] = {.lex_state = 463, .external_lex_state = 47}, - [5342] = {.lex_state = 463, .external_lex_state = 47}, - [5343] = {.lex_state = 477, .external_lex_state = 104}, - [5344] = {.lex_state = 489, .external_lex_state = 101}, - [5345] = {.lex_state = 463, .external_lex_state = 47}, - [5346] = {.lex_state = 489, .external_lex_state = 101}, - [5347] = {.lex_state = 489, .external_lex_state = 101}, - [5348] = {.lex_state = 489, .external_lex_state = 101}, - [5349] = {.lex_state = 489, .external_lex_state = 101}, - [5350] = {.lex_state = 87, .external_lex_state = 106}, - [5351] = {.lex_state = 489, .external_lex_state = 101}, - [5352] = {.lex_state = 489, .external_lex_state = 101}, - [5353] = {.lex_state = 486, .external_lex_state = 103}, - [5354] = {.lex_state = 486, .external_lex_state = 103}, - [5355] = {.lex_state = 454, .external_lex_state = 104}, - [5356] = {.lex_state = 486, .external_lex_state = 103}, - [5357] = {.lex_state = 489, .external_lex_state = 107}, - [5358] = {.lex_state = 489, .external_lex_state = 107}, - [5359] = {.lex_state = 454, .external_lex_state = 104}, - [5360] = {.lex_state = 489, .external_lex_state = 101}, - [5361] = {.lex_state = 489, .external_lex_state = 101}, - [5362] = {.lex_state = 489, .external_lex_state = 101}, - [5363] = {.lex_state = 489, .external_lex_state = 101}, - [5364] = {.lex_state = 489, .external_lex_state = 101}, - [5365] = {.lex_state = 489, .external_lex_state = 101}, - [5366] = {.lex_state = 489, .external_lex_state = 101}, - [5367] = {.lex_state = 489, .external_lex_state = 101}, - [5368] = {.lex_state = 489, .external_lex_state = 101}, - [5369] = {.lex_state = 477, .external_lex_state = 104}, - [5370] = {.lex_state = 489, .external_lex_state = 101}, - [5371] = {.lex_state = 489, .external_lex_state = 101}, - [5372] = {.lex_state = 489, .external_lex_state = 101}, - [5373] = {.lex_state = 463, .external_lex_state = 47}, - [5374] = {.lex_state = 463, .external_lex_state = 47}, - [5375] = {.lex_state = 489, .external_lex_state = 107}, - [5376] = {.lex_state = 489, .external_lex_state = 107}, - [5377] = {.lex_state = 477, .external_lex_state = 81}, - [5378] = {.lex_state = 463, .external_lex_state = 47}, - [5379] = {.lex_state = 463, .external_lex_state = 47}, - [5380] = {.lex_state = 486, .external_lex_state = 107}, - [5381] = {.lex_state = 489, .external_lex_state = 107}, - [5382] = {.lex_state = 489, .external_lex_state = 107}, - [5383] = {.lex_state = 463, .external_lex_state = 47}, - [5384] = {.lex_state = 489, .external_lex_state = 107}, - [5385] = {.lex_state = 463, .external_lex_state = 47}, - [5386] = {.lex_state = 463, .external_lex_state = 47}, - [5387] = {.lex_state = 463, .external_lex_state = 47}, - [5388] = {.lex_state = 463, .external_lex_state = 47}, - [5389] = {.lex_state = 463, .external_lex_state = 47}, - [5390] = {.lex_state = 463, .external_lex_state = 47}, - [5391] = {.lex_state = 89, .external_lex_state = 94}, - [5392] = {.lex_state = 89, .external_lex_state = 94}, - [5393] = {.lex_state = 89, .external_lex_state = 94}, - [5394] = {.lex_state = 89, .external_lex_state = 94}, - [5395] = {.lex_state = 89, .external_lex_state = 94}, - [5396] = {.lex_state = 89, .external_lex_state = 94}, - [5397] = {.lex_state = 89, .external_lex_state = 94}, - [5398] = {.lex_state = 89, .external_lex_state = 94}, - [5399] = {.lex_state = 463, .external_lex_state = 47}, - [5400] = {.lex_state = 463, .external_lex_state = 47}, - [5401] = {.lex_state = 490, .external_lex_state = 101}, - [5402] = {.lex_state = 463, .external_lex_state = 47}, - [5403] = {.lex_state = 490, .external_lex_state = 101}, - [5404] = {.lex_state = 489, .external_lex_state = 107}, - [5405] = {.lex_state = 486, .external_lex_state = 103}, - [5406] = {.lex_state = 477, .external_lex_state = 102}, - [5407] = {.lex_state = 477, .external_lex_state = 104}, - [5408] = {.lex_state = 487, .external_lex_state = 102}, - [5409] = {.lex_state = 454, .external_lex_state = 102}, - [5410] = {.lex_state = 477, .external_lex_state = 102}, - [5411] = {.lex_state = 261, .external_lex_state = 71}, - [5412] = {.lex_state = 489, .external_lex_state = 107}, - [5413] = {.lex_state = 489, .external_lex_state = 107}, - [5414] = {.lex_state = 486, .external_lex_state = 103}, - [5415] = {.lex_state = 486, .external_lex_state = 103}, - [5416] = {.lex_state = 489, .external_lex_state = 107}, - [5417] = {.lex_state = 487, .external_lex_state = 102}, - [5418] = {.lex_state = 489, .external_lex_state = 107}, - [5419] = {.lex_state = 87, .external_lex_state = 106}, - [5420] = {.lex_state = 489, .external_lex_state = 107}, - [5421] = {.lex_state = 486, .external_lex_state = 107}, - [5422] = {.lex_state = 489, .external_lex_state = 107}, - [5423] = {.lex_state = 486, .external_lex_state = 107}, - [5424] = {.lex_state = 486, .external_lex_state = 107}, - [5425] = {.lex_state = 486, .external_lex_state = 107}, - [5426] = {.lex_state = 486, .external_lex_state = 103}, - [5427] = {.lex_state = 489, .external_lex_state = 107}, - [5428] = {.lex_state = 486, .external_lex_state = 107}, - [5429] = {.lex_state = 87, .external_lex_state = 106}, - [5430] = {.lex_state = 490, .external_lex_state = 101}, - [5431] = {.lex_state = 486, .external_lex_state = 107}, - [5432] = {.lex_state = 490, .external_lex_state = 101}, - [5433] = {.lex_state = 490, .external_lex_state = 101}, - [5434] = {.lex_state = 489, .external_lex_state = 107}, - [5435] = {.lex_state = 477, .external_lex_state = 104}, - [5436] = {.lex_state = 490, .external_lex_state = 101}, - [5437] = {.lex_state = 490, .external_lex_state = 101}, - [5438] = {.lex_state = 490, .external_lex_state = 101}, - [5439] = {.lex_state = 477, .external_lex_state = 102}, - [5440] = {.lex_state = 490, .external_lex_state = 101}, - [5441] = {.lex_state = 489, .external_lex_state = 107}, - [5442] = {.lex_state = 489, .external_lex_state = 107}, - [5443] = {.lex_state = 477, .external_lex_state = 104}, - [5444] = {.lex_state = 489, .external_lex_state = 107}, - [5445] = {.lex_state = 486, .external_lex_state = 103}, - [5446] = {.lex_state = 454, .external_lex_state = 102}, - [5447] = {.lex_state = 486, .external_lex_state = 103}, - [5448] = {.lex_state = 454, .external_lex_state = 104}, - [5449] = {.lex_state = 486, .external_lex_state = 103}, - [5450] = {.lex_state = 486, .external_lex_state = 103}, - [5451] = {.lex_state = 486, .external_lex_state = 103}, - [5452] = {.lex_state = 489, .external_lex_state = 107}, - [5453] = {.lex_state = 486, .external_lex_state = 107}, - [5454] = {.lex_state = 486, .external_lex_state = 103}, - [5455] = {.lex_state = 490, .external_lex_state = 101}, - [5456] = {.lex_state = 490, .external_lex_state = 101}, - [5457] = {.lex_state = 486, .external_lex_state = 103}, - [5458] = {.lex_state = 490, .external_lex_state = 101}, - [5459] = {.lex_state = 487, .external_lex_state = 102}, - [5460] = {.lex_state = 490, .external_lex_state = 101}, - [5461] = {.lex_state = 490, .external_lex_state = 101}, - [5462] = {.lex_state = 490, .external_lex_state = 101}, - [5463] = {.lex_state = 490, .external_lex_state = 101}, - [5464] = {.lex_state = 490, .external_lex_state = 101}, - [5465] = {.lex_state = 486, .external_lex_state = 81}, - [5466] = {.lex_state = 486, .external_lex_state = 103}, - [5467] = {.lex_state = 490, .external_lex_state = 101}, - [5468] = {.lex_state = 486, .external_lex_state = 103}, - [5469] = {.lex_state = 87, .external_lex_state = 106}, - [5470] = {.lex_state = 490, .external_lex_state = 101}, - [5471] = {.lex_state = 490, .external_lex_state = 101}, - [5472] = {.lex_state = 490, .external_lex_state = 101}, - [5473] = {.lex_state = 477, .external_lex_state = 102}, - [5474] = {.lex_state = 486, .external_lex_state = 81}, - [5475] = {.lex_state = 486, .external_lex_state = 107}, - [5476] = {.lex_state = 486, .external_lex_state = 107}, - [5477] = {.lex_state = 486, .external_lex_state = 107}, - [5478] = {.lex_state = 478, .external_lex_state = 108}, - [5479] = {.lex_state = 489, .external_lex_state = 107}, - [5480] = {.lex_state = 486, .external_lex_state = 103}, - [5481] = {.lex_state = 487, .external_lex_state = 102}, - [5482] = {.lex_state = 477, .external_lex_state = 104}, - [5483] = {.lex_state = 486, .external_lex_state = 103}, - [5484] = {.lex_state = 486, .external_lex_state = 103}, - [5485] = {.lex_state = 486, .external_lex_state = 103}, - [5486] = {.lex_state = 489, .external_lex_state = 107}, - [5487] = {.lex_state = 489, .external_lex_state = 107}, - [5488] = {.lex_state = 454, .external_lex_state = 102}, - [5489] = {.lex_state = 489, .external_lex_state = 107}, - [5490] = {.lex_state = 489, .external_lex_state = 107}, - [5491] = {.lex_state = 486, .external_lex_state = 103}, - [5492] = {.lex_state = 486, .external_lex_state = 103}, - [5493] = {.lex_state = 489, .external_lex_state = 107}, - [5494] = {.lex_state = 477, .external_lex_state = 102}, - [5495] = {.lex_state = 463, .external_lex_state = 78}, - [5496] = {.lex_state = 477, .external_lex_state = 104}, - [5497] = {.lex_state = 487, .external_lex_state = 102}, - [5498] = {.lex_state = 486, .external_lex_state = 107}, - [5499] = {.lex_state = 486, .external_lex_state = 107}, - [5500] = {.lex_state = 89, .external_lex_state = 93}, - [5501] = {.lex_state = 486, .external_lex_state = 107}, - [5502] = {.lex_state = 87, .external_lex_state = 109}, - [5503] = {.lex_state = 87, .external_lex_state = 109}, - [5504] = {.lex_state = 486, .external_lex_state = 107}, - [5505] = {.lex_state = 486, .external_lex_state = 102}, - [5506] = {.lex_state = 454, .external_lex_state = 104}, - [5507] = {.lex_state = 87, .external_lex_state = 109}, - [5508] = {.lex_state = 87, .external_lex_state = 109}, - [5509] = {.lex_state = 87, .external_lex_state = 109}, - [5510] = {.lex_state = 477, .external_lex_state = 104}, - [5511] = {.lex_state = 486, .external_lex_state = 107}, - [5512] = {.lex_state = 486, .external_lex_state = 107}, - [5513] = {.lex_state = 486, .external_lex_state = 107}, - [5514] = {.lex_state = 486, .external_lex_state = 107}, - [5515] = {.lex_state = 487, .external_lex_state = 102}, - [5516] = {.lex_state = 274, .external_lex_state = 110}, - [5517] = {.lex_state = 274, .external_lex_state = 110}, - [5518] = {.lex_state = 486, .external_lex_state = 102}, - [5519] = {.lex_state = 486, .external_lex_state = 102}, - [5520] = {.lex_state = 454, .external_lex_state = 104}, - [5521] = {.lex_state = 486, .external_lex_state = 81}, - [5522] = {.lex_state = 486, .external_lex_state = 107}, - [5523] = {.lex_state = 90, .external_lex_state = 111}, - [5524] = {.lex_state = 87, .external_lex_state = 109}, - [5525] = {.lex_state = 486, .external_lex_state = 107}, - [5526] = {.lex_state = 486, .external_lex_state = 107}, - [5527] = {.lex_state = 87, .external_lex_state = 109}, - [5528] = {.lex_state = 87, .external_lex_state = 109}, - [5529] = {.lex_state = 486, .external_lex_state = 107}, - [5530] = {.lex_state = 486, .external_lex_state = 107}, - [5531] = {.lex_state = 486, .external_lex_state = 107}, - [5532] = {.lex_state = 486, .external_lex_state = 107}, - [5533] = {.lex_state = 486, .external_lex_state = 102}, - [5534] = {.lex_state = 89, .external_lex_state = 93}, - [5535] = {.lex_state = 89, .external_lex_state = 93}, - [5536] = {.lex_state = 486, .external_lex_state = 107}, - [5537] = {.lex_state = 454, .external_lex_state = 104}, - [5538] = {.lex_state = 486, .external_lex_state = 107}, - [5539] = {.lex_state = 486, .external_lex_state = 107}, - [5540] = {.lex_state = 486, .external_lex_state = 107}, - [5541] = {.lex_state = 454, .external_lex_state = 104}, - [5542] = {.lex_state = 486, .external_lex_state = 102}, - [5543] = {.lex_state = 486, .external_lex_state = 107}, - [5544] = {.lex_state = 87, .external_lex_state = 109}, - [5545] = {.lex_state = 89, .external_lex_state = 93}, - [5546] = {.lex_state = 87, .external_lex_state = 109}, - [5547] = {.lex_state = 477, .external_lex_state = 104}, - [5548] = {.lex_state = 477, .external_lex_state = 104}, - [5549] = {.lex_state = 477, .external_lex_state = 104}, - [5550] = {.lex_state = 477, .external_lex_state = 104}, - [5551] = {.lex_state = 90, .external_lex_state = 111}, - [5552] = {.lex_state = 90, .external_lex_state = 111}, - [5553] = {.lex_state = 477, .external_lex_state = 104}, - [5554] = {.lex_state = 477, .external_lex_state = 81}, - [5555] = {.lex_state = 477, .external_lex_state = 104}, - [5556] = {.lex_state = 477, .external_lex_state = 104}, - [5557] = {.lex_state = 477, .external_lex_state = 102}, - [5558] = {.lex_state = 477, .external_lex_state = 102}, - [5559] = {.lex_state = 454, .external_lex_state = 102}, - [5560] = {.lex_state = 454, .external_lex_state = 102}, - [5561] = {.lex_state = 454, .external_lex_state = 102}, - [5562] = {.lex_state = 90, .external_lex_state = 111}, - [5563] = {.lex_state = 90, .external_lex_state = 111}, - [5564] = {.lex_state = 87, .external_lex_state = 109}, - [5565] = {.lex_state = 454, .external_lex_state = 102}, - [5566] = {.lex_state = 90, .external_lex_state = 111}, - [5567] = {.lex_state = 477, .external_lex_state = 102}, - [5568] = {.lex_state = 477, .external_lex_state = 104}, - [5569] = {.lex_state = 90, .external_lex_state = 111}, - [5570] = {.lex_state = 90, .external_lex_state = 111}, - [5571] = {.lex_state = 477, .external_lex_state = 104}, - [5572] = {.lex_state = 477, .external_lex_state = 104}, - [5573] = {.lex_state = 477, .external_lex_state = 102}, - [5574] = {.lex_state = 477, .external_lex_state = 104}, - [5575] = {.lex_state = 477, .external_lex_state = 104}, - [5576] = {.lex_state = 477, .external_lex_state = 81}, - [5577] = {.lex_state = 454, .external_lex_state = 102}, - [5578] = {.lex_state = 477, .external_lex_state = 102}, - [5579] = {.lex_state = 454, .external_lex_state = 102}, - [5580] = {.lex_state = 477, .external_lex_state = 104}, - [5581] = {.lex_state = 477, .external_lex_state = 104}, - [5582] = {.lex_state = 454, .external_lex_state = 102}, - [5583] = {.lex_state = 477, .external_lex_state = 102}, - [5584] = {.lex_state = 477, .external_lex_state = 81}, - [5585] = {.lex_state = 454, .external_lex_state = 102}, - [5586] = {.lex_state = 477, .external_lex_state = 102}, - [5587] = {.lex_state = 477, .external_lex_state = 104}, - [5588] = {.lex_state = 454, .external_lex_state = 102}, - [5589] = {.lex_state = 90, .external_lex_state = 111}, - [5590] = {.lex_state = 454, .external_lex_state = 102}, - [5591] = {.lex_state = 90, .external_lex_state = 111}, - [5592] = {.lex_state = 477, .external_lex_state = 104}, - [5593] = {.lex_state = 477, .external_lex_state = 102}, - [5594] = {.lex_state = 477, .external_lex_state = 102}, - [5595] = {.lex_state = 454, .external_lex_state = 102}, - [5596] = {.lex_state = 90, .external_lex_state = 111}, - [5597] = {.lex_state = 477, .external_lex_state = 104}, - [5598] = {.lex_state = 477, .external_lex_state = 102}, - [5599] = {.lex_state = 477, .external_lex_state = 104}, - [5600] = {.lex_state = 477, .external_lex_state = 104}, - [5601] = {.lex_state = 477, .external_lex_state = 104}, - [5602] = {.lex_state = 454, .external_lex_state = 102}, - [5603] = {.lex_state = 454, .external_lex_state = 102}, - [5604] = {.lex_state = 454, .external_lex_state = 102}, - [5605] = {.lex_state = 477, .external_lex_state = 104}, - [5606] = {.lex_state = 477, .external_lex_state = 102}, - [5607] = {.lex_state = 477, .external_lex_state = 104}, - [5608] = {.lex_state = 454, .external_lex_state = 102}, - [5609] = {.lex_state = 90, .external_lex_state = 111}, - [5610] = {.lex_state = 477, .external_lex_state = 104}, - [5611] = {.lex_state = 454, .external_lex_state = 102}, - [5612] = {.lex_state = 454, .external_lex_state = 102}, - [5613] = {.lex_state = 477, .external_lex_state = 102}, - [5614] = {.lex_state = 486, .external_lex_state = 102}, - [5615] = {.lex_state = 477, .external_lex_state = 104}, - [5616] = {.lex_state = 477, .external_lex_state = 104}, - [5617] = {.lex_state = 90, .external_lex_state = 109}, - [5618] = {.lex_state = 90, .external_lex_state = 111}, - [5619] = {.lex_state = 90, .external_lex_state = 111}, - [5620] = {.lex_state = 477, .external_lex_state = 102}, - [5621] = {.lex_state = 477, .external_lex_state = 102}, - [5622] = {.lex_state = 477, .external_lex_state = 102}, - [5623] = {.lex_state = 90, .external_lex_state = 111}, - [5624] = {.lex_state = 477, .external_lex_state = 102}, - [5625] = {.lex_state = 90, .external_lex_state = 111}, - [5626] = {.lex_state = 477, .external_lex_state = 102}, - [5627] = {.lex_state = 90, .external_lex_state = 111}, - [5628] = {.lex_state = 477, .external_lex_state = 102}, - [5629] = {.lex_state = 90, .external_lex_state = 111}, - [5630] = {.lex_state = 477, .external_lex_state = 102}, - [5631] = {.lex_state = 90, .external_lex_state = 109}, - [5632] = {.lex_state = 477, .external_lex_state = 102}, - [5633] = {.lex_state = 477, .external_lex_state = 102}, - [5634] = {.lex_state = 477, .external_lex_state = 102}, - [5635] = {.lex_state = 477, .external_lex_state = 102}, - [5636] = {.lex_state = 90, .external_lex_state = 111}, - [5637] = {.lex_state = 477, .external_lex_state = 102}, - [5638] = {.lex_state = 90, .external_lex_state = 109}, - [5639] = {.lex_state = 477, .external_lex_state = 102}, - [5640] = {.lex_state = 477, .external_lex_state = 102}, - [5641] = {.lex_state = 477, .external_lex_state = 102}, - [5642] = {.lex_state = 477, .external_lex_state = 102}, - [5643] = {.lex_state = 90, .external_lex_state = 111}, - [5644] = {.lex_state = 477, .external_lex_state = 102}, - [5645] = {.lex_state = 477, .external_lex_state = 102}, - [5646] = {.lex_state = 477, .external_lex_state = 102}, - [5647] = {.lex_state = 477, .external_lex_state = 102}, - [5648] = {.lex_state = 477, .external_lex_state = 102}, - [5649] = {.lex_state = 477, .external_lex_state = 102}, - [5650] = {.lex_state = 477, .external_lex_state = 102}, - [5651] = {.lex_state = 90, .external_lex_state = 111}, - [5652] = {.lex_state = 477, .external_lex_state = 102}, - [5653] = {.lex_state = 90, .external_lex_state = 109}, - [5654] = {.lex_state = 477, .external_lex_state = 102}, - [5655] = {.lex_state = 477, .external_lex_state = 102}, - [5656] = {.lex_state = 477, .external_lex_state = 102}, - [5657] = {.lex_state = 90, .external_lex_state = 111}, - [5658] = {.lex_state = 90, .external_lex_state = 111}, - [5659] = {.lex_state = 477, .external_lex_state = 102}, - [5660] = {.lex_state = 90, .external_lex_state = 111}, - [5661] = {.lex_state = 477, .external_lex_state = 102}, - [5662] = {.lex_state = 477, .external_lex_state = 102}, - [5663] = {.lex_state = 477, .external_lex_state = 102}, - [5664] = {.lex_state = 477, .external_lex_state = 102}, - [5665] = {.lex_state = 477, .external_lex_state = 102}, - [5666] = {.lex_state = 477, .external_lex_state = 102}, - [5667] = {.lex_state = 477, .external_lex_state = 102}, - [5668] = {.lex_state = 477, .external_lex_state = 102}, - [5669] = {.lex_state = 477, .external_lex_state = 102}, - [5670] = {.lex_state = 90, .external_lex_state = 109}, - [5671] = {.lex_state = 90, .external_lex_state = 111}, - [5672] = {.lex_state = 477, .external_lex_state = 102}, - [5673] = {.lex_state = 477, .external_lex_state = 102}, - [5674] = {.lex_state = 477, .external_lex_state = 102}, - [5675] = {.lex_state = 477, .external_lex_state = 102}, - [5676] = {.lex_state = 477, .external_lex_state = 102}, - [5677] = {.lex_state = 477, .external_lex_state = 102}, - [5678] = {.lex_state = 90, .external_lex_state = 111}, - [5679] = {.lex_state = 477, .external_lex_state = 102}, - [5680] = {.lex_state = 477, .external_lex_state = 102}, - [5681] = {.lex_state = 477, .external_lex_state = 102}, - [5682] = {.lex_state = 477, .external_lex_state = 102}, - [5683] = {.lex_state = 477, .external_lex_state = 102}, - [5684] = {.lex_state = 477, .external_lex_state = 102}, - [5685] = {.lex_state = 477, .external_lex_state = 102}, - [5686] = {.lex_state = 90, .external_lex_state = 111}, - [5687] = {.lex_state = 90, .external_lex_state = 111}, - [5688] = {.lex_state = 90, .external_lex_state = 111}, - [5689] = {.lex_state = 477, .external_lex_state = 102}, - [5690] = {.lex_state = 477, .external_lex_state = 102}, - [5691] = {.lex_state = 90, .external_lex_state = 111}, - [5692] = {.lex_state = 477, .external_lex_state = 102}, - [5693] = {.lex_state = 90, .external_lex_state = 111}, - [5694] = {.lex_state = 477, .external_lex_state = 102}, - [5695] = {.lex_state = 477, .external_lex_state = 102}, - [5696] = {.lex_state = 477, .external_lex_state = 102}, - [5697] = {.lex_state = 458, .external_lex_state = 112}, - [5698] = {.lex_state = 451, .external_lex_state = 112}, - [5699] = {.lex_state = 90, .external_lex_state = 109}, - [5700] = {.lex_state = 451, .external_lex_state = 112}, - [5701] = {.lex_state = 458, .external_lex_state = 112}, - [5702] = {.lex_state = 483}, - [5703] = {.lex_state = 483}, - [5704] = {.lex_state = 87, .external_lex_state = 109}, - [5705] = {.lex_state = 483}, - [5706] = {.lex_state = 483}, - [5707] = {.lex_state = 483}, - [5708] = {.lex_state = 483}, - [5709] = {.lex_state = 87, .external_lex_state = 109}, - [5710] = {.lex_state = 483}, - [5711] = {.lex_state = 483}, - [5712] = {.lex_state = 483}, - [5713] = {.lex_state = 87, .external_lex_state = 109}, - [5714] = {.lex_state = 483}, - [5715] = {.lex_state = 483}, - [5716] = {.lex_state = 483}, - [5717] = {.lex_state = 483}, - [5718] = {.lex_state = 483}, - [5719] = {.lex_state = 483}, - [5720] = {.lex_state = 483}, - [5721] = {.lex_state = 483}, - [5722] = {.lex_state = 483}, - [5723] = {.lex_state = 483}, - [5724] = {.lex_state = 483}, - [5725] = {.lex_state = 483}, - [5726] = {.lex_state = 483}, - [5727] = {.lex_state = 483}, - [5728] = {.lex_state = 483}, - [5729] = {.lex_state = 483}, - [5730] = {.lex_state = 483}, - [5731] = {.lex_state = 483}, - [5732] = {.lex_state = 483}, - [5733] = {.lex_state = 483}, - [5734] = {.lex_state = 483}, - [5735] = {.lex_state = 483}, - [5736] = {.lex_state = 483}, - [5737] = {.lex_state = 483}, - [5738] = {.lex_state = 483}, - [5739] = {.lex_state = 483}, - [5740] = {.lex_state = 483}, - [5741] = {.lex_state = 483}, - [5742] = {.lex_state = 483}, - [5743] = {.lex_state = 483}, - [5744] = {.lex_state = 483}, - [5745] = {.lex_state = 483}, - [5746] = {.lex_state = 483}, - [5747] = {.lex_state = 483}, - [5748] = {.lex_state = 483}, - [5749] = {.lex_state = 483}, - [5750] = {.lex_state = 483}, - [5751] = {.lex_state = 483}, - [5752] = {.lex_state = 483}, - [5753] = {.lex_state = 483}, - [5754] = {.lex_state = 483}, - [5755] = {.lex_state = 483}, - [5756] = {.lex_state = 483}, - [5757] = {.lex_state = 483}, - [5758] = {.lex_state = 483}, - [5759] = {.lex_state = 483}, - [5760] = {.lex_state = 483}, - [5761] = {.lex_state = 483}, - [5762] = {.lex_state = 483}, - [5763] = {.lex_state = 483}, + [5251] = {.lex_state = 477, .external_lex_state = 99}, + [5252] = {.lex_state = 477, .external_lex_state = 99}, + [5253] = {.lex_state = 477, .external_lex_state = 99}, + [5254] = {.lex_state = 477, .external_lex_state = 99}, + [5255] = {.lex_state = 477, .external_lex_state = 99}, + [5256] = {.lex_state = 477, .external_lex_state = 99}, + [5257] = {.lex_state = 477, .external_lex_state = 99}, + [5258] = {.lex_state = 477, .external_lex_state = 99}, + [5259] = {.lex_state = 477, .external_lex_state = 99}, + [5260] = {.lex_state = 477, .external_lex_state = 99}, + [5261] = {.lex_state = 477, .external_lex_state = 99}, + [5262] = {.lex_state = 475, .external_lex_state = 65}, + [5263] = {.lex_state = 475, .external_lex_state = 65}, + [5264] = {.lex_state = 475, .external_lex_state = 65}, + [5265] = {.lex_state = 475, .external_lex_state = 65}, + [5266] = {.lex_state = 477, .external_lex_state = 99}, + [5267] = {.lex_state = 477, .external_lex_state = 99}, + [5268] = {.lex_state = 523, .external_lex_state = 95}, + [5269] = {.lex_state = 477, .external_lex_state = 99}, + [5270] = {.lex_state = 523, .external_lex_state = 95}, + [5271] = {.lex_state = 477, .external_lex_state = 99}, + [5272] = {.lex_state = 477, .external_lex_state = 99}, + [5273] = {.lex_state = 475, .external_lex_state = 65}, + [5274] = {.lex_state = 477, .external_lex_state = 99}, + [5275] = {.lex_state = 477, .external_lex_state = 99}, + [5276] = {.lex_state = 523, .external_lex_state = 95}, + [5277] = {.lex_state = 477, .external_lex_state = 99}, + [5278] = {.lex_state = 477, .external_lex_state = 99}, + [5279] = {.lex_state = 477, .external_lex_state = 99}, + [5280] = {.lex_state = 477, .external_lex_state = 99}, + [5281] = {.lex_state = 477, .external_lex_state = 99}, + [5282] = {.lex_state = 477, .external_lex_state = 99}, + [5283] = {.lex_state = 466, .external_lex_state = 100}, + [5284] = {.lex_state = 490, .external_lex_state = 102}, + [5285] = {.lex_state = 486, .external_lex_state = 102}, + [5286] = {.lex_state = 466, .external_lex_state = 100}, + [5287] = {.lex_state = 486, .external_lex_state = 102}, + [5288] = {.lex_state = 466, .external_lex_state = 100}, + [5289] = {.lex_state = 486, .external_lex_state = 102}, + [5290] = {.lex_state = 466, .external_lex_state = 100}, + [5291] = {.lex_state = 89, .external_lex_state = 107}, + [5292] = {.lex_state = 466, .external_lex_state = 100}, + [5293] = {.lex_state = 466, .external_lex_state = 100}, + [5294] = {.lex_state = 91, .external_lex_state = 64}, + [5295] = {.lex_state = 91, .external_lex_state = 64}, + [5296] = {.lex_state = 91, .external_lex_state = 94}, + [5297] = {.lex_state = 91, .external_lex_state = 94}, + [5298] = {.lex_state = 90, .external_lex_state = 93}, + [5299] = {.lex_state = 90, .external_lex_state = 93}, + [5300] = {.lex_state = 90, .external_lex_state = 93}, + [5301] = {.lex_state = 90, .external_lex_state = 93}, + [5302] = {.lex_state = 90, .external_lex_state = 93}, + [5303] = {.lex_state = 90, .external_lex_state = 93}, + [5304] = {.lex_state = 90, .external_lex_state = 93}, + [5305] = {.lex_state = 477, .external_lex_state = 99}, + [5306] = {.lex_state = 475, .external_lex_state = 65}, + [5307] = {.lex_state = 486, .external_lex_state = 106}, + [5308] = {.lex_state = 463, .external_lex_state = 45}, + [5309] = {.lex_state = 463, .external_lex_state = 45}, + [5310] = {.lex_state = 463, .external_lex_state = 45}, + [5311] = {.lex_state = 463, .external_lex_state = 45}, + [5312] = {.lex_state = 463, .external_lex_state = 45}, + [5313] = {.lex_state = 454, .external_lex_state = 105}, + [5314] = {.lex_state = 486, .external_lex_state = 102}, + [5315] = {.lex_state = 486, .external_lex_state = 102}, + [5316] = {.lex_state = 454, .external_lex_state = 105}, + [5317] = {.lex_state = 454, .external_lex_state = 103}, + [5318] = {.lex_state = 463, .external_lex_state = 45}, + [5319] = {.lex_state = 486, .external_lex_state = 102}, + [5320] = {.lex_state = 463, .external_lex_state = 45}, + [5321] = {.lex_state = 486, .external_lex_state = 102}, + [5322] = {.lex_state = 463, .external_lex_state = 45}, + [5323] = {.lex_state = 454, .external_lex_state = 105}, + [5324] = {.lex_state = 486, .external_lex_state = 102}, + [5325] = {.lex_state = 477, .external_lex_state = 80}, + [5326] = {.lex_state = 463, .external_lex_state = 45}, + [5327] = {.lex_state = 463, .external_lex_state = 45}, + [5328] = {.lex_state = 463, .external_lex_state = 45}, + [5329] = {.lex_state = 463, .external_lex_state = 45}, + [5330] = {.lex_state = 463, .external_lex_state = 45}, + [5331] = {.lex_state = 477, .external_lex_state = 105}, + [5332] = {.lex_state = 486, .external_lex_state = 106}, + [5333] = {.lex_state = 463, .external_lex_state = 78}, + [5334] = {.lex_state = 463, .external_lex_state = 45}, + [5335] = {.lex_state = 463, .external_lex_state = 45}, + [5336] = {.lex_state = 261, .external_lex_state = 71}, + [5337] = {.lex_state = 486, .external_lex_state = 106}, + [5338] = {.lex_state = 486, .external_lex_state = 106}, + [5339] = {.lex_state = 463, .external_lex_state = 45}, + [5340] = {.lex_state = 486, .external_lex_state = 102}, + [5341] = {.lex_state = 463, .external_lex_state = 45}, + [5342] = {.lex_state = 463, .external_lex_state = 45}, + [5343] = {.lex_state = 477, .external_lex_state = 105}, + [5344] = {.lex_state = 91, .external_lex_state = 95}, + [5345] = {.lex_state = 477, .external_lex_state = 80}, + [5346] = {.lex_state = 463, .external_lex_state = 45}, + [5347] = {.lex_state = 490, .external_lex_state = 102}, + [5348] = {.lex_state = 463, .external_lex_state = 45}, + [5349] = {.lex_state = 477, .external_lex_state = 105}, + [5350] = {.lex_state = 477, .external_lex_state = 105}, + [5351] = {.lex_state = 490, .external_lex_state = 102}, + [5352] = {.lex_state = 486, .external_lex_state = 102}, + [5353] = {.lex_state = 463, .external_lex_state = 45}, + [5354] = {.lex_state = 463, .external_lex_state = 45}, + [5355] = {.lex_state = 463, .external_lex_state = 45}, + [5356] = {.lex_state = 463, .external_lex_state = 45}, + [5357] = {.lex_state = 463, .external_lex_state = 45}, + [5358] = {.lex_state = 490, .external_lex_state = 102}, + [5359] = {.lex_state = 90, .external_lex_state = 95}, + [5360] = {.lex_state = 463, .external_lex_state = 45}, + [5361] = {.lex_state = 463, .external_lex_state = 45}, + [5362] = {.lex_state = 91, .external_lex_state = 95}, + [5363] = {.lex_state = 463, .external_lex_state = 45}, + [5364] = {.lex_state = 91, .external_lex_state = 95}, + [5365] = {.lex_state = 91, .external_lex_state = 95}, + [5366] = {.lex_state = 90, .external_lex_state = 95}, + [5367] = {.lex_state = 90, .external_lex_state = 95}, + [5368] = {.lex_state = 89, .external_lex_state = 107}, + [5369] = {.lex_state = 463, .external_lex_state = 45}, + [5370] = {.lex_state = 454, .external_lex_state = 105}, + [5371] = {.lex_state = 477, .external_lex_state = 105}, + [5372] = {.lex_state = 463, .external_lex_state = 45}, + [5373] = {.lex_state = 463, .external_lex_state = 45}, + [5374] = {.lex_state = 486, .external_lex_state = 102}, + [5375] = {.lex_state = 486, .external_lex_state = 102}, + [5376] = {.lex_state = 486, .external_lex_state = 102}, + [5377] = {.lex_state = 463, .external_lex_state = 45}, + [5378] = {.lex_state = 463, .external_lex_state = 45}, + [5379] = {.lex_state = 463, .external_lex_state = 45}, + [5380] = {.lex_state = 463, .external_lex_state = 45}, + [5381] = {.lex_state = 463, .external_lex_state = 45}, + [5382] = {.lex_state = 463, .external_lex_state = 45}, + [5383] = {.lex_state = 463, .external_lex_state = 45}, + [5384] = {.lex_state = 477, .external_lex_state = 105}, + [5385] = {.lex_state = 477, .external_lex_state = 105}, + [5386] = {.lex_state = 463, .external_lex_state = 45}, + [5387] = {.lex_state = 463, .external_lex_state = 45}, + [5388] = {.lex_state = 463, .external_lex_state = 45}, + [5389] = {.lex_state = 463, .external_lex_state = 45}, + [5390] = {.lex_state = 463, .external_lex_state = 45}, + [5391] = {.lex_state = 463, .external_lex_state = 45}, + [5392] = {.lex_state = 91, .external_lex_state = 93}, + [5393] = {.lex_state = 463, .external_lex_state = 45}, + [5394] = {.lex_state = 91, .external_lex_state = 93}, + [5395] = {.lex_state = 463, .external_lex_state = 45}, + [5396] = {.lex_state = 463, .external_lex_state = 45}, + [5397] = {.lex_state = 463, .external_lex_state = 45}, + [5398] = {.lex_state = 463, .external_lex_state = 45}, + [5399] = {.lex_state = 487, .external_lex_state = 104}, + [5400] = {.lex_state = 463, .external_lex_state = 45}, + [5401] = {.lex_state = 490, .external_lex_state = 102}, + [5402] = {.lex_state = 487, .external_lex_state = 106}, + [5403] = {.lex_state = 486, .external_lex_state = 106}, + [5404] = {.lex_state = 487, .external_lex_state = 104}, + [5405] = {.lex_state = 486, .external_lex_state = 106}, + [5406] = {.lex_state = 490, .external_lex_state = 102}, + [5407] = {.lex_state = 463, .external_lex_state = 45}, + [5408] = {.lex_state = 463, .external_lex_state = 45}, + [5409] = {.lex_state = 463, .external_lex_state = 45}, + [5410] = {.lex_state = 486, .external_lex_state = 106}, + [5411] = {.lex_state = 477, .external_lex_state = 105}, + [5412] = {.lex_state = 463, .external_lex_state = 45}, + [5413] = {.lex_state = 477, .external_lex_state = 105}, + [5414] = {.lex_state = 463, .external_lex_state = 45}, + [5415] = {.lex_state = 486, .external_lex_state = 106}, + [5416] = {.lex_state = 486, .external_lex_state = 106}, + [5417] = {.lex_state = 490, .external_lex_state = 102}, + [5418] = {.lex_state = 490, .external_lex_state = 102}, + [5419] = {.lex_state = 463, .external_lex_state = 45}, + [5420] = {.lex_state = 486, .external_lex_state = 102}, + [5421] = {.lex_state = 486, .external_lex_state = 102}, + [5422] = {.lex_state = 454, .external_lex_state = 105}, + [5423] = {.lex_state = 486, .external_lex_state = 102}, + [5424] = {.lex_state = 486, .external_lex_state = 102}, + [5425] = {.lex_state = 486, .external_lex_state = 102}, + [5426] = {.lex_state = 463, .external_lex_state = 45}, + [5427] = {.lex_state = 477, .external_lex_state = 105}, + [5428] = {.lex_state = 486, .external_lex_state = 102}, + [5429] = {.lex_state = 463, .external_lex_state = 45}, + [5430] = {.lex_state = 490, .external_lex_state = 102}, + [5431] = {.lex_state = 490, .external_lex_state = 102}, + [5432] = {.lex_state = 486, .external_lex_state = 102}, + [5433] = {.lex_state = 486, .external_lex_state = 106}, + [5434] = {.lex_state = 486, .external_lex_state = 106}, + [5435] = {.lex_state = 463, .external_lex_state = 78}, + [5436] = {.lex_state = 487, .external_lex_state = 104}, + [5437] = {.lex_state = 486, .external_lex_state = 102}, + [5438] = {.lex_state = 490, .external_lex_state = 102}, + [5439] = {.lex_state = 490, .external_lex_state = 102}, + [5440] = {.lex_state = 487, .external_lex_state = 104}, + [5441] = {.lex_state = 486, .external_lex_state = 102}, + [5442] = {.lex_state = 478, .external_lex_state = 108}, + [5443] = {.lex_state = 91, .external_lex_state = 93}, + [5444] = {.lex_state = 91, .external_lex_state = 93}, + [5445] = {.lex_state = 91, .external_lex_state = 93}, + [5446] = {.lex_state = 91, .external_lex_state = 93}, + [5447] = {.lex_state = 91, .external_lex_state = 93}, + [5448] = {.lex_state = 91, .external_lex_state = 93}, + [5449] = {.lex_state = 91, .external_lex_state = 93}, + [5450] = {.lex_state = 91, .external_lex_state = 93}, + [5451] = {.lex_state = 454, .external_lex_state = 103}, + [5452] = {.lex_state = 463, .external_lex_state = 45}, + [5453] = {.lex_state = 91, .external_lex_state = 95}, + [5454] = {.lex_state = 463, .external_lex_state = 45}, + [5455] = {.lex_state = 91, .external_lex_state = 95}, + [5456] = {.lex_state = 463, .external_lex_state = 45}, + [5457] = {.lex_state = 487, .external_lex_state = 104}, + [5458] = {.lex_state = 486, .external_lex_state = 102}, + [5459] = {.lex_state = 463, .external_lex_state = 45}, + [5460] = {.lex_state = 463, .external_lex_state = 45}, + [5461] = {.lex_state = 463, .external_lex_state = 45}, + [5462] = {.lex_state = 486, .external_lex_state = 106}, + [5463] = {.lex_state = 490, .external_lex_state = 102}, + [5464] = {.lex_state = 454, .external_lex_state = 103}, + [5465] = {.lex_state = 487, .external_lex_state = 104}, + [5466] = {.lex_state = 487, .external_lex_state = 104}, + [5467] = {.lex_state = 486, .external_lex_state = 106}, + [5468] = {.lex_state = 477, .external_lex_state = 105}, + [5469] = {.lex_state = 486, .external_lex_state = 106}, + [5470] = {.lex_state = 486, .external_lex_state = 106}, + [5471] = {.lex_state = 89, .external_lex_state = 107}, + [5472] = {.lex_state = 477, .external_lex_state = 105}, + [5473] = {.lex_state = 486, .external_lex_state = 106}, + [5474] = {.lex_state = 486, .external_lex_state = 106}, + [5475] = {.lex_state = 487, .external_lex_state = 80}, + [5476] = {.lex_state = 486, .external_lex_state = 106}, + [5477] = {.lex_state = 490, .external_lex_state = 102}, + [5478] = {.lex_state = 489, .external_lex_state = 103}, + [5479] = {.lex_state = 487, .external_lex_state = 80}, + [5480] = {.lex_state = 487, .external_lex_state = 104}, + [5481] = {.lex_state = 487, .external_lex_state = 104}, + [5482] = {.lex_state = 487, .external_lex_state = 104}, + [5483] = {.lex_state = 487, .external_lex_state = 104}, + [5484] = {.lex_state = 487, .external_lex_state = 104}, + [5485] = {.lex_state = 487, .external_lex_state = 104}, + [5486] = {.lex_state = 487, .external_lex_state = 104}, + [5487] = {.lex_state = 487, .external_lex_state = 104}, + [5488] = {.lex_state = 477, .external_lex_state = 103}, + [5489] = {.lex_state = 487, .external_lex_state = 106}, + [5490] = {.lex_state = 487, .external_lex_state = 106}, + [5491] = {.lex_state = 454, .external_lex_state = 103}, + [5492] = {.lex_state = 487, .external_lex_state = 104}, + [5493] = {.lex_state = 486, .external_lex_state = 106}, + [5494] = {.lex_state = 487, .external_lex_state = 104}, + [5495] = {.lex_state = 486, .external_lex_state = 106}, + [5496] = {.lex_state = 490, .external_lex_state = 102}, + [5497] = {.lex_state = 487, .external_lex_state = 106}, + [5498] = {.lex_state = 487, .external_lex_state = 106}, + [5499] = {.lex_state = 487, .external_lex_state = 104}, + [5500] = {.lex_state = 477, .external_lex_state = 103}, + [5501] = {.lex_state = 477, .external_lex_state = 103}, + [5502] = {.lex_state = 486, .external_lex_state = 106}, + [5503] = {.lex_state = 89, .external_lex_state = 107}, + [5504] = {.lex_state = 261, .external_lex_state = 71}, + [5505] = {.lex_state = 489, .external_lex_state = 103}, + [5506] = {.lex_state = 89, .external_lex_state = 107}, + [5507] = {.lex_state = 489, .external_lex_state = 103}, + [5508] = {.lex_state = 490, .external_lex_state = 102}, + [5509] = {.lex_state = 490, .external_lex_state = 102}, + [5510] = {.lex_state = 490, .external_lex_state = 102}, + [5511] = {.lex_state = 490, .external_lex_state = 102}, + [5512] = {.lex_state = 477, .external_lex_state = 103}, + [5513] = {.lex_state = 477, .external_lex_state = 103}, + [5514] = {.lex_state = 490, .external_lex_state = 102}, + [5515] = {.lex_state = 486, .external_lex_state = 106}, + [5516] = {.lex_state = 487, .external_lex_state = 104}, + [5517] = {.lex_state = 454, .external_lex_state = 105}, + [5518] = {.lex_state = 490, .external_lex_state = 102}, + [5519] = {.lex_state = 487, .external_lex_state = 104}, + [5520] = {.lex_state = 487, .external_lex_state = 104}, + [5521] = {.lex_state = 477, .external_lex_state = 105}, + [5522] = {.lex_state = 487, .external_lex_state = 104}, + [5523] = {.lex_state = 486, .external_lex_state = 106}, + [5524] = {.lex_state = 486, .external_lex_state = 106}, + [5525] = {.lex_state = 486, .external_lex_state = 106}, + [5526] = {.lex_state = 486, .external_lex_state = 106}, + [5527] = {.lex_state = 490, .external_lex_state = 102}, + [5528] = {.lex_state = 486, .external_lex_state = 106}, + [5529] = {.lex_state = 487, .external_lex_state = 106}, + [5530] = {.lex_state = 487, .external_lex_state = 106}, + [5531] = {.lex_state = 487, .external_lex_state = 104}, + [5532] = {.lex_state = 490, .external_lex_state = 102}, + [5533] = {.lex_state = 487, .external_lex_state = 106}, + [5534] = {.lex_state = 490, .external_lex_state = 102}, + [5535] = {.lex_state = 487, .external_lex_state = 106}, + [5536] = {.lex_state = 487, .external_lex_state = 106}, + [5537] = {.lex_state = 487, .external_lex_state = 106}, + [5538] = {.lex_state = 487, .external_lex_state = 106}, + [5539] = {.lex_state = 454, .external_lex_state = 103}, + [5540] = {.lex_state = 490, .external_lex_state = 102}, + [5541] = {.lex_state = 490, .external_lex_state = 102}, + [5542] = {.lex_state = 490, .external_lex_state = 102}, + [5543] = {.lex_state = 486, .external_lex_state = 106}, + [5544] = {.lex_state = 486, .external_lex_state = 106}, + [5545] = {.lex_state = 486, .external_lex_state = 106}, + [5546] = {.lex_state = 490, .external_lex_state = 102}, + [5547] = {.lex_state = 463, .external_lex_state = 78}, + [5548] = {.lex_state = 489, .external_lex_state = 103}, + [5549] = {.lex_state = 490, .external_lex_state = 102}, + [5550] = {.lex_state = 477, .external_lex_state = 105}, + [5551] = {.lex_state = 489, .external_lex_state = 103}, + [5552] = {.lex_state = 490, .external_lex_state = 102}, + [5553] = {.lex_state = 487, .external_lex_state = 104}, + [5554] = {.lex_state = 487, .external_lex_state = 104}, + [5555] = {.lex_state = 490, .external_lex_state = 102}, + [5556] = {.lex_state = 477, .external_lex_state = 105}, + [5557] = {.lex_state = 486, .external_lex_state = 106}, + [5558] = {.lex_state = 490, .external_lex_state = 102}, + [5559] = {.lex_state = 487, .external_lex_state = 106}, + [5560] = {.lex_state = 454, .external_lex_state = 105}, + [5561] = {.lex_state = 487, .external_lex_state = 106}, + [5562] = {.lex_state = 91, .external_lex_state = 95}, + [5563] = {.lex_state = 487, .external_lex_state = 103}, + [5564] = {.lex_state = 487, .external_lex_state = 103}, + [5565] = {.lex_state = 91, .external_lex_state = 95}, + [5566] = {.lex_state = 487, .external_lex_state = 106}, + [5567] = {.lex_state = 487, .external_lex_state = 106}, + [5568] = {.lex_state = 92, .external_lex_state = 109}, + [5569] = {.lex_state = 487, .external_lex_state = 106}, + [5570] = {.lex_state = 487, .external_lex_state = 106}, + [5571] = {.lex_state = 487, .external_lex_state = 103}, + [5572] = {.lex_state = 487, .external_lex_state = 106}, + [5573] = {.lex_state = 487, .external_lex_state = 106}, + [5574] = {.lex_state = 487, .external_lex_state = 106}, + [5575] = {.lex_state = 487, .external_lex_state = 103}, + [5576] = {.lex_state = 89, .external_lex_state = 110}, + [5577] = {.lex_state = 89, .external_lex_state = 110}, + [5578] = {.lex_state = 89, .external_lex_state = 110}, + [5579] = {.lex_state = 89, .external_lex_state = 110}, + [5580] = {.lex_state = 89, .external_lex_state = 110}, + [5581] = {.lex_state = 274, .external_lex_state = 111}, + [5582] = {.lex_state = 487, .external_lex_state = 106}, + [5583] = {.lex_state = 89, .external_lex_state = 110}, + [5584] = {.lex_state = 487, .external_lex_state = 106}, + [5585] = {.lex_state = 487, .external_lex_state = 103}, + [5586] = {.lex_state = 489, .external_lex_state = 103}, + [5587] = {.lex_state = 454, .external_lex_state = 105}, + [5588] = {.lex_state = 487, .external_lex_state = 80}, + [5589] = {.lex_state = 91, .external_lex_state = 95}, + [5590] = {.lex_state = 487, .external_lex_state = 106}, + [5591] = {.lex_state = 91, .external_lex_state = 95}, + [5592] = {.lex_state = 487, .external_lex_state = 106}, + [5593] = {.lex_state = 477, .external_lex_state = 105}, + [5594] = {.lex_state = 89, .external_lex_state = 110}, + [5595] = {.lex_state = 487, .external_lex_state = 106}, + [5596] = {.lex_state = 89, .external_lex_state = 110}, + [5597] = {.lex_state = 89, .external_lex_state = 110}, + [5598] = {.lex_state = 274, .external_lex_state = 111}, + [5599] = {.lex_state = 487, .external_lex_state = 106}, + [5600] = {.lex_state = 487, .external_lex_state = 106}, + [5601] = {.lex_state = 487, .external_lex_state = 106}, + [5602] = {.lex_state = 454, .external_lex_state = 105}, + [5603] = {.lex_state = 89, .external_lex_state = 110}, + [5604] = {.lex_state = 487, .external_lex_state = 106}, + [5605] = {.lex_state = 487, .external_lex_state = 106}, + [5606] = {.lex_state = 487, .external_lex_state = 106}, + [5607] = {.lex_state = 454, .external_lex_state = 105}, + [5608] = {.lex_state = 454, .external_lex_state = 103}, + [5609] = {.lex_state = 477, .external_lex_state = 103}, + [5610] = {.lex_state = 477, .external_lex_state = 103}, + [5611] = {.lex_state = 454, .external_lex_state = 103}, + [5612] = {.lex_state = 92, .external_lex_state = 109}, + [5613] = {.lex_state = 454, .external_lex_state = 103}, + [5614] = {.lex_state = 454, .external_lex_state = 103}, + [5615] = {.lex_state = 477, .external_lex_state = 105}, + [5616] = {.lex_state = 89, .external_lex_state = 110}, + [5617] = {.lex_state = 454, .external_lex_state = 103}, + [5618] = {.lex_state = 477, .external_lex_state = 105}, + [5619] = {.lex_state = 477, .external_lex_state = 105}, + [5620] = {.lex_state = 477, .external_lex_state = 103}, + [5621] = {.lex_state = 477, .external_lex_state = 105}, + [5622] = {.lex_state = 487, .external_lex_state = 103}, + [5623] = {.lex_state = 92, .external_lex_state = 109}, + [5624] = {.lex_state = 92, .external_lex_state = 109}, + [5625] = {.lex_state = 92, .external_lex_state = 109}, + [5626] = {.lex_state = 477, .external_lex_state = 103}, + [5627] = {.lex_state = 92, .external_lex_state = 109}, + [5628] = {.lex_state = 477, .external_lex_state = 103}, + [5629] = {.lex_state = 92, .external_lex_state = 109}, + [5630] = {.lex_state = 92, .external_lex_state = 109}, + [5631] = {.lex_state = 477, .external_lex_state = 105}, + [5632] = {.lex_state = 454, .external_lex_state = 103}, + [5633] = {.lex_state = 454, .external_lex_state = 103}, + [5634] = {.lex_state = 92, .external_lex_state = 109}, + [5635] = {.lex_state = 477, .external_lex_state = 105}, + [5636] = {.lex_state = 477, .external_lex_state = 103}, + [5637] = {.lex_state = 92, .external_lex_state = 109}, + [5638] = {.lex_state = 477, .external_lex_state = 105}, + [5639] = {.lex_state = 477, .external_lex_state = 105}, + [5640] = {.lex_state = 477, .external_lex_state = 103}, + [5641] = {.lex_state = 477, .external_lex_state = 105}, + [5642] = {.lex_state = 454, .external_lex_state = 103}, + [5643] = {.lex_state = 477, .external_lex_state = 103}, + [5644] = {.lex_state = 477, .external_lex_state = 105}, + [5645] = {.lex_state = 477, .external_lex_state = 80}, + [5646] = {.lex_state = 477, .external_lex_state = 105}, + [5647] = {.lex_state = 477, .external_lex_state = 105}, + [5648] = {.lex_state = 477, .external_lex_state = 103}, + [5649] = {.lex_state = 454, .external_lex_state = 103}, + [5650] = {.lex_state = 477, .external_lex_state = 103}, + [5651] = {.lex_state = 454, .external_lex_state = 103}, + [5652] = {.lex_state = 477, .external_lex_state = 103}, + [5653] = {.lex_state = 92, .external_lex_state = 109}, + [5654] = {.lex_state = 477, .external_lex_state = 105}, + [5655] = {.lex_state = 454, .external_lex_state = 103}, + [5656] = {.lex_state = 454, .external_lex_state = 103}, + [5657] = {.lex_state = 477, .external_lex_state = 103}, + [5658] = {.lex_state = 454, .external_lex_state = 103}, + [5659] = {.lex_state = 454, .external_lex_state = 103}, + [5660] = {.lex_state = 454, .external_lex_state = 103}, + [5661] = {.lex_state = 477, .external_lex_state = 105}, + [5662] = {.lex_state = 477, .external_lex_state = 105}, + [5663] = {.lex_state = 477, .external_lex_state = 105}, + [5664] = {.lex_state = 477, .external_lex_state = 105}, + [5665] = {.lex_state = 477, .external_lex_state = 105}, + [5666] = {.lex_state = 477, .external_lex_state = 105}, + [5667] = {.lex_state = 477, .external_lex_state = 105}, + [5668] = {.lex_state = 477, .external_lex_state = 105}, + [5669] = {.lex_state = 477, .external_lex_state = 105}, + [5670] = {.lex_state = 92, .external_lex_state = 109}, + [5671] = {.lex_state = 454, .external_lex_state = 103}, + [5672] = {.lex_state = 477, .external_lex_state = 80}, + [5673] = {.lex_state = 477, .external_lex_state = 105}, + [5674] = {.lex_state = 454, .external_lex_state = 103}, + [5675] = {.lex_state = 477, .external_lex_state = 105}, + [5676] = {.lex_state = 477, .external_lex_state = 105}, + [5677] = {.lex_state = 477, .external_lex_state = 80}, + [5678] = {.lex_state = 477, .external_lex_state = 103}, + [5679] = {.lex_state = 92, .external_lex_state = 109}, + [5680] = {.lex_state = 477, .external_lex_state = 103}, + [5681] = {.lex_state = 477, .external_lex_state = 103}, + [5682] = {.lex_state = 477, .external_lex_state = 103}, + [5683] = {.lex_state = 477, .external_lex_state = 103}, + [5684] = {.lex_state = 92, .external_lex_state = 109}, + [5685] = {.lex_state = 477, .external_lex_state = 103}, + [5686] = {.lex_state = 477, .external_lex_state = 103}, + [5687] = {.lex_state = 92, .external_lex_state = 110}, + [5688] = {.lex_state = 92, .external_lex_state = 109}, + [5689] = {.lex_state = 92, .external_lex_state = 110}, + [5690] = {.lex_state = 477, .external_lex_state = 103}, + [5691] = {.lex_state = 477, .external_lex_state = 103}, + [5692] = {.lex_state = 477, .external_lex_state = 103}, + [5693] = {.lex_state = 477, .external_lex_state = 103}, + [5694] = {.lex_state = 92, .external_lex_state = 109}, + [5695] = {.lex_state = 477, .external_lex_state = 103}, + [5696] = {.lex_state = 477, .external_lex_state = 103}, + [5697] = {.lex_state = 477, .external_lex_state = 103}, + [5698] = {.lex_state = 477, .external_lex_state = 103}, + [5699] = {.lex_state = 477, .external_lex_state = 103}, + [5700] = {.lex_state = 477, .external_lex_state = 103}, + [5701] = {.lex_state = 477, .external_lex_state = 103}, + [5702] = {.lex_state = 477, .external_lex_state = 103}, + [5703] = {.lex_state = 92, .external_lex_state = 110}, + [5704] = {.lex_state = 477, .external_lex_state = 103}, + [5705] = {.lex_state = 477, .external_lex_state = 103}, + [5706] = {.lex_state = 92, .external_lex_state = 109}, + [5707] = {.lex_state = 92, .external_lex_state = 109}, + [5708] = {.lex_state = 92, .external_lex_state = 109}, + [5709] = {.lex_state = 92, .external_lex_state = 109}, + [5710] = {.lex_state = 477, .external_lex_state = 103}, + [5711] = {.lex_state = 477, .external_lex_state = 103}, + [5712] = {.lex_state = 477, .external_lex_state = 103}, + [5713] = {.lex_state = 477, .external_lex_state = 103}, + [5714] = {.lex_state = 477, .external_lex_state = 103}, + [5715] = {.lex_state = 477, .external_lex_state = 103}, + [5716] = {.lex_state = 477, .external_lex_state = 103}, + [5717] = {.lex_state = 92, .external_lex_state = 109}, + [5718] = {.lex_state = 477, .external_lex_state = 103}, + [5719] = {.lex_state = 477, .external_lex_state = 103}, + [5720] = {.lex_state = 477, .external_lex_state = 103}, + [5721] = {.lex_state = 477, .external_lex_state = 103}, + [5722] = {.lex_state = 477, .external_lex_state = 103}, + [5723] = {.lex_state = 477, .external_lex_state = 103}, + [5724] = {.lex_state = 477, .external_lex_state = 103}, + [5725] = {.lex_state = 92, .external_lex_state = 110}, + [5726] = {.lex_state = 477, .external_lex_state = 103}, + [5727] = {.lex_state = 477, .external_lex_state = 103}, + [5728] = {.lex_state = 477, .external_lex_state = 103}, + [5729] = {.lex_state = 477, .external_lex_state = 103}, + [5730] = {.lex_state = 477, .external_lex_state = 103}, + [5731] = {.lex_state = 92, .external_lex_state = 109}, + [5732] = {.lex_state = 92, .external_lex_state = 109}, + [5733] = {.lex_state = 477, .external_lex_state = 103}, + [5734] = {.lex_state = 477, .external_lex_state = 103}, + [5735] = {.lex_state = 92, .external_lex_state = 109}, + [5736] = {.lex_state = 477, .external_lex_state = 103}, + [5737] = {.lex_state = 477, .external_lex_state = 103}, + [5738] = {.lex_state = 92, .external_lex_state = 109}, + [5739] = {.lex_state = 92, .external_lex_state = 109}, + [5740] = {.lex_state = 477, .external_lex_state = 103}, + [5741] = {.lex_state = 92, .external_lex_state = 109}, + [5742] = {.lex_state = 477, .external_lex_state = 103}, + [5743] = {.lex_state = 477, .external_lex_state = 103}, + [5744] = {.lex_state = 477, .external_lex_state = 103}, + [5745] = {.lex_state = 92, .external_lex_state = 109}, + [5746] = {.lex_state = 477, .external_lex_state = 103}, + [5747] = {.lex_state = 477, .external_lex_state = 103}, + [5748] = {.lex_state = 477, .external_lex_state = 103}, + [5749] = {.lex_state = 92, .external_lex_state = 110}, + [5750] = {.lex_state = 477, .external_lex_state = 103}, + [5751] = {.lex_state = 477, .external_lex_state = 103}, + [5752] = {.lex_state = 92, .external_lex_state = 109}, + [5753] = {.lex_state = 477, .external_lex_state = 103}, + [5754] = {.lex_state = 92, .external_lex_state = 109}, + [5755] = {.lex_state = 92, .external_lex_state = 109}, + [5756] = {.lex_state = 477, .external_lex_state = 103}, + [5757] = {.lex_state = 477, .external_lex_state = 103}, + [5758] = {.lex_state = 92, .external_lex_state = 109}, + [5759] = {.lex_state = 92, .external_lex_state = 110}, + [5760] = {.lex_state = 451, .external_lex_state = 112}, + [5761] = {.lex_state = 451, .external_lex_state = 112}, + [5762] = {.lex_state = 458, .external_lex_state = 112}, + [5763] = {.lex_state = 458, .external_lex_state = 112}, [5764] = {.lex_state = 483}, [5765] = {.lex_state = 483}, [5766] = {.lex_state = 483}, @@ -27279,7 +27525,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5778] = {.lex_state = 483}, [5779] = {.lex_state = 483}, [5780] = {.lex_state = 483}, - [5781] = {.lex_state = 483}, + [5781] = {.lex_state = 89, .external_lex_state = 110}, [5782] = {.lex_state = 483}, [5783] = {.lex_state = 483}, [5784] = {.lex_state = 483}, @@ -27305,7 +27551,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5804] = {.lex_state = 483}, [5805] = {.lex_state = 483}, [5806] = {.lex_state = 483}, - [5807] = {.lex_state = 483}, + [5807] = {.lex_state = 89, .external_lex_state = 110}, [5808] = {.lex_state = 483}, [5809] = {.lex_state = 483}, [5810] = {.lex_state = 483}, @@ -27334,8 +27580,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5833] = {.lex_state = 483}, [5834] = {.lex_state = 483}, [5835] = {.lex_state = 483}, - [5836] = {.lex_state = 87, .external_lex_state = 109}, - [5837] = {.lex_state = 483}, + [5836] = {.lex_state = 483}, + [5837] = {.lex_state = 89, .external_lex_state = 110}, [5838] = {.lex_state = 483}, [5839] = {.lex_state = 483}, [5840] = {.lex_state = 483}, @@ -27363,164 +27609,164 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5862] = {.lex_state = 483}, [5863] = {.lex_state = 483}, [5864] = {.lex_state = 483}, - [5865] = {.lex_state = 453, .external_lex_state = 112}, - [5866] = {.lex_state = 453, .external_lex_state = 112}, - [5867] = {.lex_state = 453, .external_lex_state = 112}, - [5868] = {.lex_state = 453, .external_lex_state = 112}, - [5869] = {.lex_state = 452, .external_lex_state = 112}, - [5870] = {.lex_state = 453, .external_lex_state = 112}, - [5871] = {.lex_state = 452, .external_lex_state = 112}, - [5872] = {.lex_state = 453, .external_lex_state = 112}, - [5873] = {.lex_state = 452, .external_lex_state = 112}, - [5874] = {.lex_state = 452, .external_lex_state = 112}, - [5875] = {.lex_state = 452, .external_lex_state = 112}, - [5876] = {.lex_state = 452, .external_lex_state = 112}, - [5877] = {.lex_state = 452, .external_lex_state = 112}, - [5878] = {.lex_state = 453, .external_lex_state = 112}, - [5879] = {.lex_state = 453, .external_lex_state = 112}, - [5880] = {.lex_state = 452, .external_lex_state = 112}, - [5881] = {.lex_state = 452, .external_lex_state = 112}, - [5882] = {.lex_state = 452, .external_lex_state = 112}, - [5883] = {.lex_state = 453, .external_lex_state = 112}, - [5884] = {.lex_state = 452, .external_lex_state = 112}, - [5885] = {.lex_state = 452, .external_lex_state = 112}, - [5886] = {.lex_state = 453, .external_lex_state = 112}, - [5887] = {.lex_state = 453, .external_lex_state = 112}, - [5888] = {.lex_state = 452, .external_lex_state = 112}, - [5889] = {.lex_state = 452, .external_lex_state = 112}, - [5890] = {.lex_state = 452, .external_lex_state = 112}, - [5891] = {.lex_state = 452, .external_lex_state = 112}, - [5892] = {.lex_state = 452, .external_lex_state = 112}, - [5893] = {.lex_state = 453, .external_lex_state = 112}, - [5894] = {.lex_state = 453, .external_lex_state = 112}, - [5895] = {.lex_state = 452, .external_lex_state = 112}, - [5896] = {.lex_state = 452, .external_lex_state = 112}, - [5897] = {.lex_state = 452, .external_lex_state = 112}, - [5898] = {.lex_state = 452, .external_lex_state = 112}, - [5899] = {.lex_state = 452, .external_lex_state = 112}, - [5900] = {.lex_state = 452, .external_lex_state = 112}, - [5901] = {.lex_state = 452, .external_lex_state = 112}, - [5902] = {.lex_state = 453, .external_lex_state = 112}, - [5903] = {.lex_state = 453, .external_lex_state = 112}, - [5904] = {.lex_state = 452, .external_lex_state = 112}, - [5905] = {.lex_state = 452, .external_lex_state = 112}, - [5906] = {.lex_state = 452, .external_lex_state = 112}, - [5907] = {.lex_state = 452, .external_lex_state = 112}, - [5908] = {.lex_state = 452, .external_lex_state = 112}, - [5909] = {.lex_state = 452, .external_lex_state = 112}, - [5910] = {.lex_state = 453, .external_lex_state = 112}, - [5911] = {.lex_state = 453, .external_lex_state = 112}, - [5912] = {.lex_state = 452, .external_lex_state = 112}, - [5913] = {.lex_state = 452, .external_lex_state = 112}, - [5914] = {.lex_state = 452, .external_lex_state = 112}, - [5915] = {.lex_state = 452, .external_lex_state = 112}, - [5916] = {.lex_state = 453, .external_lex_state = 112}, - [5917] = {.lex_state = 452, .external_lex_state = 112}, - [5918] = {.lex_state = 453, .external_lex_state = 112}, - [5919] = {.lex_state = 452, .external_lex_state = 112}, - [5920] = {.lex_state = 452, .external_lex_state = 112}, - [5921] = {.lex_state = 452, .external_lex_state = 112}, - [5922] = {.lex_state = 452, .external_lex_state = 112}, - [5923] = {.lex_state = 452, .external_lex_state = 112}, - [5924] = {.lex_state = 452, .external_lex_state = 112}, - [5925] = {.lex_state = 453, .external_lex_state = 112}, - [5926] = {.lex_state = 452, .external_lex_state = 112}, + [5865] = {.lex_state = 483}, + [5866] = {.lex_state = 483}, + [5867] = {.lex_state = 483}, + [5868] = {.lex_state = 483}, + [5869] = {.lex_state = 483}, + [5870] = {.lex_state = 483}, + [5871] = {.lex_state = 483}, + [5872] = {.lex_state = 483}, + [5873] = {.lex_state = 483}, + [5874] = {.lex_state = 483}, + [5875] = {.lex_state = 483}, + [5876] = {.lex_state = 483}, + [5877] = {.lex_state = 483}, + [5878] = {.lex_state = 483}, + [5879] = {.lex_state = 483}, + [5880] = {.lex_state = 483}, + [5881] = {.lex_state = 483}, + [5882] = {.lex_state = 483}, + [5883] = {.lex_state = 483}, + [5884] = {.lex_state = 483}, + [5885] = {.lex_state = 483}, + [5886] = {.lex_state = 483}, + [5887] = {.lex_state = 483}, + [5888] = {.lex_state = 483}, + [5889] = {.lex_state = 483}, + [5890] = {.lex_state = 483}, + [5891] = {.lex_state = 483}, + [5892] = {.lex_state = 483}, + [5893] = {.lex_state = 483}, + [5894] = {.lex_state = 483}, + [5895] = {.lex_state = 483}, + [5896] = {.lex_state = 483}, + [5897] = {.lex_state = 483}, + [5898] = {.lex_state = 483}, + [5899] = {.lex_state = 483}, + [5900] = {.lex_state = 483}, + [5901] = {.lex_state = 483}, + [5902] = {.lex_state = 483}, + [5903] = {.lex_state = 483}, + [5904] = {.lex_state = 483}, + [5905] = {.lex_state = 483}, + [5906] = {.lex_state = 483}, + [5907] = {.lex_state = 483}, + [5908] = {.lex_state = 483}, + [5909] = {.lex_state = 483}, + [5910] = {.lex_state = 483}, + [5911] = {.lex_state = 89, .external_lex_state = 110}, + [5912] = {.lex_state = 483}, + [5913] = {.lex_state = 483}, + [5914] = {.lex_state = 483}, + [5915] = {.lex_state = 483}, + [5916] = {.lex_state = 483}, + [5917] = {.lex_state = 483}, + [5918] = {.lex_state = 483}, + [5919] = {.lex_state = 483}, + [5920] = {.lex_state = 483}, + [5921] = {.lex_state = 483}, + [5922] = {.lex_state = 483}, + [5923] = {.lex_state = 483}, + [5924] = {.lex_state = 483}, + [5925] = {.lex_state = 483}, + [5926] = {.lex_state = 483}, [5927] = {.lex_state = 452, .external_lex_state = 112}, - [5928] = {.lex_state = 452, .external_lex_state = 112}, + [5928] = {.lex_state = 453, .external_lex_state = 112}, [5929] = {.lex_state = 453, .external_lex_state = 112}, - [5930] = {.lex_state = 453, .external_lex_state = 112}, + [5930] = {.lex_state = 452, .external_lex_state = 112}, [5931] = {.lex_state = 452, .external_lex_state = 112}, - [5932] = {.lex_state = 452, .external_lex_state = 112}, + [5932] = {.lex_state = 453, .external_lex_state = 112}, [5933] = {.lex_state = 452, .external_lex_state = 112}, [5934] = {.lex_state = 452, .external_lex_state = 112}, - [5935] = {.lex_state = 452, .external_lex_state = 112}, + [5935] = {.lex_state = 453, .external_lex_state = 112}, [5936] = {.lex_state = 452, .external_lex_state = 112}, [5937] = {.lex_state = 452, .external_lex_state = 112}, [5938] = {.lex_state = 452, .external_lex_state = 112}, - [5939] = {.lex_state = 452, .external_lex_state = 112}, + [5939] = {.lex_state = 453, .external_lex_state = 112}, [5940] = {.lex_state = 452, .external_lex_state = 112}, [5941] = {.lex_state = 452, .external_lex_state = 112}, [5942] = {.lex_state = 453, .external_lex_state = 112}, [5943] = {.lex_state = 452, .external_lex_state = 112}, - [5944] = {.lex_state = 453, .external_lex_state = 112}, - [5945] = {.lex_state = 452, .external_lex_state = 112}, + [5944] = {.lex_state = 452, .external_lex_state = 112}, + [5945] = {.lex_state = 453, .external_lex_state = 112}, [5946] = {.lex_state = 452, .external_lex_state = 112}, [5947] = {.lex_state = 452, .external_lex_state = 112}, - [5948] = {.lex_state = 452, .external_lex_state = 112}, + [5948] = {.lex_state = 453, .external_lex_state = 112}, [5949] = {.lex_state = 452, .external_lex_state = 112}, [5950] = {.lex_state = 452, .external_lex_state = 112}, [5951] = {.lex_state = 452, .external_lex_state = 112}, - [5952] = {.lex_state = 452, .external_lex_state = 112}, + [5952] = {.lex_state = 453, .external_lex_state = 112}, [5953] = {.lex_state = 452, .external_lex_state = 112}, [5954] = {.lex_state = 452, .external_lex_state = 112}, - [5955] = {.lex_state = 452, .external_lex_state = 112}, - [5956] = {.lex_state = 453, .external_lex_state = 112}, - [5957] = {.lex_state = 452, .external_lex_state = 112}, + [5955] = {.lex_state = 453, .external_lex_state = 112}, + [5956] = {.lex_state = 452, .external_lex_state = 112}, + [5957] = {.lex_state = 453, .external_lex_state = 112}, [5958] = {.lex_state = 452, .external_lex_state = 112}, [5959] = {.lex_state = 453, .external_lex_state = 112}, - [5960] = {.lex_state = 453, .external_lex_state = 112}, - [5961] = {.lex_state = 453, .external_lex_state = 112}, - [5962] = {.lex_state = 452, .external_lex_state = 112}, + [5960] = {.lex_state = 452, .external_lex_state = 112}, + [5961] = {.lex_state = 452, .external_lex_state = 112}, + [5962] = {.lex_state = 453, .external_lex_state = 112}, [5963] = {.lex_state = 452, .external_lex_state = 112}, [5964] = {.lex_state = 452, .external_lex_state = 112}, - [5965] = {.lex_state = 453, .external_lex_state = 112}, - [5966] = {.lex_state = 452, .external_lex_state = 112}, + [5965] = {.lex_state = 452, .external_lex_state = 112}, + [5966] = {.lex_state = 453, .external_lex_state = 112}, [5967] = {.lex_state = 452, .external_lex_state = 112}, - [5968] = {.lex_state = 453, .external_lex_state = 112}, + [5968] = {.lex_state = 452, .external_lex_state = 112}, [5969] = {.lex_state = 452, .external_lex_state = 112}, - [5970] = {.lex_state = 452, .external_lex_state = 112}, - [5971] = {.lex_state = 453, .external_lex_state = 112}, + [5970] = {.lex_state = 453, .external_lex_state = 112}, + [5971] = {.lex_state = 452, .external_lex_state = 112}, [5972] = {.lex_state = 452, .external_lex_state = 112}, - [5973] = {.lex_state = 452, .external_lex_state = 112}, - [5974] = {.lex_state = 453, .external_lex_state = 112}, + [5973] = {.lex_state = 453, .external_lex_state = 112}, + [5974] = {.lex_state = 452, .external_lex_state = 112}, [5975] = {.lex_state = 452, .external_lex_state = 112}, [5976] = {.lex_state = 452, .external_lex_state = 112}, - [5977] = {.lex_state = 452, .external_lex_state = 112}, + [5977] = {.lex_state = 453, .external_lex_state = 112}, [5978] = {.lex_state = 452, .external_lex_state = 112}, [5979] = {.lex_state = 452, .external_lex_state = 112}, [5980] = {.lex_state = 452, .external_lex_state = 112}, - [5981] = {.lex_state = 452, .external_lex_state = 112}, + [5981] = {.lex_state = 453, .external_lex_state = 112}, [5982] = {.lex_state = 452, .external_lex_state = 112}, [5983] = {.lex_state = 452, .external_lex_state = 112}, - [5984] = {.lex_state = 452, .external_lex_state = 112}, + [5984] = {.lex_state = 453, .external_lex_state = 112}, [5985] = {.lex_state = 453, .external_lex_state = 112}, - [5986] = {.lex_state = 453, .external_lex_state = 112}, - [5987] = {.lex_state = 453, .external_lex_state = 112}, - [5988] = {.lex_state = 452, .external_lex_state = 112}, + [5986] = {.lex_state = 452, .external_lex_state = 112}, + [5987] = {.lex_state = 452, .external_lex_state = 112}, + [5988] = {.lex_state = 453, .external_lex_state = 112}, [5989] = {.lex_state = 452, .external_lex_state = 112}, [5990] = {.lex_state = 452, .external_lex_state = 112}, - [5991] = {.lex_state = 452, .external_lex_state = 112}, + [5991] = {.lex_state = 453, .external_lex_state = 112}, [5992] = {.lex_state = 452, .external_lex_state = 112}, - [5993] = {.lex_state = 452, .external_lex_state = 112}, + [5993] = {.lex_state = 453, .external_lex_state = 112}, [5994] = {.lex_state = 452, .external_lex_state = 112}, - [5995] = {.lex_state = 453, .external_lex_state = 112}, + [5995] = {.lex_state = 452, .external_lex_state = 112}, [5996] = {.lex_state = 452, .external_lex_state = 112}, - [5997] = {.lex_state = 452, .external_lex_state = 112}, + [5997] = {.lex_state = 453, .external_lex_state = 112}, [5998] = {.lex_state = 452, .external_lex_state = 112}, [5999] = {.lex_state = 452, .external_lex_state = 112}, - [6000] = {.lex_state = 452, .external_lex_state = 112}, + [6000] = {.lex_state = 453, .external_lex_state = 112}, [6001] = {.lex_state = 452, .external_lex_state = 112}, [6002] = {.lex_state = 452, .external_lex_state = 112}, - [6003] = {.lex_state = 453, .external_lex_state = 112}, - [6004] = {.lex_state = 452, .external_lex_state = 112}, - [6005] = {.lex_state = 453, .external_lex_state = 112}, - [6006] = {.lex_state = 453, .external_lex_state = 112}, + [6003] = {.lex_state = 452, .external_lex_state = 112}, + [6004] = {.lex_state = 453, .external_lex_state = 112}, + [6005] = {.lex_state = 452, .external_lex_state = 112}, + [6006] = {.lex_state = 452, .external_lex_state = 112}, [6007] = {.lex_state = 452, .external_lex_state = 112}, - [6008] = {.lex_state = 452, .external_lex_state = 112}, - [6009] = {.lex_state = 453, .external_lex_state = 112}, + [6008] = {.lex_state = 453, .external_lex_state = 112}, + [6009] = {.lex_state = 452, .external_lex_state = 112}, [6010] = {.lex_state = 452, .external_lex_state = 112}, [6011] = {.lex_state = 452, .external_lex_state = 112}, - [6012] = {.lex_state = 453, .external_lex_state = 112}, - [6013] = {.lex_state = 453, .external_lex_state = 112}, + [6012] = {.lex_state = 452, .external_lex_state = 112}, + [6013] = {.lex_state = 452, .external_lex_state = 112}, [6014] = {.lex_state = 452, .external_lex_state = 112}, - [6015] = {.lex_state = 453, .external_lex_state = 112}, + [6015] = {.lex_state = 452, .external_lex_state = 112}, [6016] = {.lex_state = 452, .external_lex_state = 112}, - [6017] = {.lex_state = 453, .external_lex_state = 112}, - [6018] = {.lex_state = 453, .external_lex_state = 112}, + [6017] = {.lex_state = 452, .external_lex_state = 112}, + [6018] = {.lex_state = 452, .external_lex_state = 112}, [6019] = {.lex_state = 452, .external_lex_state = 112}, - [6020] = {.lex_state = 453, .external_lex_state = 112}, + [6020] = {.lex_state = 452, .external_lex_state = 112}, [6021] = {.lex_state = 452, .external_lex_state = 112}, - [6022] = {.lex_state = 453, .external_lex_state = 112}, + [6022] = {.lex_state = 452, .external_lex_state = 112}, [6023] = {.lex_state = 452, .external_lex_state = 112}, [6024] = {.lex_state = 452, .external_lex_state = 112}, [6025] = {.lex_state = 452, .external_lex_state = 112}, @@ -27528,1647 +27774,1845 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6027] = {.lex_state = 453, .external_lex_state = 112}, [6028] = {.lex_state = 452, .external_lex_state = 112}, [6029] = {.lex_state = 452, .external_lex_state = 112}, - [6030] = {.lex_state = 453, .external_lex_state = 112}, + [6030] = {.lex_state = 452, .external_lex_state = 112}, [6031] = {.lex_state = 452, .external_lex_state = 112}, - [6032] = {.lex_state = 453, .external_lex_state = 112}, - [6033] = {.lex_state = 453, .external_lex_state = 112}, + [6032] = {.lex_state = 452, .external_lex_state = 112}, + [6033] = {.lex_state = 452, .external_lex_state = 112}, [6034] = {.lex_state = 452, .external_lex_state = 112}, [6035] = {.lex_state = 452, .external_lex_state = 112}, [6036] = {.lex_state = 452, .external_lex_state = 112}, - [6037] = {.lex_state = 453, .external_lex_state = 112}, + [6037] = {.lex_state = 452, .external_lex_state = 112}, [6038] = {.lex_state = 452, .external_lex_state = 112}, - [6039] = {.lex_state = 453, .external_lex_state = 112}, + [6039] = {.lex_state = 452, .external_lex_state = 112}, [6040] = {.lex_state = 452, .external_lex_state = 112}, [6041] = {.lex_state = 452, .external_lex_state = 112}, - [6042] = {.lex_state = 452, .external_lex_state = 112}, + [6042] = {.lex_state = 453, .external_lex_state = 112}, [6043] = {.lex_state = 452, .external_lex_state = 112}, [6044] = {.lex_state = 452, .external_lex_state = 112}, [6045] = {.lex_state = 453, .external_lex_state = 112}, [6046] = {.lex_state = 452, .external_lex_state = 112}, [6047] = {.lex_state = 452, .external_lex_state = 112}, - [6048] = {.lex_state = 452, .external_lex_state = 112}, - [6049] = {.lex_state = 452, .external_lex_state = 112}, + [6048] = {.lex_state = 453, .external_lex_state = 112}, + [6049] = {.lex_state = 453, .external_lex_state = 112}, [6050] = {.lex_state = 452, .external_lex_state = 112}, - [6051] = {.lex_state = 453, .external_lex_state = 112}, + [6051] = {.lex_state = 452, .external_lex_state = 112}, [6052] = {.lex_state = 452, .external_lex_state = 112}, [6053] = {.lex_state = 453, .external_lex_state = 112}, [6054] = {.lex_state = 452, .external_lex_state = 112}, [6055] = {.lex_state = 452, .external_lex_state = 112}, [6056] = {.lex_state = 453, .external_lex_state = 112}, - [6057] = {.lex_state = 452, .external_lex_state = 112}, + [6057] = {.lex_state = 453, .external_lex_state = 112}, [6058] = {.lex_state = 452, .external_lex_state = 112}, - [6059] = {.lex_state = 453, .external_lex_state = 112}, - [6060] = {.lex_state = 452, .external_lex_state = 112}, - [6061] = {.lex_state = 453, .external_lex_state = 112}, + [6059] = {.lex_state = 452, .external_lex_state = 112}, + [6060] = {.lex_state = 453, .external_lex_state = 112}, + [6061] = {.lex_state = 452, .external_lex_state = 112}, [6062] = {.lex_state = 452, .external_lex_state = 112}, - [6063] = {.lex_state = 452, .external_lex_state = 112}, + [6063] = {.lex_state = 453, .external_lex_state = 112}, [6064] = {.lex_state = 452, .external_lex_state = 112}, - [6065] = {.lex_state = 453, .external_lex_state = 112}, - [6066] = {.lex_state = 453, .external_lex_state = 112}, + [6065] = {.lex_state = 452, .external_lex_state = 112}, + [6066] = {.lex_state = 452, .external_lex_state = 112}, [6067] = {.lex_state = 453, .external_lex_state = 112}, - [6068] = {.lex_state = 452, .external_lex_state = 112}, + [6068] = {.lex_state = 453, .external_lex_state = 112}, [6069] = {.lex_state = 452, .external_lex_state = 112}, [6070] = {.lex_state = 452, .external_lex_state = 112}, [6071] = {.lex_state = 453, .external_lex_state = 112}, [6072] = {.lex_state = 452, .external_lex_state = 112}, [6073] = {.lex_state = 452, .external_lex_state = 112}, - [6074] = {.lex_state = 452, .external_lex_state = 112}, + [6074] = {.lex_state = 453, .external_lex_state = 112}, [6075] = {.lex_state = 452, .external_lex_state = 112}, - [6076] = {.lex_state = 453, .external_lex_state = 112}, - [6077] = {.lex_state = 452, .external_lex_state = 112}, + [6076] = {.lex_state = 452, .external_lex_state = 112}, + [6077] = {.lex_state = 453, .external_lex_state = 112}, [6078] = {.lex_state = 452, .external_lex_state = 112}, [6079] = {.lex_state = 452, .external_lex_state = 112}, [6080] = {.lex_state = 452, .external_lex_state = 112}, [6081] = {.lex_state = 452, .external_lex_state = 112}, - [6082] = {.lex_state = 452, .external_lex_state = 112}, - [6083] = {.lex_state = 453, .external_lex_state = 112}, + [6082] = {.lex_state = 453, .external_lex_state = 112}, + [6083] = {.lex_state = 452, .external_lex_state = 112}, [6084] = {.lex_state = 452, .external_lex_state = 112}, [6085] = {.lex_state = 452, .external_lex_state = 112}, - [6086] = {.lex_state = 452, .external_lex_state = 112}, + [6086] = {.lex_state = 453, .external_lex_state = 112}, [6087] = {.lex_state = 452, .external_lex_state = 112}, - [6088] = {.lex_state = 454, .external_lex_state = 113}, - [6089] = {.lex_state = 87, .external_lex_state = 106}, - [6090] = {.lex_state = 454, .external_lex_state = 113}, - [6091] = {.lex_state = 454, .external_lex_state = 113}, - [6092] = {.lex_state = 454, .external_lex_state = 113}, - [6093] = {.lex_state = 454, .external_lex_state = 113}, - [6094] = {.lex_state = 454, .external_lex_state = 113}, - [6095] = {.lex_state = 454, .external_lex_state = 113}, - [6096] = {.lex_state = 87, .external_lex_state = 106}, - [6097] = {.lex_state = 454, .external_lex_state = 113}, - [6098] = {.lex_state = 455, .external_lex_state = 112}, - [6099] = {.lex_state = 477, .external_lex_state = 113}, - [6100] = {.lex_state = 456, .external_lex_state = 112}, - [6101] = {.lex_state = 477, .external_lex_state = 113}, - [6102] = {.lex_state = 456, .external_lex_state = 112}, - [6103] = {.lex_state = 456, .external_lex_state = 112}, - [6104] = {.lex_state = 477, .external_lex_state = 113}, - [6105] = {.lex_state = 477, .external_lex_state = 113}, - [6106] = {.lex_state = 477, .external_lex_state = 113}, - [6107] = {.lex_state = 456, .external_lex_state = 112}, - [6108] = {.lex_state = 456, .external_lex_state = 112}, - [6109] = {.lex_state = 456, .external_lex_state = 112}, - [6110] = {.lex_state = 477, .external_lex_state = 113}, - [6111] = {.lex_state = 456, .external_lex_state = 112}, - [6112] = {.lex_state = 477, .external_lex_state = 113}, - [6113] = {.lex_state = 477, .external_lex_state = 113}, - [6114] = {.lex_state = 477, .external_lex_state = 113}, - [6115] = {.lex_state = 456, .external_lex_state = 112}, - [6116] = {.lex_state = 456, .external_lex_state = 112}, - [6117] = {.lex_state = 435, .external_lex_state = 114}, - [6118] = {.lex_state = 488}, - [6119] = {.lex_state = 488}, - [6120] = {.lex_state = 488}, - [6121] = {.lex_state = 488}, - [6122] = {.lex_state = 435, .external_lex_state = 114}, - [6123] = {.lex_state = 483, .external_lex_state = 115}, - [6124] = {.lex_state = 488}, - [6125] = {.lex_state = 488}, - [6126] = {.lex_state = 483, .external_lex_state = 115}, - [6127] = {.lex_state = 488}, - [6128] = {.lex_state = 488}, - [6129] = {.lex_state = 488}, - [6130] = {.lex_state = 488}, - [6131] = {.lex_state = 488}, - [6132] = {.lex_state = 488}, - [6133] = {.lex_state = 488}, - [6134] = {.lex_state = 488}, - [6135] = {.lex_state = 488}, - [6136] = {.lex_state = 488}, - [6137] = {.lex_state = 488}, - [6138] = {.lex_state = 488}, - [6139] = {.lex_state = 483, .external_lex_state = 115}, - [6140] = {.lex_state = 488}, - [6141] = {.lex_state = 488}, - [6142] = {.lex_state = 488}, - [6143] = {.lex_state = 488}, - [6144] = {.lex_state = 488}, - [6145] = {.lex_state = 488}, - [6146] = {.lex_state = 435, .external_lex_state = 114}, - [6147] = {.lex_state = 478, .external_lex_state = 116}, - [6148] = {.lex_state = 488}, - [6149] = {.lex_state = 483, .external_lex_state = 115}, - [6150] = {.lex_state = 488}, - [6151] = {.lex_state = 488}, - [6152] = {.lex_state = 483, .external_lex_state = 115}, - [6153] = {.lex_state = 483, .external_lex_state = 115}, - [6154] = {.lex_state = 483, .external_lex_state = 115}, - [6155] = {.lex_state = 483, .external_lex_state = 115}, - [6156] = {.lex_state = 483, .external_lex_state = 115}, - [6157] = {.lex_state = 483, .external_lex_state = 115}, - [6158] = {.lex_state = 483, .external_lex_state = 115}, - [6159] = {.lex_state = 488, .external_lex_state = 99}, - [6160] = {.lex_state = 488, .external_lex_state = 99}, - [6161] = {.lex_state = 488, .external_lex_state = 99}, - [6162] = {.lex_state = 483}, - [6163] = {.lex_state = 488, .external_lex_state = 99}, - [6164] = {.lex_state = 488, .external_lex_state = 99}, - [6165] = {.lex_state = 488, .external_lex_state = 99}, - [6166] = {.lex_state = 488, .external_lex_state = 99}, - [6167] = {.lex_state = 488, .external_lex_state = 99}, - [6168] = {.lex_state = 488, .external_lex_state = 99}, - [6169] = {.lex_state = 488, .external_lex_state = 99}, - [6170] = {.lex_state = 488, .external_lex_state = 99}, - [6171] = {.lex_state = 488, .external_lex_state = 99}, - [6172] = {.lex_state = 488, .external_lex_state = 99}, - [6173] = {.lex_state = 488, .external_lex_state = 99}, - [6174] = {.lex_state = 488, .external_lex_state = 99}, - [6175] = {.lex_state = 488, .external_lex_state = 99}, - [6176] = {.lex_state = 483}, - [6177] = {.lex_state = 488, .external_lex_state = 99}, - [6178] = {.lex_state = 488, .external_lex_state = 99}, - [6179] = {.lex_state = 488, .external_lex_state = 99}, - [6180] = {.lex_state = 489}, - [6181] = {.lex_state = 488, .external_lex_state = 99}, - [6182] = {.lex_state = 478}, - [6183] = {.lex_state = 488, .external_lex_state = 99}, - [6184] = {.lex_state = 488, .external_lex_state = 99}, - [6185] = {.lex_state = 488, .external_lex_state = 99}, - [6186] = {.lex_state = 488, .external_lex_state = 99}, - [6187] = {.lex_state = 91, .external_lex_state = 117}, - [6188] = {.lex_state = 479, .external_lex_state = 118}, - [6189] = {.lex_state = 480, .external_lex_state = 119}, - [6190] = {.lex_state = 91, .external_lex_state = 117}, - [6191] = {.lex_state = 91, .external_lex_state = 117}, - [6192] = {.lex_state = 91, .external_lex_state = 117}, - [6193] = {.lex_state = 91, .external_lex_state = 117}, - [6194] = {.lex_state = 486}, - [6195] = {.lex_state = 91, .external_lex_state = 117}, - [6196] = {.lex_state = 486}, - [6197] = {.lex_state = 480, .external_lex_state = 119}, - [6198] = {.lex_state = 91, .external_lex_state = 117}, - [6199] = {.lex_state = 91, .external_lex_state = 117}, - [6200] = {.lex_state = 91, .external_lex_state = 117}, - [6201] = {.lex_state = 91, .external_lex_state = 117}, - [6202] = {.lex_state = 91, .external_lex_state = 117}, - [6203] = {.lex_state = 480, .external_lex_state = 119}, - [6204] = {.lex_state = 91, .external_lex_state = 117}, - [6205] = {.lex_state = 91, .external_lex_state = 117}, - [6206] = {.lex_state = 479, .external_lex_state = 116}, - [6207] = {.lex_state = 91, .external_lex_state = 117}, - [6208] = {.lex_state = 91, .external_lex_state = 120}, - [6209] = {.lex_state = 479, .external_lex_state = 116}, - [6210] = {.lex_state = 479, .external_lex_state = 116}, - [6211] = {.lex_state = 479, .external_lex_state = 116}, - [6212] = {.lex_state = 91, .external_lex_state = 117}, - [6213] = {.lex_state = 91, .external_lex_state = 120}, - [6214] = {.lex_state = 479, .external_lex_state = 116}, - [6215] = {.lex_state = 479, .external_lex_state = 116}, - [6216] = {.lex_state = 435, .external_lex_state = 114}, - [6217] = {.lex_state = 91, .external_lex_state = 117}, - [6218] = {.lex_state = 479, .external_lex_state = 116}, - [6219] = {.lex_state = 91, .external_lex_state = 117}, - [6220] = {.lex_state = 91, .external_lex_state = 120}, - [6221] = {.lex_state = 91, .external_lex_state = 117}, - [6222] = {.lex_state = 479, .external_lex_state = 116}, - [6223] = {.lex_state = 91, .external_lex_state = 117}, - [6224] = {.lex_state = 91, .external_lex_state = 117}, - [6225] = {.lex_state = 435, .external_lex_state = 114}, - [6226] = {.lex_state = 91, .external_lex_state = 120}, - [6227] = {.lex_state = 91, .external_lex_state = 117}, - [6228] = {.lex_state = 91, .external_lex_state = 117}, - [6229] = {.lex_state = 91, .external_lex_state = 117}, - [6230] = {.lex_state = 435, .external_lex_state = 114}, - [6231] = {.lex_state = 91, .external_lex_state = 117}, - [6232] = {.lex_state = 91, .external_lex_state = 117}, - [6233] = {.lex_state = 91, .external_lex_state = 117}, - [6234] = {.lex_state = 479, .external_lex_state = 116}, - [6235] = {.lex_state = 91, .external_lex_state = 117}, - [6236] = {.lex_state = 91, .external_lex_state = 117}, - [6237] = {.lex_state = 91, .external_lex_state = 117}, - [6238] = {.lex_state = 435, .external_lex_state = 114}, - [6239] = {.lex_state = 479, .external_lex_state = 116}, - [6240] = {.lex_state = 435, .external_lex_state = 114}, - [6241] = {.lex_state = 91, .external_lex_state = 120}, - [6242] = {.lex_state = 435, .external_lex_state = 114}, - [6243] = {.lex_state = 435, .external_lex_state = 114}, - [6244] = {.lex_state = 91, .external_lex_state = 117}, - [6245] = {.lex_state = 479, .external_lex_state = 116}, - [6246] = {.lex_state = 91, .external_lex_state = 117}, - [6247] = {.lex_state = 479, .external_lex_state = 116}, - [6248] = {.lex_state = 491, .external_lex_state = 121}, - [6249] = {.lex_state = 435}, - [6250] = {.lex_state = 435}, - [6251] = {.lex_state = 480, .external_lex_state = 119}, - [6252] = {.lex_state = 435}, - [6253] = {.lex_state = 435}, - [6254] = {.lex_state = 435}, - [6255] = {.lex_state = 86, .external_lex_state = 120}, - [6256] = {.lex_state = 435}, - [6257] = {.lex_state = 435}, - [6258] = {.lex_state = 480, .external_lex_state = 119}, - [6259] = {.lex_state = 435}, - [6260] = {.lex_state = 435}, - [6261] = {.lex_state = 479, .external_lex_state = 116}, - [6262] = {.lex_state = 435}, - [6263] = {.lex_state = 435}, - [6264] = {.lex_state = 491, .external_lex_state = 121}, - [6265] = {.lex_state = 435}, - [6266] = {.lex_state = 489}, - [6267] = {.lex_state = 435}, - [6268] = {.lex_state = 435}, - [6269] = {.lex_state = 435}, - [6270] = {.lex_state = 435}, - [6271] = {.lex_state = 435}, - [6272] = {.lex_state = 86, .external_lex_state = 120}, - [6273] = {.lex_state = 479, .external_lex_state = 116}, - [6274] = {.lex_state = 435}, - [6275] = {.lex_state = 435}, - [6276] = {.lex_state = 462, .external_lex_state = 115}, - [6277] = {.lex_state = 435}, - [6278] = {.lex_state = 491, .external_lex_state = 121}, - [6279] = {.lex_state = 435}, - [6280] = {.lex_state = 86, .external_lex_state = 120}, - [6281] = {.lex_state = 479, .external_lex_state = 116}, - [6282] = {.lex_state = 435}, - [6283] = {.lex_state = 435}, - [6284] = {.lex_state = 91, .external_lex_state = 120}, - [6285] = {.lex_state = 435}, - [6286] = {.lex_state = 435}, - [6287] = {.lex_state = 479, .external_lex_state = 116}, - [6288] = {.lex_state = 462, .external_lex_state = 115}, - [6289] = {.lex_state = 435}, - [6290] = {.lex_state = 479, .external_lex_state = 116}, - [6291] = {.lex_state = 489}, - [6292] = {.lex_state = 435}, - [6293] = {.lex_state = 435}, - [6294] = {.lex_state = 479, .external_lex_state = 116}, - [6295] = {.lex_state = 480, .external_lex_state = 119}, - [6296] = {.lex_state = 435}, - [6297] = {.lex_state = 435}, - [6298] = {.lex_state = 489}, - [6299] = {.lex_state = 435}, - [6300] = {.lex_state = 479, .external_lex_state = 116}, - [6301] = {.lex_state = 435}, - [6302] = {.lex_state = 435}, - [6303] = {.lex_state = 479, .external_lex_state = 116}, - [6304] = {.lex_state = 435}, - [6305] = {.lex_state = 435}, - [6306] = {.lex_state = 435}, - [6307] = {.lex_state = 435}, - [6308] = {.lex_state = 435}, - [6309] = {.lex_state = 479, .external_lex_state = 116}, - [6310] = {.lex_state = 435}, - [6311] = {.lex_state = 435}, - [6312] = {.lex_state = 462, .external_lex_state = 115}, + [6088] = {.lex_state = 452, .external_lex_state = 112}, + [6089] = {.lex_state = 453, .external_lex_state = 112}, + [6090] = {.lex_state = 452, .external_lex_state = 112}, + [6091] = {.lex_state = 452, .external_lex_state = 112}, + [6092] = {.lex_state = 453, .external_lex_state = 112}, + [6093] = {.lex_state = 452, .external_lex_state = 112}, + [6094] = {.lex_state = 452, .external_lex_state = 112}, + [6095] = {.lex_state = 453, .external_lex_state = 112}, + [6096] = {.lex_state = 452, .external_lex_state = 112}, + [6097] = {.lex_state = 452, .external_lex_state = 112}, + [6098] = {.lex_state = 453, .external_lex_state = 112}, + [6099] = {.lex_state = 452, .external_lex_state = 112}, + [6100] = {.lex_state = 452, .external_lex_state = 112}, + [6101] = {.lex_state = 453, .external_lex_state = 112}, + [6102] = {.lex_state = 452, .external_lex_state = 112}, + [6103] = {.lex_state = 452, .external_lex_state = 112}, + [6104] = {.lex_state = 453, .external_lex_state = 112}, + [6105] = {.lex_state = 453, .external_lex_state = 112}, + [6106] = {.lex_state = 452, .external_lex_state = 112}, + [6107] = {.lex_state = 452, .external_lex_state = 112}, + [6108] = {.lex_state = 453, .external_lex_state = 112}, + [6109] = {.lex_state = 452, .external_lex_state = 112}, + [6110] = {.lex_state = 453, .external_lex_state = 112}, + [6111] = {.lex_state = 452, .external_lex_state = 112}, + [6112] = {.lex_state = 453, .external_lex_state = 112}, + [6113] = {.lex_state = 452, .external_lex_state = 112}, + [6114] = {.lex_state = 452, .external_lex_state = 112}, + [6115] = {.lex_state = 453, .external_lex_state = 112}, + [6116] = {.lex_state = 452, .external_lex_state = 112}, + [6117] = {.lex_state = 452, .external_lex_state = 112}, + [6118] = {.lex_state = 453, .external_lex_state = 112}, + [6119] = {.lex_state = 452, .external_lex_state = 112}, + [6120] = {.lex_state = 452, .external_lex_state = 112}, + [6121] = {.lex_state = 453, .external_lex_state = 112}, + [6122] = {.lex_state = 452, .external_lex_state = 112}, + [6123] = {.lex_state = 452, .external_lex_state = 112}, + [6124] = {.lex_state = 452, .external_lex_state = 112}, + [6125] = {.lex_state = 453, .external_lex_state = 112}, + [6126] = {.lex_state = 452, .external_lex_state = 112}, + [6127] = {.lex_state = 452, .external_lex_state = 112}, + [6128] = {.lex_state = 453, .external_lex_state = 112}, + [6129] = {.lex_state = 452, .external_lex_state = 112}, + [6130] = {.lex_state = 452, .external_lex_state = 112}, + [6131] = {.lex_state = 452, .external_lex_state = 112}, + [6132] = {.lex_state = 453, .external_lex_state = 112}, + [6133] = {.lex_state = 452, .external_lex_state = 112}, + [6134] = {.lex_state = 452, .external_lex_state = 112}, + [6135] = {.lex_state = 453, .external_lex_state = 112}, + [6136] = {.lex_state = 452, .external_lex_state = 112}, + [6137] = {.lex_state = 452, .external_lex_state = 112}, + [6138] = {.lex_state = 453, .external_lex_state = 112}, + [6139] = {.lex_state = 452, .external_lex_state = 112}, + [6140] = {.lex_state = 452, .external_lex_state = 112}, + [6141] = {.lex_state = 453, .external_lex_state = 112}, + [6142] = {.lex_state = 452, .external_lex_state = 112}, + [6143] = {.lex_state = 452, .external_lex_state = 112}, + [6144] = {.lex_state = 452, .external_lex_state = 112}, + [6145] = {.lex_state = 453, .external_lex_state = 112}, + [6146] = {.lex_state = 452, .external_lex_state = 112}, + [6147] = {.lex_state = 452, .external_lex_state = 112}, + [6148] = {.lex_state = 453, .external_lex_state = 112}, + [6149] = {.lex_state = 452, .external_lex_state = 112}, + [6150] = {.lex_state = 454, .external_lex_state = 113}, + [6151] = {.lex_state = 454, .external_lex_state = 113}, + [6152] = {.lex_state = 454, .external_lex_state = 113}, + [6153] = {.lex_state = 454, .external_lex_state = 113}, + [6154] = {.lex_state = 89, .external_lex_state = 107}, + [6155] = {.lex_state = 89, .external_lex_state = 107}, + [6156] = {.lex_state = 454, .external_lex_state = 113}, + [6157] = {.lex_state = 454, .external_lex_state = 113}, + [6158] = {.lex_state = 454, .external_lex_state = 113}, + [6159] = {.lex_state = 455, .external_lex_state = 112}, + [6160] = {.lex_state = 454, .external_lex_state = 113}, + [6161] = {.lex_state = 477, .external_lex_state = 113}, + [6162] = {.lex_state = 477, .external_lex_state = 113}, + [6163] = {.lex_state = 477, .external_lex_state = 113}, + [6164] = {.lex_state = 456, .external_lex_state = 112}, + [6165] = {.lex_state = 477, .external_lex_state = 113}, + [6166] = {.lex_state = 456, .external_lex_state = 112}, + [6167] = {.lex_state = 456, .external_lex_state = 112}, + [6168] = {.lex_state = 456, .external_lex_state = 112}, + [6169] = {.lex_state = 456, .external_lex_state = 112}, + [6170] = {.lex_state = 456, .external_lex_state = 112}, + [6171] = {.lex_state = 477, .external_lex_state = 113}, + [6172] = {.lex_state = 477, .external_lex_state = 113}, + [6173] = {.lex_state = 477, .external_lex_state = 113}, + [6174] = {.lex_state = 456, .external_lex_state = 112}, + [6175] = {.lex_state = 477, .external_lex_state = 113}, + [6176] = {.lex_state = 456, .external_lex_state = 112}, + [6177] = {.lex_state = 477, .external_lex_state = 113}, + [6178] = {.lex_state = 456, .external_lex_state = 112}, + [6179] = {.lex_state = 478, .external_lex_state = 114}, + [6180] = {.lex_state = 488}, + [6181] = {.lex_state = 488}, + [6182] = {.lex_state = 488}, + [6183] = {.lex_state = 488}, + [6184] = {.lex_state = 435, .external_lex_state = 115}, + [6185] = {.lex_state = 488}, + [6186] = {.lex_state = 488}, + [6187] = {.lex_state = 435, .external_lex_state = 115}, + [6188] = {.lex_state = 483, .external_lex_state = 116}, + [6189] = {.lex_state = 483, .external_lex_state = 116}, + [6190] = {.lex_state = 488}, + [6191] = {.lex_state = 488}, + [6192] = {.lex_state = 488}, + [6193] = {.lex_state = 488}, + [6194] = {.lex_state = 488}, + [6195] = {.lex_state = 483, .external_lex_state = 116}, + [6196] = {.lex_state = 488}, + [6197] = {.lex_state = 488}, + [6198] = {.lex_state = 483, .external_lex_state = 116}, + [6199] = {.lex_state = 488}, + [6200] = {.lex_state = 488}, + [6201] = {.lex_state = 488}, + [6202] = {.lex_state = 483, .external_lex_state = 116}, + [6203] = {.lex_state = 483, .external_lex_state = 116}, + [6204] = {.lex_state = 488}, + [6205] = {.lex_state = 488}, + [6206] = {.lex_state = 483, .external_lex_state = 116}, + [6207] = {.lex_state = 483, .external_lex_state = 116}, + [6208] = {.lex_state = 488}, + [6209] = {.lex_state = 488}, + [6210] = {.lex_state = 435, .external_lex_state = 115}, + [6211] = {.lex_state = 488}, + [6212] = {.lex_state = 488}, + [6213] = {.lex_state = 483, .external_lex_state = 116}, + [6214] = {.lex_state = 488}, + [6215] = {.lex_state = 483, .external_lex_state = 116}, + [6216] = {.lex_state = 488}, + [6217] = {.lex_state = 488}, + [6218] = {.lex_state = 488}, + [6219] = {.lex_state = 483, .external_lex_state = 116}, + [6220] = {.lex_state = 488}, + [6221] = {.lex_state = 488, .external_lex_state = 99}, + [6222] = {.lex_state = 488, .external_lex_state = 99}, + [6223] = {.lex_state = 478}, + [6224] = {.lex_state = 488, .external_lex_state = 99}, + [6225] = {.lex_state = 488, .external_lex_state = 99}, + [6226] = {.lex_state = 488, .external_lex_state = 99}, + [6227] = {.lex_state = 488, .external_lex_state = 99}, + [6228] = {.lex_state = 488, .external_lex_state = 99}, + [6229] = {.lex_state = 488, .external_lex_state = 99}, + [6230] = {.lex_state = 488, .external_lex_state = 99}, + [6231] = {.lex_state = 488, .external_lex_state = 99}, + [6232] = {.lex_state = 488, .external_lex_state = 99}, + [6233] = {.lex_state = 488, .external_lex_state = 99}, + [6234] = {.lex_state = 488, .external_lex_state = 99}, + [6235] = {.lex_state = 488, .external_lex_state = 99}, + [6236] = {.lex_state = 488, .external_lex_state = 99}, + [6237] = {.lex_state = 488, .external_lex_state = 99}, + [6238] = {.lex_state = 488, .external_lex_state = 99}, + [6239] = {.lex_state = 488, .external_lex_state = 99}, + [6240] = {.lex_state = 483}, + [6241] = {.lex_state = 488, .external_lex_state = 99}, + [6242] = {.lex_state = 483}, + [6243] = {.lex_state = 488, .external_lex_state = 99}, + [6244] = {.lex_state = 488, .external_lex_state = 99}, + [6245] = {.lex_state = 488, .external_lex_state = 99}, + [6246] = {.lex_state = 488, .external_lex_state = 99}, + [6247] = {.lex_state = 488, .external_lex_state = 99}, + [6248] = {.lex_state = 478}, + [6249] = {.lex_state = 480, .external_lex_state = 117}, + [6250] = {.lex_state = 479, .external_lex_state = 118}, + [6251] = {.lex_state = 480, .external_lex_state = 117}, + [6252] = {.lex_state = 480, .external_lex_state = 117}, + [6253] = {.lex_state = 93, .external_lex_state = 119}, + [6254] = {.lex_state = 486}, + [6255] = {.lex_state = 93, .external_lex_state = 119}, + [6256] = {.lex_state = 93, .external_lex_state = 119}, + [6257] = {.lex_state = 93, .external_lex_state = 119}, + [6258] = {.lex_state = 93, .external_lex_state = 119}, + [6259] = {.lex_state = 93, .external_lex_state = 119}, + [6260] = {.lex_state = 93, .external_lex_state = 119}, + [6261] = {.lex_state = 93, .external_lex_state = 119}, + [6262] = {.lex_state = 486}, + [6263] = {.lex_state = 93, .external_lex_state = 119}, + [6264] = {.lex_state = 93, .external_lex_state = 119}, + [6265] = {.lex_state = 93, .external_lex_state = 119}, + [6266] = {.lex_state = 93, .external_lex_state = 119}, + [6267] = {.lex_state = 93, .external_lex_state = 119}, + [6268] = {.lex_state = 93, .external_lex_state = 120}, + [6269] = {.lex_state = 479, .external_lex_state = 114}, + [6270] = {.lex_state = 479, .external_lex_state = 114}, + [6271] = {.lex_state = 479, .external_lex_state = 114}, + [6272] = {.lex_state = 479, .external_lex_state = 114}, + [6273] = {.lex_state = 93, .external_lex_state = 119}, + [6274] = {.lex_state = 93, .external_lex_state = 119}, + [6275] = {.lex_state = 93, .external_lex_state = 119}, + [6276] = {.lex_state = 93, .external_lex_state = 119}, + [6277] = {.lex_state = 479, .external_lex_state = 114}, + [6278] = {.lex_state = 479, .external_lex_state = 114}, + [6279] = {.lex_state = 93, .external_lex_state = 119}, + [6280] = {.lex_state = 93, .external_lex_state = 119}, + [6281] = {.lex_state = 93, .external_lex_state = 119}, + [6282] = {.lex_state = 93, .external_lex_state = 119}, + [6283] = {.lex_state = 93, .external_lex_state = 119}, + [6284] = {.lex_state = 93, .external_lex_state = 119}, + [6285] = {.lex_state = 93, .external_lex_state = 119}, + [6286] = {.lex_state = 479, .external_lex_state = 114}, + [6287] = {.lex_state = 93, .external_lex_state = 119}, + [6288] = {.lex_state = 479, .external_lex_state = 114}, + [6289] = {.lex_state = 479, .external_lex_state = 114}, + [6290] = {.lex_state = 479, .external_lex_state = 114}, + [6291] = {.lex_state = 435, .external_lex_state = 115}, + [6292] = {.lex_state = 435, .external_lex_state = 115}, + [6293] = {.lex_state = 93, .external_lex_state = 119}, + [6294] = {.lex_state = 93, .external_lex_state = 120}, + [6295] = {.lex_state = 93, .external_lex_state = 119}, + [6296] = {.lex_state = 479, .external_lex_state = 114}, + [6297] = {.lex_state = 435, .external_lex_state = 115}, + [6298] = {.lex_state = 435, .external_lex_state = 115}, + [6299] = {.lex_state = 479, .external_lex_state = 114}, + [6300] = {.lex_state = 93, .external_lex_state = 120}, + [6301] = {.lex_state = 93, .external_lex_state = 120}, + [6302] = {.lex_state = 93, .external_lex_state = 119}, + [6303] = {.lex_state = 93, .external_lex_state = 119}, + [6304] = {.lex_state = 435, .external_lex_state = 115}, + [6305] = {.lex_state = 435, .external_lex_state = 115}, + [6306] = {.lex_state = 435, .external_lex_state = 115}, + [6307] = {.lex_state = 93, .external_lex_state = 119}, + [6308] = {.lex_state = 93, .external_lex_state = 119}, + [6309] = {.lex_state = 93, .external_lex_state = 120}, + [6310] = {.lex_state = 93, .external_lex_state = 119}, + [6311] = {.lex_state = 462, .external_lex_state = 116}, + [6312] = {.lex_state = 435}, [6313] = {.lex_state = 435}, [6314] = {.lex_state = 435}, [6315] = {.lex_state = 435}, - [6316] = {.lex_state = 435}, + [6316] = {.lex_state = 491, .external_lex_state = 121}, [6317] = {.lex_state = 435}, - [6318] = {.lex_state = 462, .external_lex_state = 115}, - [6319] = {.lex_state = 86, .external_lex_state = 120}, + [6318] = {.lex_state = 435}, + [6319] = {.lex_state = 479, .external_lex_state = 114}, [6320] = {.lex_state = 435}, [6321] = {.lex_state = 435}, - [6322] = {.lex_state = 479, .external_lex_state = 116}, + [6322] = {.lex_state = 435}, [6323] = {.lex_state = 435}, - [6324] = {.lex_state = 462, .external_lex_state = 115}, + [6324] = {.lex_state = 479, .external_lex_state = 114}, [6325] = {.lex_state = 435}, - [6326] = {.lex_state = 462, .external_lex_state = 115}, - [6327] = {.lex_state = 489}, + [6326] = {.lex_state = 435}, + [6327] = {.lex_state = 480, .external_lex_state = 117}, [6328] = {.lex_state = 435}, [6329] = {.lex_state = 435}, [6330] = {.lex_state = 435}, - [6331] = {.lex_state = 435}, - [6332] = {.lex_state = 462, .external_lex_state = 115}, + [6331] = {.lex_state = 462, .external_lex_state = 116}, + [6332] = {.lex_state = 435}, [6333] = {.lex_state = 435}, - [6334] = {.lex_state = 86, .external_lex_state = 120}, + [6334] = {.lex_state = 478}, [6335] = {.lex_state = 435}, - [6336] = {.lex_state = 435}, - [6337] = {.lex_state = 462, .external_lex_state = 115}, - [6338] = {.lex_state = 479, .external_lex_state = 116}, + [6336] = {.lex_state = 88, .external_lex_state = 120}, + [6337] = {.lex_state = 88, .external_lex_state = 120}, + [6338] = {.lex_state = 435}, [6339] = {.lex_state = 435}, [6340] = {.lex_state = 435}, [6341] = {.lex_state = 435}, [6342] = {.lex_state = 435}, [6343] = {.lex_state = 435}, [6344] = {.lex_state = 435}, - [6345] = {.lex_state = 489}, - [6346] = {.lex_state = 489}, - [6347] = {.lex_state = 479, .external_lex_state = 116}, - [6348] = {.lex_state = 86, .external_lex_state = 120}, - [6349] = {.lex_state = 86, .external_lex_state = 120}, + [6345] = {.lex_state = 478}, + [6346] = {.lex_state = 435}, + [6347] = {.lex_state = 435}, + [6348] = {.lex_state = 435}, + [6349] = {.lex_state = 435}, [6350] = {.lex_state = 435}, - [6351] = {.lex_state = 435}, - [6352] = {.lex_state = 479, .external_lex_state = 116}, + [6351] = {.lex_state = 462, .external_lex_state = 116}, + [6352] = {.lex_state = 480, .external_lex_state = 117}, [6353] = {.lex_state = 435}, - [6354] = {.lex_state = 479, .external_lex_state = 116}, + [6354] = {.lex_state = 491, .external_lex_state = 121}, [6355] = {.lex_state = 435}, - [6356] = {.lex_state = 435}, - [6357] = {.lex_state = 489}, - [6358] = {.lex_state = 489}, - [6359] = {.lex_state = 86, .external_lex_state = 120}, - [6360] = {.lex_state = 479, .external_lex_state = 116}, - [6361] = {.lex_state = 480, .external_lex_state = 119}, + [6356] = {.lex_state = 479, .external_lex_state = 114}, + [6357] = {.lex_state = 479, .external_lex_state = 114}, + [6358] = {.lex_state = 435}, + [6359] = {.lex_state = 479, .external_lex_state = 114}, + [6360] = {.lex_state = 479, .external_lex_state = 114}, + [6361] = {.lex_state = 435}, [6362] = {.lex_state = 435}, - [6363] = {.lex_state = 435}, + [6363] = {.lex_state = 88, .external_lex_state = 120}, [6364] = {.lex_state = 435}, - [6365] = {.lex_state = 479, .external_lex_state = 116}, - [6366] = {.lex_state = 462, .external_lex_state = 115}, - [6367] = {.lex_state = 435}, - [6368] = {.lex_state = 549, .external_lex_state = 122}, - [6369] = {.lex_state = 91, .external_lex_state = 120}, - [6370] = {.lex_state = 461}, - [6371] = {.lex_state = 442, .external_lex_state = 123}, - [6372] = {.lex_state = 549, .external_lex_state = 122}, - [6373] = {.lex_state = 462, .external_lex_state = 115}, - [6374] = {.lex_state = 442, .external_lex_state = 124}, - [6375] = {.lex_state = 549, .external_lex_state = 122}, - [6376] = {.lex_state = 549, .external_lex_state = 122}, - [6377] = {.lex_state = 549, .external_lex_state = 122}, - [6378] = {.lex_state = 549, .external_lex_state = 122}, - [6379] = {.lex_state = 549, .external_lex_state = 122}, - [6380] = {.lex_state = 462, .external_lex_state = 115}, - [6381] = {.lex_state = 442, .external_lex_state = 123}, - [6382] = {.lex_state = 549, .external_lex_state = 122}, - [6383] = {.lex_state = 91, .external_lex_state = 120}, - [6384] = {.lex_state = 549, .external_lex_state = 122}, - [6385] = {.lex_state = 549, .external_lex_state = 122}, - [6386] = {.lex_state = 442, .external_lex_state = 124}, - [6387] = {.lex_state = 549, .external_lex_state = 122}, - [6388] = {.lex_state = 462, .external_lex_state = 115}, - [6389] = {.lex_state = 549, .external_lex_state = 122}, - [6390] = {.lex_state = 91, .external_lex_state = 120}, - [6391] = {.lex_state = 461}, - [6392] = {.lex_state = 549, .external_lex_state = 122}, - [6393] = {.lex_state = 86, .external_lex_state = 120}, - [6394] = {.lex_state = 549, .external_lex_state = 122}, - [6395] = {.lex_state = 549, .external_lex_state = 122}, - [6396] = {.lex_state = 491, .external_lex_state = 125}, - [6397] = {.lex_state = 91, .external_lex_state = 120}, - [6398] = {.lex_state = 491, .external_lex_state = 125}, - [6399] = {.lex_state = 491, .external_lex_state = 121}, - [6400] = {.lex_state = 442, .external_lex_state = 124}, - [6401] = {.lex_state = 442, .external_lex_state = 124}, - [6402] = {.lex_state = 549, .external_lex_state = 122}, - [6403] = {.lex_state = 549, .external_lex_state = 122}, - [6404] = {.lex_state = 549, .external_lex_state = 122}, - [6405] = {.lex_state = 442, .external_lex_state = 124}, - [6406] = {.lex_state = 549, .external_lex_state = 122}, - [6407] = {.lex_state = 549, .external_lex_state = 122}, - [6408] = {.lex_state = 549, .external_lex_state = 122}, - [6409] = {.lex_state = 549, .external_lex_state = 122}, - [6410] = {.lex_state = 549, .external_lex_state = 122}, - [6411] = {.lex_state = 442, .external_lex_state = 124}, - [6412] = {.lex_state = 549, .external_lex_state = 122}, - [6413] = {.lex_state = 549, .external_lex_state = 122}, - [6414] = {.lex_state = 491, .external_lex_state = 125}, - [6415] = {.lex_state = 549, .external_lex_state = 122}, - [6416] = {.lex_state = 549, .external_lex_state = 122}, - [6417] = {.lex_state = 549, .external_lex_state = 122}, - [6418] = {.lex_state = 549, .external_lex_state = 122}, - [6419] = {.lex_state = 549, .external_lex_state = 122}, - [6420] = {.lex_state = 491, .external_lex_state = 125}, - [6421] = {.lex_state = 442, .external_lex_state = 124}, - [6422] = {.lex_state = 489}, - [6423] = {.lex_state = 549, .external_lex_state = 122}, - [6424] = {.lex_state = 442, .external_lex_state = 123}, - [6425] = {.lex_state = 442, .external_lex_state = 124}, - [6426] = {.lex_state = 491, .external_lex_state = 121}, - [6427] = {.lex_state = 549, .external_lex_state = 122}, - [6428] = {.lex_state = 442, .external_lex_state = 124}, - [6429] = {.lex_state = 549, .external_lex_state = 122}, - [6430] = {.lex_state = 549, .external_lex_state = 122}, - [6431] = {.lex_state = 442, .external_lex_state = 124}, - [6432] = {.lex_state = 442, .external_lex_state = 124}, - [6433] = {.lex_state = 549, .external_lex_state = 122}, - [6434] = {.lex_state = 461}, - [6435] = {.lex_state = 549, .external_lex_state = 122}, - [6436] = {.lex_state = 491, .external_lex_state = 121}, - [6437] = {.lex_state = 549, .external_lex_state = 122}, - [6438] = {.lex_state = 549, .external_lex_state = 122}, - [6439] = {.lex_state = 478}, - [6440] = {.lex_state = 549, .external_lex_state = 122}, - [6441] = {.lex_state = 549, .external_lex_state = 122}, - [6442] = {.lex_state = 491, .external_lex_state = 125}, - [6443] = {.lex_state = 549, .external_lex_state = 122}, - [6444] = {.lex_state = 442, .external_lex_state = 124}, - [6445] = {.lex_state = 549, .external_lex_state = 122}, - [6446] = {.lex_state = 491, .external_lex_state = 125}, - [6447] = {.lex_state = 549, .external_lex_state = 122}, - [6448] = {.lex_state = 549, .external_lex_state = 122}, - [6449] = {.lex_state = 478}, + [6365] = {.lex_state = 462, .external_lex_state = 116}, + [6366] = {.lex_state = 479, .external_lex_state = 114}, + [6367] = {.lex_state = 479, .external_lex_state = 114}, + [6368] = {.lex_state = 479, .external_lex_state = 114}, + [6369] = {.lex_state = 479, .external_lex_state = 114}, + [6370] = {.lex_state = 435}, + [6371] = {.lex_state = 435}, + [6372] = {.lex_state = 462, .external_lex_state = 116}, + [6373] = {.lex_state = 478}, + [6374] = {.lex_state = 435}, + [6375] = {.lex_state = 480, .external_lex_state = 117}, + [6376] = {.lex_state = 435}, + [6377] = {.lex_state = 88, .external_lex_state = 120}, + [6378] = {.lex_state = 435}, + [6379] = {.lex_state = 93, .external_lex_state = 120}, + [6380] = {.lex_state = 435}, + [6381] = {.lex_state = 435}, + [6382] = {.lex_state = 462, .external_lex_state = 116}, + [6383] = {.lex_state = 435}, + [6384] = {.lex_state = 435}, + [6385] = {.lex_state = 435}, + [6386] = {.lex_state = 435}, + [6387] = {.lex_state = 435}, + [6388] = {.lex_state = 478}, + [6389] = {.lex_state = 435}, + [6390] = {.lex_state = 435}, + [6391] = {.lex_state = 435}, + [6392] = {.lex_state = 480, .external_lex_state = 117}, + [6393] = {.lex_state = 435}, + [6394] = {.lex_state = 462, .external_lex_state = 116}, + [6395] = {.lex_state = 462, .external_lex_state = 116}, + [6396] = {.lex_state = 435}, + [6397] = {.lex_state = 435}, + [6398] = {.lex_state = 435}, + [6399] = {.lex_state = 88, .external_lex_state = 120}, + [6400] = {.lex_state = 435}, + [6401] = {.lex_state = 435}, + [6402] = {.lex_state = 435}, + [6403] = {.lex_state = 88, .external_lex_state = 120}, + [6404] = {.lex_state = 491, .external_lex_state = 121}, + [6405] = {.lex_state = 88, .external_lex_state = 120}, + [6406] = {.lex_state = 479, .external_lex_state = 114}, + [6407] = {.lex_state = 478}, + [6408] = {.lex_state = 435}, + [6409] = {.lex_state = 462, .external_lex_state = 116}, + [6410] = {.lex_state = 435}, + [6411] = {.lex_state = 435}, + [6412] = {.lex_state = 480, .external_lex_state = 117}, + [6413] = {.lex_state = 479, .external_lex_state = 114}, + [6414] = {.lex_state = 479, .external_lex_state = 114}, + [6415] = {.lex_state = 435}, + [6416] = {.lex_state = 479, .external_lex_state = 114}, + [6417] = {.lex_state = 479, .external_lex_state = 114}, + [6418] = {.lex_state = 479, .external_lex_state = 114}, + [6419] = {.lex_state = 435}, + [6420] = {.lex_state = 478}, + [6421] = {.lex_state = 88, .external_lex_state = 120}, + [6422] = {.lex_state = 435}, + [6423] = {.lex_state = 435}, + [6424] = {.lex_state = 478}, + [6425] = {.lex_state = 435}, + [6426] = {.lex_state = 435}, + [6427] = {.lex_state = 435}, + [6428] = {.lex_state = 435}, + [6429] = {.lex_state = 435}, + [6430] = {.lex_state = 478}, + [6431] = {.lex_state = 435}, + [6432] = {.lex_state = 443, .external_lex_state = 122}, + [6433] = {.lex_state = 491, .external_lex_state = 121}, + [6434] = {.lex_state = 548, .external_lex_state = 123}, + [6435] = {.lex_state = 548, .external_lex_state = 123}, + [6436] = {.lex_state = 548, .external_lex_state = 123}, + [6437] = {.lex_state = 462, .external_lex_state = 116}, + [6438] = {.lex_state = 443, .external_lex_state = 124}, + [6439] = {.lex_state = 443, .external_lex_state = 124}, + [6440] = {.lex_state = 548, .external_lex_state = 123}, + [6441] = {.lex_state = 93, .external_lex_state = 120}, + [6442] = {.lex_state = 461}, + [6443] = {.lex_state = 548, .external_lex_state = 123}, + [6444] = {.lex_state = 548, .external_lex_state = 123}, + [6445] = {.lex_state = 548, .external_lex_state = 123}, + [6446] = {.lex_state = 548, .external_lex_state = 123}, + [6447] = {.lex_state = 461}, + [6448] = {.lex_state = 88, .external_lex_state = 120}, + [6449] = {.lex_state = 491, .external_lex_state = 125}, [6450] = {.lex_state = 491, .external_lex_state = 125}, - [6451] = {.lex_state = 478}, - [6452] = {.lex_state = 487}, - [6453] = {.lex_state = 91, .external_lex_state = 120}, - [6454] = {.lex_state = 549, .external_lex_state = 122}, - [6455] = {.lex_state = 478}, - [6456] = {.lex_state = 549, .external_lex_state = 122}, - [6457] = {.lex_state = 462, .external_lex_state = 115}, - [6458] = {.lex_state = 491, .external_lex_state = 125}, - [6459] = {.lex_state = 461}, - [6460] = {.lex_state = 442, .external_lex_state = 124}, - [6461] = {.lex_state = 549, .external_lex_state = 122}, - [6462] = {.lex_state = 549, .external_lex_state = 122}, - [6463] = {.lex_state = 462, .external_lex_state = 115}, - [6464] = {.lex_state = 549, .external_lex_state = 122}, - [6465] = {.lex_state = 91, .external_lex_state = 120}, - [6466] = {.lex_state = 549, .external_lex_state = 122}, - [6467] = {.lex_state = 549, .external_lex_state = 122}, - [6468] = {.lex_state = 91, .external_lex_state = 120}, - [6469] = {.lex_state = 549, .external_lex_state = 122}, - [6470] = {.lex_state = 549, .external_lex_state = 122}, - [6471] = {.lex_state = 549, .external_lex_state = 122}, - [6472] = {.lex_state = 549, .external_lex_state = 122}, - [6473] = {.lex_state = 549, .external_lex_state = 122}, - [6474] = {.lex_state = 549, .external_lex_state = 122}, - [6475] = {.lex_state = 91, .external_lex_state = 120}, - [6476] = {.lex_state = 549, .external_lex_state = 122}, - [6477] = {.lex_state = 549, .external_lex_state = 122}, - [6478] = {.lex_state = 442, .external_lex_state = 123}, - [6479] = {.lex_state = 549, .external_lex_state = 122}, - [6480] = {.lex_state = 491, .external_lex_state = 125}, - [6481] = {.lex_state = 435, .external_lex_state = 126}, - [6482] = {.lex_state = 462, .external_lex_state = 115}, - [6483] = {.lex_state = 491, .external_lex_state = 125}, - [6484] = {.lex_state = 442, .external_lex_state = 124}, - [6485] = {.lex_state = 442, .external_lex_state = 125}, - [6486] = {.lex_state = 479, .external_lex_state = 116}, - [6487] = {.lex_state = 462, .external_lex_state = 115}, - [6488] = {.lex_state = 435, .external_lex_state = 126}, - [6489] = {.lex_state = 462, .external_lex_state = 115}, - [6490] = {.lex_state = 462, .external_lex_state = 115}, - [6491] = {.lex_state = 462, .external_lex_state = 115}, - [6492] = {.lex_state = 442, .external_lex_state = 124}, - [6493] = {.lex_state = 491, .external_lex_state = 125}, - [6494] = {.lex_state = 479, .external_lex_state = 116}, - [6495] = {.lex_state = 442, .external_lex_state = 124}, - [6496] = {.lex_state = 479, .external_lex_state = 116}, - [6497] = {.lex_state = 435, .external_lex_state = 126}, - [6498] = {.lex_state = 462, .external_lex_state = 115}, - [6499] = {.lex_state = 479, .external_lex_state = 116}, - [6500] = {.lex_state = 462, .external_lex_state = 115}, - [6501] = {.lex_state = 462, .external_lex_state = 115}, - [6502] = {.lex_state = 435, .external_lex_state = 126}, - [6503] = {.lex_state = 86, .external_lex_state = 120}, - [6504] = {.lex_state = 462, .external_lex_state = 115}, - [6505] = {.lex_state = 462, .external_lex_state = 115}, - [6506] = {.lex_state = 462, .external_lex_state = 115}, - [6507] = {.lex_state = 491, .external_lex_state = 125}, - [6508] = {.lex_state = 478}, - [6509] = {.lex_state = 442, .external_lex_state = 124}, - [6510] = {.lex_state = 491, .external_lex_state = 125}, - [6511] = {.lex_state = 435, .external_lex_state = 126}, - [6512] = {.lex_state = 462, .external_lex_state = 115}, - [6513] = {.lex_state = 442, .external_lex_state = 124}, - [6514] = {.lex_state = 435, .external_lex_state = 126}, - [6515] = {.lex_state = 435, .external_lex_state = 126}, - [6516] = {.lex_state = 442, .external_lex_state = 124}, - [6517] = {.lex_state = 462, .external_lex_state = 115}, - [6518] = {.lex_state = 491, .external_lex_state = 125}, - [6519] = {.lex_state = 491, .external_lex_state = 125}, - [6520] = {.lex_state = 491, .external_lex_state = 125}, - [6521] = {.lex_state = 86, .external_lex_state = 120}, - [6522] = {.lex_state = 435, .external_lex_state = 126}, - [6523] = {.lex_state = 478}, - [6524] = {.lex_state = 461}, - [6525] = {.lex_state = 462, .external_lex_state = 115}, - [6526] = {.lex_state = 435, .external_lex_state = 126}, - [6527] = {.lex_state = 435, .external_lex_state = 126}, - [6528] = {.lex_state = 461}, - [6529] = {.lex_state = 491, .external_lex_state = 125}, - [6530] = {.lex_state = 478}, - [6531] = {.lex_state = 491, .external_lex_state = 125}, - [6532] = {.lex_state = 491, .external_lex_state = 125}, - [6533] = {.lex_state = 491, .external_lex_state = 125}, - [6534] = {.lex_state = 86, .external_lex_state = 120}, - [6535] = {.lex_state = 491, .external_lex_state = 125}, - [6536] = {.lex_state = 462, .external_lex_state = 115}, - [6537] = {.lex_state = 435, .external_lex_state = 126}, - [6538] = {.lex_state = 491, .external_lex_state = 125}, - [6539] = {.lex_state = 442, .external_lex_state = 124}, - [6540] = {.lex_state = 462, .external_lex_state = 115}, - [6541] = {.lex_state = 435, .external_lex_state = 126}, - [6542] = {.lex_state = 462, .external_lex_state = 115}, - [6543] = {.lex_state = 442, .external_lex_state = 124}, + [6451] = {.lex_state = 93, .external_lex_state = 120}, + [6452] = {.lex_state = 462, .external_lex_state = 116}, + [6453] = {.lex_state = 548, .external_lex_state = 123}, + [6454] = {.lex_state = 443, .external_lex_state = 122}, + [6455] = {.lex_state = 548, .external_lex_state = 123}, + [6456] = {.lex_state = 548, .external_lex_state = 123}, + [6457] = {.lex_state = 548, .external_lex_state = 123}, + [6458] = {.lex_state = 548, .external_lex_state = 123}, + [6459] = {.lex_state = 491, .external_lex_state = 125}, + [6460] = {.lex_state = 443, .external_lex_state = 124}, + [6461] = {.lex_state = 548, .external_lex_state = 123}, + [6462] = {.lex_state = 93, .external_lex_state = 120}, + [6463] = {.lex_state = 443, .external_lex_state = 124}, + [6464] = {.lex_state = 491, .external_lex_state = 125}, + [6465] = {.lex_state = 548, .external_lex_state = 123}, + [6466] = {.lex_state = 478}, + [6467] = {.lex_state = 548, .external_lex_state = 123}, + [6468] = {.lex_state = 548, .external_lex_state = 123}, + [6469] = {.lex_state = 548, .external_lex_state = 123}, + [6470] = {.lex_state = 548, .external_lex_state = 123}, + [6471] = {.lex_state = 462, .external_lex_state = 116}, + [6472] = {.lex_state = 548, .external_lex_state = 123}, + [6473] = {.lex_state = 548, .external_lex_state = 123}, + [6474] = {.lex_state = 548, .external_lex_state = 123}, + [6475] = {.lex_state = 93, .external_lex_state = 120}, + [6476] = {.lex_state = 487}, + [6477] = {.lex_state = 548, .external_lex_state = 123}, + [6478] = {.lex_state = 478}, + [6479] = {.lex_state = 491, .external_lex_state = 125}, + [6480] = {.lex_state = 548, .external_lex_state = 123}, + [6481] = {.lex_state = 478}, + [6482] = {.lex_state = 491, .external_lex_state = 125}, + [6483] = {.lex_state = 478}, + [6484] = {.lex_state = 491, .external_lex_state = 121}, + [6485] = {.lex_state = 548, .external_lex_state = 123}, + [6486] = {.lex_state = 443, .external_lex_state = 124}, + [6487] = {.lex_state = 443, .external_lex_state = 124}, + [6488] = {.lex_state = 478}, + [6489] = {.lex_state = 548, .external_lex_state = 123}, + [6490] = {.lex_state = 548, .external_lex_state = 123}, + [6491] = {.lex_state = 548, .external_lex_state = 123}, + [6492] = {.lex_state = 548, .external_lex_state = 123}, + [6493] = {.lex_state = 461}, + [6494] = {.lex_state = 548, .external_lex_state = 123}, + [6495] = {.lex_state = 548, .external_lex_state = 123}, + [6496] = {.lex_state = 443, .external_lex_state = 124}, + [6497] = {.lex_state = 548, .external_lex_state = 123}, + [6498] = {.lex_state = 548, .external_lex_state = 123}, + [6499] = {.lex_state = 548, .external_lex_state = 123}, + [6500] = {.lex_state = 548, .external_lex_state = 123}, + [6501] = {.lex_state = 443, .external_lex_state = 124}, + [6502] = {.lex_state = 93, .external_lex_state = 120}, + [6503] = {.lex_state = 548, .external_lex_state = 123}, + [6504] = {.lex_state = 548, .external_lex_state = 123}, + [6505] = {.lex_state = 93, .external_lex_state = 120}, + [6506] = {.lex_state = 548, .external_lex_state = 123}, + [6507] = {.lex_state = 93, .external_lex_state = 120}, + [6508] = {.lex_state = 491, .external_lex_state = 125}, + [6509] = {.lex_state = 491, .external_lex_state = 125}, + [6510] = {.lex_state = 443, .external_lex_state = 124}, + [6511] = {.lex_state = 548, .external_lex_state = 123}, + [6512] = {.lex_state = 93, .external_lex_state = 120}, + [6513] = {.lex_state = 462, .external_lex_state = 116}, + [6514] = {.lex_state = 462, .external_lex_state = 116}, + [6515] = {.lex_state = 548, .external_lex_state = 123}, + [6516] = {.lex_state = 548, .external_lex_state = 123}, + [6517] = {.lex_state = 443, .external_lex_state = 124}, + [6518] = {.lex_state = 443, .external_lex_state = 124}, + [6519] = {.lex_state = 548, .external_lex_state = 123}, + [6520] = {.lex_state = 548, .external_lex_state = 123}, + [6521] = {.lex_state = 548, .external_lex_state = 123}, + [6522] = {.lex_state = 548, .external_lex_state = 123}, + [6523] = {.lex_state = 548, .external_lex_state = 123}, + [6524] = {.lex_state = 548, .external_lex_state = 123}, + [6525] = {.lex_state = 548, .external_lex_state = 123}, + [6526] = {.lex_state = 548, .external_lex_state = 123}, + [6527] = {.lex_state = 548, .external_lex_state = 123}, + [6528] = {.lex_state = 443, .external_lex_state = 124}, + [6529] = {.lex_state = 548, .external_lex_state = 123}, + [6530] = {.lex_state = 548, .external_lex_state = 123}, + [6531] = {.lex_state = 548, .external_lex_state = 123}, + [6532] = {.lex_state = 548, .external_lex_state = 123}, + [6533] = {.lex_state = 548, .external_lex_state = 123}, + [6534] = {.lex_state = 548, .external_lex_state = 123}, + [6535] = {.lex_state = 548, .external_lex_state = 123}, + [6536] = {.lex_state = 443, .external_lex_state = 122}, + [6537] = {.lex_state = 548, .external_lex_state = 123}, + [6538] = {.lex_state = 443, .external_lex_state = 122}, + [6539] = {.lex_state = 548, .external_lex_state = 123}, + [6540] = {.lex_state = 548, .external_lex_state = 123}, + [6541] = {.lex_state = 461}, + [6542] = {.lex_state = 491, .external_lex_state = 121}, + [6543] = {.lex_state = 443, .external_lex_state = 124}, [6544] = {.lex_state = 478}, - [6545] = {.lex_state = 462, .external_lex_state = 115}, - [6546] = {.lex_state = 462, .external_lex_state = 115}, - [6547] = {.lex_state = 435}, - [6548] = {.lex_state = 435}, - [6549] = {.lex_state = 549}, - [6550] = {.lex_state = 549}, - [6551] = {.lex_state = 435}, - [6552] = {.lex_state = 549}, - [6553] = {.lex_state = 435}, - [6554] = {.lex_state = 549}, - [6555] = {.lex_state = 435}, - [6556] = {.lex_state = 549}, - [6557] = {.lex_state = 435}, - [6558] = {.lex_state = 435}, - [6559] = {.lex_state = 435}, - [6560] = {.lex_state = 435}, - [6561] = {.lex_state = 435}, - [6562] = {.lex_state = 549}, - [6563] = {.lex_state = 549}, - [6564] = {.lex_state = 549}, - [6565] = {.lex_state = 549}, - [6566] = {.lex_state = 435}, - [6567] = {.lex_state = 437}, - [6568] = {.lex_state = 435}, - [6569] = {.lex_state = 549}, - [6570] = {.lex_state = 491}, - [6571] = {.lex_state = 435}, - [6572] = {.lex_state = 549}, - [6573] = {.lex_state = 549}, - [6574] = {.lex_state = 549}, - [6575] = {.lex_state = 549}, - [6576] = {.lex_state = 549}, - [6577] = {.lex_state = 435}, - [6578] = {.lex_state = 435}, - [6579] = {.lex_state = 435}, - [6580] = {.lex_state = 491}, - [6581] = {.lex_state = 437}, - [6582] = {.lex_state = 549}, - [6583] = {.lex_state = 435}, - [6584] = {.lex_state = 435}, - [6585] = {.lex_state = 549}, - [6586] = {.lex_state = 549, .external_lex_state = 127}, - [6587] = {.lex_state = 435}, - [6588] = {.lex_state = 420}, - [6589] = {.lex_state = 491}, - [6590] = {.lex_state = 435}, - [6591] = {.lex_state = 491}, - [6592] = {.lex_state = 435}, - [6593] = {.lex_state = 435}, - [6594] = {.lex_state = 435}, - [6595] = {.lex_state = 491}, - [6596] = {.lex_state = 549}, - [6597] = {.lex_state = 491}, - [6598] = {.lex_state = 435}, - [6599] = {.lex_state = 435}, - [6600] = {.lex_state = 491}, - [6601] = {.lex_state = 491}, - [6602] = {.lex_state = 491}, - [6603] = {.lex_state = 435}, - [6604] = {.lex_state = 491}, - [6605] = {.lex_state = 435}, - [6606] = {.lex_state = 491}, - [6607] = {.lex_state = 491}, - [6608] = {.lex_state = 491}, - [6609] = {.lex_state = 435}, - [6610] = {.lex_state = 491}, - [6611] = {.lex_state = 491}, - [6612] = {.lex_state = 491}, + [6545] = {.lex_state = 443, .external_lex_state = 125}, + [6546] = {.lex_state = 491, .external_lex_state = 125}, + [6547] = {.lex_state = 491, .external_lex_state = 125}, + [6548] = {.lex_state = 491, .external_lex_state = 125}, + [6549] = {.lex_state = 479, .external_lex_state = 114}, + [6550] = {.lex_state = 462, .external_lex_state = 116}, + [6551] = {.lex_state = 491, .external_lex_state = 125}, + [6552] = {.lex_state = 462, .external_lex_state = 116}, + [6553] = {.lex_state = 491, .external_lex_state = 125}, + [6554] = {.lex_state = 462, .external_lex_state = 116}, + [6555] = {.lex_state = 462, .external_lex_state = 116}, + [6556] = {.lex_state = 462, .external_lex_state = 116}, + [6557] = {.lex_state = 88, .external_lex_state = 120}, + [6558] = {.lex_state = 435, .external_lex_state = 126}, + [6559] = {.lex_state = 491, .external_lex_state = 125}, + [6560] = {.lex_state = 479, .external_lex_state = 114}, + [6561] = {.lex_state = 462, .external_lex_state = 116}, + [6562] = {.lex_state = 478}, + [6563] = {.lex_state = 462, .external_lex_state = 116}, + [6564] = {.lex_state = 462, .external_lex_state = 116}, + [6565] = {.lex_state = 462, .external_lex_state = 116}, + [6566] = {.lex_state = 491, .external_lex_state = 125}, + [6567] = {.lex_state = 462, .external_lex_state = 116}, + [6568] = {.lex_state = 462, .external_lex_state = 116}, + [6569] = {.lex_state = 435, .external_lex_state = 126}, + [6570] = {.lex_state = 461}, + [6571] = {.lex_state = 491, .external_lex_state = 125}, + [6572] = {.lex_state = 435, .external_lex_state = 126}, + [6573] = {.lex_state = 435, .external_lex_state = 126}, + [6574] = {.lex_state = 462, .external_lex_state = 116}, + [6575] = {.lex_state = 88, .external_lex_state = 120}, + [6576] = {.lex_state = 461}, + [6577] = {.lex_state = 435, .external_lex_state = 126}, + [6578] = {.lex_state = 478}, + [6579] = {.lex_state = 491, .external_lex_state = 125}, + [6580] = {.lex_state = 435, .external_lex_state = 126}, + [6581] = {.lex_state = 435, .external_lex_state = 126}, + [6582] = {.lex_state = 443, .external_lex_state = 124}, + [6583] = {.lex_state = 462, .external_lex_state = 116}, + [6584] = {.lex_state = 443, .external_lex_state = 124}, + [6585] = {.lex_state = 478}, + [6586] = {.lex_state = 435, .external_lex_state = 126}, + [6587] = {.lex_state = 491, .external_lex_state = 125}, + [6588] = {.lex_state = 435, .external_lex_state = 126}, + [6589] = {.lex_state = 479, .external_lex_state = 114}, + [6590] = {.lex_state = 88, .external_lex_state = 120}, + [6591] = {.lex_state = 435, .external_lex_state = 126}, + [6592] = {.lex_state = 462, .external_lex_state = 116}, + [6593] = {.lex_state = 462, .external_lex_state = 116}, + [6594] = {.lex_state = 462, .external_lex_state = 116}, + [6595] = {.lex_state = 435, .external_lex_state = 126}, + [6596] = {.lex_state = 462, .external_lex_state = 116}, + [6597] = {.lex_state = 435, .external_lex_state = 126}, + [6598] = {.lex_state = 462, .external_lex_state = 116}, + [6599] = {.lex_state = 491, .external_lex_state = 125}, + [6600] = {.lex_state = 443, .external_lex_state = 124}, + [6601] = {.lex_state = 491, .external_lex_state = 125}, + [6602] = {.lex_state = 443, .external_lex_state = 124}, + [6603] = {.lex_state = 491, .external_lex_state = 125}, + [6604] = {.lex_state = 443, .external_lex_state = 124}, + [6605] = {.lex_state = 462, .external_lex_state = 116}, + [6606] = {.lex_state = 491, .external_lex_state = 125}, + [6607] = {.lex_state = 462, .external_lex_state = 116}, + [6608] = {.lex_state = 443, .external_lex_state = 124}, + [6609] = {.lex_state = 443, .external_lex_state = 124}, + [6610] = {.lex_state = 491, .external_lex_state = 125}, + [6611] = {.lex_state = 443, .external_lex_state = 124}, + [6612] = {.lex_state = 479, .external_lex_state = 114}, [6613] = {.lex_state = 435}, [6614] = {.lex_state = 435}, - [6615] = {.lex_state = 435}, + [6615] = {.lex_state = 479, .external_lex_state = 118}, [6616] = {.lex_state = 491}, - [6617] = {.lex_state = 437}, - [6618] = {.lex_state = 491}, + [6617] = {.lex_state = 548}, + [6618] = {.lex_state = 435}, [6619] = {.lex_state = 491}, - [6620] = {.lex_state = 435}, - [6621] = {.lex_state = 461}, - [6622] = {.lex_state = 435}, - [6623] = {.lex_state = 491}, - [6624] = {.lex_state = 549}, - [6625] = {.lex_state = 477, .external_lex_state = 115}, - [6626] = {.lex_state = 435}, + [6620] = {.lex_state = 437}, + [6621] = {.lex_state = 435}, + [6622] = {.lex_state = 548}, + [6623] = {.lex_state = 437}, + [6624] = {.lex_state = 491}, + [6625] = {.lex_state = 419}, + [6626] = {.lex_state = 419}, [6627] = {.lex_state = 435}, - [6628] = {.lex_state = 435}, - [6629] = {.lex_state = 549, .external_lex_state = 127}, - [6630] = {.lex_state = 549, .external_lex_state = 127}, - [6631] = {.lex_state = 549}, - [6632] = {.lex_state = 420}, + [6628] = {.lex_state = 491}, + [6629] = {.lex_state = 435}, + [6630] = {.lex_state = 477, .external_lex_state = 116}, + [6631] = {.lex_state = 435}, + [6632] = {.lex_state = 491}, [6633] = {.lex_state = 435}, - [6634] = {.lex_state = 477, .external_lex_state = 115}, - [6635] = {.lex_state = 549}, + [6634] = {.lex_state = 435}, + [6635] = {.lex_state = 435}, [6636] = {.lex_state = 435}, - [6637] = {.lex_state = 435}, - [6638] = {.lex_state = 549}, - [6639] = {.lex_state = 491}, + [6637] = {.lex_state = 479, .external_lex_state = 118}, + [6638] = {.lex_state = 491}, + [6639] = {.lex_state = 435}, [6640] = {.lex_state = 435}, - [6641] = {.lex_state = 435}, - [6642] = {.lex_state = 549, .external_lex_state = 127}, - [6643] = {.lex_state = 435}, - [6644] = {.lex_state = 435}, + [6641] = {.lex_state = 405, .external_lex_state = 116}, + [6642] = {.lex_state = 548}, + [6643] = {.lex_state = 419}, + [6644] = {.lex_state = 491}, [6645] = {.lex_state = 435}, [6646] = {.lex_state = 435}, - [6647] = {.lex_state = 437}, - [6648] = {.lex_state = 479, .external_lex_state = 118}, - [6649] = {.lex_state = 435}, + [6647] = {.lex_state = 435}, + [6648] = {.lex_state = 548}, + [6649] = {.lex_state = 491}, [6650] = {.lex_state = 435}, [6651] = {.lex_state = 435}, - [6652] = {.lex_state = 549}, - [6653] = {.lex_state = 549, .external_lex_state = 127}, - [6654] = {.lex_state = 420}, - [6655] = {.lex_state = 435}, - [6656] = {.lex_state = 549}, - [6657] = {.lex_state = 549, .external_lex_state = 127}, - [6658] = {.lex_state = 477, .external_lex_state = 115}, + [6652] = {.lex_state = 548}, + [6653] = {.lex_state = 435}, + [6654] = {.lex_state = 435}, + [6655] = {.lex_state = 548}, + [6656] = {.lex_state = 435}, + [6657] = {.lex_state = 491}, + [6658] = {.lex_state = 435}, [6659] = {.lex_state = 435}, [6660] = {.lex_state = 435}, - [6661] = {.lex_state = 477, .external_lex_state = 115}, + [6661] = {.lex_state = 435}, [6662] = {.lex_state = 435}, - [6663] = {.lex_state = 549, .external_lex_state = 127}, + [6663] = {.lex_state = 435}, [6664] = {.lex_state = 435}, - [6665] = {.lex_state = 435}, - [6666] = {.lex_state = 437}, - [6667] = {.lex_state = 435}, - [6668] = {.lex_state = 549}, - [6669] = {.lex_state = 435}, + [6665] = {.lex_state = 419}, + [6666] = {.lex_state = 435}, + [6667] = {.lex_state = 548}, + [6668] = {.lex_state = 491}, + [6669] = {.lex_state = 419, .external_lex_state = 127}, [6670] = {.lex_state = 435}, - [6671] = {.lex_state = 435}, - [6672] = {.lex_state = 479, .external_lex_state = 116}, - [6673] = {.lex_state = 479, .external_lex_state = 116}, - [6674] = {.lex_state = 435}, - [6675] = {.lex_state = 549, .external_lex_state = 127}, - [6676] = {.lex_state = 435}, - [6677] = {.lex_state = 435}, - [6678] = {.lex_state = 435}, + [6671] = {.lex_state = 479, .external_lex_state = 118}, + [6672] = {.lex_state = 435}, + [6673] = {.lex_state = 491}, + [6674] = {.lex_state = 419, .external_lex_state = 127}, + [6675] = {.lex_state = 435}, + [6676] = {.lex_state = 548}, + [6677] = {.lex_state = 437}, + [6678] = {.lex_state = 461}, [6679] = {.lex_state = 435}, - [6680] = {.lex_state = 479, .external_lex_state = 116}, - [6681] = {.lex_state = 435}, - [6682] = {.lex_state = 549}, - [6683] = {.lex_state = 549}, - [6684] = {.lex_state = 420}, - [6685] = {.lex_state = 435}, - [6686] = {.lex_state = 435}, + [6680] = {.lex_state = 491}, + [6681] = {.lex_state = 437}, + [6682] = {.lex_state = 435}, + [6683] = {.lex_state = 437}, + [6684] = {.lex_state = 435}, + [6685] = {.lex_state = 419, .external_lex_state = 127}, + [6686] = {.lex_state = 419, .external_lex_state = 127}, [6687] = {.lex_state = 435}, [6688] = {.lex_state = 435}, [6689] = {.lex_state = 435}, - [6690] = {.lex_state = 435}, - [6691] = {.lex_state = 549}, - [6692] = {.lex_state = 549, .external_lex_state = 127}, - [6693] = {.lex_state = 549}, + [6690] = {.lex_state = 419}, + [6691] = {.lex_state = 435}, + [6692] = {.lex_state = 419, .external_lex_state = 127}, + [6693] = {.lex_state = 435}, [6694] = {.lex_state = 435}, - [6695] = {.lex_state = 435}, + [6695] = {.lex_state = 491}, [6696] = {.lex_state = 435}, - [6697] = {.lex_state = 479, .external_lex_state = 118}, + [6697] = {.lex_state = 548}, [6698] = {.lex_state = 435}, - [6699] = {.lex_state = 479, .external_lex_state = 118}, - [6700] = {.lex_state = 435}, - [6701] = {.lex_state = 491}, - [6702] = {.lex_state = 479, .external_lex_state = 118}, - [6703] = {.lex_state = 435}, - [6704] = {.lex_state = 549}, - [6705] = {.lex_state = 420}, + [6699] = {.lex_state = 435}, + [6700] = {.lex_state = 419}, + [6701] = {.lex_state = 435}, + [6702] = {.lex_state = 419}, + [6703] = {.lex_state = 419, .external_lex_state = 127}, + [6704] = {.lex_state = 419, .external_lex_state = 127}, + [6705] = {.lex_state = 419, .external_lex_state = 127}, [6706] = {.lex_state = 435}, [6707] = {.lex_state = 435}, - [6708] = {.lex_state = 435}, - [6709] = {.lex_state = 420}, - [6710] = {.lex_state = 435}, - [6711] = {.lex_state = 435}, + [6708] = {.lex_state = 419}, + [6709] = {.lex_state = 419}, + [6710] = {.lex_state = 419}, + [6711] = {.lex_state = 477, .external_lex_state = 116}, [6712] = {.lex_state = 435}, - [6713] = {.lex_state = 420}, + [6713] = {.lex_state = 479, .external_lex_state = 114}, [6714] = {.lex_state = 437}, - [6715] = {.lex_state = 549}, - [6716] = {.lex_state = 420}, - [6717] = {.lex_state = 549}, - [6718] = {.lex_state = 435}, - [6719] = {.lex_state = 405, .external_lex_state = 115}, + [6715] = {.lex_state = 419, .external_lex_state = 127}, + [6716] = {.lex_state = 419}, + [6717] = {.lex_state = 491}, + [6718] = {.lex_state = 548}, + [6719] = {.lex_state = 435}, [6720] = {.lex_state = 435}, - [6721] = {.lex_state = 491}, - [6722] = {.lex_state = 549}, + [6721] = {.lex_state = 435}, + [6722] = {.lex_state = 548}, [6723] = {.lex_state = 435}, [6724] = {.lex_state = 435}, - [6725] = {.lex_state = 437}, - [6726] = {.lex_state = 437}, - [6727] = {.lex_state = 479, .external_lex_state = 116}, - [6728] = {.lex_state = 477}, + [6725] = {.lex_state = 435}, + [6726] = {.lex_state = 435}, + [6727] = {.lex_state = 548}, + [6728] = {.lex_state = 548}, [6729] = {.lex_state = 437}, - [6730] = {.lex_state = 477}, - [6731] = {.lex_state = 477}, - [6732] = {.lex_state = 442, .external_lex_state = 119}, - [6733] = {.lex_state = 477}, - [6734] = {.lex_state = 479, .external_lex_state = 116}, - [6735] = {.lex_state = 479, .external_lex_state = 116}, - [6736] = {.lex_state = 477}, - [6737] = {.lex_state = 477}, - [6738] = {.lex_state = 479, .external_lex_state = 116}, - [6739] = {.lex_state = 437}, - [6740] = {.lex_state = 437}, - [6741] = {.lex_state = 489}, - [6742] = {.lex_state = 489}, - [6743] = {.lex_state = 479, .external_lex_state = 116}, - [6744] = {.lex_state = 477}, - [6745] = {.lex_state = 435}, - [6746] = {.lex_state = 477}, - [6747] = {.lex_state = 489}, - [6748] = {.lex_state = 477}, - [6749] = {.lex_state = 479, .external_lex_state = 116}, - [6750] = {.lex_state = 442, .external_lex_state = 116}, - [6751] = {.lex_state = 437}, - [6752] = {.lex_state = 477}, - [6753] = {.lex_state = 479, .external_lex_state = 116}, - [6754] = {.lex_state = 489}, - [6755] = {.lex_state = 442, .external_lex_state = 116}, - [6756] = {.lex_state = 477}, - [6757] = {.lex_state = 477}, - [6758] = {.lex_state = 477}, - [6759] = {.lex_state = 477}, - [6760] = {.lex_state = 477}, - [6761] = {.lex_state = 479, .external_lex_state = 116}, - [6762] = {.lex_state = 549}, - [6763] = {.lex_state = 549}, - [6764] = {.lex_state = 489}, - [6765] = {.lex_state = 477}, - [6766] = {.lex_state = 477}, - [6767] = {.lex_state = 479, .external_lex_state = 116}, - [6768] = {.lex_state = 489}, - [6769] = {.lex_state = 477}, - [6770] = {.lex_state = 477}, - [6771] = {.lex_state = 477}, - [6772] = {.lex_state = 437}, - [6773] = {.lex_state = 437}, - [6774] = {.lex_state = 477}, - [6775] = {.lex_state = 479, .external_lex_state = 116}, - [6776] = {.lex_state = 489}, - [6777] = {.lex_state = 479, .external_lex_state = 116}, - [6778] = {.lex_state = 477}, - [6779] = {.lex_state = 477}, - [6780] = {.lex_state = 489}, - [6781] = {.lex_state = 479, .external_lex_state = 116}, - [6782] = {.lex_state = 479, .external_lex_state = 116}, - [6783] = {.lex_state = 435}, - [6784] = {.lex_state = 477}, - [6785] = {.lex_state = 477}, - [6786] = {.lex_state = 479, .external_lex_state = 116}, - [6787] = {.lex_state = 477}, - [6788] = {.lex_state = 479, .external_lex_state = 116}, - [6789] = {.lex_state = 435}, - [6790] = {.lex_state = 479, .external_lex_state = 116}, - [6791] = {.lex_state = 477}, - [6792] = {.lex_state = 442, .external_lex_state = 116}, - [6793] = {.lex_state = 549}, - [6794] = {.lex_state = 440}, - [6795] = {.lex_state = 489}, - [6796] = {.lex_state = 435, .external_lex_state = 126}, - [6797] = {.lex_state = 442, .external_lex_state = 116}, - [6798] = {.lex_state = 549}, - [6799] = {.lex_state = 442, .external_lex_state = 116}, - [6800] = {.lex_state = 146, .external_lex_state = 120}, - [6801] = {.lex_state = 435}, - [6802] = {.lex_state = 440}, - [6803] = {.lex_state = 442}, - [6804] = {.lex_state = 549}, - [6805] = {.lex_state = 549}, - [6806] = {.lex_state = 442, .external_lex_state = 116}, - [6807] = {.lex_state = 442, .external_lex_state = 116}, - [6808] = {.lex_state = 549}, - [6809] = {.lex_state = 440}, - [6810] = {.lex_state = 435}, - [6811] = {.lex_state = 549}, - [6812] = {.lex_state = 442, .external_lex_state = 116}, - [6813] = {.lex_state = 549}, - [6814] = {.lex_state = 442, .external_lex_state = 116}, - [6815] = {.lex_state = 549}, - [6816] = {.lex_state = 549}, - [6817] = {.lex_state = 549}, - [6818] = {.lex_state = 549}, - [6819] = {.lex_state = 435}, - [6820] = {.lex_state = 549, .external_lex_state = 128}, - [6821] = {.lex_state = 549}, - [6822] = {.lex_state = 435, .external_lex_state = 126}, - [6823] = {.lex_state = 440}, - [6824] = {.lex_state = 440}, - [6825] = {.lex_state = 442, .external_lex_state = 116}, - [6826] = {.lex_state = 549}, - [6827] = {.lex_state = 549}, - [6828] = {.lex_state = 435}, - [6829] = {.lex_state = 549}, - [6830] = {.lex_state = 549, .external_lex_state = 128}, - [6831] = {.lex_state = 549}, - [6832] = {.lex_state = 549}, - [6833] = {.lex_state = 549}, - [6834] = {.lex_state = 410}, - [6835] = {.lex_state = 442, .external_lex_state = 116}, - [6836] = {.lex_state = 442, .external_lex_state = 116}, - [6837] = {.lex_state = 435}, - [6838] = {.lex_state = 549}, - [6839] = {.lex_state = 442, .external_lex_state = 116}, - [6840] = {.lex_state = 549}, - [6841] = {.lex_state = 435, .external_lex_state = 126}, - [6842] = {.lex_state = 549}, - [6843] = {.lex_state = 549}, - [6844] = {.lex_state = 549}, - [6845] = {.lex_state = 442, .external_lex_state = 116}, - [6846] = {.lex_state = 435}, - [6847] = {.lex_state = 549}, - [6848] = {.lex_state = 442, .external_lex_state = 116}, - [6849] = {.lex_state = 435, .external_lex_state = 126}, - [6850] = {.lex_state = 440}, - [6851] = {.lex_state = 442, .external_lex_state = 116}, - [6852] = {.lex_state = 435, .external_lex_state = 126}, - [6853] = {.lex_state = 435, .external_lex_state = 126}, - [6854] = {.lex_state = 549}, - [6855] = {.lex_state = 435}, - [6856] = {.lex_state = 549}, - [6857] = {.lex_state = 442, .external_lex_state = 116}, - [6858] = {.lex_state = 442, .external_lex_state = 116}, - [6859] = {.lex_state = 549}, - [6860] = {.lex_state = 442, .external_lex_state = 116}, - [6861] = {.lex_state = 549}, - [6862] = {.lex_state = 549}, - [6863] = {.lex_state = 489}, - [6864] = {.lex_state = 435}, - [6865] = {.lex_state = 549}, - [6866] = {.lex_state = 442, .external_lex_state = 116}, - [6867] = {.lex_state = 549}, - [6868] = {.lex_state = 549}, - [6869] = {.lex_state = 549}, - [6870] = {.lex_state = 549}, - [6871] = {.lex_state = 549}, - [6872] = {.lex_state = 549}, - [6873] = {.lex_state = 435}, - [6874] = {.lex_state = 549}, - [6875] = {.lex_state = 435, .external_lex_state = 126}, - [6876] = {.lex_state = 440}, - [6877] = {.lex_state = 440}, - [6878] = {.lex_state = 440}, - [6879] = {.lex_state = 440}, - [6880] = {.lex_state = 489}, - [6881] = {.lex_state = 146, .external_lex_state = 120}, - [6882] = {.lex_state = 435}, - [6883] = {.lex_state = 549}, - [6884] = {.lex_state = 442, .external_lex_state = 116}, - [6885] = {.lex_state = 549}, - [6886] = {.lex_state = 442, .external_lex_state = 116}, + [6730] = {.lex_state = 477, .external_lex_state = 116}, + [6731] = {.lex_state = 435}, + [6732] = {.lex_state = 435}, + [6733] = {.lex_state = 435}, + [6734] = {.lex_state = 435}, + [6735] = {.lex_state = 435}, + [6736] = {.lex_state = 491}, + [6737] = {.lex_state = 419}, + [6738] = {.lex_state = 435}, + [6739] = {.lex_state = 419}, + [6740] = {.lex_state = 419}, + [6741] = {.lex_state = 435}, + [6742] = {.lex_state = 479, .external_lex_state = 118}, + [6743] = {.lex_state = 435}, + [6744] = {.lex_state = 548}, + [6745] = {.lex_state = 419}, + [6746] = {.lex_state = 548}, + [6747] = {.lex_state = 491}, + [6748] = {.lex_state = 435}, + [6749] = {.lex_state = 435}, + [6750] = {.lex_state = 419}, + [6751] = {.lex_state = 435}, + [6752] = {.lex_state = 548}, + [6753] = {.lex_state = 548}, + [6754] = {.lex_state = 435}, + [6755] = {.lex_state = 419}, + [6756] = {.lex_state = 477, .external_lex_state = 116}, + [6757] = {.lex_state = 479, .external_lex_state = 114}, + [6758] = {.lex_state = 435}, + [6759] = {.lex_state = 491}, + [6760] = {.lex_state = 435}, + [6761] = {.lex_state = 419}, + [6762] = {.lex_state = 435}, + [6763] = {.lex_state = 435}, + [6764] = {.lex_state = 548}, + [6765] = {.lex_state = 548}, + [6766] = {.lex_state = 435}, + [6767] = {.lex_state = 419}, + [6768] = {.lex_state = 435}, + [6769] = {.lex_state = 435}, + [6770] = {.lex_state = 479, .external_lex_state = 114}, + [6771] = {.lex_state = 491}, + [6772] = {.lex_state = 435}, + [6773] = {.lex_state = 435}, + [6774] = {.lex_state = 435}, + [6775] = {.lex_state = 435}, + [6776] = {.lex_state = 435}, + [6777] = {.lex_state = 435}, + [6778] = {.lex_state = 435}, + [6779] = {.lex_state = 491}, + [6780] = {.lex_state = 435}, + [6781] = {.lex_state = 435}, + [6782] = {.lex_state = 491}, + [6783] = {.lex_state = 491}, + [6784] = {.lex_state = 491}, + [6785] = {.lex_state = 435}, + [6786] = {.lex_state = 419}, + [6787] = {.lex_state = 491}, + [6788] = {.lex_state = 435}, + [6789] = {.lex_state = 419}, + [6790] = {.lex_state = 435}, + [6791] = {.lex_state = 548}, + [6792] = {.lex_state = 479, .external_lex_state = 114}, + [6793] = {.lex_state = 477}, + [6794] = {.lex_state = 479, .external_lex_state = 114}, + [6795] = {.lex_state = 477}, + [6796] = {.lex_state = 479, .external_lex_state = 114}, + [6797] = {.lex_state = 477}, + [6798] = {.lex_state = 437}, + [6799] = {.lex_state = 478}, + [6800] = {.lex_state = 437}, + [6801] = {.lex_state = 479, .external_lex_state = 114}, + [6802] = {.lex_state = 419}, + [6803] = {.lex_state = 477}, + [6804] = {.lex_state = 478}, + [6805] = {.lex_state = 477}, + [6806] = {.lex_state = 477}, + [6807] = {.lex_state = 443, .external_lex_state = 114}, + [6808] = {.lex_state = 478}, + [6809] = {.lex_state = 477}, + [6810] = {.lex_state = 479, .external_lex_state = 114}, + [6811] = {.lex_state = 477}, + [6812] = {.lex_state = 477}, + [6813] = {.lex_state = 477}, + [6814] = {.lex_state = 477}, + [6815] = {.lex_state = 477}, + [6816] = {.lex_state = 477}, + [6817] = {.lex_state = 478}, + [6818] = {.lex_state = 478}, + [6819] = {.lex_state = 477}, + [6820] = {.lex_state = 477}, + [6821] = {.lex_state = 477}, + [6822] = {.lex_state = 478}, + [6823] = {.lex_state = 477}, + [6824] = {.lex_state = 437}, + [6825] = {.lex_state = 479, .external_lex_state = 114}, + [6826] = {.lex_state = 477}, + [6827] = {.lex_state = 479, .external_lex_state = 114}, + [6828] = {.lex_state = 477}, + [6829] = {.lex_state = 437}, + [6830] = {.lex_state = 477}, + [6831] = {.lex_state = 479, .external_lex_state = 114}, + [6832] = {.lex_state = 479, .external_lex_state = 114}, + [6833] = {.lex_state = 437}, + [6834] = {.lex_state = 419}, + [6835] = {.lex_state = 477}, + [6836] = {.lex_state = 479, .external_lex_state = 114}, + [6837] = {.lex_state = 479, .external_lex_state = 114}, + [6838] = {.lex_state = 479, .external_lex_state = 114}, + [6839] = {.lex_state = 477}, + [6840] = {.lex_state = 435}, + [6841] = {.lex_state = 479, .external_lex_state = 114}, + [6842] = {.lex_state = 479, .external_lex_state = 114}, + [6843] = {.lex_state = 443, .external_lex_state = 114}, + [6844] = {.lex_state = 478}, + [6845] = {.lex_state = 477}, + [6846] = {.lex_state = 477}, + [6847] = {.lex_state = 478}, + [6848] = {.lex_state = 479, .external_lex_state = 114}, + [6849] = {.lex_state = 477}, + [6850] = {.lex_state = 435}, + [6851] = {.lex_state = 477}, + [6852] = {.lex_state = 435}, + [6853] = {.lex_state = 477}, + [6854] = {.lex_state = 443, .external_lex_state = 117}, + [6855] = {.lex_state = 437}, + [6856] = {.lex_state = 437}, + [6857] = {.lex_state = 479, .external_lex_state = 114}, + [6858] = {.lex_state = 435}, + [6859] = {.lex_state = 548}, + [6860] = {.lex_state = 147, .external_lex_state = 120}, + [6861] = {.lex_state = 147, .external_lex_state = 120}, + [6862] = {.lex_state = 548}, + [6863] = {.lex_state = 548}, + [6864] = {.lex_state = 147, .external_lex_state = 120}, + [6865] = {.lex_state = 147, .external_lex_state = 120}, + [6866] = {.lex_state = 548}, + [6867] = {.lex_state = 548}, + [6868] = {.lex_state = 147, .external_lex_state = 120}, + [6869] = {.lex_state = 147, .external_lex_state = 120}, + [6870] = {.lex_state = 548}, + [6871] = {.lex_state = 443, .external_lex_state = 114}, + [6872] = {.lex_state = 443, .external_lex_state = 114}, + [6873] = {.lex_state = 548}, + [6874] = {.lex_state = 548}, + [6875] = {.lex_state = 548}, + [6876] = {.lex_state = 438}, + [6877] = {.lex_state = 548}, + [6878] = {.lex_state = 548}, + [6879] = {.lex_state = 443, .external_lex_state = 114}, + [6880] = {.lex_state = 548}, + [6881] = {.lex_state = 548}, + [6882] = {.lex_state = 548}, + [6883] = {.lex_state = 443, .external_lex_state = 114}, + [6884] = {.lex_state = 548}, + [6885] = {.lex_state = 443, .external_lex_state = 114}, + [6886] = {.lex_state = 548}, [6887] = {.lex_state = 435, .external_lex_state = 126}, - [6888] = {.lex_state = 421, .external_lex_state = 129}, - [6889] = {.lex_state = 421, .external_lex_state = 129}, - [6890] = {.lex_state = 442, .external_lex_state = 116}, - [6891] = {.lex_state = 435}, - [6892] = {.lex_state = 489}, - [6893] = {.lex_state = 442, .external_lex_state = 116}, - [6894] = {.lex_state = 549}, - [6895] = {.lex_state = 440}, - [6896] = {.lex_state = 549}, - [6897] = {.lex_state = 549}, - [6898] = {.lex_state = 549}, - [6899] = {.lex_state = 549}, - [6900] = {.lex_state = 435}, - [6901] = {.lex_state = 549}, - [6902] = {.lex_state = 442, .external_lex_state = 116}, - [6903] = {.lex_state = 442, .external_lex_state = 116}, - [6904] = {.lex_state = 440}, - [6905] = {.lex_state = 435, .external_lex_state = 126}, - [6906] = {.lex_state = 435}, - [6907] = {.lex_state = 442, .external_lex_state = 116}, - [6908] = {.lex_state = 549}, - [6909] = {.lex_state = 435}, - [6910] = {.lex_state = 549}, - [6911] = {.lex_state = 442, .external_lex_state = 116}, - [6912] = {.lex_state = 435}, - [6913] = {.lex_state = 420}, - [6914] = {.lex_state = 442, .external_lex_state = 116}, - [6915] = {.lex_state = 549}, - [6916] = {.lex_state = 435}, - [6917] = {.lex_state = 435}, - [6918] = {.lex_state = 435}, - [6919] = {.lex_state = 549}, - [6920] = {.lex_state = 442, .external_lex_state = 116}, - [6921] = {.lex_state = 549}, - [6922] = {.lex_state = 549}, - [6923] = {.lex_state = 549}, - [6924] = {.lex_state = 549}, - [6925] = {.lex_state = 435}, - [6926] = {.lex_state = 549}, - [6927] = {.lex_state = 435}, - [6928] = {.lex_state = 549}, - [6929] = {.lex_state = 440}, - [6930] = {.lex_state = 549}, - [6931] = {.lex_state = 435, .external_lex_state = 126}, - [6932] = {.lex_state = 435}, - [6933] = {.lex_state = 440}, - [6934] = {.lex_state = 549}, - [6935] = {.lex_state = 442, .external_lex_state = 116}, - [6936] = {.lex_state = 549}, - [6937] = {.lex_state = 549}, - [6938] = {.lex_state = 442, .external_lex_state = 116}, - [6939] = {.lex_state = 435}, - [6940] = {.lex_state = 442, .external_lex_state = 116}, - [6941] = {.lex_state = 549}, - [6942] = {.lex_state = 442, .external_lex_state = 116}, - [6943] = {.lex_state = 549}, - [6944] = {.lex_state = 549}, - [6945] = {.lex_state = 549}, - [6946] = {.lex_state = 435}, - [6947] = {.lex_state = 549}, - [6948] = {.lex_state = 549}, - [6949] = {.lex_state = 440}, - [6950] = {.lex_state = 442, .external_lex_state = 116}, - [6951] = {.lex_state = 549, .external_lex_state = 130}, - [6952] = {.lex_state = 440}, + [6888] = {.lex_state = 548}, + [6889] = {.lex_state = 806}, + [6890] = {.lex_state = 548}, + [6891] = {.lex_state = 548}, + [6892] = {.lex_state = 548}, + [6893] = {.lex_state = 548}, + [6894] = {.lex_state = 438}, + [6895] = {.lex_state = 443, .external_lex_state = 114}, + [6896] = {.lex_state = 548}, + [6897] = {.lex_state = 435}, + [6898] = {.lex_state = 438}, + [6899] = {.lex_state = 548}, + [6900] = {.lex_state = 443, .external_lex_state = 114}, + [6901] = {.lex_state = 548}, + [6902] = {.lex_state = 443, .external_lex_state = 114}, + [6903] = {.lex_state = 443, .external_lex_state = 114}, + [6904] = {.lex_state = 806}, + [6905] = {.lex_state = 443, .external_lex_state = 114}, + [6906] = {.lex_state = 548}, + [6907] = {.lex_state = 443, .external_lex_state = 114}, + [6908] = {.lex_state = 548}, + [6909] = {.lex_state = 548}, + [6910] = {.lex_state = 548}, + [6911] = {.lex_state = 435}, + [6912] = {.lex_state = 548}, + [6913] = {.lex_state = 548}, + [6914] = {.lex_state = 443, .external_lex_state = 114}, + [6915] = {.lex_state = 548}, + [6916] = {.lex_state = 443, .external_lex_state = 114}, + [6917] = {.lex_state = 806}, + [6918] = {.lex_state = 548}, + [6919] = {.lex_state = 548}, + [6920] = {.lex_state = 548}, + [6921] = {.lex_state = 443, .external_lex_state = 114}, + [6922] = {.lex_state = 548}, + [6923] = {.lex_state = 435}, + [6924] = {.lex_state = 548}, + [6925] = {.lex_state = 548}, + [6926] = {.lex_state = 548}, + [6927] = {.lex_state = 806}, + [6928] = {.lex_state = 548}, + [6929] = {.lex_state = 548}, + [6930] = {.lex_state = 443, .external_lex_state = 114}, + [6931] = {.lex_state = 443, .external_lex_state = 114}, + [6932] = {.lex_state = 548}, + [6933] = {.lex_state = 435}, + [6934] = {.lex_state = 548}, + [6935] = {.lex_state = 548}, + [6936] = {.lex_state = 548}, + [6937] = {.lex_state = 806}, + [6938] = {.lex_state = 548}, + [6939] = {.lex_state = 548}, + [6940] = {.lex_state = 438}, + [6941] = {.lex_state = 548}, + [6942] = {.lex_state = 548}, + [6943] = {.lex_state = 435}, + [6944] = {.lex_state = 548}, + [6945] = {.lex_state = 438}, + [6946] = {.lex_state = 443, .external_lex_state = 114}, + [6947] = {.lex_state = 806}, + [6948] = {.lex_state = 548}, + [6949] = {.lex_state = 548}, + [6950] = {.lex_state = 548}, + [6951] = {.lex_state = 548}, + [6952] = {.lex_state = 548}, [6953] = {.lex_state = 435}, - [6954] = {.lex_state = 442, .external_lex_state = 116}, - [6955] = {.lex_state = 146, .external_lex_state = 120}, - [6956] = {.lex_state = 442, .external_lex_state = 116}, - [6957] = {.lex_state = 549}, - [6958] = {.lex_state = 146, .external_lex_state = 120}, - [6959] = {.lex_state = 442, .external_lex_state = 116}, - [6960] = {.lex_state = 435}, - [6961] = {.lex_state = 442, .external_lex_state = 116}, - [6962] = {.lex_state = 440}, - [6963] = {.lex_state = 442, .external_lex_state = 116}, - [6964] = {.lex_state = 442, .external_lex_state = 116}, - [6965] = {.lex_state = 549}, - [6966] = {.lex_state = 442, .external_lex_state = 116}, - [6967] = {.lex_state = 435}, - [6968] = {.lex_state = 549}, - [6969] = {.lex_state = 549}, - [6970] = {.lex_state = 549}, - [6971] = {.lex_state = 435, .external_lex_state = 126}, - [6972] = {.lex_state = 549}, - [6973] = {.lex_state = 440}, - [6974] = {.lex_state = 435}, - [6975] = {.lex_state = 442, .external_lex_state = 116}, - [6976] = {.lex_state = 549}, - [6977] = {.lex_state = 549}, - [6978] = {.lex_state = 435, .external_lex_state = 126}, - [6979] = {.lex_state = 549}, - [6980] = {.lex_state = 146, .external_lex_state = 120}, - [6981] = {.lex_state = 435}, - [6982] = {.lex_state = 146, .external_lex_state = 120}, - [6983] = {.lex_state = 435, .external_lex_state = 126}, - [6984] = {.lex_state = 440}, - [6985] = {.lex_state = 410}, - [6986] = {.lex_state = 442, .external_lex_state = 116}, - [6987] = {.lex_state = 549}, - [6988] = {.lex_state = 435}, - [6989] = {.lex_state = 549}, - [6990] = {.lex_state = 549}, - [6991] = {.lex_state = 549}, - [6992] = {.lex_state = 410}, - [6993] = {.lex_state = 549}, - [6994] = {.lex_state = 146, .external_lex_state = 120}, - [6995] = {.lex_state = 435}, - [6996] = {.lex_state = 549}, - [6997] = {.lex_state = 440}, - [6998] = {.lex_state = 146, .external_lex_state = 120}, - [6999] = {.lex_state = 442, .external_lex_state = 116}, - [7000] = {.lex_state = 549}, - [7001] = {.lex_state = 442, .external_lex_state = 116}, - [7002] = {.lex_state = 435}, - [7003] = {.lex_state = 549}, - [7004] = {.lex_state = 146, .external_lex_state = 120}, - [7005] = {.lex_state = 549}, - [7006] = {.lex_state = 442, .external_lex_state = 116}, - [7007] = {.lex_state = 549}, - [7008] = {.lex_state = 442, .external_lex_state = 116}, - [7009] = {.lex_state = 435}, - [7010] = {.lex_state = 549}, - [7011] = {.lex_state = 442, .external_lex_state = 116}, - [7012] = {.lex_state = 549}, - [7013] = {.lex_state = 549}, - [7014] = {.lex_state = 549}, - [7015] = {.lex_state = 442, .external_lex_state = 116}, - [7016] = {.lex_state = 435}, - [7017] = {.lex_state = 549}, - [7018] = {.lex_state = 440}, - [7019] = {.lex_state = 435}, - [7020] = {.lex_state = 549}, - [7021] = {.lex_state = 549}, - [7022] = {.lex_state = 489}, + [6954] = {.lex_state = 438}, + [6955] = {.lex_state = 548}, + [6956] = {.lex_state = 548}, + [6957] = {.lex_state = 806}, + [6958] = {.lex_state = 548}, + [6959] = {.lex_state = 443, .external_lex_state = 114}, + [6960] = {.lex_state = 548}, + [6961] = {.lex_state = 438}, + [6962] = {.lex_state = 548}, + [6963] = {.lex_state = 435}, + [6964] = {.lex_state = 548}, + [6965] = {.lex_state = 548}, + [6966] = {.lex_state = 548}, + [6967] = {.lex_state = 806}, + [6968] = {.lex_state = 443, .external_lex_state = 114}, + [6969] = {.lex_state = 548}, + [6970] = {.lex_state = 421, .external_lex_state = 128}, + [6971] = {.lex_state = 548}, + [6972] = {.lex_state = 548}, + [6973] = {.lex_state = 435}, + [6974] = {.lex_state = 548}, + [6975] = {.lex_state = 548}, + [6976] = {.lex_state = 548}, + [6977] = {.lex_state = 806}, + [6978] = {.lex_state = 443, .external_lex_state = 114}, + [6979] = {.lex_state = 443, .external_lex_state = 114}, + [6980] = {.lex_state = 548}, + [6981] = {.lex_state = 438}, + [6982] = {.lex_state = 548}, + [6983] = {.lex_state = 435}, + [6984] = {.lex_state = 548}, + [6985] = {.lex_state = 548}, + [6986] = {.lex_state = 443, .external_lex_state = 114}, + [6987] = {.lex_state = 806}, + [6988] = {.lex_state = 478}, + [6989] = {.lex_state = 548}, + [6990] = {.lex_state = 548}, + [6991] = {.lex_state = 548}, + [6992] = {.lex_state = 443, .external_lex_state = 114}, + [6993] = {.lex_state = 435}, + [6994] = {.lex_state = 548}, + [6995] = {.lex_state = 443, .external_lex_state = 114}, + [6996] = {.lex_state = 548}, + [6997] = {.lex_state = 806}, + [6998] = {.lex_state = 548}, + [6999] = {.lex_state = 548}, + [7000] = {.lex_state = 548}, + [7001] = {.lex_state = 435, .external_lex_state = 126}, + [7002] = {.lex_state = 421, .external_lex_state = 128}, + [7003] = {.lex_state = 435}, + [7004] = {.lex_state = 548}, + [7005] = {.lex_state = 443, .external_lex_state = 114}, + [7006] = {.lex_state = 438}, + [7007] = {.lex_state = 806}, + [7008] = {.lex_state = 443, .external_lex_state = 114}, + [7009] = {.lex_state = 548}, + [7010] = {.lex_state = 548}, + [7011] = {.lex_state = 443, .external_lex_state = 114}, + [7012] = {.lex_state = 548}, + [7013] = {.lex_state = 435}, + [7014] = {.lex_state = 548}, + [7015] = {.lex_state = 438}, + [7016] = {.lex_state = 443, .external_lex_state = 114}, + [7017] = {.lex_state = 806}, + [7018] = {.lex_state = 548}, + [7019] = {.lex_state = 548}, + [7020] = {.lex_state = 548}, + [7021] = {.lex_state = 443, .external_lex_state = 114}, + [7022] = {.lex_state = 435, .external_lex_state = 126}, [7023] = {.lex_state = 435}, - [7024] = {.lex_state = 442, .external_lex_state = 116}, - [7025] = {.lex_state = 549}, - [7026] = {.lex_state = 549}, - [7027] = {.lex_state = 549}, - [7028] = {.lex_state = 549}, - [7029] = {.lex_state = 442, .external_lex_state = 116}, - [7030] = {.lex_state = 435}, - [7031] = {.lex_state = 549}, - [7032] = {.lex_state = 549}, - [7033] = {.lex_state = 549}, - [7034] = {.lex_state = 549}, - [7035] = {.lex_state = 549}, - [7036] = {.lex_state = 549}, - [7037] = {.lex_state = 435}, - [7038] = {.lex_state = 549}, - [7039] = {.lex_state = 440}, - [7040] = {.lex_state = 549}, - [7041] = {.lex_state = 440}, - [7042] = {.lex_state = 442, .external_lex_state = 116}, - [7043] = {.lex_state = 146, .external_lex_state = 120}, - [7044] = {.lex_state = 435}, - [7045] = {.lex_state = 549}, - [7046] = {.lex_state = 440}, - [7047] = {.lex_state = 440}, - [7048] = {.lex_state = 549}, - [7049] = {.lex_state = 442, .external_lex_state = 116}, - [7050] = {.lex_state = 442, .external_lex_state = 116}, - [7051] = {.lex_state = 435}, - [7052] = {.lex_state = 549}, - [7053] = {.lex_state = 146, .external_lex_state = 120}, - [7054] = {.lex_state = 549}, - [7055] = {.lex_state = 549}, - [7056] = {.lex_state = 549}, - [7057] = {.lex_state = 442, .external_lex_state = 116}, - [7058] = {.lex_state = 435}, - [7059] = {.lex_state = 146, .external_lex_state = 120}, - [7060] = {.lex_state = 442, .external_lex_state = 116}, - [7061] = {.lex_state = 440}, - [7062] = {.lex_state = 549, .external_lex_state = 128}, + [7024] = {.lex_state = 443, .external_lex_state = 114}, + [7025] = {.lex_state = 548}, + [7026] = {.lex_state = 548}, + [7027] = {.lex_state = 806}, + [7028] = {.lex_state = 548}, + [7029] = {.lex_state = 548}, + [7030] = {.lex_state = 548}, + [7031] = {.lex_state = 443, .external_lex_state = 114}, + [7032] = {.lex_state = 548}, + [7033] = {.lex_state = 435}, + [7034] = {.lex_state = 548}, + [7035] = {.lex_state = 548}, + [7036] = {.lex_state = 548}, + [7037] = {.lex_state = 806}, + [7038] = {.lex_state = 548}, + [7039] = {.lex_state = 548, .external_lex_state = 129}, + [7040] = {.lex_state = 548}, + [7041] = {.lex_state = 438}, + [7042] = {.lex_state = 443, .external_lex_state = 114}, + [7043] = {.lex_state = 435}, + [7044] = {.lex_state = 548}, + [7045] = {.lex_state = 443, .external_lex_state = 114}, + [7046] = {.lex_state = 548}, + [7047] = {.lex_state = 806}, + [7048] = {.lex_state = 548}, + [7049] = {.lex_state = 548}, + [7050] = {.lex_state = 147, .external_lex_state = 120}, + [7051] = {.lex_state = 147, .external_lex_state = 120}, + [7052] = {.lex_state = 548}, + [7053] = {.lex_state = 435}, + [7054] = {.lex_state = 435}, + [7055] = {.lex_state = 435}, + [7056] = {.lex_state = 438}, + [7057] = {.lex_state = 806}, + [7058] = {.lex_state = 548}, + [7059] = {.lex_state = 443, .external_lex_state = 114}, + [7060] = {.lex_state = 548}, + [7061] = {.lex_state = 409}, + [7062] = {.lex_state = 548}, [7063] = {.lex_state = 435}, - [7064] = {.lex_state = 549}, - [7065] = {.lex_state = 435}, - [7066] = {.lex_state = 489}, - [7067] = {.lex_state = 549}, - [7068] = {.lex_state = 549, .external_lex_state = 130}, - [7069] = {.lex_state = 442, .external_lex_state = 116}, - [7070] = {.lex_state = 549}, - [7071] = {.lex_state = 442, .external_lex_state = 116}, - [7072] = {.lex_state = 435}, - [7073] = {.lex_state = 549}, - [7074] = {.lex_state = 442, .external_lex_state = 116}, - [7075] = {.lex_state = 549}, - [7076] = {.lex_state = 437}, - [7077] = {.lex_state = 549}, - [7078] = {.lex_state = 440}, - [7079] = {.lex_state = 435}, - [7080] = {.lex_state = 549}, - [7081] = {.lex_state = 549}, - [7082] = {.lex_state = 549, .external_lex_state = 128}, - [7083] = {.lex_state = 549}, - [7084] = {.lex_state = 440}, - [7085] = {.lex_state = 549}, - [7086] = {.lex_state = 435}, - [7087] = {.lex_state = 549}, - [7088] = {.lex_state = 440}, - [7089] = {.lex_state = 549}, - [7090] = {.lex_state = 440}, - [7091] = {.lex_state = 442, .external_lex_state = 116}, - [7092] = {.lex_state = 442, .external_lex_state = 116}, - [7093] = {.lex_state = 435}, - [7094] = {.lex_state = 410}, - [7095] = {.lex_state = 442, .external_lex_state = 116}, - [7096] = {.lex_state = 421, .external_lex_state = 129}, - [7097] = {.lex_state = 442, .external_lex_state = 116}, - [7098] = {.lex_state = 549}, - [7099] = {.lex_state = 549}, - [7100] = {.lex_state = 435}, - [7101] = {.lex_state = 549}, - [7102] = {.lex_state = 549}, - [7103] = {.lex_state = 549}, - [7104] = {.lex_state = 421, .external_lex_state = 129}, - [7105] = {.lex_state = 549}, - [7106] = {.lex_state = 410}, - [7107] = {.lex_state = 435}, - [7108] = {.lex_state = 440}, - [7109] = {.lex_state = 442, .external_lex_state = 116}, - [7110] = {.lex_state = 440}, - [7111] = {.lex_state = 440}, - [7112] = {.lex_state = 410}, - [7113] = {.lex_state = 442, .external_lex_state = 116}, - [7114] = {.lex_state = 435}, - [7115] = {.lex_state = 549}, - [7116] = {.lex_state = 442, .external_lex_state = 116}, - [7117] = {.lex_state = 549}, - [7118] = {.lex_state = 442, .external_lex_state = 116}, - [7119] = {.lex_state = 442, .external_lex_state = 116}, - [7120] = {.lex_state = 549}, + [7064] = {.lex_state = 548}, + [7065] = {.lex_state = 421, .external_lex_state = 128}, + [7066] = {.lex_state = 548}, + [7067] = {.lex_state = 806}, + [7068] = {.lex_state = 548}, + [7069] = {.lex_state = 421, .external_lex_state = 128}, + [7070] = {.lex_state = 438}, + [7071] = {.lex_state = 438}, + [7072] = {.lex_state = 548}, + [7073] = {.lex_state = 435}, + [7074] = {.lex_state = 548}, + [7075] = {.lex_state = 548}, + [7076] = {.lex_state = 806}, + [7077] = {.lex_state = 443, .external_lex_state = 114}, + [7078] = {.lex_state = 438}, + [7079] = {.lex_state = 548}, + [7080] = {.lex_state = 443}, + [7081] = {.lex_state = 435}, + [7082] = {.lex_state = 548, .external_lex_state = 129}, + [7083] = {.lex_state = 548}, + [7084] = {.lex_state = 806}, + [7085] = {.lex_state = 548}, + [7086] = {.lex_state = 548, .external_lex_state = 129}, + [7087] = {.lex_state = 443, .external_lex_state = 114}, + [7088] = {.lex_state = 548}, + [7089] = {.lex_state = 435}, + [7090] = {.lex_state = 548}, + [7091] = {.lex_state = 443, .external_lex_state = 114}, + [7092] = {.lex_state = 806}, + [7093] = {.lex_state = 548}, + [7094] = {.lex_state = 443, .external_lex_state = 114}, + [7095] = {.lex_state = 548}, + [7096] = {.lex_state = 548}, + [7097] = {.lex_state = 435}, + [7098] = {.lex_state = 548}, + [7099] = {.lex_state = 438}, + [7100] = {.lex_state = 806}, + [7101] = {.lex_state = 478}, + [7102] = {.lex_state = 548}, + [7103] = {.lex_state = 438}, + [7104] = {.lex_state = 548, .external_lex_state = 129}, + [7105] = {.lex_state = 435}, + [7106] = {.lex_state = 548}, + [7107] = {.lex_state = 443, .external_lex_state = 114}, + [7108] = {.lex_state = 806}, + [7109] = {.lex_state = 806}, + [7110] = {.lex_state = 548, .external_lex_state = 129}, + [7111] = {.lex_state = 147, .external_lex_state = 120}, + [7112] = {.lex_state = 548}, + [7113] = {.lex_state = 435}, + [7114] = {.lex_state = 443, .external_lex_state = 114}, + [7115] = {.lex_state = 548}, + [7116] = {.lex_state = 806}, + [7117] = {.lex_state = 443, .external_lex_state = 114}, + [7118] = {.lex_state = 438}, + [7119] = {.lex_state = 548, .external_lex_state = 129}, + [7120] = {.lex_state = 435, .external_lex_state = 126}, [7121] = {.lex_state = 435}, - [7122] = {.lex_state = 549}, - [7123] = {.lex_state = 549}, - [7124] = {.lex_state = 549}, - [7125] = {.lex_state = 549}, - [7126] = {.lex_state = 549}, - [7127] = {.lex_state = 549}, - [7128] = {.lex_state = 435}, - [7129] = {.lex_state = 440}, - [7130] = {.lex_state = 549}, - [7131] = {.lex_state = 549}, - [7132] = {.lex_state = 549}, - [7133] = {.lex_state = 440}, - [7134] = {.lex_state = 549}, - [7135] = {.lex_state = 435}, - [7136] = {.lex_state = 442, .external_lex_state = 116}, - [7137] = {.lex_state = 549}, - [7138] = {.lex_state = 549}, - [7139] = {.lex_state = 549}, - [7140] = {.lex_state = 442, .external_lex_state = 116}, - [7141] = {.lex_state = 549}, - [7142] = {.lex_state = 435}, - [7143] = {.lex_state = 549}, - [7144] = {.lex_state = 549}, - [7145] = {.lex_state = 549}, - [7146] = {.lex_state = 549}, - [7147] = {.lex_state = 549}, - [7148] = {.lex_state = 549}, - [7149] = {.lex_state = 435}, - [7150] = {.lex_state = 440}, - [7151] = {.lex_state = 549}, - [7152] = {.lex_state = 489}, - [7153] = {.lex_state = 549}, - [7154] = {.lex_state = 442, .external_lex_state = 116}, - [7155] = {.lex_state = 442, .external_lex_state = 116}, - [7156] = {.lex_state = 435}, - [7157] = {.lex_state = 442, .external_lex_state = 116}, - [7158] = {.lex_state = 549}, - [7159] = {.lex_state = 549}, - [7160] = {.lex_state = 442, .external_lex_state = 116}, - [7161] = {.lex_state = 549}, - [7162] = {.lex_state = 549}, - [7163] = {.lex_state = 435}, - [7164] = {.lex_state = 549}, - [7165] = {.lex_state = 549}, - [7166] = {.lex_state = 549}, - [7167] = {.lex_state = 435}, - [7168] = {.lex_state = 549}, - [7169] = {.lex_state = 440}, - [7170] = {.lex_state = 435}, - [7171] = {.lex_state = 549}, - [7172] = {.lex_state = 549}, - [7173] = {.lex_state = 440}, - [7174] = {.lex_state = 440}, - [7175] = {.lex_state = 440}, - [7176] = {.lex_state = 442, .external_lex_state = 116}, + [7122] = {.lex_state = 435, .external_lex_state = 126}, + [7123] = {.lex_state = 548}, + [7124] = {.lex_state = 806}, + [7125] = {.lex_state = 548}, + [7126] = {.lex_state = 478}, + [7127] = {.lex_state = 548}, + [7128] = {.lex_state = 443, .external_lex_state = 114}, + [7129] = {.lex_state = 435}, + [7130] = {.lex_state = 548}, + [7131] = {.lex_state = 443, .external_lex_state = 114}, + [7132] = {.lex_state = 806}, + [7133] = {.lex_state = 548}, + [7134] = {.lex_state = 443, .external_lex_state = 114}, + [7135] = {.lex_state = 548}, + [7136] = {.lex_state = 548}, + [7137] = {.lex_state = 435}, + [7138] = {.lex_state = 548}, + [7139] = {.lex_state = 435}, + [7140] = {.lex_state = 806}, + [7141] = {.lex_state = 478}, + [7142] = {.lex_state = 435, .external_lex_state = 126}, + [7143] = {.lex_state = 548}, + [7144] = {.lex_state = 421}, + [7145] = {.lex_state = 435}, + [7146] = {.lex_state = 443, .external_lex_state = 114}, + [7147] = {.lex_state = 443, .external_lex_state = 114}, + [7148] = {.lex_state = 806}, + [7149] = {.lex_state = 443, .external_lex_state = 114}, + [7150] = {.lex_state = 443, .external_lex_state = 114}, + [7151] = {.lex_state = 443, .external_lex_state = 114}, + [7152] = {.lex_state = 548}, + [7153] = {.lex_state = 435}, + [7154] = {.lex_state = 478}, + [7155] = {.lex_state = 421, .external_lex_state = 128}, + [7156] = {.lex_state = 806}, + [7157] = {.lex_state = 548}, + [7158] = {.lex_state = 435}, + [7159] = {.lex_state = 435}, + [7160] = {.lex_state = 548}, + [7161] = {.lex_state = 435}, + [7162] = {.lex_state = 548}, + [7163] = {.lex_state = 435, .external_lex_state = 126}, + [7164] = {.lex_state = 806}, + [7165] = {.lex_state = 548}, + [7166] = {.lex_state = 548}, + [7167] = {.lex_state = 548}, + [7168] = {.lex_state = 438}, + [7169] = {.lex_state = 435}, + [7170] = {.lex_state = 548}, + [7171] = {.lex_state = 443, .external_lex_state = 114}, + [7172] = {.lex_state = 806}, + [7173] = {.lex_state = 435, .external_lex_state = 126}, + [7174] = {.lex_state = 443, .external_lex_state = 114}, + [7175] = {.lex_state = 443, .external_lex_state = 114}, + [7176] = {.lex_state = 443, .external_lex_state = 114}, [7177] = {.lex_state = 435}, - [7178] = {.lex_state = 549}, - [7179] = {.lex_state = 549}, - [7180] = {.lex_state = 549}, - [7181] = {.lex_state = 442, .external_lex_state = 116}, - [7182] = {.lex_state = 549}, - [7183] = {.lex_state = 442, .external_lex_state = 116}, - [7184] = {.lex_state = 435}, - [7185] = {.lex_state = 549}, - [7186] = {.lex_state = 549}, - [7187] = {.lex_state = 549}, - [7188] = {.lex_state = 549}, - [7189] = {.lex_state = 489}, - [7190] = {.lex_state = 146, .external_lex_state = 120}, - [7191] = {.lex_state = 435}, - [7192] = {.lex_state = 440}, - [7193] = {.lex_state = 146, .external_lex_state = 120}, - [7194] = {.lex_state = 442, .external_lex_state = 116}, - [7195] = {.lex_state = 442, .external_lex_state = 116}, - [7196] = {.lex_state = 442, .external_lex_state = 116}, - [7197] = {.lex_state = 442, .external_lex_state = 116}, - [7198] = {.lex_state = 435}, - [7199] = {.lex_state = 442, .external_lex_state = 116}, - [7200] = {.lex_state = 549}, - [7201] = {.lex_state = 442, .external_lex_state = 116}, - [7202] = {.lex_state = 549}, - [7203] = {.lex_state = 435, .external_lex_state = 126}, - [7204] = {.lex_state = 146, .external_lex_state = 120}, - [7205] = {.lex_state = 435}, - [7206] = {.lex_state = 549}, - [7207] = {.lex_state = 549}, - [7208] = {.lex_state = 146, .external_lex_state = 120}, - [7209] = {.lex_state = 549}, - [7210] = {.lex_state = 549}, - [7211] = {.lex_state = 442, .external_lex_state = 116}, - [7212] = {.lex_state = 435}, - [7213] = {.lex_state = 549}, - [7214] = {.lex_state = 435, .external_lex_state = 126}, - [7215] = {.lex_state = 146, .external_lex_state = 120}, - [7216] = {.lex_state = 440}, - [7217] = {.lex_state = 442, .external_lex_state = 116}, - [7218] = {.lex_state = 549}, - [7219] = {.lex_state = 146, .external_lex_state = 120}, - [7220] = {.lex_state = 549}, - [7221] = {.lex_state = 549}, - [7222] = {.lex_state = 442, .external_lex_state = 116}, - [7223] = {.lex_state = 442, .external_lex_state = 116}, - [7224] = {.lex_state = 442, .external_lex_state = 116}, - [7225] = {.lex_state = 549}, - [7226] = {.lex_state = 435, .external_lex_state = 126}, - [7227] = {.lex_state = 549, .external_lex_state = 128}, - [7228] = {.lex_state = 442, .external_lex_state = 116}, - [7229] = {.lex_state = 549}, - [7230] = {.lex_state = 442, .external_lex_state = 116}, - [7231] = {.lex_state = 549}, - [7232] = {.lex_state = 442, .external_lex_state = 116}, - [7233] = {.lex_state = 549}, - [7234] = {.lex_state = 549}, - [7235] = {.lex_state = 442, .external_lex_state = 116}, - [7236] = {.lex_state = 549}, - [7237] = {.lex_state = 421, .external_lex_state = 129}, - [7238] = {.lex_state = 549}, - [7239] = {.lex_state = 549}, - [7240] = {.lex_state = 442, .external_lex_state = 116}, - [7241] = {.lex_state = 549}, - [7242] = {.lex_state = 549}, - [7243] = {.lex_state = 549}, - [7244] = {.lex_state = 549}, - [7245] = {.lex_state = 549}, - [7246] = {.lex_state = 549}, - [7247] = {.lex_state = 440}, - [7248] = {.lex_state = 549}, - [7249] = {.lex_state = 549}, - [7250] = {.lex_state = 421, .external_lex_state = 129}, - [7251] = {.lex_state = 442, .external_lex_state = 116}, - [7252] = {.lex_state = 549}, - [7253] = {.lex_state = 549}, - [7254] = {.lex_state = 549}, - [7255] = {.lex_state = 549}, - [7256] = {.lex_state = 440}, - [7257] = {.lex_state = 549}, - [7258] = {.lex_state = 549}, - [7259] = {.lex_state = 549}, - [7260] = {.lex_state = 440}, - [7261] = {.lex_state = 442, .external_lex_state = 116}, - [7262] = {.lex_state = 442, .external_lex_state = 116}, - [7263] = {.lex_state = 549}, - [7264] = {.lex_state = 437}, - [7265] = {.lex_state = 549}, - [7266] = {.lex_state = 549}, - [7267] = {.lex_state = 489}, - [7268] = {.lex_state = 435}, - [7269] = {.lex_state = 549}, - [7270] = {.lex_state = 549}, - [7271] = {.lex_state = 442, .external_lex_state = 116}, - [7272] = {.lex_state = 549}, - [7273] = {.lex_state = 549, .external_lex_state = 130}, - [7274] = {.lex_state = 549}, - [7275] = {.lex_state = 549}, - [7276] = {.lex_state = 549}, - [7277] = {.lex_state = 549}, - [7278] = {.lex_state = 442, .external_lex_state = 116}, - [7279] = {.lex_state = 549}, - [7280] = {.lex_state = 549, .external_lex_state = 128}, - [7281] = {.lex_state = 549}, - [7282] = {.lex_state = 549}, - [7283] = {.lex_state = 440}, - [7284] = {.lex_state = 435, .external_lex_state = 126}, - [7285] = {.lex_state = 489}, - [7286] = {.lex_state = 440}, - [7287] = {.lex_state = 442, .external_lex_state = 116}, - [7288] = {.lex_state = 442, .external_lex_state = 116}, - [7289] = {.lex_state = 549}, - [7290] = {.lex_state = 435, .external_lex_state = 126}, - [7291] = {.lex_state = 549, .external_lex_state = 130}, - [7292] = {.lex_state = 549}, - [7293] = {.lex_state = 549}, - [7294] = {.lex_state = 442, .external_lex_state = 116}, - [7295] = {.lex_state = 549}, - [7296] = {.lex_state = 435, .external_lex_state = 126}, - [7297] = {.lex_state = 489}, - [7298] = {.lex_state = 549}, - [7299] = {.lex_state = 442, .external_lex_state = 116}, - [7300] = {.lex_state = 442, .external_lex_state = 116}, - [7301] = {.lex_state = 549}, - [7302] = {.lex_state = 549}, - [7303] = {.lex_state = 549}, - [7304] = {.lex_state = 549}, - [7305] = {.lex_state = 442, .external_lex_state = 116}, - [7306] = {.lex_state = 549}, - [7307] = {.lex_state = 549}, - [7308] = {.lex_state = 549}, - [7309] = {.lex_state = 146, .external_lex_state = 120}, - [7310] = {.lex_state = 442, .external_lex_state = 116}, - [7311] = {.lex_state = 549}, - [7312] = {.lex_state = 442, .external_lex_state = 116}, - [7313] = {.lex_state = 549}, - [7314] = {.lex_state = 549}, - [7315] = {.lex_state = 440}, - [7316] = {.lex_state = 435, .external_lex_state = 126}, - [7317] = {.lex_state = 435}, - [7318] = {.lex_state = 549}, - [7319] = {.lex_state = 442, .external_lex_state = 116}, - [7320] = {.lex_state = 549}, - [7321] = {.lex_state = 442, .external_lex_state = 116}, - [7322] = {.lex_state = 549}, - [7323] = {.lex_state = 489}, - [7324] = {.lex_state = 549}, - [7325] = {.lex_state = 549}, - [7326] = {.lex_state = 549}, - [7327] = {.lex_state = 549}, - [7328] = {.lex_state = 549}, - [7329] = {.lex_state = 549}, - [7330] = {.lex_state = 442, .external_lex_state = 116}, - [7331] = {.lex_state = 442, .external_lex_state = 116}, - [7332] = {.lex_state = 549}, - [7333] = {.lex_state = 549}, - [7334] = {.lex_state = 549}, - [7335] = {.lex_state = 549}, - [7336] = {.lex_state = 549}, - [7337] = {.lex_state = 420}, - [7338] = {.lex_state = 440}, - [7339] = {.lex_state = 549}, - [7340] = {.lex_state = 549}, - [7341] = {.lex_state = 549}, - [7342] = {.lex_state = 489}, - [7343] = {.lex_state = 442, .external_lex_state = 116}, - [7344] = {.lex_state = 549}, - [7345] = {.lex_state = 435, .external_lex_state = 126}, - [7346] = {.lex_state = 549}, - [7347] = {.lex_state = 549}, - [7348] = {.lex_state = 440}, - [7349] = {.lex_state = 549}, - [7350] = {.lex_state = 440}, - [7351] = {.lex_state = 440}, - [7352] = {.lex_state = 435, .external_lex_state = 126}, - [7353] = {.lex_state = 442, .external_lex_state = 116}, - [7354] = {.lex_state = 442, .external_lex_state = 116}, - [7355] = {.lex_state = 549}, - [7356] = {.lex_state = 549}, - [7357] = {.lex_state = 549}, - [7358] = {.lex_state = 549}, - [7359] = {.lex_state = 549, .external_lex_state = 128}, - [7360] = {.lex_state = 549}, - [7361] = {.lex_state = 549, .external_lex_state = 128}, - [7362] = {.lex_state = 549}, - [7363] = {.lex_state = 549}, - [7364] = {.lex_state = 549}, - [7365] = {.lex_state = 442, .external_lex_state = 116}, - [7366] = {.lex_state = 549}, - [7367] = {.lex_state = 549}, - [7368] = {.lex_state = 146, .external_lex_state = 120}, - [7369] = {.lex_state = 442, .external_lex_state = 116}, - [7370] = {.lex_state = 442, .external_lex_state = 116}, - [7371] = {.lex_state = 549}, - [7372] = {.lex_state = 489}, - [7373] = {.lex_state = 435, .external_lex_state = 126}, - [7374] = {.lex_state = 549}, - [7375] = {.lex_state = 549}, - [7376] = {.lex_state = 549}, - [7377] = {.lex_state = 549, .external_lex_state = 128}, - [7378] = {.lex_state = 549}, - [7379] = {.lex_state = 442, .external_lex_state = 116}, - [7380] = {.lex_state = 440}, - [7381] = {.lex_state = 435}, - [7382] = {.lex_state = 549}, - [7383] = {.lex_state = 489}, - [7384] = {.lex_state = 549}, - [7385] = {.lex_state = 435, .external_lex_state = 126}, - [7386] = {.lex_state = 421, .external_lex_state = 129}, - [7387] = {.lex_state = 549}, - [7388] = {.lex_state = 437}, - [7389] = {.lex_state = 435, .external_lex_state = 126}, - [7390] = {.lex_state = 442, .external_lex_state = 116}, - [7391] = {.lex_state = 489}, - [7392] = {.lex_state = 435}, - [7393] = {.lex_state = 410}, - [7394] = {.lex_state = 442, .external_lex_state = 116}, - [7395] = {.lex_state = 549}, - [7396] = {.lex_state = 549, .external_lex_state = 130}, - [7397] = {.lex_state = 549}, - [7398] = {.lex_state = 435, .external_lex_state = 126}, - [7399] = {.lex_state = 442, .external_lex_state = 116}, - [7400] = {.lex_state = 549, .external_lex_state = 130}, - [7401] = {.lex_state = 549}, - [7402] = {.lex_state = 549}, - [7403] = {.lex_state = 435}, - [7404] = {.lex_state = 549}, - [7405] = {.lex_state = 420}, - [7406] = {.lex_state = 549}, - [7407] = {.lex_state = 549}, - [7408] = {.lex_state = 435}, + [7178] = {.lex_state = 548}, + [7179] = {.lex_state = 548}, + [7180] = {.lex_state = 806}, + [7181] = {.lex_state = 147, .external_lex_state = 120}, + [7182] = {.lex_state = 147, .external_lex_state = 120}, + [7183] = {.lex_state = 435, .external_lex_state = 126}, + [7184] = {.lex_state = 435, .external_lex_state = 126}, + [7185] = {.lex_state = 435}, + [7186] = {.lex_state = 548}, + [7187] = {.lex_state = 438}, + [7188] = {.lex_state = 806}, + [7189] = {.lex_state = 548}, + [7190] = {.lex_state = 147, .external_lex_state = 120}, + [7191] = {.lex_state = 147, .external_lex_state = 120}, + [7192] = {.lex_state = 548}, + [7193] = {.lex_state = 435}, + [7194] = {.lex_state = 443, .external_lex_state = 114}, + [7195] = {.lex_state = 548}, + [7196] = {.lex_state = 806}, + [7197] = {.lex_state = 478}, + [7198] = {.lex_state = 548}, + [7199] = {.lex_state = 548}, + [7200] = {.lex_state = 548}, + [7201] = {.lex_state = 435}, + [7202] = {.lex_state = 443, .external_lex_state = 114}, + [7203] = {.lex_state = 548}, + [7204] = {.lex_state = 806}, + [7205] = {.lex_state = 438}, + [7206] = {.lex_state = 147, .external_lex_state = 120}, + [7207] = {.lex_state = 435}, + [7208] = {.lex_state = 548}, + [7209] = {.lex_state = 435}, + [7210] = {.lex_state = 435}, + [7211] = {.lex_state = 147, .external_lex_state = 120}, + [7212] = {.lex_state = 806}, + [7213] = {.lex_state = 443, .external_lex_state = 114}, + [7214] = {.lex_state = 548}, + [7215] = {.lex_state = 435, .external_lex_state = 126}, + [7216] = {.lex_state = 443, .external_lex_state = 114}, + [7217] = {.lex_state = 435}, + [7218] = {.lex_state = 548}, + [7219] = {.lex_state = 435, .external_lex_state = 126}, + [7220] = {.lex_state = 806}, + [7221] = {.lex_state = 548}, + [7222] = {.lex_state = 421, .external_lex_state = 128}, + [7223] = {.lex_state = 438}, + [7224] = {.lex_state = 443, .external_lex_state = 114}, + [7225] = {.lex_state = 435}, + [7226] = {.lex_state = 443, .external_lex_state = 114}, + [7227] = {.lex_state = 438}, + [7228] = {.lex_state = 806}, + [7229] = {.lex_state = 548, .external_lex_state = 129}, + [7230] = {.lex_state = 548}, + [7231] = {.lex_state = 443, .external_lex_state = 114}, + [7232] = {.lex_state = 548}, + [7233] = {.lex_state = 435}, + [7234] = {.lex_state = 548, .external_lex_state = 129}, + [7235] = {.lex_state = 548}, + [7236] = {.lex_state = 806}, + [7237] = {.lex_state = 548}, + [7238] = {.lex_state = 548}, + [7239] = {.lex_state = 443, .external_lex_state = 114}, + [7240] = {.lex_state = 548}, + [7241] = {.lex_state = 435}, + [7242] = {.lex_state = 548}, + [7243] = {.lex_state = 443, .external_lex_state = 114}, + [7244] = {.lex_state = 806}, + [7245] = {.lex_state = 548}, + [7246] = {.lex_state = 438}, + [7247] = {.lex_state = 438}, + [7248] = {.lex_state = 548}, + [7249] = {.lex_state = 435}, + [7250] = {.lex_state = 548}, + [7251] = {.lex_state = 435, .external_lex_state = 126}, + [7252] = {.lex_state = 806}, + [7253] = {.lex_state = 435, .external_lex_state = 126}, + [7254] = {.lex_state = 548}, + [7255] = {.lex_state = 548}, + [7256] = {.lex_state = 548}, + [7257] = {.lex_state = 435}, + [7258] = {.lex_state = 438}, + [7259] = {.lex_state = 548}, + [7260] = {.lex_state = 806}, + [7261] = {.lex_state = 478}, + [7262] = {.lex_state = 548}, + [7263] = {.lex_state = 438}, + [7264] = {.lex_state = 548}, + [7265] = {.lex_state = 435}, + [7266] = {.lex_state = 443, .external_lex_state = 114}, + [7267] = {.lex_state = 548}, + [7268] = {.lex_state = 806}, + [7269] = {.lex_state = 443, .external_lex_state = 114}, + [7270] = {.lex_state = 548}, + [7271] = {.lex_state = 478}, + [7272] = {.lex_state = 548}, + [7273] = {.lex_state = 435}, + [7274] = {.lex_state = 443, .external_lex_state = 114}, + [7275] = {.lex_state = 548}, + [7276] = {.lex_state = 806}, + [7277] = {.lex_state = 435, .external_lex_state = 126}, + [7278] = {.lex_state = 421}, + [7279] = {.lex_state = 548}, + [7280] = {.lex_state = 548}, + [7281] = {.lex_state = 435}, + [7282] = {.lex_state = 478}, + [7283] = {.lex_state = 548}, + [7284] = {.lex_state = 806}, + [7285] = {.lex_state = 435, .external_lex_state = 126}, + [7286] = {.lex_state = 548}, + [7287] = {.lex_state = 443, .external_lex_state = 114}, + [7288] = {.lex_state = 548}, + [7289] = {.lex_state = 435}, + [7290] = {.lex_state = 438}, + [7291] = {.lex_state = 409}, + [7292] = {.lex_state = 806}, + [7293] = {.lex_state = 548}, + [7294] = {.lex_state = 478}, + [7295] = {.lex_state = 548}, + [7296] = {.lex_state = 548}, + [7297] = {.lex_state = 435}, + [7298] = {.lex_state = 443, .external_lex_state = 114}, + [7299] = {.lex_state = 548}, + [7300] = {.lex_state = 806}, + [7301] = {.lex_state = 443, .external_lex_state = 114}, + [7302] = {.lex_state = 443, .external_lex_state = 114}, + [7303] = {.lex_state = 443, .external_lex_state = 114}, + [7304] = {.lex_state = 548}, + [7305] = {.lex_state = 435}, + [7306] = {.lex_state = 438}, + [7307] = {.lex_state = 548}, + [7308] = {.lex_state = 806}, + [7309] = {.lex_state = 443, .external_lex_state = 114}, + [7310] = {.lex_state = 548}, + [7311] = {.lex_state = 435, .external_lex_state = 126}, + [7312] = {.lex_state = 548}, + [7313] = {.lex_state = 435}, + [7314] = {.lex_state = 548}, + [7315] = {.lex_state = 438}, + [7316] = {.lex_state = 806}, + [7317] = {.lex_state = 548}, + [7318] = {.lex_state = 548}, + [7319] = {.lex_state = 548, .external_lex_state = 130}, + [7320] = {.lex_state = 443, .external_lex_state = 114}, + [7321] = {.lex_state = 435}, + [7322] = {.lex_state = 443, .external_lex_state = 114}, + [7323] = {.lex_state = 548}, + [7324] = {.lex_state = 806}, + [7325] = {.lex_state = 548}, + [7326] = {.lex_state = 443, .external_lex_state = 114}, + [7327] = {.lex_state = 548}, + [7328] = {.lex_state = 548}, + [7329] = {.lex_state = 435}, + [7330] = {.lex_state = 443, .external_lex_state = 114}, + [7331] = {.lex_state = 443, .external_lex_state = 114}, + [7332] = {.lex_state = 806}, + [7333] = {.lex_state = 548}, + [7334] = {.lex_state = 548}, + [7335] = {.lex_state = 548}, + [7336] = {.lex_state = 548}, + [7337] = {.lex_state = 435}, + [7338] = {.lex_state = 443, .external_lex_state = 114}, + [7339] = {.lex_state = 548}, + [7340] = {.lex_state = 806}, + [7341] = {.lex_state = 548}, + [7342] = {.lex_state = 443, .external_lex_state = 114}, + [7343] = {.lex_state = 443, .external_lex_state = 114}, + [7344] = {.lex_state = 443, .external_lex_state = 114}, + [7345] = {.lex_state = 435}, + [7346] = {.lex_state = 435, .external_lex_state = 126}, + [7347] = {.lex_state = 548}, + [7348] = {.lex_state = 806}, + [7349] = {.lex_state = 548}, + [7350] = {.lex_state = 437}, + [7351] = {.lex_state = 548}, + [7352] = {.lex_state = 548}, + [7353] = {.lex_state = 435}, + [7354] = {.lex_state = 438}, + [7355] = {.lex_state = 443, .external_lex_state = 114}, + [7356] = {.lex_state = 806}, + [7357] = {.lex_state = 438}, + [7358] = {.lex_state = 548}, + [7359] = {.lex_state = 443, .external_lex_state = 114}, + [7360] = {.lex_state = 435, .external_lex_state = 126}, + [7361] = {.lex_state = 435}, + [7362] = {.lex_state = 443, .external_lex_state = 114}, + [7363] = {.lex_state = 443, .external_lex_state = 114}, + [7364] = {.lex_state = 806}, + [7365] = {.lex_state = 443, .external_lex_state = 114}, + [7366] = {.lex_state = 548}, + [7367] = {.lex_state = 478}, + [7368] = {.lex_state = 438}, + [7369] = {.lex_state = 435}, + [7370] = {.lex_state = 443, .external_lex_state = 114}, + [7371] = {.lex_state = 435, .external_lex_state = 126}, + [7372] = {.lex_state = 806}, + [7373] = {.lex_state = 409}, + [7374] = {.lex_state = 806}, + [7375] = {.lex_state = 548}, + [7376] = {.lex_state = 443, .external_lex_state = 114}, + [7377] = {.lex_state = 435}, + [7378] = {.lex_state = 548}, + [7379] = {.lex_state = 548}, + [7380] = {.lex_state = 806}, + [7381] = {.lex_state = 147, .external_lex_state = 120}, + [7382] = {.lex_state = 443, .external_lex_state = 114}, + [7383] = {.lex_state = 548}, + [7384] = {.lex_state = 548}, + [7385] = {.lex_state = 435}, + [7386] = {.lex_state = 443, .external_lex_state = 114}, + [7387] = {.lex_state = 548}, + [7388] = {.lex_state = 806}, + [7389] = {.lex_state = 548}, + [7390] = {.lex_state = 548}, + [7391] = {.lex_state = 548}, + [7392] = {.lex_state = 548}, + [7393] = {.lex_state = 435}, + [7394] = {.lex_state = 435, .external_lex_state = 126}, + [7395] = {.lex_state = 548}, + [7396] = {.lex_state = 806}, + [7397] = {.lex_state = 438}, + [7398] = {.lex_state = 438}, + [7399] = {.lex_state = 548}, + [7400] = {.lex_state = 548}, + [7401] = {.lex_state = 435}, + [7402] = {.lex_state = 435, .external_lex_state = 126}, + [7403] = {.lex_state = 421, .external_lex_state = 128}, + [7404] = {.lex_state = 806}, + [7405] = {.lex_state = 548}, + [7406] = {.lex_state = 443, .external_lex_state = 114}, + [7407] = {.lex_state = 147, .external_lex_state = 120}, + [7408] = {.lex_state = 548}, [7409] = {.lex_state = 435}, - [7410] = {.lex_state = 549}, - [7411] = {.lex_state = 549}, - [7412] = {.lex_state = 549}, - [7413] = {.lex_state = 549}, - [7414] = {.lex_state = 440}, - [7415] = {.lex_state = 549}, - [7416] = {.lex_state = 442, .external_lex_state = 116}, - [7417] = {.lex_state = 421, .external_lex_state = 129}, - [7418] = {.lex_state = 146, .external_lex_state = 120}, - [7419] = {.lex_state = 146, .external_lex_state = 120}, - [7420] = {.lex_state = 440}, - [7421] = {.lex_state = 549}, - [7422] = {.lex_state = 442, .external_lex_state = 116}, - [7423] = {.lex_state = 440}, - [7424] = {.lex_state = 442, .external_lex_state = 116}, - [7425] = {.lex_state = 146, .external_lex_state = 120}, - [7426] = {.lex_state = 146, .external_lex_state = 120}, - [7427] = {.lex_state = 435, .external_lex_state = 126}, - [7428] = {.lex_state = 435, .external_lex_state = 126}, - [7429] = {.lex_state = 146, .external_lex_state = 120}, - [7430] = {.lex_state = 442, .external_lex_state = 116}, - [7431] = {.lex_state = 549}, - [7432] = {.lex_state = 146, .external_lex_state = 120}, - [7433] = {.lex_state = 442, .external_lex_state = 116}, - [7434] = {.lex_state = 549}, - [7435] = {.lex_state = 549}, - [7436] = {.lex_state = 549}, - [7437] = {.lex_state = 440}, - [7438] = {.lex_state = 442, .external_lex_state = 116}, - [7439] = {.lex_state = 440}, - [7440] = {.lex_state = 442, .external_lex_state = 116}, - [7441] = {.lex_state = 549}, - [7442] = {.lex_state = 442, .external_lex_state = 116}, - [7443] = {.lex_state = 442, .external_lex_state = 116}, - [7444] = {.lex_state = 549}, - [7445] = {.lex_state = 549}, - [7446] = {.lex_state = 549}, - [7447] = {.lex_state = 442, .external_lex_state = 116}, - [7448] = {.lex_state = 549}, - [7449] = {.lex_state = 442, .external_lex_state = 116}, - [7450] = {.lex_state = 549}, - [7451] = {.lex_state = 421, .external_lex_state = 129}, - [7452] = {.lex_state = 549}, - [7453] = {.lex_state = 549}, - [7454] = {.lex_state = 549}, - [7455] = {.lex_state = 549}, - [7456] = {.lex_state = 442, .external_lex_state = 116}, - [7457] = {.lex_state = 440}, - [7458] = {.lex_state = 549}, - [7459] = {.lex_state = 435, .external_lex_state = 126}, - [7460] = {.lex_state = 549}, - [7461] = {.lex_state = 549}, - [7462] = {.lex_state = 549}, - [7463] = {.lex_state = 442, .external_lex_state = 116}, - [7464] = {.lex_state = 146, .external_lex_state = 120}, - [7465] = {.lex_state = 421, .external_lex_state = 129}, - [7466] = {.lex_state = 421, .external_lex_state = 129}, - [7467] = {.lex_state = 442, .external_lex_state = 116}, - [7468] = {.lex_state = 549}, - [7469] = {.lex_state = 440}, - [7470] = {.lex_state = 549}, - [7471] = {.lex_state = 549}, - [7472] = {.lex_state = 435}, - [7473] = {.lex_state = 549}, - [7474] = {.lex_state = 549}, - [7475] = {.lex_state = 440}, - [7476] = {.lex_state = 435}, - [7477] = {.lex_state = 421, .external_lex_state = 129}, - [7478] = {.lex_state = 437}, - [7479] = {.lex_state = 440}, - [7480] = {.lex_state = 442, .external_lex_state = 116}, - [7481] = {.lex_state = 489}, - [7482] = {.lex_state = 435}, - [7483] = {.lex_state = 442, .external_lex_state = 116}, - [7484] = {.lex_state = 549, .external_lex_state = 128}, - [7485] = {.lex_state = 549}, - [7486] = {.lex_state = 549, .external_lex_state = 130}, - [7487] = {.lex_state = 442, .external_lex_state = 116}, - [7488] = {.lex_state = 442, .external_lex_state = 116}, - [7489] = {.lex_state = 435, .external_lex_state = 126}, - [7490] = {.lex_state = 549, .external_lex_state = 130}, - [7491] = {.lex_state = 146, .external_lex_state = 120}, - [7492] = {.lex_state = 549}, - [7493] = {.lex_state = 146, .external_lex_state = 120}, - [7494] = {.lex_state = 435, .external_lex_state = 126}, - [7495] = {.lex_state = 410}, - [7496] = {.lex_state = 442, .external_lex_state = 116}, - [7497] = {.lex_state = 549}, - [7498] = {.lex_state = 549}, - [7499] = {.lex_state = 549}, - [7500] = {.lex_state = 549}, - [7501] = {.lex_state = 549}, - [7502] = {.lex_state = 442, .external_lex_state = 116}, - [7503] = {.lex_state = 489}, - [7504] = {.lex_state = 440}, - [7505] = {.lex_state = 549}, - [7506] = {.lex_state = 442, .external_lex_state = 116}, - [7507] = {.lex_state = 435}, - [7508] = {.lex_state = 442, .external_lex_state = 116}, - [7509] = {.lex_state = 549}, - [7510] = {.lex_state = 489}, - [7511] = {.lex_state = 435}, - [7512] = {.lex_state = 549}, - [7513] = {.lex_state = 549, .external_lex_state = 130}, - [7514] = {.lex_state = 410}, - [7515] = {.lex_state = 549}, - [7516] = {.lex_state = 549, .external_lex_state = 130}, - [7517] = {.lex_state = 549}, - [7518] = {.lex_state = 549}, - [7519] = {.lex_state = 549}, - [7520] = {.lex_state = 442, .external_lex_state = 116}, - [7521] = {.lex_state = 549}, - [7522] = {.lex_state = 489}, - [7523] = {.lex_state = 435, .external_lex_state = 126}, - [7524] = {.lex_state = 549}, - [7525] = {.lex_state = 549}, - [7526] = {.lex_state = 442, .external_lex_state = 116}, - [7527] = {.lex_state = 442, .external_lex_state = 116}, - [7528] = {.lex_state = 549}, - [7529] = {.lex_state = 442, .external_lex_state = 116}, - [7530] = {.lex_state = 549}, - [7531] = {.lex_state = 549}, - [7532] = {.lex_state = 549}, - [7533] = {.lex_state = 440}, - [7534] = {.lex_state = 549}, - [7535] = {.lex_state = 549}, - [7536] = {.lex_state = 435}, - [7537] = {.lex_state = 435}, - [7538] = {.lex_state = 435}, - [7539] = {.lex_state = 435}, - [7540] = {.lex_state = 435}, - [7541] = {.lex_state = 435}, - [7542] = {.lex_state = 435}, - [7543] = {.lex_state = 435}, - [7544] = {.lex_state = 435}, - [7545] = {.lex_state = 435}, - [7546] = {.lex_state = 435}, - [7547] = {.lex_state = 435}, - [7548] = {.lex_state = 435}, - [7549] = {.lex_state = 435}, - [7550] = {.lex_state = 435}, - [7551] = {.lex_state = 435}, - [7552] = {.lex_state = 435}, - [7553] = {.lex_state = 435}, - [7554] = {.lex_state = 435}, - [7555] = {.lex_state = 435}, - [7556] = {.lex_state = 435}, - [7557] = {.lex_state = 435}, - [7558] = {.lex_state = 435}, - [7559] = {.lex_state = 435}, - [7560] = {.lex_state = 435}, - [7561] = {.lex_state = 435}, - [7562] = {.lex_state = 435}, - [7563] = {.lex_state = 435}, - [7564] = {.lex_state = 435}, - [7565] = {.lex_state = 435}, - [7566] = {.lex_state = 435}, - [7567] = {.lex_state = 435}, - [7568] = {.lex_state = 435}, - [7569] = {.lex_state = 435}, - [7570] = {.lex_state = 435}, - [7571] = {.lex_state = 435}, - [7572] = {.lex_state = 435}, - [7573] = {.lex_state = 435}, - [7574] = {.lex_state = 435}, - [7575] = {.lex_state = 435}, - [7576] = {.lex_state = 435}, - [7577] = {.lex_state = 435}, - [7578] = {.lex_state = 435}, - [7579] = {.lex_state = 435}, - [7580] = {.lex_state = 435}, - [7581] = {.lex_state = 435}, - [7582] = {.lex_state = 435}, - [7583] = {.lex_state = 435}, - [7584] = {.lex_state = 435}, - [7585] = {.lex_state = 435}, - [7586] = {.lex_state = 435}, - [7587] = {.lex_state = 435}, - [7588] = {.lex_state = 435}, - [7589] = {.lex_state = 435}, + [7410] = {.lex_state = 548}, + [7411] = {.lex_state = 435}, + [7412] = {.lex_state = 806}, + [7413] = {.lex_state = 548}, + [7414] = {.lex_state = 421}, + [7415] = {.lex_state = 548}, + [7416] = {.lex_state = 435, .external_lex_state = 126}, + [7417] = {.lex_state = 548}, + [7418] = {.lex_state = 443, .external_lex_state = 114}, + [7419] = {.lex_state = 435}, + [7420] = {.lex_state = 435}, + [7421] = {.lex_state = 548}, + [7422] = {.lex_state = 443, .external_lex_state = 114}, + [7423] = {.lex_state = 548}, + [7424] = {.lex_state = 548}, + [7425] = {.lex_state = 548}, + [7426] = {.lex_state = 478}, + [7427] = {.lex_state = 548}, + [7428] = {.lex_state = 438}, + [7429] = {.lex_state = 409}, + [7430] = {.lex_state = 548}, + [7431] = {.lex_state = 548}, + [7432] = {.lex_state = 548}, + [7433] = {.lex_state = 435}, + [7434] = {.lex_state = 147, .external_lex_state = 120}, + [7435] = {.lex_state = 421, .external_lex_state = 128}, + [7436] = {.lex_state = 147, .external_lex_state = 120}, + [7437] = {.lex_state = 548}, + [7438] = {.lex_state = 548}, + [7439] = {.lex_state = 443, .external_lex_state = 114}, + [7440] = {.lex_state = 548}, + [7441] = {.lex_state = 421, .external_lex_state = 128}, + [7442] = {.lex_state = 548}, + [7443] = {.lex_state = 548}, + [7444] = {.lex_state = 548}, + [7445] = {.lex_state = 548}, + [7446] = {.lex_state = 548}, + [7447] = {.lex_state = 548}, + [7448] = {.lex_state = 438}, + [7449] = {.lex_state = 147, .external_lex_state = 120}, + [7450] = {.lex_state = 147, .external_lex_state = 120}, + [7451] = {.lex_state = 438}, + [7452] = {.lex_state = 443, .external_lex_state = 114}, + [7453] = {.lex_state = 548}, + [7454] = {.lex_state = 147, .external_lex_state = 120}, + [7455] = {.lex_state = 443, .external_lex_state = 114}, + [7456] = {.lex_state = 548}, + [7457] = {.lex_state = 147, .external_lex_state = 120}, + [7458] = {.lex_state = 548}, + [7459] = {.lex_state = 548}, + [7460] = {.lex_state = 443, .external_lex_state = 114}, + [7461] = {.lex_state = 548}, + [7462] = {.lex_state = 437}, + [7463] = {.lex_state = 548}, + [7464] = {.lex_state = 443, .external_lex_state = 114}, + [7465] = {.lex_state = 478}, + [7466] = {.lex_state = 435}, + [7467] = {.lex_state = 548}, + [7468] = {.lex_state = 438}, + [7469] = {.lex_state = 548}, + [7470] = {.lex_state = 548}, + [7471] = {.lex_state = 548, .external_lex_state = 130}, + [7472] = {.lex_state = 548}, + [7473] = {.lex_state = 548}, + [7474] = {.lex_state = 548}, + [7475] = {.lex_state = 438}, + [7476] = {.lex_state = 147, .external_lex_state = 120}, + [7477] = {.lex_state = 443, .external_lex_state = 114}, + [7478] = {.lex_state = 443, .external_lex_state = 114}, + [7479] = {.lex_state = 806}, + [7480] = {.lex_state = 548}, + [7481] = {.lex_state = 438}, + [7482] = {.lex_state = 548}, + [7483] = {.lex_state = 548}, + [7484] = {.lex_state = 548}, + [7485] = {.lex_state = 548}, + [7486] = {.lex_state = 443, .external_lex_state = 114}, + [7487] = {.lex_state = 548}, + [7488] = {.lex_state = 548}, + [7489] = {.lex_state = 548, .external_lex_state = 130}, + [7490] = {.lex_state = 548}, + [7491] = {.lex_state = 548, .external_lex_state = 130}, + [7492] = {.lex_state = 548}, + [7493] = {.lex_state = 548}, + [7494] = {.lex_state = 548}, + [7495] = {.lex_state = 443, .external_lex_state = 114}, + [7496] = {.lex_state = 438}, + [7497] = {.lex_state = 548}, + [7498] = {.lex_state = 548}, + [7499] = {.lex_state = 478}, + [7500] = {.lex_state = 548}, + [7501] = {.lex_state = 548}, + [7502] = {.lex_state = 443, .external_lex_state = 114}, + [7503] = {.lex_state = 409}, + [7504] = {.lex_state = 548}, + [7505] = {.lex_state = 548}, + [7506] = {.lex_state = 548}, + [7507] = {.lex_state = 548}, + [7508] = {.lex_state = 443, .external_lex_state = 114}, + [7509] = {.lex_state = 548}, + [7510] = {.lex_state = 435, .external_lex_state = 126}, + [7511] = {.lex_state = 548}, + [7512] = {.lex_state = 548}, + [7513] = {.lex_state = 548}, + [7514] = {.lex_state = 443, .external_lex_state = 114}, + [7515] = {.lex_state = 548}, + [7516] = {.lex_state = 438}, + [7517] = {.lex_state = 548}, + [7518] = {.lex_state = 548}, + [7519] = {.lex_state = 435, .external_lex_state = 126}, + [7520] = {.lex_state = 548}, + [7521] = {.lex_state = 548}, + [7522] = {.lex_state = 548}, + [7523] = {.lex_state = 548}, + [7524] = {.lex_state = 438}, + [7525] = {.lex_state = 548}, + [7526] = {.lex_state = 478}, + [7527] = {.lex_state = 438}, + [7528] = {.lex_state = 548}, + [7529] = {.lex_state = 548}, + [7530] = {.lex_state = 548}, + [7531] = {.lex_state = 548}, + [7532] = {.lex_state = 443, .external_lex_state = 114}, + [7533] = {.lex_state = 443, .external_lex_state = 114}, + [7534] = {.lex_state = 443, .external_lex_state = 114}, + [7535] = {.lex_state = 548}, + [7536] = {.lex_state = 548}, + [7537] = {.lex_state = 443, .external_lex_state = 114}, + [7538] = {.lex_state = 548}, + [7539] = {.lex_state = 548}, + [7540] = {.lex_state = 438}, + [7541] = {.lex_state = 438}, + [7542] = {.lex_state = 548}, + [7543] = {.lex_state = 443, .external_lex_state = 114}, + [7544] = {.lex_state = 548}, + [7545] = {.lex_state = 548}, + [7546] = {.lex_state = 548}, + [7547] = {.lex_state = 548}, + [7548] = {.lex_state = 548}, + [7549] = {.lex_state = 548}, + [7550] = {.lex_state = 438}, + [7551] = {.lex_state = 548}, + [7552] = {.lex_state = 548}, + [7553] = {.lex_state = 435, .external_lex_state = 126}, + [7554] = {.lex_state = 438}, + [7555] = {.lex_state = 548}, + [7556] = {.lex_state = 548}, + [7557] = {.lex_state = 548}, + [7558] = {.lex_state = 548}, + [7559] = {.lex_state = 438}, + [7560] = {.lex_state = 548}, + [7561] = {.lex_state = 435, .external_lex_state = 126}, + [7562] = {.lex_state = 548}, + [7563] = {.lex_state = 443, .external_lex_state = 114}, + [7564] = {.lex_state = 548}, + [7565] = {.lex_state = 435, .external_lex_state = 126}, + [7566] = {.lex_state = 548}, + [7567] = {.lex_state = 548}, + [7568] = {.lex_state = 548}, + [7569] = {.lex_state = 548}, + [7570] = {.lex_state = 438}, + [7571] = {.lex_state = 438}, + [7572] = {.lex_state = 438}, + [7573] = {.lex_state = 548}, + [7574] = {.lex_state = 548}, + [7575] = {.lex_state = 435, .external_lex_state = 126}, + [7576] = {.lex_state = 548}, + [7577] = {.lex_state = 443, .external_lex_state = 114}, + [7578] = {.lex_state = 443, .external_lex_state = 114}, + [7579] = {.lex_state = 443, .external_lex_state = 114}, + [7580] = {.lex_state = 443, .external_lex_state = 114}, + [7581] = {.lex_state = 409}, + [7582] = {.lex_state = 548}, + [7583] = {.lex_state = 548}, + [7584] = {.lex_state = 548}, + [7585] = {.lex_state = 443, .external_lex_state = 114}, + [7586] = {.lex_state = 437}, + [7587] = {.lex_state = 443, .external_lex_state = 114}, + [7588] = {.lex_state = 478}, + [7589] = {.lex_state = 478}, [7590] = {.lex_state = 435}, - [7591] = {.lex_state = 435}, - [7592] = {.lex_state = 435}, - [7593] = {.lex_state = 435}, - [7594] = {.lex_state = 435}, - [7595] = {.lex_state = 435}, - [7596] = {.lex_state = 435}, - [7597] = {.lex_state = 440}, - [7598] = {.lex_state = 435}, - [7599] = {.lex_state = 549}, - [7600] = {.lex_state = 435}, - [7601] = {.lex_state = 442, .external_lex_state = 116}, - [7602] = {.lex_state = 549}, - [7603] = {.lex_state = 549}, - [7604] = {.lex_state = 435}, - [7605] = {.lex_state = 435}, - [7606] = {.lex_state = 549}, - [7607] = {.lex_state = 435}, - [7608] = {.lex_state = 435}, - [7609] = {.lex_state = 435}, - [7610] = {.lex_state = 435}, - [7611] = {.lex_state = 435}, - [7612] = {.lex_state = 435}, - [7613] = {.lex_state = 435}, - [7614] = {.lex_state = 435}, - [7615] = {.lex_state = 435}, - [7616] = {.lex_state = 435}, - [7617] = {.lex_state = 435}, - [7618] = {.lex_state = 435}, - [7619] = {.lex_state = 435}, - [7620] = {.lex_state = 435}, - [7621] = {.lex_state = 435}, - [7622] = {.lex_state = 435}, - [7623] = {.lex_state = 435}, + [7591] = {.lex_state = 548}, + [7592] = {.lex_state = 443, .external_lex_state = 114}, + [7593] = {.lex_state = 548}, + [7594] = {.lex_state = 548, .external_lex_state = 130}, + [7595] = {.lex_state = 548}, + [7596] = {.lex_state = 548}, + [7597] = {.lex_state = 443, .external_lex_state = 114}, + [7598] = {.lex_state = 548, .external_lex_state = 130}, + [7599] = {.lex_state = 548}, + [7600] = {.lex_state = 443, .external_lex_state = 114}, + [7601] = {.lex_state = 548}, + [7602] = {.lex_state = 443, .external_lex_state = 114}, + [7603] = {.lex_state = 548}, + [7604] = {.lex_state = 806}, + [7605] = {.lex_state = 548}, + [7606] = {.lex_state = 548}, + [7607] = {.lex_state = 548}, + [7608] = {.lex_state = 443, .external_lex_state = 114}, + [7609] = {.lex_state = 443, .external_lex_state = 114}, + [7610] = {.lex_state = 548}, + [7611] = {.lex_state = 548}, + [7612] = {.lex_state = 548}, + [7613] = {.lex_state = 438}, + [7614] = {.lex_state = 548}, + [7615] = {.lex_state = 548}, + [7616] = {.lex_state = 548}, + [7617] = {.lex_state = 438}, + [7618] = {.lex_state = 421, .external_lex_state = 128}, + [7619] = {.lex_state = 409}, + [7620] = {.lex_state = 443, .external_lex_state = 114}, + [7621] = {.lex_state = 548}, + [7622] = {.lex_state = 421, .external_lex_state = 128}, + [7623] = {.lex_state = 548}, [7624] = {.lex_state = 435}, - [7625] = {.lex_state = 435}, - [7626] = {.lex_state = 435}, - [7627] = {.lex_state = 435}, - [7628] = {.lex_state = 435}, - [7629] = {.lex_state = 435}, + [7625] = {.lex_state = 421}, + [7626] = {.lex_state = 548}, + [7627] = {.lex_state = 421, .external_lex_state = 128}, + [7628] = {.lex_state = 548}, + [7629] = {.lex_state = 443, .external_lex_state = 114}, [7630] = {.lex_state = 435}, - [7631] = {.lex_state = 435}, - [7632] = {.lex_state = 435}, - [7633] = {.lex_state = 435}, + [7631] = {.lex_state = 443, .external_lex_state = 114}, + [7632] = {.lex_state = 548}, + [7633] = {.lex_state = 438}, [7634] = {.lex_state = 435}, - [7635] = {.lex_state = 435}, - [7636] = {.lex_state = 435}, - [7637] = {.lex_state = 435}, - [7638] = {.lex_state = 435}, - [7639] = {.lex_state = 435}, - [7640] = {.lex_state = 435}, - [7641] = {.lex_state = 435}, - [7642] = {.lex_state = 435}, - [7643] = {.lex_state = 435}, - [7644] = {.lex_state = 435}, - [7645] = {.lex_state = 435}, - [7646] = {.lex_state = 435}, - [7647] = {.lex_state = 435}, - [7648] = {.lex_state = 435}, - [7649] = {.lex_state = 435}, - [7650] = {.lex_state = 435}, - [7651] = {.lex_state = 435}, - [7652] = {.lex_state = 435}, - [7653] = {.lex_state = 435}, - [7654] = {.lex_state = 435}, - [7655] = {.lex_state = 435}, - [7656] = {.lex_state = 435}, - [7657] = {.lex_state = 435}, - [7658] = {.lex_state = 435}, - [7659] = {.lex_state = 435}, - [7660] = {.lex_state = 435}, - [7661] = {.lex_state = 435}, - [7662] = {.lex_state = 435}, - [7663] = {.lex_state = 435}, - [7664] = {.lex_state = 435}, - [7665] = {.lex_state = 435}, - [7666] = {.lex_state = 435}, - [7667] = {.lex_state = 435}, - [7668] = {.lex_state = 435}, - [7669] = {.lex_state = 420}, - [7670] = {.lex_state = 146, .external_lex_state = 120}, + [7635] = {.lex_state = 548}, + [7636] = {.lex_state = 548}, + [7637] = {.lex_state = 548}, + [7638] = {.lex_state = 548}, + [7639] = {.lex_state = 443, .external_lex_state = 114}, + [7640] = {.lex_state = 443, .external_lex_state = 114}, + [7641] = {.lex_state = 438}, + [7642] = {.lex_state = 548}, + [7643] = {.lex_state = 548}, + [7644] = {.lex_state = 435, .external_lex_state = 126}, + [7645] = {.lex_state = 438}, + [7646] = {.lex_state = 548}, + [7647] = {.lex_state = 548}, + [7648] = {.lex_state = 548}, + [7649] = {.lex_state = 147, .external_lex_state = 120}, + [7650] = {.lex_state = 147, .external_lex_state = 120}, + [7651] = {.lex_state = 443, .external_lex_state = 114}, + [7652] = {.lex_state = 438}, + [7653] = {.lex_state = 443, .external_lex_state = 114}, + [7654] = {.lex_state = 548}, + [7655] = {.lex_state = 548}, + [7656] = {.lex_state = 443, .external_lex_state = 114}, + [7657] = {.lex_state = 548}, + [7658] = {.lex_state = 548, .external_lex_state = 129}, + [7659] = {.lex_state = 443, .external_lex_state = 114}, + [7660] = {.lex_state = 548}, + [7661] = {.lex_state = 548}, + [7662] = {.lex_state = 548}, + [7663] = {.lex_state = 147, .external_lex_state = 120}, + [7664] = {.lex_state = 147, .external_lex_state = 120}, + [7665] = {.lex_state = 438}, + [7666] = {.lex_state = 548}, + [7667] = {.lex_state = 443, .external_lex_state = 114}, + [7668] = {.lex_state = 548, .external_lex_state = 129}, + [7669] = {.lex_state = 147, .external_lex_state = 120}, + [7670] = {.lex_state = 409}, + [7671] = {.lex_state = 548}, + [7672] = {.lex_state = 147, .external_lex_state = 120}, + [7673] = {.lex_state = 548}, + [7674] = {.lex_state = 443, .external_lex_state = 114}, + [7675] = {.lex_state = 409}, + [7676] = {.lex_state = 437}, + [7677] = {.lex_state = 548}, + [7678] = {.lex_state = 443, .external_lex_state = 114}, + [7679] = {.lex_state = 478}, + [7680] = {.lex_state = 435}, + [7681] = {.lex_state = 548}, + [7682] = {.lex_state = 443, .external_lex_state = 114}, + [7683] = {.lex_state = 548}, + [7684] = {.lex_state = 548, .external_lex_state = 130}, + [7685] = {.lex_state = 548}, + [7686] = {.lex_state = 443, .external_lex_state = 114}, + [7687] = {.lex_state = 548}, + [7688] = {.lex_state = 548, .external_lex_state = 130}, + [7689] = {.lex_state = 548}, + [7690] = {.lex_state = 548}, + [7691] = {.lex_state = 443, .external_lex_state = 114}, + [7692] = {.lex_state = 435, .external_lex_state = 126}, + [7693] = {.lex_state = 438}, + [7694] = {.lex_state = 548}, + [7695] = {.lex_state = 548}, + [7696] = {.lex_state = 443, .external_lex_state = 114}, + [7697] = {.lex_state = 438}, + [7698] = {.lex_state = 548}, + [7699] = {.lex_state = 548}, + [7700] = {.lex_state = 548}, + [7701] = {.lex_state = 443, .external_lex_state = 114}, + [7702] = {.lex_state = 443, .external_lex_state = 114}, + [7703] = {.lex_state = 548}, + [7704] = {.lex_state = 443, .external_lex_state = 114}, + [7705] = {.lex_state = 548}, + [7706] = {.lex_state = 548}, + [7707] = {.lex_state = 548}, + [7708] = {.lex_state = 478}, + [7709] = {.lex_state = 435}, + [7710] = {.lex_state = 548}, + [7711] = {.lex_state = 548, .external_lex_state = 130}, + [7712] = {.lex_state = 548}, + [7713] = {.lex_state = 548}, + [7714] = {.lex_state = 548, .external_lex_state = 130}, + [7715] = {.lex_state = 548}, + [7716] = {.lex_state = 548}, + [7717] = {.lex_state = 438}, + [7718] = {.lex_state = 548}, + [7719] = {.lex_state = 806}, + [7720] = {.lex_state = 443, .external_lex_state = 114}, + [7721] = {.lex_state = 548}, + [7722] = {.lex_state = 548}, + [7723] = {.lex_state = 548}, + [7724] = {.lex_state = 438}, + [7725] = {.lex_state = 548}, + [7726] = {.lex_state = 443, .external_lex_state = 114}, + [7727] = {.lex_state = 548}, + [7728] = {.lex_state = 443, .external_lex_state = 114}, + [7729] = {.lex_state = 548}, + [7730] = {.lex_state = 435, .external_lex_state = 126}, + [7731] = {.lex_state = 548}, + [7732] = {.lex_state = 548}, + [7733] = {.lex_state = 548}, + [7734] = {.lex_state = 435}, + [7735] = {.lex_state = 435}, + [7736] = {.lex_state = 435}, + [7737] = {.lex_state = 435}, + [7738] = {.lex_state = 435}, + [7739] = {.lex_state = 435}, + [7740] = {.lex_state = 435}, + [7741] = {.lex_state = 435}, + [7742] = {.lex_state = 435}, + [7743] = {.lex_state = 435}, + [7744] = {.lex_state = 435}, + [7745] = {.lex_state = 435}, + [7746] = {.lex_state = 435}, + [7747] = {.lex_state = 435}, + [7748] = {.lex_state = 435}, + [7749] = {.lex_state = 435}, + [7750] = {.lex_state = 435}, + [7751] = {.lex_state = 435}, + [7752] = {.lex_state = 435}, + [7753] = {.lex_state = 435}, + [7754] = {.lex_state = 435}, + [7755] = {.lex_state = 435}, + [7756] = {.lex_state = 435}, + [7757] = {.lex_state = 435}, + [7758] = {.lex_state = 435}, + [7759] = {.lex_state = 435}, + [7760] = {.lex_state = 435}, + [7761] = {.lex_state = 435}, + [7762] = {.lex_state = 435}, + [7763] = {.lex_state = 435}, + [7764] = {.lex_state = 435}, + [7765] = {.lex_state = 435}, + [7766] = {.lex_state = 435}, + [7767] = {.lex_state = 435}, + [7768] = {.lex_state = 435}, + [7769] = {.lex_state = 435}, + [7770] = {.lex_state = 435}, + [7771] = {.lex_state = 435}, + [7772] = {.lex_state = 435}, + [7773] = {.lex_state = 435}, + [7774] = {.lex_state = 435}, + [7775] = {.lex_state = 435}, + [7776] = {.lex_state = 435}, + [7777] = {.lex_state = 435}, + [7778] = {.lex_state = 435}, + [7779] = {.lex_state = 435}, + [7780] = {.lex_state = 435}, + [7781] = {.lex_state = 435}, + [7782] = {.lex_state = 435}, + [7783] = {.lex_state = 435}, + [7784] = {.lex_state = 435}, + [7785] = {.lex_state = 435}, + [7786] = {.lex_state = 435}, + [7787] = {.lex_state = 435}, + [7788] = {.lex_state = 435}, + [7789] = {.lex_state = 435}, + [7790] = {.lex_state = 435}, + [7791] = {.lex_state = 435}, + [7792] = {.lex_state = 435}, + [7793] = {.lex_state = 435}, + [7794] = {.lex_state = 435}, + [7795] = {.lex_state = 548}, + [7796] = {.lex_state = 443, .external_lex_state = 114}, + [7797] = {.lex_state = 438}, + [7798] = {.lex_state = 548}, + [7799] = {.lex_state = 435}, + [7800] = {.lex_state = 478}, + [7801] = {.lex_state = 548}, + [7802] = {.lex_state = 435}, + [7803] = {.lex_state = 548}, + [7804] = {.lex_state = 548}, + [7805] = {.lex_state = 435}, + [7806] = {.lex_state = 435}, + [7807] = {.lex_state = 435}, + [7808] = {.lex_state = 435}, + [7809] = {.lex_state = 435}, + [7810] = {.lex_state = 435}, + [7811] = {.lex_state = 435}, + [7812] = {.lex_state = 435}, + [7813] = {.lex_state = 435}, + [7814] = {.lex_state = 435}, + [7815] = {.lex_state = 435}, + [7816] = {.lex_state = 435}, + [7817] = {.lex_state = 435}, + [7818] = {.lex_state = 435}, + [7819] = {.lex_state = 435}, + [7820] = {.lex_state = 435}, + [7821] = {.lex_state = 435}, + [7822] = {.lex_state = 435}, + [7823] = {.lex_state = 435}, + [7824] = {.lex_state = 435}, + [7825] = {.lex_state = 435}, + [7826] = {.lex_state = 435}, + [7827] = {.lex_state = 435}, + [7828] = {.lex_state = 435}, + [7829] = {.lex_state = 435}, + [7830] = {.lex_state = 435}, + [7831] = {.lex_state = 435}, + [7832] = {.lex_state = 435}, + [7833] = {.lex_state = 435}, + [7834] = {.lex_state = 435}, + [7835] = {.lex_state = 435}, + [7836] = {.lex_state = 435}, + [7837] = {.lex_state = 435}, + [7838] = {.lex_state = 435}, + [7839] = {.lex_state = 435}, + [7840] = {.lex_state = 435}, + [7841] = {.lex_state = 435}, + [7842] = {.lex_state = 435}, + [7843] = {.lex_state = 443, .external_lex_state = 114}, + [7844] = {.lex_state = 435}, + [7845] = {.lex_state = 435}, + [7846] = {.lex_state = 435}, + [7847] = {.lex_state = 435}, + [7848] = {.lex_state = 435}, + [7849] = {.lex_state = 435}, + [7850] = {.lex_state = 435}, + [7851] = {.lex_state = 435}, + [7852] = {.lex_state = 435}, + [7853] = {.lex_state = 435}, + [7854] = {.lex_state = 435}, + [7855] = {.lex_state = 435}, + [7856] = {.lex_state = 435}, + [7857] = {.lex_state = 435}, + [7858] = {.lex_state = 435}, + [7859] = {.lex_state = 435}, + [7860] = {.lex_state = 435}, + [7861] = {.lex_state = 435}, + [7862] = {.lex_state = 435}, + [7863] = {.lex_state = 435}, + [7864] = {.lex_state = 435}, + [7865] = {.lex_state = 435}, + [7866] = {.lex_state = 435}, + [7867] = {.lex_state = 548}, + [7868] = {.lex_state = 548}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -29262,7 +29706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1), [sym__special_character] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), - [sym_raw_string] = ACTIONS(1), + [anon_sym_SQUOTE] = ACTIONS(1), [sym_ansi_c_string] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), @@ -29329,45 +29773,46 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(7382), - [sym__statements] = STATE(7421), - [sym__statement_not_pipeline] = STATE(6709), - [sym_redirected_statement] = STATE(4692), - [sym_for_statement] = STATE(4692), - [sym_c_style_for_statement] = STATE(4692), - [sym_while_statement] = STATE(4380), - [sym_if_statement] = STATE(4380), - [sym_case_statement] = STATE(4692), - [sym_function_definition] = STATE(4692), - [sym_compound_statement] = STATE(4692), - [sym_subshell] = STATE(4692), - [sym_pipeline] = STATE(5106), - [sym_list] = STATE(4692), - [sym_negated_command] = STATE(4692), - [sym_test_command] = STATE(4692), - [sym_declaration_command] = STATE(4692), - [sym_unset_command] = STATE(4692), - [sym_command] = STATE(4692), - [sym_command_name] = STATE(534), - [sym_variable_assignment] = STATE(955), - [sym_variable_assignments] = STATE(4692), - [sym_subscript] = STATE(6771), - [sym_file_redirect] = STATE(2203), - [sym_herestring_redirect] = STATE(2204), - [sym_arithmetic_expansion] = STATE(954), - [sym_brace_expression] = STATE(954), - [sym_concatenation] = STATE(1432), - [sym_string] = STATE(954), - [sym_translated_string] = STATE(954), - [sym_number] = STATE(954), - [sym_simple_expansion] = STATE(954), - [sym_expansion] = STATE(954), - [sym_command_substitution] = STATE(954), - [sym_process_substitution] = STATE(954), - [aux_sym__statements_repeat1] = STATE(428), - [aux_sym_redirected_statement_repeat2] = STATE(4541), - [aux_sym_command_repeat1] = STATE(972), - [aux_sym__literal_repeat1] = STATE(1257), + [sym_program] = STATE(7318), + [sym__statements] = STATE(7392), + [sym__statement_not_pipeline] = STATE(6746), + [sym_redirected_statement] = STATE(4871), + [sym_for_statement] = STATE(4871), + [sym_c_style_for_statement] = STATE(4871), + [sym_while_statement] = STATE(4333), + [sym_if_statement] = STATE(4333), + [sym_case_statement] = STATE(4871), + [sym_function_definition] = STATE(4871), + [sym_compound_statement] = STATE(4871), + [sym_subshell] = STATE(4871), + [sym_pipeline] = STATE(5108), + [sym_list] = STATE(4871), + [sym_negated_command] = STATE(4871), + [sym_test_command] = STATE(4871), + [sym_declaration_command] = STATE(4871), + [sym_unset_command] = STATE(4871), + [sym_command] = STATE(4871), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(943), + [sym_variable_assignments] = STATE(4871), + [sym_subscript] = STATE(6814), + [sym_file_redirect] = STATE(2238), + [sym_herestring_redirect] = STATE(2286), + [sym_arithmetic_expansion] = STATE(926), + [sym_brace_expression] = STATE(926), + [sym_concatenation] = STATE(1383), + [sym_string] = STATE(926), + [sym_translated_string] = STATE(926), + [sym_raw_string] = STATE(926), + [sym_number] = STATE(926), + [sym_simple_expansion] = STATE(926), + [sym_expansion] = STATE(926), + [sym_command_substitution] = STATE(926), + [sym_process_substitution] = STATE(926), + [aux_sym__statements_repeat1] = STATE(420), + [aux_sym_redirected_statement_repeat2] = STATE(4540), + [aux_sym_command_repeat1] = STATE(903), + [aux_sym__literal_repeat1] = STATE(1290), [ts_builtin_sym_end] = ACTIONS(5), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), @@ -29406,40315 +29851,40478 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(49), [sym__special_character] = ACTIONS(51), [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(73), - [sym_variable_name] = ACTIONS(75), - [sym_test_operator] = ACTIONS(77), - [sym__brace_start] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(57), + [aux_sym_number_token1] = ACTIONS(59), + [aux_sym_number_token2] = ACTIONS(61), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(69), + [anon_sym_LT_LPAREN] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(71), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(75), + [sym_variable_name] = ACTIONS(77), + [sym_test_operator] = ACTIONS(79), + [sym__brace_start] = ACTIONS(81), }, [2] = { - [sym__statements] = STATE(7077), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym__expression] = STATE(2983), - [sym_binary_expression] = STATE(2976), - [sym_ternary_expression] = STATE(2976), - [sym_unary_expression] = STATE(2976), - [sym_postfix_expression] = STATE(2976), - [sym_parenthesized_expression] = STATE(2976), + [sym__statements] = STATE(7522), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym__expression] = STATE(3029), + [sym_binary_expression] = STATE(3167), + [sym_ternary_expression] = STATE(3167), + [sym_unary_expression] = STATE(3167), + [sym_postfix_expression] = STATE(3167), + [sym_parenthesized_expression] = STATE(3167), [sym_arithmetic_expansion] = STATE(468), [sym_brace_expression] = STATE(468), - [sym_concatenation] = STATE(495), + [sym_concatenation] = STATE(498), [sym_string] = STATE(468), [sym_translated_string] = STATE(468), + [sym_raw_string] = STATE(468), [sym_number] = STATE(468), [sym_simple_expansion] = STATE(468), [sym_expansion] = STATE(468), [sym_command_substitution] = STATE(468), [sym_process_substitution] = STATE(468), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), [aux_sym__literal_repeat1] = STATE(494), - [sym_word] = ACTIONS(81), + [sym_word] = ACTIONS(83), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(91), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(95), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_PLUS_PLUS2] = ACTIONS(103), - [anon_sym_DASH_DASH2] = ACTIONS(103), - [anon_sym_DASH2] = ACTIONS(105), - [anon_sym_PLUS2] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(113), - [sym__special_character] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(117), - [sym_raw_string] = ACTIONS(119), - [sym_ansi_c_string] = ACTIONS(119), - [aux_sym_number_token1] = ACTIONS(121), - [aux_sym_number_token2] = ACTIONS(123), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(127), - [anon_sym_BQUOTE] = ACTIONS(129), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(131), - [anon_sym_LT_LPAREN] = ACTIONS(133), - [anon_sym_GT_LPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(139), - [sym__brace_start] = ACTIONS(141), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_PLUS_PLUS2] = ACTIONS(105), + [anon_sym_DASH_DASH2] = ACTIONS(105), + [anon_sym_DASH2] = ACTIONS(107), + [anon_sym_PLUS2] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(111), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(115), + [sym__special_character] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(121), + [sym_ansi_c_string] = ACTIONS(123), + [aux_sym_number_token1] = ACTIONS(125), + [aux_sym_number_token2] = ACTIONS(127), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), + [anon_sym_BQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(135), + [anon_sym_LT_LPAREN] = ACTIONS(137), + [anon_sym_GT_LPAREN] = ACTIONS(137), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(143), + [sym__brace_start] = ACTIONS(145), }, [3] = { - [sym__statements] = STATE(7000), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym__expression] = STATE(3124), - [sym_binary_expression] = STATE(2976), - [sym_ternary_expression] = STATE(2976), - [sym_unary_expression] = STATE(2976), - [sym_postfix_expression] = STATE(2976), - [sym_parenthesized_expression] = STATE(2976), + [sym__statements] = STATE(7480), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym__expression] = STATE(3020), + [sym_binary_expression] = STATE(3167), + [sym_ternary_expression] = STATE(3167), + [sym_unary_expression] = STATE(3167), + [sym_postfix_expression] = STATE(3167), + [sym_parenthesized_expression] = STATE(3167), [sym_arithmetic_expansion] = STATE(468), [sym_brace_expression] = STATE(468), - [sym_concatenation] = STATE(495), + [sym_concatenation] = STATE(498), [sym_string] = STATE(468), [sym_translated_string] = STATE(468), + [sym_raw_string] = STATE(468), [sym_number] = STATE(468), [sym_simple_expansion] = STATE(468), [sym_expansion] = STATE(468), [sym_command_substitution] = STATE(468), [sym_process_substitution] = STATE(468), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), [aux_sym__literal_repeat1] = STATE(494), - [sym_word] = ACTIONS(81), + [sym_word] = ACTIONS(83), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), - [anon_sym_LPAREN] = ACTIONS(89), + [anon_sym_LPAREN_LPAREN] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), + [anon_sym_LPAREN] = ACTIONS(91), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(95), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_PLUS_PLUS2] = ACTIONS(103), - [anon_sym_DASH_DASH2] = ACTIONS(103), - [anon_sym_DASH2] = ACTIONS(105), - [anon_sym_PLUS2] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(113), - [sym__special_character] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(117), - [sym_raw_string] = ACTIONS(119), - [sym_ansi_c_string] = ACTIONS(119), - [aux_sym_number_token1] = ACTIONS(121), - [aux_sym_number_token2] = ACTIONS(123), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(127), - [anon_sym_BQUOTE] = ACTIONS(129), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(131), - [anon_sym_LT_LPAREN] = ACTIONS(133), - [anon_sym_GT_LPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(139), - [sym__brace_start] = ACTIONS(141), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_PLUS_PLUS2] = ACTIONS(105), + [anon_sym_DASH_DASH2] = ACTIONS(105), + [anon_sym_DASH2] = ACTIONS(107), + [anon_sym_PLUS2] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(111), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(115), + [sym__special_character] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(121), + [sym_ansi_c_string] = ACTIONS(123), + [aux_sym_number_token1] = ACTIONS(125), + [aux_sym_number_token2] = ACTIONS(127), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), + [anon_sym_BQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(135), + [anon_sym_LT_LPAREN] = ACTIONS(137), + [anon_sym_GT_LPAREN] = ACTIONS(137), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(143), + [sym__brace_start] = ACTIONS(145), }, [4] = { - [sym__statement_not_pipeline] = STATE(6684), - [sym_redirected_statement] = STATE(5285), - [sym_for_statement] = STATE(5439), - [sym_c_style_for_statement] = STATE(5439), - [sym_while_statement] = STATE(5133), - [sym_if_statement] = STATE(5133), - [sym_case_statement] = STATE(5439), - [sym_function_definition] = STATE(5439), - [sym_compound_statement] = STATE(5439), - [sym_subshell] = STATE(5439), - [sym_pipeline] = STATE(5593), - [sym_list] = STATE(5439), - [sym_negated_command] = STATE(5439), - [sym_test_command] = STATE(5439), - [sym_declaration_command] = STATE(5439), - [sym_unset_command] = STATE(5439), - [sym_command] = STATE(5439), - [sym_command_name] = STATE(634), + [sym__statement_not_pipeline] = STATE(6667), + [sym_redirected_statement] = STATE(5349), + [sym_for_statement] = STATE(5512), + [sym_c_style_for_statement] = STATE(5512), + [sym_while_statement] = STATE(5184), + [sym_if_statement] = STATE(5184), + [sym_case_statement] = STATE(5512), + [sym_function_definition] = STATE(5512), + [sym_compound_statement] = STATE(5512), + [sym_subshell] = STATE(5512), + [sym_pipeline] = STATE(5652), + [sym_list] = STATE(5512), + [sym_negated_command] = STATE(5512), + [sym_test_command] = STATE(5512), + [sym_declaration_command] = STATE(5512), + [sym_unset_command] = STATE(5512), + [sym_command] = STATE(5512), + [sym_command_name] = STATE(644), [sym_variable_assignment] = STATE(1791), - [sym_variable_assignments] = STATE(5439), - [sym_subscript] = STATE(6766), - [sym_file_redirect] = STATE(2585), - [sym_herestring_redirect] = STATE(2587), - [sym__expression] = STATE(3077), - [sym_binary_expression] = STATE(2952), - [sym_ternary_expression] = STATE(2952), - [sym_unary_expression] = STATE(2952), - [sym_postfix_expression] = STATE(2952), - [sym_parenthesized_expression] = STATE(2952), - [sym_arithmetic_expansion] = STATE(501), - [sym_brace_expression] = STATE(501), - [sym_concatenation] = STATE(525), - [sym_string] = STATE(501), - [sym_translated_string] = STATE(501), - [sym_number] = STATE(501), - [sym_simple_expansion] = STATE(501), - [sym_expansion] = STATE(501), - [sym_command_substitution] = STATE(501), - [sym_process_substitution] = STATE(501), - [aux_sym_redirected_statement_repeat2] = STATE(5229), - [aux_sym_command_repeat1] = STATE(950), - [aux_sym__literal_repeat1] = STATE(523), - [sym_word] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_until] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_function] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(171), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_declare] = ACTIONS(175), - [anon_sym_typeset] = ACTIONS(175), - [anon_sym_export] = ACTIONS(175), - [anon_sym_readonly] = ACTIONS(175), - [anon_sym_local] = ACTIONS(175), - [anon_sym_unset] = ACTIONS(177), - [anon_sym_unsetenv] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(151), - [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_LT_AMP] = ACTIONS(151), - [anon_sym_GT_AMP] = ACTIONS(151), - [anon_sym_GT_PIPE] = ACTIONS(153), - [anon_sym_LT_AMP_DASH] = ACTIONS(179), - [anon_sym_GT_AMP_DASH] = ACTIONS(179), - [anon_sym_LT_LT_LT] = ACTIONS(181), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(193), - [sym__special_character] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [sym_raw_string] = ACTIONS(199), - [sym_ansi_c_string] = ACTIONS(199), - [aux_sym_number_token1] = ACTIONS(201), - [aux_sym_number_token2] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(215), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(219), - [sym__brace_start] = ACTIONS(221), + [sym_variable_assignments] = STATE(5512), + [sym_subscript] = STATE(6803), + [sym_file_redirect] = STATE(2645), + [sym_herestring_redirect] = STATE(2646), + [sym__expression] = STATE(3190), + [sym_binary_expression] = STATE(3140), + [sym_ternary_expression] = STATE(3140), + [sym_unary_expression] = STATE(3140), + [sym_postfix_expression] = STATE(3140), + [sym_parenthesized_expression] = STATE(3140), + [sym_arithmetic_expansion] = STATE(497), + [sym_brace_expression] = STATE(497), + [sym_concatenation] = STATE(527), + [sym_string] = STATE(497), + [sym_translated_string] = STATE(497), + [sym_raw_string] = STATE(497), + [sym_number] = STATE(497), + [sym_simple_expansion] = STATE(497), + [sym_expansion] = STATE(497), + [sym_command_substitution] = STATE(497), + [sym_process_substitution] = STATE(497), + [aux_sym_redirected_statement_repeat2] = STATE(5188), + [aux_sym_command_repeat1] = STATE(855), + [aux_sym__literal_repeat1] = STATE(525), + [sym_word] = ACTIONS(147), + [anon_sym_for] = ACTIONS(149), + [anon_sym_select] = ACTIONS(151), + [anon_sym_LPAREN_LPAREN] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(155), + [anon_sym_GT] = ACTIONS(155), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_until] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_case] = ACTIONS(165), + [anon_sym_function] = ACTIONS(167), + [anon_sym_LBRACE] = ACTIONS(169), + [anon_sym_BANG] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_RBRACK] = ACTIONS(175), + [anon_sym_LBRACK_LBRACK] = ACTIONS(177), + [anon_sym_declare] = ACTIONS(179), + [anon_sym_typeset] = ACTIONS(179), + [anon_sym_export] = ACTIONS(179), + [anon_sym_readonly] = ACTIONS(179), + [anon_sym_local] = ACTIONS(179), + [anon_sym_unset] = ACTIONS(181), + [anon_sym_unsetenv] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(155), + [anon_sym_AMP_GT_GT] = ACTIONS(157), + [anon_sym_LT_AMP] = ACTIONS(155), + [anon_sym_GT_AMP] = ACTIONS(155), + [anon_sym_GT_PIPE] = ACTIONS(157), + [anon_sym_LT_AMP_DASH] = ACTIONS(183), + [anon_sym_GT_AMP_DASH] = ACTIONS(183), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_PLUS_PLUS2] = ACTIONS(187), + [anon_sym_DASH_DASH2] = ACTIONS(187), + [anon_sym_DASH2] = ACTIONS(189), + [anon_sym_PLUS2] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(197), + [sym__special_character] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [sym_ansi_c_string] = ACTIONS(205), + [aux_sym_number_token1] = ACTIONS(207), + [aux_sym_number_token2] = ACTIONS(209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(221), + [sym_variable_name] = ACTIONS(223), + [sym_test_operator] = ACTIONS(225), + [sym__brace_start] = ACTIONS(227), }, [5] = { - [sym__statement_not_pipeline] = STATE(6684), - [sym_redirected_statement] = STATE(5305), - [sym_for_statement] = STATE(5439), - [sym_c_style_for_statement] = STATE(5439), - [sym_while_statement] = STATE(5133), - [sym_if_statement] = STATE(5133), - [sym_case_statement] = STATE(5439), - [sym_function_definition] = STATE(5439), - [sym_compound_statement] = STATE(5439), - [sym_subshell] = STATE(5439), - [sym_pipeline] = STATE(5593), - [sym_list] = STATE(5439), - [sym_negated_command] = STATE(5439), - [sym_test_command] = STATE(5439), - [sym_declaration_command] = STATE(5439), - [sym_unset_command] = STATE(5439), - [sym_command] = STATE(5439), - [sym_command_name] = STATE(634), + [sym__statement_not_pipeline] = STATE(6667), + [sym_redirected_statement] = STATE(5343), + [sym_for_statement] = STATE(5512), + [sym_c_style_for_statement] = STATE(5512), + [sym_while_statement] = STATE(5184), + [sym_if_statement] = STATE(5184), + [sym_case_statement] = STATE(5512), + [sym_function_definition] = STATE(5512), + [sym_compound_statement] = STATE(5512), + [sym_subshell] = STATE(5512), + [sym_pipeline] = STATE(5652), + [sym_list] = STATE(5512), + [sym_negated_command] = STATE(5512), + [sym_test_command] = STATE(5512), + [sym_declaration_command] = STATE(5512), + [sym_unset_command] = STATE(5512), + [sym_command] = STATE(5512), + [sym_command_name] = STATE(644), [sym_variable_assignment] = STATE(1791), - [sym_variable_assignments] = STATE(5439), - [sym_subscript] = STATE(6766), - [sym_file_redirect] = STATE(2585), - [sym_herestring_redirect] = STATE(2587), - [sym__expression] = STATE(3018), - [sym_binary_expression] = STATE(2952), - [sym_ternary_expression] = STATE(2952), - [sym_unary_expression] = STATE(2952), - [sym_postfix_expression] = STATE(2952), - [sym_parenthesized_expression] = STATE(2952), - [sym_arithmetic_expansion] = STATE(501), - [sym_brace_expression] = STATE(501), - [sym_concatenation] = STATE(525), - [sym_string] = STATE(501), - [sym_translated_string] = STATE(501), - [sym_number] = STATE(501), - [sym_simple_expansion] = STATE(501), - [sym_expansion] = STATE(501), - [sym_command_substitution] = STATE(501), - [sym_process_substitution] = STATE(501), - [aux_sym_redirected_statement_repeat2] = STATE(5229), - [aux_sym_command_repeat1] = STATE(950), - [aux_sym__literal_repeat1] = STATE(523), - [sym_word] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_until] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_function] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(223), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_declare] = ACTIONS(175), - [anon_sym_typeset] = ACTIONS(175), - [anon_sym_export] = ACTIONS(175), - [anon_sym_readonly] = ACTIONS(175), - [anon_sym_local] = ACTIONS(175), - [anon_sym_unset] = ACTIONS(177), - [anon_sym_unsetenv] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(151), - [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_LT_AMP] = ACTIONS(151), - [anon_sym_GT_AMP] = ACTIONS(151), - [anon_sym_GT_PIPE] = ACTIONS(153), - [anon_sym_LT_AMP_DASH] = ACTIONS(179), - [anon_sym_GT_AMP_DASH] = ACTIONS(179), - [anon_sym_LT_LT_LT] = ACTIONS(181), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(193), - [sym__special_character] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [sym_raw_string] = ACTIONS(199), - [sym_ansi_c_string] = ACTIONS(199), - [aux_sym_number_token1] = ACTIONS(201), - [aux_sym_number_token2] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(215), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(219), - [sym__brace_start] = ACTIONS(221), + [sym_variable_assignments] = STATE(5512), + [sym_subscript] = STATE(6803), + [sym_file_redirect] = STATE(2645), + [sym_herestring_redirect] = STATE(2646), + [sym__expression] = STATE(3098), + [sym_binary_expression] = STATE(3140), + [sym_ternary_expression] = STATE(3140), + [sym_unary_expression] = STATE(3140), + [sym_postfix_expression] = STATE(3140), + [sym_parenthesized_expression] = STATE(3140), + [sym_arithmetic_expansion] = STATE(497), + [sym_brace_expression] = STATE(497), + [sym_concatenation] = STATE(527), + [sym_string] = STATE(497), + [sym_translated_string] = STATE(497), + [sym_raw_string] = STATE(497), + [sym_number] = STATE(497), + [sym_simple_expansion] = STATE(497), + [sym_expansion] = STATE(497), + [sym_command_substitution] = STATE(497), + [sym_process_substitution] = STATE(497), + [aux_sym_redirected_statement_repeat2] = STATE(5188), + [aux_sym_command_repeat1] = STATE(855), + [aux_sym__literal_repeat1] = STATE(525), + [sym_word] = ACTIONS(147), + [anon_sym_for] = ACTIONS(149), + [anon_sym_select] = ACTIONS(151), + [anon_sym_LPAREN_LPAREN] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(155), + [anon_sym_GT] = ACTIONS(155), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_until] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_case] = ACTIONS(165), + [anon_sym_function] = ACTIONS(167), + [anon_sym_LBRACE] = ACTIONS(169), + [anon_sym_BANG] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_RBRACK] = ACTIONS(229), + [anon_sym_LBRACK_LBRACK] = ACTIONS(177), + [anon_sym_declare] = ACTIONS(179), + [anon_sym_typeset] = ACTIONS(179), + [anon_sym_export] = ACTIONS(179), + [anon_sym_readonly] = ACTIONS(179), + [anon_sym_local] = ACTIONS(179), + [anon_sym_unset] = ACTIONS(181), + [anon_sym_unsetenv] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(155), + [anon_sym_AMP_GT_GT] = ACTIONS(157), + [anon_sym_LT_AMP] = ACTIONS(155), + [anon_sym_GT_AMP] = ACTIONS(155), + [anon_sym_GT_PIPE] = ACTIONS(157), + [anon_sym_LT_AMP_DASH] = ACTIONS(183), + [anon_sym_GT_AMP_DASH] = ACTIONS(183), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_PLUS_PLUS2] = ACTIONS(187), + [anon_sym_DASH_DASH2] = ACTIONS(187), + [anon_sym_DASH2] = ACTIONS(189), + [anon_sym_PLUS2] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(197), + [sym__special_character] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [sym_ansi_c_string] = ACTIONS(205), + [aux_sym_number_token1] = ACTIONS(207), + [aux_sym_number_token2] = ACTIONS(209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(221), + [sym_variable_name] = ACTIONS(223), + [sym_test_operator] = ACTIONS(225), + [sym__brace_start] = ACTIONS(227), }, [6] = { - [sym__statement_not_pipeline] = STATE(6684), - [sym_redirected_statement] = STATE(5343), - [sym_for_statement] = STATE(5439), - [sym_c_style_for_statement] = STATE(5439), - [sym_while_statement] = STATE(5133), - [sym_if_statement] = STATE(5133), - [sym_case_statement] = STATE(5439), - [sym_function_definition] = STATE(5439), - [sym_compound_statement] = STATE(5439), - [sym_subshell] = STATE(5439), - [sym_pipeline] = STATE(5593), - [sym_list] = STATE(5439), - [sym_negated_command] = STATE(5439), - [sym_test_command] = STATE(5439), - [sym_declaration_command] = STATE(5439), - [sym_unset_command] = STATE(5439), - [sym_command] = STATE(5439), - [sym_command_name] = STATE(634), + [sym__statement_not_pipeline] = STATE(6667), + [sym_redirected_statement] = STATE(5411), + [sym_for_statement] = STATE(5512), + [sym_c_style_for_statement] = STATE(5512), + [sym_while_statement] = STATE(5184), + [sym_if_statement] = STATE(5184), + [sym_case_statement] = STATE(5512), + [sym_function_definition] = STATE(5512), + [sym_compound_statement] = STATE(5512), + [sym_subshell] = STATE(5512), + [sym_pipeline] = STATE(5652), + [sym_list] = STATE(5512), + [sym_negated_command] = STATE(5512), + [sym_test_command] = STATE(5512), + [sym_declaration_command] = STATE(5512), + [sym_unset_command] = STATE(5512), + [sym_command] = STATE(5512), + [sym_command_name] = STATE(644), [sym_variable_assignment] = STATE(1791), - [sym_variable_assignments] = STATE(5439), - [sym_subscript] = STATE(6766), - [sym_file_redirect] = STATE(2585), - [sym_herestring_redirect] = STATE(2587), - [sym__expression] = STATE(3067), - [sym_binary_expression] = STATE(2952), - [sym_ternary_expression] = STATE(2952), - [sym_unary_expression] = STATE(2952), - [sym_postfix_expression] = STATE(2952), - [sym_parenthesized_expression] = STATE(2952), - [sym_arithmetic_expansion] = STATE(501), - [sym_brace_expression] = STATE(501), - [sym_concatenation] = STATE(525), - [sym_string] = STATE(501), - [sym_translated_string] = STATE(501), - [sym_number] = STATE(501), - [sym_simple_expansion] = STATE(501), - [sym_expansion] = STATE(501), - [sym_command_substitution] = STATE(501), - [sym_process_substitution] = STATE(501), - [aux_sym_redirected_statement_repeat2] = STATE(5229), - [aux_sym_command_repeat1] = STATE(950), - [aux_sym__literal_repeat1] = STATE(523), - [sym_word] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_until] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_function] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(225), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_declare] = ACTIONS(175), - [anon_sym_typeset] = ACTIONS(175), - [anon_sym_export] = ACTIONS(175), - [anon_sym_readonly] = ACTIONS(175), - [anon_sym_local] = ACTIONS(175), - [anon_sym_unset] = ACTIONS(177), - [anon_sym_unsetenv] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(151), - [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_LT_AMP] = ACTIONS(151), - [anon_sym_GT_AMP] = ACTIONS(151), - [anon_sym_GT_PIPE] = ACTIONS(153), - [anon_sym_LT_AMP_DASH] = ACTIONS(179), - [anon_sym_GT_AMP_DASH] = ACTIONS(179), - [anon_sym_LT_LT_LT] = ACTIONS(181), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(193), - [sym__special_character] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [sym_raw_string] = ACTIONS(199), - [sym_ansi_c_string] = ACTIONS(199), - [aux_sym_number_token1] = ACTIONS(201), - [aux_sym_number_token2] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(215), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(219), - [sym__brace_start] = ACTIONS(221), + [sym_variable_assignments] = STATE(5512), + [sym_subscript] = STATE(6803), + [sym_file_redirect] = STATE(2645), + [sym_herestring_redirect] = STATE(2646), + [sym__expression] = STATE(3013), + [sym_binary_expression] = STATE(3140), + [sym_ternary_expression] = STATE(3140), + [sym_unary_expression] = STATE(3140), + [sym_postfix_expression] = STATE(3140), + [sym_parenthesized_expression] = STATE(3140), + [sym_arithmetic_expansion] = STATE(497), + [sym_brace_expression] = STATE(497), + [sym_concatenation] = STATE(527), + [sym_string] = STATE(497), + [sym_translated_string] = STATE(497), + [sym_raw_string] = STATE(497), + [sym_number] = STATE(497), + [sym_simple_expansion] = STATE(497), + [sym_expansion] = STATE(497), + [sym_command_substitution] = STATE(497), + [sym_process_substitution] = STATE(497), + [aux_sym_redirected_statement_repeat2] = STATE(5188), + [aux_sym_command_repeat1] = STATE(855), + [aux_sym__literal_repeat1] = STATE(525), + [sym_word] = ACTIONS(147), + [anon_sym_for] = ACTIONS(149), + [anon_sym_select] = ACTIONS(151), + [anon_sym_LPAREN_LPAREN] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(155), + [anon_sym_GT] = ACTIONS(155), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_until] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_case] = ACTIONS(165), + [anon_sym_function] = ACTIONS(167), + [anon_sym_LBRACE] = ACTIONS(169), + [anon_sym_BANG] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_RBRACK] = ACTIONS(231), + [anon_sym_LBRACK_LBRACK] = ACTIONS(177), + [anon_sym_declare] = ACTIONS(179), + [anon_sym_typeset] = ACTIONS(179), + [anon_sym_export] = ACTIONS(179), + [anon_sym_readonly] = ACTIONS(179), + [anon_sym_local] = ACTIONS(179), + [anon_sym_unset] = ACTIONS(181), + [anon_sym_unsetenv] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(155), + [anon_sym_AMP_GT_GT] = ACTIONS(157), + [anon_sym_LT_AMP] = ACTIONS(155), + [anon_sym_GT_AMP] = ACTIONS(155), + [anon_sym_GT_PIPE] = ACTIONS(157), + [anon_sym_LT_AMP_DASH] = ACTIONS(183), + [anon_sym_GT_AMP_DASH] = ACTIONS(183), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_PLUS_PLUS2] = ACTIONS(187), + [anon_sym_DASH_DASH2] = ACTIONS(187), + [anon_sym_DASH2] = ACTIONS(189), + [anon_sym_PLUS2] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(197), + [sym__special_character] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [sym_ansi_c_string] = ACTIONS(205), + [aux_sym_number_token1] = ACTIONS(207), + [aux_sym_number_token2] = ACTIONS(209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(221), + [sym_variable_name] = ACTIONS(223), + [sym_test_operator] = ACTIONS(225), + [sym__brace_start] = ACTIONS(227), }, [7] = { - [sym__statement_not_pipeline] = STATE(6684), - [sym_redirected_statement] = STATE(5265), - [sym_for_statement] = STATE(5439), - [sym_c_style_for_statement] = STATE(5439), - [sym_while_statement] = STATE(5133), - [sym_if_statement] = STATE(5133), - [sym_case_statement] = STATE(5439), - [sym_function_definition] = STATE(5439), - [sym_compound_statement] = STATE(5439), - [sym_subshell] = STATE(5439), - [sym_pipeline] = STATE(5593), - [sym_list] = STATE(5439), - [sym_negated_command] = STATE(5439), - [sym_test_command] = STATE(5439), - [sym_declaration_command] = STATE(5439), - [sym_unset_command] = STATE(5439), - [sym_command] = STATE(5439), - [sym_command_name] = STATE(634), + [sym__statement_not_pipeline] = STATE(6667), + [sym_redirected_statement] = STATE(5350), + [sym_for_statement] = STATE(5512), + [sym_c_style_for_statement] = STATE(5512), + [sym_while_statement] = STATE(5184), + [sym_if_statement] = STATE(5184), + [sym_case_statement] = STATE(5512), + [sym_function_definition] = STATE(5512), + [sym_compound_statement] = STATE(5512), + [sym_subshell] = STATE(5512), + [sym_pipeline] = STATE(5652), + [sym_list] = STATE(5512), + [sym_negated_command] = STATE(5512), + [sym_test_command] = STATE(5512), + [sym_declaration_command] = STATE(5512), + [sym_unset_command] = STATE(5512), + [sym_command] = STATE(5512), + [sym_command_name] = STATE(644), [sym_variable_assignment] = STATE(1791), - [sym_variable_assignments] = STATE(5439), - [sym_subscript] = STATE(6766), - [sym_file_redirect] = STATE(2585), - [sym_herestring_redirect] = STATE(2587), - [sym__expression] = STATE(2960), - [sym_binary_expression] = STATE(2952), - [sym_ternary_expression] = STATE(2952), - [sym_unary_expression] = STATE(2952), - [sym_postfix_expression] = STATE(2952), - [sym_parenthesized_expression] = STATE(2952), - [sym_arithmetic_expansion] = STATE(501), - [sym_brace_expression] = STATE(501), - [sym_concatenation] = STATE(525), - [sym_string] = STATE(501), - [sym_translated_string] = STATE(501), - [sym_number] = STATE(501), - [sym_simple_expansion] = STATE(501), - [sym_expansion] = STATE(501), - [sym_command_substitution] = STATE(501), - [sym_process_substitution] = STATE(501), - [aux_sym_redirected_statement_repeat2] = STATE(5229), - [aux_sym_command_repeat1] = STATE(950), - [aux_sym__literal_repeat1] = STATE(523), - [sym_word] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_until] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_function] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(227), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_declare] = ACTIONS(175), - [anon_sym_typeset] = ACTIONS(175), - [anon_sym_export] = ACTIONS(175), - [anon_sym_readonly] = ACTIONS(175), - [anon_sym_local] = ACTIONS(175), - [anon_sym_unset] = ACTIONS(177), - [anon_sym_unsetenv] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(151), - [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_LT_AMP] = ACTIONS(151), - [anon_sym_GT_AMP] = ACTIONS(151), - [anon_sym_GT_PIPE] = ACTIONS(153), - [anon_sym_LT_AMP_DASH] = ACTIONS(179), - [anon_sym_GT_AMP_DASH] = ACTIONS(179), - [anon_sym_LT_LT_LT] = ACTIONS(181), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(193), - [sym__special_character] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [sym_raw_string] = ACTIONS(199), - [sym_ansi_c_string] = ACTIONS(199), - [aux_sym_number_token1] = ACTIONS(201), - [aux_sym_number_token2] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(215), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(219), - [sym__brace_start] = ACTIONS(221), + [sym_variable_assignments] = STATE(5512), + [sym_subscript] = STATE(6803), + [sym_file_redirect] = STATE(2645), + [sym_herestring_redirect] = STATE(2646), + [sym__expression] = STATE(3228), + [sym_binary_expression] = STATE(3140), + [sym_ternary_expression] = STATE(3140), + [sym_unary_expression] = STATE(3140), + [sym_postfix_expression] = STATE(3140), + [sym_parenthesized_expression] = STATE(3140), + [sym_arithmetic_expansion] = STATE(497), + [sym_brace_expression] = STATE(497), + [sym_concatenation] = STATE(527), + [sym_string] = STATE(497), + [sym_translated_string] = STATE(497), + [sym_raw_string] = STATE(497), + [sym_number] = STATE(497), + [sym_simple_expansion] = STATE(497), + [sym_expansion] = STATE(497), + [sym_command_substitution] = STATE(497), + [sym_process_substitution] = STATE(497), + [aux_sym_redirected_statement_repeat2] = STATE(5188), + [aux_sym_command_repeat1] = STATE(855), + [aux_sym__literal_repeat1] = STATE(525), + [sym_word] = ACTIONS(147), + [anon_sym_for] = ACTIONS(149), + [anon_sym_select] = ACTIONS(151), + [anon_sym_LPAREN_LPAREN] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(155), + [anon_sym_GT] = ACTIONS(155), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_until] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_case] = ACTIONS(165), + [anon_sym_function] = ACTIONS(167), + [anon_sym_LBRACE] = ACTIONS(169), + [anon_sym_BANG] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_RBRACK] = ACTIONS(233), + [anon_sym_LBRACK_LBRACK] = ACTIONS(177), + [anon_sym_declare] = ACTIONS(179), + [anon_sym_typeset] = ACTIONS(179), + [anon_sym_export] = ACTIONS(179), + [anon_sym_readonly] = ACTIONS(179), + [anon_sym_local] = ACTIONS(179), + [anon_sym_unset] = ACTIONS(181), + [anon_sym_unsetenv] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(155), + [anon_sym_AMP_GT_GT] = ACTIONS(157), + [anon_sym_LT_AMP] = ACTIONS(155), + [anon_sym_GT_AMP] = ACTIONS(155), + [anon_sym_GT_PIPE] = ACTIONS(157), + [anon_sym_LT_AMP_DASH] = ACTIONS(183), + [anon_sym_GT_AMP_DASH] = ACTIONS(183), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_PLUS_PLUS2] = ACTIONS(187), + [anon_sym_DASH_DASH2] = ACTIONS(187), + [anon_sym_DASH2] = ACTIONS(189), + [anon_sym_PLUS2] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(197), + [sym__special_character] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [sym_ansi_c_string] = ACTIONS(205), + [aux_sym_number_token1] = ACTIONS(207), + [aux_sym_number_token2] = ACTIONS(209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(221), + [sym_variable_name] = ACTIONS(223), + [sym_test_operator] = ACTIONS(225), + [sym__brace_start] = ACTIONS(227), }, [8] = { - [sym__statement_not_pipeline] = STATE(6684), - [sym_redirected_statement] = STATE(5284), - [sym_for_statement] = STATE(5439), - [sym_c_style_for_statement] = STATE(5439), - [sym_while_statement] = STATE(5133), - [sym_if_statement] = STATE(5133), - [sym_case_statement] = STATE(5439), - [sym_function_definition] = STATE(5439), - [sym_compound_statement] = STATE(5439), - [sym_subshell] = STATE(5439), - [sym_pipeline] = STATE(5593), - [sym_list] = STATE(5439), - [sym_negated_command] = STATE(5439), - [sym_test_command] = STATE(5439), - [sym_declaration_command] = STATE(5439), - [sym_unset_command] = STATE(5439), - [sym_command] = STATE(5439), - [sym_command_name] = STATE(634), + [sym__statement_not_pipeline] = STATE(6667), + [sym_redirected_statement] = STATE(5371), + [sym_for_statement] = STATE(5512), + [sym_c_style_for_statement] = STATE(5512), + [sym_while_statement] = STATE(5184), + [sym_if_statement] = STATE(5184), + [sym_case_statement] = STATE(5512), + [sym_function_definition] = STATE(5512), + [sym_compound_statement] = STATE(5512), + [sym_subshell] = STATE(5512), + [sym_pipeline] = STATE(5652), + [sym_list] = STATE(5512), + [sym_negated_command] = STATE(5512), + [sym_test_command] = STATE(5512), + [sym_declaration_command] = STATE(5512), + [sym_unset_command] = STATE(5512), + [sym_command] = STATE(5512), + [sym_command_name] = STATE(644), [sym_variable_assignment] = STATE(1791), - [sym_variable_assignments] = STATE(5439), - [sym_subscript] = STATE(6766), - [sym_file_redirect] = STATE(2585), - [sym_herestring_redirect] = STATE(2587), - [sym__expression] = STATE(2981), - [sym_binary_expression] = STATE(2952), - [sym_ternary_expression] = STATE(2952), - [sym_unary_expression] = STATE(2952), - [sym_postfix_expression] = STATE(2952), - [sym_parenthesized_expression] = STATE(2952), - [sym_arithmetic_expansion] = STATE(501), - [sym_brace_expression] = STATE(501), - [sym_concatenation] = STATE(525), - [sym_string] = STATE(501), - [sym_translated_string] = STATE(501), - [sym_number] = STATE(501), - [sym_simple_expansion] = STATE(501), - [sym_expansion] = STATE(501), - [sym_command_substitution] = STATE(501), - [sym_process_substitution] = STATE(501), - [aux_sym_redirected_statement_repeat2] = STATE(5229), - [aux_sym_command_repeat1] = STATE(950), - [aux_sym__literal_repeat1] = STATE(523), - [sym_word] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_until] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_function] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(229), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_declare] = ACTIONS(175), - [anon_sym_typeset] = ACTIONS(175), - [anon_sym_export] = ACTIONS(175), - [anon_sym_readonly] = ACTIONS(175), - [anon_sym_local] = ACTIONS(175), - [anon_sym_unset] = ACTIONS(177), - [anon_sym_unsetenv] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(151), - [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_LT_AMP] = ACTIONS(151), - [anon_sym_GT_AMP] = ACTIONS(151), - [anon_sym_GT_PIPE] = ACTIONS(153), - [anon_sym_LT_AMP_DASH] = ACTIONS(179), - [anon_sym_GT_AMP_DASH] = ACTIONS(179), - [anon_sym_LT_LT_LT] = ACTIONS(181), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(193), - [sym__special_character] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [sym_raw_string] = ACTIONS(199), - [sym_ansi_c_string] = ACTIONS(199), - [aux_sym_number_token1] = ACTIONS(201), - [aux_sym_number_token2] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(215), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(219), - [sym__brace_start] = ACTIONS(221), + [sym_variable_assignments] = STATE(5512), + [sym_subscript] = STATE(6803), + [sym_file_redirect] = STATE(2645), + [sym_herestring_redirect] = STATE(2646), + [sym__expression] = STATE(3024), + [sym_binary_expression] = STATE(3140), + [sym_ternary_expression] = STATE(3140), + [sym_unary_expression] = STATE(3140), + [sym_postfix_expression] = STATE(3140), + [sym_parenthesized_expression] = STATE(3140), + [sym_arithmetic_expansion] = STATE(497), + [sym_brace_expression] = STATE(497), + [sym_concatenation] = STATE(527), + [sym_string] = STATE(497), + [sym_translated_string] = STATE(497), + [sym_raw_string] = STATE(497), + [sym_number] = STATE(497), + [sym_simple_expansion] = STATE(497), + [sym_expansion] = STATE(497), + [sym_command_substitution] = STATE(497), + [sym_process_substitution] = STATE(497), + [aux_sym_redirected_statement_repeat2] = STATE(5188), + [aux_sym_command_repeat1] = STATE(855), + [aux_sym__literal_repeat1] = STATE(525), + [sym_word] = ACTIONS(147), + [anon_sym_for] = ACTIONS(149), + [anon_sym_select] = ACTIONS(151), + [anon_sym_LPAREN_LPAREN] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(155), + [anon_sym_GT] = ACTIONS(155), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_until] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_case] = ACTIONS(165), + [anon_sym_function] = ACTIONS(167), + [anon_sym_LBRACE] = ACTIONS(169), + [anon_sym_BANG] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_RBRACK] = ACTIONS(235), + [anon_sym_LBRACK_LBRACK] = ACTIONS(177), + [anon_sym_declare] = ACTIONS(179), + [anon_sym_typeset] = ACTIONS(179), + [anon_sym_export] = ACTIONS(179), + [anon_sym_readonly] = ACTIONS(179), + [anon_sym_local] = ACTIONS(179), + [anon_sym_unset] = ACTIONS(181), + [anon_sym_unsetenv] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(155), + [anon_sym_AMP_GT_GT] = ACTIONS(157), + [anon_sym_LT_AMP] = ACTIONS(155), + [anon_sym_GT_AMP] = ACTIONS(155), + [anon_sym_GT_PIPE] = ACTIONS(157), + [anon_sym_LT_AMP_DASH] = ACTIONS(183), + [anon_sym_GT_AMP_DASH] = ACTIONS(183), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_PLUS_PLUS2] = ACTIONS(187), + [anon_sym_DASH_DASH2] = ACTIONS(187), + [anon_sym_DASH2] = ACTIONS(189), + [anon_sym_PLUS2] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(197), + [sym__special_character] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [sym_ansi_c_string] = ACTIONS(205), + [aux_sym_number_token1] = ACTIONS(207), + [aux_sym_number_token2] = ACTIONS(209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(221), + [sym_variable_name] = ACTIONS(223), + [sym_test_operator] = ACTIONS(225), + [sym__brace_start] = ACTIONS(227), }, [9] = { - [sym__statement_not_pipeline] = STATE(6684), - [sym_redirected_statement] = STATE(5288), - [sym_for_statement] = STATE(5439), - [sym_c_style_for_statement] = STATE(5439), - [sym_while_statement] = STATE(5133), - [sym_if_statement] = STATE(5133), - [sym_case_statement] = STATE(5439), - [sym_function_definition] = STATE(5439), - [sym_compound_statement] = STATE(5439), - [sym_subshell] = STATE(5439), - [sym_pipeline] = STATE(5593), - [sym_list] = STATE(5439), - [sym_negated_command] = STATE(5439), - [sym_test_command] = STATE(5439), - [sym_declaration_command] = STATE(5439), - [sym_unset_command] = STATE(5439), - [sym_command] = STATE(5439), - [sym_command_name] = STATE(634), + [sym__statement_not_pipeline] = STATE(6667), + [sym_redirected_statement] = STATE(5427), + [sym_for_statement] = STATE(5512), + [sym_c_style_for_statement] = STATE(5512), + [sym_while_statement] = STATE(5184), + [sym_if_statement] = STATE(5184), + [sym_case_statement] = STATE(5512), + [sym_function_definition] = STATE(5512), + [sym_compound_statement] = STATE(5512), + [sym_subshell] = STATE(5512), + [sym_pipeline] = STATE(5652), + [sym_list] = STATE(5512), + [sym_negated_command] = STATE(5512), + [sym_test_command] = STATE(5512), + [sym_declaration_command] = STATE(5512), + [sym_unset_command] = STATE(5512), + [sym_command] = STATE(5512), + [sym_command_name] = STATE(644), [sym_variable_assignment] = STATE(1791), - [sym_variable_assignments] = STATE(5439), - [sym_subscript] = STATE(6766), - [sym_file_redirect] = STATE(2585), - [sym_herestring_redirect] = STATE(2587), - [sym__expression] = STATE(2999), - [sym_binary_expression] = STATE(2952), - [sym_ternary_expression] = STATE(2952), - [sym_unary_expression] = STATE(2952), - [sym_postfix_expression] = STATE(2952), - [sym_parenthesized_expression] = STATE(2952), - [sym_arithmetic_expansion] = STATE(501), - [sym_brace_expression] = STATE(501), - [sym_concatenation] = STATE(525), - [sym_string] = STATE(501), - [sym_translated_string] = STATE(501), - [sym_number] = STATE(501), - [sym_simple_expansion] = STATE(501), - [sym_expansion] = STATE(501), - [sym_command_substitution] = STATE(501), - [sym_process_substitution] = STATE(501), - [aux_sym_redirected_statement_repeat2] = STATE(5229), - [aux_sym_command_repeat1] = STATE(950), - [aux_sym__literal_repeat1] = STATE(523), - [sym_word] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_until] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_function] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(231), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_declare] = ACTIONS(175), - [anon_sym_typeset] = ACTIONS(175), - [anon_sym_export] = ACTIONS(175), - [anon_sym_readonly] = ACTIONS(175), - [anon_sym_local] = ACTIONS(175), - [anon_sym_unset] = ACTIONS(177), - [anon_sym_unsetenv] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(151), - [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_LT_AMP] = ACTIONS(151), - [anon_sym_GT_AMP] = ACTIONS(151), - [anon_sym_GT_PIPE] = ACTIONS(153), - [anon_sym_LT_AMP_DASH] = ACTIONS(179), - [anon_sym_GT_AMP_DASH] = ACTIONS(179), - [anon_sym_LT_LT_LT] = ACTIONS(181), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(193), - [sym__special_character] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [sym_raw_string] = ACTIONS(199), - [sym_ansi_c_string] = ACTIONS(199), - [aux_sym_number_token1] = ACTIONS(201), - [aux_sym_number_token2] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(215), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(219), - [sym__brace_start] = ACTIONS(221), + [sym_variable_assignments] = STATE(5512), + [sym_subscript] = STATE(6803), + [sym_file_redirect] = STATE(2645), + [sym_herestring_redirect] = STATE(2646), + [sym__expression] = STATE(3042), + [sym_binary_expression] = STATE(3140), + [sym_ternary_expression] = STATE(3140), + [sym_unary_expression] = STATE(3140), + [sym_postfix_expression] = STATE(3140), + [sym_parenthesized_expression] = STATE(3140), + [sym_arithmetic_expansion] = STATE(497), + [sym_brace_expression] = STATE(497), + [sym_concatenation] = STATE(527), + [sym_string] = STATE(497), + [sym_translated_string] = STATE(497), + [sym_raw_string] = STATE(497), + [sym_number] = STATE(497), + [sym_simple_expansion] = STATE(497), + [sym_expansion] = STATE(497), + [sym_command_substitution] = STATE(497), + [sym_process_substitution] = STATE(497), + [aux_sym_redirected_statement_repeat2] = STATE(5188), + [aux_sym_command_repeat1] = STATE(855), + [aux_sym__literal_repeat1] = STATE(525), + [sym_word] = ACTIONS(147), + [anon_sym_for] = ACTIONS(149), + [anon_sym_select] = ACTIONS(151), + [anon_sym_LPAREN_LPAREN] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(155), + [anon_sym_GT] = ACTIONS(155), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_until] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_case] = ACTIONS(165), + [anon_sym_function] = ACTIONS(167), + [anon_sym_LBRACE] = ACTIONS(169), + [anon_sym_BANG] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_RBRACK] = ACTIONS(237), + [anon_sym_LBRACK_LBRACK] = ACTIONS(177), + [anon_sym_declare] = ACTIONS(179), + [anon_sym_typeset] = ACTIONS(179), + [anon_sym_export] = ACTIONS(179), + [anon_sym_readonly] = ACTIONS(179), + [anon_sym_local] = ACTIONS(179), + [anon_sym_unset] = ACTIONS(181), + [anon_sym_unsetenv] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(155), + [anon_sym_AMP_GT_GT] = ACTIONS(157), + [anon_sym_LT_AMP] = ACTIONS(155), + [anon_sym_GT_AMP] = ACTIONS(155), + [anon_sym_GT_PIPE] = ACTIONS(157), + [anon_sym_LT_AMP_DASH] = ACTIONS(183), + [anon_sym_GT_AMP_DASH] = ACTIONS(183), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_PLUS_PLUS2] = ACTIONS(187), + [anon_sym_DASH_DASH2] = ACTIONS(187), + [anon_sym_DASH2] = ACTIONS(189), + [anon_sym_PLUS2] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(197), + [sym__special_character] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [sym_ansi_c_string] = ACTIONS(205), + [aux_sym_number_token1] = ACTIONS(207), + [aux_sym_number_token2] = ACTIONS(209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(221), + [sym_variable_name] = ACTIONS(223), + [sym_test_operator] = ACTIONS(225), + [sym__brace_start] = ACTIONS(227), }, [10] = { - [sym__statement_not_pipeline] = STATE(6684), - [sym_redirected_statement] = STATE(5321), - [sym_for_statement] = STATE(5439), - [sym_c_style_for_statement] = STATE(5439), - [sym_while_statement] = STATE(5133), - [sym_if_statement] = STATE(5133), - [sym_case_statement] = STATE(5439), - [sym_function_definition] = STATE(5439), - [sym_compound_statement] = STATE(5439), - [sym_subshell] = STATE(5439), - [sym_pipeline] = STATE(5593), - [sym_list] = STATE(5439), - [sym_negated_command] = STATE(5439), - [sym_test_command] = STATE(5439), - [sym_declaration_command] = STATE(5439), - [sym_unset_command] = STATE(5439), - [sym_command] = STATE(5439), - [sym_command_name] = STATE(634), + [sym__statement_not_pipeline] = STATE(6667), + [sym_redirected_statement] = STATE(5384), + [sym_for_statement] = STATE(5512), + [sym_c_style_for_statement] = STATE(5512), + [sym_while_statement] = STATE(5184), + [sym_if_statement] = STATE(5184), + [sym_case_statement] = STATE(5512), + [sym_function_definition] = STATE(5512), + [sym_compound_statement] = STATE(5512), + [sym_subshell] = STATE(5512), + [sym_pipeline] = STATE(5652), + [sym_list] = STATE(5512), + [sym_negated_command] = STATE(5512), + [sym_test_command] = STATE(5512), + [sym_declaration_command] = STATE(5512), + [sym_unset_command] = STATE(5512), + [sym_command] = STATE(5512), + [sym_command_name] = STATE(644), [sym_variable_assignment] = STATE(1791), - [sym_variable_assignments] = STATE(5439), - [sym_subscript] = STATE(6766), - [sym_file_redirect] = STATE(2585), - [sym_herestring_redirect] = STATE(2587), - [sym__expression] = STATE(3036), - [sym_binary_expression] = STATE(2952), - [sym_ternary_expression] = STATE(2952), - [sym_unary_expression] = STATE(2952), - [sym_postfix_expression] = STATE(2952), - [sym_parenthesized_expression] = STATE(2952), - [sym_arithmetic_expansion] = STATE(501), - [sym_brace_expression] = STATE(501), - [sym_concatenation] = STATE(525), - [sym_string] = STATE(501), - [sym_translated_string] = STATE(501), - [sym_number] = STATE(501), - [sym_simple_expansion] = STATE(501), - [sym_expansion] = STATE(501), - [sym_command_substitution] = STATE(501), - [sym_process_substitution] = STATE(501), - [aux_sym_redirected_statement_repeat2] = STATE(5229), - [aux_sym_command_repeat1] = STATE(950), - [aux_sym__literal_repeat1] = STATE(523), - [sym_word] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_until] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_function] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(233), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_declare] = ACTIONS(175), - [anon_sym_typeset] = ACTIONS(175), - [anon_sym_export] = ACTIONS(175), - [anon_sym_readonly] = ACTIONS(175), - [anon_sym_local] = ACTIONS(175), - [anon_sym_unset] = ACTIONS(177), - [anon_sym_unsetenv] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(151), - [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_LT_AMP] = ACTIONS(151), - [anon_sym_GT_AMP] = ACTIONS(151), - [anon_sym_GT_PIPE] = ACTIONS(153), - [anon_sym_LT_AMP_DASH] = ACTIONS(179), - [anon_sym_GT_AMP_DASH] = ACTIONS(179), - [anon_sym_LT_LT_LT] = ACTIONS(181), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(193), - [sym__special_character] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [sym_raw_string] = ACTIONS(199), - [sym_ansi_c_string] = ACTIONS(199), - [aux_sym_number_token1] = ACTIONS(201), - [aux_sym_number_token2] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(215), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(219), - [sym__brace_start] = ACTIONS(221), + [sym_variable_assignments] = STATE(5512), + [sym_subscript] = STATE(6803), + [sym_file_redirect] = STATE(2645), + [sym_herestring_redirect] = STATE(2646), + [sym__expression] = STATE(3139), + [sym_binary_expression] = STATE(3140), + [sym_ternary_expression] = STATE(3140), + [sym_unary_expression] = STATE(3140), + [sym_postfix_expression] = STATE(3140), + [sym_parenthesized_expression] = STATE(3140), + [sym_arithmetic_expansion] = STATE(497), + [sym_brace_expression] = STATE(497), + [sym_concatenation] = STATE(527), + [sym_string] = STATE(497), + [sym_translated_string] = STATE(497), + [sym_raw_string] = STATE(497), + [sym_number] = STATE(497), + [sym_simple_expansion] = STATE(497), + [sym_expansion] = STATE(497), + [sym_command_substitution] = STATE(497), + [sym_process_substitution] = STATE(497), + [aux_sym_redirected_statement_repeat2] = STATE(5188), + [aux_sym_command_repeat1] = STATE(855), + [aux_sym__literal_repeat1] = STATE(525), + [sym_word] = ACTIONS(147), + [anon_sym_for] = ACTIONS(149), + [anon_sym_select] = ACTIONS(151), + [anon_sym_LPAREN_LPAREN] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(155), + [anon_sym_GT] = ACTIONS(155), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_until] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_case] = ACTIONS(165), + [anon_sym_function] = ACTIONS(167), + [anon_sym_LBRACE] = ACTIONS(169), + [anon_sym_BANG] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_RBRACK] = ACTIONS(239), + [anon_sym_LBRACK_LBRACK] = ACTIONS(177), + [anon_sym_declare] = ACTIONS(179), + [anon_sym_typeset] = ACTIONS(179), + [anon_sym_export] = ACTIONS(179), + [anon_sym_readonly] = ACTIONS(179), + [anon_sym_local] = ACTIONS(179), + [anon_sym_unset] = ACTIONS(181), + [anon_sym_unsetenv] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(155), + [anon_sym_AMP_GT_GT] = ACTIONS(157), + [anon_sym_LT_AMP] = ACTIONS(155), + [anon_sym_GT_AMP] = ACTIONS(155), + [anon_sym_GT_PIPE] = ACTIONS(157), + [anon_sym_LT_AMP_DASH] = ACTIONS(183), + [anon_sym_GT_AMP_DASH] = ACTIONS(183), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_PLUS_PLUS2] = ACTIONS(187), + [anon_sym_DASH_DASH2] = ACTIONS(187), + [anon_sym_DASH2] = ACTIONS(189), + [anon_sym_PLUS2] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(197), + [sym__special_character] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [sym_ansi_c_string] = ACTIONS(205), + [aux_sym_number_token1] = ACTIONS(207), + [aux_sym_number_token2] = ACTIONS(209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(221), + [sym_variable_name] = ACTIONS(223), + [sym_test_operator] = ACTIONS(225), + [sym__brace_start] = ACTIONS(227), }, [11] = { - [sym__statement_not_pipeline] = STATE(6684), - [sym_redirected_statement] = STATE(5325), - [sym_for_statement] = STATE(5439), - [sym_c_style_for_statement] = STATE(5439), - [sym_while_statement] = STATE(5133), - [sym_if_statement] = STATE(5133), - [sym_case_statement] = STATE(5439), - [sym_function_definition] = STATE(5439), - [sym_compound_statement] = STATE(5439), - [sym_subshell] = STATE(5439), - [sym_pipeline] = STATE(5593), - [sym_list] = STATE(5439), - [sym_negated_command] = STATE(5439), - [sym_test_command] = STATE(5439), - [sym_declaration_command] = STATE(5439), - [sym_unset_command] = STATE(5439), - [sym_command] = STATE(5439), - [sym_command_name] = STATE(634), + [sym__statement_not_pipeline] = STATE(6667), + [sym_redirected_statement] = STATE(5413), + [sym_for_statement] = STATE(5512), + [sym_c_style_for_statement] = STATE(5512), + [sym_while_statement] = STATE(5184), + [sym_if_statement] = STATE(5184), + [sym_case_statement] = STATE(5512), + [sym_function_definition] = STATE(5512), + [sym_compound_statement] = STATE(5512), + [sym_subshell] = STATE(5512), + [sym_pipeline] = STATE(5652), + [sym_list] = STATE(5512), + [sym_negated_command] = STATE(5512), + [sym_test_command] = STATE(5512), + [sym_declaration_command] = STATE(5512), + [sym_unset_command] = STATE(5512), + [sym_command] = STATE(5512), + [sym_command_name] = STATE(644), [sym_variable_assignment] = STATE(1791), - [sym_variable_assignments] = STATE(5439), - [sym_subscript] = STATE(6766), - [sym_file_redirect] = STATE(2585), - [sym_herestring_redirect] = STATE(2587), - [sym__expression] = STATE(3064), - [sym_binary_expression] = STATE(2952), - [sym_ternary_expression] = STATE(2952), - [sym_unary_expression] = STATE(2952), - [sym_postfix_expression] = STATE(2952), - [sym_parenthesized_expression] = STATE(2952), - [sym_arithmetic_expansion] = STATE(501), - [sym_brace_expression] = STATE(501), - [sym_concatenation] = STATE(525), - [sym_string] = STATE(501), - [sym_translated_string] = STATE(501), - [sym_number] = STATE(501), - [sym_simple_expansion] = STATE(501), - [sym_expansion] = STATE(501), - [sym_command_substitution] = STATE(501), - [sym_process_substitution] = STATE(501), - [aux_sym_redirected_statement_repeat2] = STATE(5229), - [aux_sym_command_repeat1] = STATE(950), - [aux_sym__literal_repeat1] = STATE(523), - [sym_word] = ACTIONS(143), - [anon_sym_for] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(151), - [anon_sym_GT] = ACTIONS(151), - [anon_sym_GT_GT] = ACTIONS(153), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_while] = ACTIONS(157), - [anon_sym_until] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_function] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(167), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_RBRACK] = ACTIONS(235), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_declare] = ACTIONS(175), - [anon_sym_typeset] = ACTIONS(175), - [anon_sym_export] = ACTIONS(175), - [anon_sym_readonly] = ACTIONS(175), - [anon_sym_local] = ACTIONS(175), - [anon_sym_unset] = ACTIONS(177), - [anon_sym_unsetenv] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(151), - [anon_sym_AMP_GT_GT] = ACTIONS(153), - [anon_sym_LT_AMP] = ACTIONS(151), - [anon_sym_GT_AMP] = ACTIONS(151), - [anon_sym_GT_PIPE] = ACTIONS(153), - [anon_sym_LT_AMP_DASH] = ACTIONS(179), - [anon_sym_GT_AMP_DASH] = ACTIONS(179), - [anon_sym_LT_LT_LT] = ACTIONS(181), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(193), - [sym__special_character] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [sym_raw_string] = ACTIONS(199), - [sym_ansi_c_string] = ACTIONS(199), - [aux_sym_number_token1] = ACTIONS(201), - [aux_sym_number_token2] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(215), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(219), - [sym__brace_start] = ACTIONS(221), + [sym_variable_assignments] = STATE(5512), + [sym_subscript] = STATE(6803), + [sym_file_redirect] = STATE(2645), + [sym_herestring_redirect] = STATE(2646), + [sym__expression] = STATE(3175), + [sym_binary_expression] = STATE(3140), + [sym_ternary_expression] = STATE(3140), + [sym_unary_expression] = STATE(3140), + [sym_postfix_expression] = STATE(3140), + [sym_parenthesized_expression] = STATE(3140), + [sym_arithmetic_expansion] = STATE(497), + [sym_brace_expression] = STATE(497), + [sym_concatenation] = STATE(527), + [sym_string] = STATE(497), + [sym_translated_string] = STATE(497), + [sym_raw_string] = STATE(497), + [sym_number] = STATE(497), + [sym_simple_expansion] = STATE(497), + [sym_expansion] = STATE(497), + [sym_command_substitution] = STATE(497), + [sym_process_substitution] = STATE(497), + [aux_sym_redirected_statement_repeat2] = STATE(5188), + [aux_sym_command_repeat1] = STATE(855), + [aux_sym__literal_repeat1] = STATE(525), + [sym_word] = ACTIONS(147), + [anon_sym_for] = ACTIONS(149), + [anon_sym_select] = ACTIONS(151), + [anon_sym_LPAREN_LPAREN] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(155), + [anon_sym_GT] = ACTIONS(155), + [anon_sym_GT_GT] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_while] = ACTIONS(161), + [anon_sym_until] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_case] = ACTIONS(165), + [anon_sym_function] = ACTIONS(167), + [anon_sym_LBRACE] = ACTIONS(169), + [anon_sym_BANG] = ACTIONS(171), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_RBRACK] = ACTIONS(241), + [anon_sym_LBRACK_LBRACK] = ACTIONS(177), + [anon_sym_declare] = ACTIONS(179), + [anon_sym_typeset] = ACTIONS(179), + [anon_sym_export] = ACTIONS(179), + [anon_sym_readonly] = ACTIONS(179), + [anon_sym_local] = ACTIONS(179), + [anon_sym_unset] = ACTIONS(181), + [anon_sym_unsetenv] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(155), + [anon_sym_AMP_GT_GT] = ACTIONS(157), + [anon_sym_LT_AMP] = ACTIONS(155), + [anon_sym_GT_AMP] = ACTIONS(155), + [anon_sym_GT_PIPE] = ACTIONS(157), + [anon_sym_LT_AMP_DASH] = ACTIONS(183), + [anon_sym_GT_AMP_DASH] = ACTIONS(183), + [anon_sym_LT_LT_LT] = ACTIONS(185), + [anon_sym_PLUS_PLUS2] = ACTIONS(187), + [anon_sym_DASH_DASH2] = ACTIONS(187), + [anon_sym_DASH2] = ACTIONS(189), + [anon_sym_PLUS2] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(197), + [sym__special_character] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [sym_ansi_c_string] = ACTIONS(205), + [aux_sym_number_token1] = ACTIONS(207), + [aux_sym_number_token2] = ACTIONS(209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(221), + [sym_variable_name] = ACTIONS(223), + [sym_test_operator] = ACTIONS(225), + [sym__brace_start] = ACTIONS(227), }, [12] = { - [sym__expression] = STATE(2950), - [sym_binary_expression] = STATE(2976), - [sym_ternary_expression] = STATE(2976), - [sym_unary_expression] = STATE(2976), - [sym_postfix_expression] = STATE(2976), - [sym_parenthesized_expression] = STATE(2976), - [sym_arithmetic_expansion] = STATE(2498), - [sym_brace_expression] = STATE(2498), - [sym_concatenation] = STATE(2976), - [sym_string] = STATE(2498), - [sym_translated_string] = STATE(2498), - [sym_number] = STATE(2498), - [sym_simple_expansion] = STATE(2498), - [sym_expansion] = STATE(2498), - [sym_command_substitution] = STATE(2498), - [sym_process_substitution] = STATE(2498), - [aux_sym__literal_repeat1] = STATE(2623), + [sym__expression] = STATE(3060), + [sym_binary_expression] = STATE(3167), + [sym_ternary_expression] = STATE(3167), + [sym_unary_expression] = STATE(3167), + [sym_postfix_expression] = STATE(3167), + [sym_parenthesized_expression] = STATE(3167), + [sym_arithmetic_expansion] = STATE(2507), + [sym_brace_expression] = STATE(2507), + [sym_concatenation] = STATE(3167), + [sym_string] = STATE(2507), + [sym_translated_string] = STATE(2507), + [sym_raw_string] = STATE(2507), + [sym_number] = STATE(2507), + [sym_simple_expansion] = STATE(2507), + [sym_expansion] = STATE(2507), + [sym_command_substitution] = STATE(2507), + [sym_process_substitution] = STATE(2507), + [aux_sym__literal_repeat1] = STATE(2653), [aux_sym_concatenation_repeat1] = STATE(470), - [sym_word] = ACTIONS(237), - [anon_sym_LPAREN_LPAREN] = ACTIONS(239), - [anon_sym_SEMI] = ACTIONS(241), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(243), - [anon_sym_GT_GT_EQ] = ACTIONS(243), - [anon_sym_AMP_EQ] = ACTIONS(243), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(243), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_PIPE] = ACTIONS(245), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_EQ_EQ] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [anon_sym_GT] = ACTIONS(245), - [anon_sym_LT_EQ] = ACTIONS(243), - [anon_sym_GT_EQ] = ACTIONS(243), - [anon_sym_LT_LT] = ACTIONS(245), - [anon_sym_GT_GT] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_RPAREN] = ACTIONS(245), - [anon_sym_SEMI_SEMI] = ACTIONS(241), - [anon_sym_PIPE_AMP] = ACTIONS(241), - [anon_sym_BANG] = ACTIONS(250), - [anon_sym_EQ_TILDE] = ACTIONS(245), - [anon_sym_AMP_GT] = ACTIONS(241), - [anon_sym_AMP_GT_GT] = ACTIONS(241), - [anon_sym_LT_AMP] = ACTIONS(241), - [anon_sym_GT_AMP] = ACTIONS(241), - [anon_sym_GT_PIPE] = ACTIONS(241), - [anon_sym_LT_AMP_DASH] = ACTIONS(241), - [anon_sym_GT_AMP_DASH] = ACTIONS(241), - [anon_sym_LT_LT_DASH] = ACTIONS(241), - [aux_sym_heredoc_redirect_token1] = ACTIONS(241), - [anon_sym_LT_LT_LT] = ACTIONS(241), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(252), - [anon_sym_DASH_DASH2] = ACTIONS(252), - [anon_sym_DASH2] = ACTIONS(105), - [anon_sym_PLUS2] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(105), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(239), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(254), - [aux_sym_concatenation_token1] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(258), - [sym__special_character] = ACTIONS(260), - [anon_sym_DQUOTE] = ACTIONS(262), - [sym_raw_string] = ACTIONS(237), - [sym_ansi_c_string] = ACTIONS(237), - [aux_sym_number_token1] = ACTIONS(264), - [aux_sym_number_token2] = ACTIONS(266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(270), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(274), - [anon_sym_LT_LPAREN] = ACTIONS(276), - [anon_sym_GT_LPAREN] = ACTIONS(276), + [sym_word] = ACTIONS(243), + [anon_sym_LPAREN_LPAREN] = ACTIONS(245), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(249), + [anon_sym_GT_GT_EQ] = ACTIONS(249), + [anon_sym_AMP_EQ] = ACTIONS(249), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(249), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_GT_EQ] = ACTIONS(249), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(254), + [anon_sym_RPAREN] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(247), + [anon_sym_PIPE_AMP] = ACTIONS(247), + [anon_sym_BANG] = ACTIONS(256), + [anon_sym_EQ_TILDE] = ACTIONS(251), + [anon_sym_AMP_GT] = ACTIONS(247), + [anon_sym_AMP_GT_GT] = ACTIONS(247), + [anon_sym_LT_AMP] = ACTIONS(247), + [anon_sym_GT_AMP] = ACTIONS(247), + [anon_sym_GT_PIPE] = ACTIONS(247), + [anon_sym_LT_AMP_DASH] = ACTIONS(247), + [anon_sym_GT_AMP_DASH] = ACTIONS(247), + [anon_sym_LT_LT_DASH] = ACTIONS(247), + [aux_sym_heredoc_redirect_token1] = ACTIONS(247), + [anon_sym_LT_LT_LT] = ACTIONS(247), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(258), + [anon_sym_DASH_DASH2] = ACTIONS(258), + [anon_sym_DASH2] = ACTIONS(107), + [anon_sym_PLUS2] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(107), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(245), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(260), + [aux_sym_concatenation_token1] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(264), + [sym__special_character] = ACTIONS(266), + [anon_sym_DQUOTE] = ACTIONS(268), + [anon_sym_SQUOTE] = ACTIONS(270), + [sym_ansi_c_string] = ACTIONS(243), + [aux_sym_number_token1] = ACTIONS(272), + [aux_sym_number_token2] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), + [anon_sym_BQUOTE] = ACTIONS(280), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(282), + [anon_sym_LT_LPAREN] = ACTIONS(284), + [anon_sym_GT_LPAREN] = ACTIONS(284), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(278), - [sym__concat] = ACTIONS(280), - [sym_test_operator] = ACTIONS(282), - [sym__bare_dollar] = ACTIONS(278), - [sym__brace_start] = ACTIONS(284), + [sym_file_descriptor] = ACTIONS(286), + [sym__concat] = ACTIONS(288), + [sym_test_operator] = ACTIONS(290), + [sym__bare_dollar] = ACTIONS(286), + [sym__brace_start] = ACTIONS(292), }, [13] = { - [sym__expression] = STATE(3111), - [sym_binary_expression] = STATE(2952), - [sym_ternary_expression] = STATE(2952), - [sym_unary_expression] = STATE(2952), - [sym_postfix_expression] = STATE(2952), - [sym_parenthesized_expression] = STATE(2952), - [sym_arithmetic_expansion] = STATE(2509), - [sym_brace_expression] = STATE(2509), - [sym_concatenation] = STATE(2952), - [sym_string] = STATE(2509), - [sym_translated_string] = STATE(2509), - [sym_number] = STATE(2509), - [sym_simple_expansion] = STATE(2509), - [sym_expansion] = STATE(2509), - [sym_command_substitution] = STATE(2509), - [sym_process_substitution] = STATE(2509), - [aux_sym__literal_repeat1] = STATE(2705), + [sym__expression] = STATE(3138), + [sym_binary_expression] = STATE(3140), + [sym_ternary_expression] = STATE(3140), + [sym_unary_expression] = STATE(3140), + [sym_postfix_expression] = STATE(3140), + [sym_parenthesized_expression] = STATE(3140), + [sym_arithmetic_expansion] = STATE(2549), + [sym_brace_expression] = STATE(2549), + [sym_concatenation] = STATE(3140), + [sym_string] = STATE(2549), + [sym_translated_string] = STATE(2549), + [sym_raw_string] = STATE(2549), + [sym_number] = STATE(2549), + [sym_simple_expansion] = STATE(2549), + [sym_expansion] = STATE(2549), + [sym_command_substitution] = STATE(2549), + [sym_process_substitution] = STATE(2549), + [aux_sym__literal_repeat1] = STATE(2724), [aux_sym_concatenation_repeat1] = STATE(496), - [sym_word] = ACTIONS(286), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(292), - [anon_sym_PIPE] = ACTIONS(245), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [anon_sym_GT] = ACTIONS(245), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(245), - [anon_sym_GT_GT] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_PIPE_AMP] = ACTIONS(278), - [anon_sym_BANG] = ACTIONS(297), - [anon_sym_RBRACK] = ACTIONS(290), - [anon_sym_EQ_TILDE] = ACTIONS(245), - [anon_sym_AMP_GT] = ACTIONS(241), - [anon_sym_AMP_GT_GT] = ACTIONS(278), - [anon_sym_LT_AMP] = ACTIONS(241), - [anon_sym_GT_AMP] = ACTIONS(241), - [anon_sym_GT_PIPE] = ACTIONS(278), - [anon_sym_LT_AMP_DASH] = ACTIONS(278), - [anon_sym_GT_AMP_DASH] = ACTIONS(278), - [anon_sym_LT_LT_DASH] = ACTIONS(278), - [anon_sym_LT_LT_LT] = ACTIONS(278), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), - [aux_sym_concatenation_token1] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(303), - [sym__special_character] = ACTIONS(305), - [anon_sym_DQUOTE] = ACTIONS(307), - [sym_raw_string] = ACTIONS(309), - [sym_ansi_c_string] = ACTIONS(309), - [aux_sym_number_token1] = ACTIONS(311), - [aux_sym_number_token2] = ACTIONS(313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), - [anon_sym_BQUOTE] = ACTIONS(319), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(278), - [sym__concat] = ACTIONS(301), - [sym_test_operator] = ACTIONS(325), - [sym__bare_dollar] = ACTIONS(278), - [sym__brace_start] = ACTIONS(327), + [sym_word] = ACTIONS(294), + [anon_sym_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(300), + [anon_sym_AMP_AMP] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_PIPE_AMP] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(305), + [anon_sym_RBRACK] = ACTIONS(298), + [anon_sym_EQ_TILDE] = ACTIONS(251), + [anon_sym_AMP_GT] = ACTIONS(247), + [anon_sym_AMP_GT_GT] = ACTIONS(286), + [anon_sym_LT_AMP] = ACTIONS(247), + [anon_sym_GT_AMP] = ACTIONS(247), + [anon_sym_GT_PIPE] = ACTIONS(286), + [anon_sym_LT_AMP_DASH] = ACTIONS(286), + [anon_sym_GT_AMP_DASH] = ACTIONS(286), + [anon_sym_LT_LT_DASH] = ACTIONS(286), + [anon_sym_LT_LT_LT] = ACTIONS(286), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(187), + [anon_sym_DASH_DASH2] = ACTIONS(187), + [anon_sym_DASH2] = ACTIONS(189), + [anon_sym_PLUS2] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(307), + [aux_sym_concatenation_token1] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(311), + [sym__special_character] = ACTIONS(313), + [anon_sym_DQUOTE] = ACTIONS(315), + [anon_sym_SQUOTE] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(319), + [aux_sym_number_token1] = ACTIONS(321), + [aux_sym_number_token2] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(327), + [anon_sym_BQUOTE] = ACTIONS(329), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(286), + [sym__concat] = ACTIONS(309), + [sym_test_operator] = ACTIONS(335), + [sym__bare_dollar] = ACTIONS(286), + [sym__brace_start] = ACTIONS(337), }, [14] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_elif_clause] = STATE(6266), - [sym_else_clause] = STATE(6880), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_if_statement_repeat1] = STATE(6266), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_elif_clause] = STATE(6407), + [sym_else_clause] = STATE(7294), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_if_statement_repeat1] = STATE(6407), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(337), - [anon_sym_elif] = ACTIONS(339), - [anon_sym_else] = ACTIONS(341), + [anon_sym_fi] = ACTIONS(347), + [anon_sym_elif] = ACTIONS(349), + [anon_sym_else] = ACTIONS(351), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [15] = { [aux_sym__terminated_statement] = STATE(20), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_elif_clause] = STATE(6291), - [sym_else_clause] = STATE(7503), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_if_statement_repeat1] = STATE(6291), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_elif_clause] = STATE(6388), + [sym_else_clause] = STATE(7499), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_if_statement_repeat1] = STATE(6388), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(389), - [anon_sym_elif] = ACTIONS(339), - [anon_sym_else] = ACTIONS(341), + [anon_sym_fi] = ACTIONS(401), + [anon_sym_elif] = ACTIONS(349), + [anon_sym_else] = ACTIONS(351), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [16] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_elif_clause] = STATE(6298), - [sym_else_clause] = STATE(7189), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_if_statement_repeat1] = STATE(6298), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_elif_clause] = STATE(6373), + [sym_else_clause] = STATE(6988), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_if_statement_repeat1] = STATE(6373), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(391), - [anon_sym_elif] = ACTIONS(339), - [anon_sym_else] = ACTIONS(341), + [anon_sym_fi] = ACTIONS(403), + [anon_sym_elif] = ACTIONS(349), + [anon_sym_else] = ACTIONS(351), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [17] = { [aux_sym__terminated_statement] = STATE(16), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_elif_clause] = STATE(6345), - [sym_else_clause] = STATE(6892), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_if_statement_repeat1] = STATE(6345), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_elif_clause] = STATE(6420), + [sym_else_clause] = STATE(7526), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_if_statement_repeat1] = STATE(6420), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(393), - [anon_sym_elif] = ACTIONS(339), - [anon_sym_else] = ACTIONS(341), + [anon_sym_fi] = ACTIONS(405), + [anon_sym_elif] = ACTIONS(349), + [anon_sym_else] = ACTIONS(351), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [18] = { [aux_sym__terminated_statement] = STATE(19), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_elif_clause] = STATE(6346), - [sym_else_clause] = STATE(7285), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_if_statement_repeat1] = STATE(6346), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_elif_clause] = STATE(6334), + [sym_else_clause] = STATE(7126), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_if_statement_repeat1] = STATE(6334), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(395), - [anon_sym_elif] = ACTIONS(339), - [anon_sym_else] = ACTIONS(341), + [anon_sym_fi] = ACTIONS(407), + [anon_sym_elif] = ACTIONS(349), + [anon_sym_else] = ACTIONS(351), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [19] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_elif_clause] = STATE(6357), - [sym_else_clause] = STATE(7323), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_if_statement_repeat1] = STATE(6357), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_elif_clause] = STATE(6345), + [sym_else_clause] = STATE(7197), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_if_statement_repeat1] = STATE(6345), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(397), - [anon_sym_elif] = ACTIONS(339), - [anon_sym_else] = ACTIONS(341), + [anon_sym_fi] = ACTIONS(409), + [anon_sym_elif] = ACTIONS(349), + [anon_sym_else] = ACTIONS(351), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [20] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_elif_clause] = STATE(6327), - [sym_else_clause] = STATE(7152), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_if_statement_repeat1] = STATE(6327), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_elif_clause] = STATE(6424), + [sym_else_clause] = STATE(7426), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_if_statement_repeat1] = STATE(6424), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(399), - [anon_sym_elif] = ACTIONS(339), - [anon_sym_else] = ACTIONS(341), + [anon_sym_fi] = ACTIONS(411), + [anon_sym_elif] = ACTIONS(349), + [anon_sym_else] = ACTIONS(351), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [21] = { [aux_sym__terminated_statement] = STATE(14), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_elif_clause] = STATE(6358), - [sym_else_clause] = STATE(7022), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_if_statement_repeat1] = STATE(6358), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_elif_clause] = STATE(6430), + [sym_else_clause] = STATE(7800), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_if_statement_repeat1] = STATE(6430), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(401), - [anon_sym_elif] = ACTIONS(339), - [anon_sym_else] = ACTIONS(341), + [anon_sym_fi] = ACTIONS(413), + [anon_sym_elif] = ACTIONS(349), + [anon_sym_else] = ACTIONS(351), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [22] = { - [sym__statements] = STATE(6527), - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4350), - [sym_for_statement] = STATE(4350), - [sym_c_style_for_statement] = STATE(4350), - [sym_while_statement] = STATE(4219), - [sym_if_statement] = STATE(4219), - [sym_case_statement] = STATE(4350), - [sym_function_definition] = STATE(4350), - [sym_compound_statement] = STATE(4350), - [sym_subshell] = STATE(4350), - [sym_pipeline] = STATE(4717), - [sym_list] = STATE(4350), - [sym_negated_command] = STATE(4350), - [sym_test_command] = STATE(4350), - [sym_declaration_command] = STATE(4350), - [sym_unset_command] = STATE(4350), - [sym_command] = STATE(4350), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(808), - [sym_variable_assignments] = STATE(4350), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(423), - [anon_sym_SEMI_SEMI] = ACTIONS(425), - [anon_sym_SEMI_AMP] = ACTIONS(427), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(427), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), + [sym__statements] = STATE(6572), + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_c_style_for_statement] = STATE(4320), + [sym_while_statement] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_case_statement] = STATE(4320), + [sym_function_definition] = STATE(4320), + [sym_compound_statement] = STATE(4320), + [sym_subshell] = STATE(4320), + [sym_pipeline] = STATE(4778), + [sym_list] = STATE(4320), + [sym_negated_command] = STATE(4320), + [sym_test_command] = STATE(4320), + [sym_declaration_command] = STATE(4320), + [sym_unset_command] = STATE(4320), + [sym_command] = STATE(4320), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4320), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), + [anon_sym_esac] = ACTIONS(435), + [anon_sym_SEMI_SEMI] = ACTIONS(437), + [anon_sym_SEMI_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(439), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), }, [23] = { - [sym__statements] = STATE(6537), - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4350), - [sym_for_statement] = STATE(4350), - [sym_c_style_for_statement] = STATE(4350), - [sym_while_statement] = STATE(4219), - [sym_if_statement] = STATE(4219), - [sym_case_statement] = STATE(4350), - [sym_function_definition] = STATE(4350), - [sym_compound_statement] = STATE(4350), - [sym_subshell] = STATE(4350), - [sym_pipeline] = STATE(4717), - [sym_list] = STATE(4350), - [sym_negated_command] = STATE(4350), - [sym_test_command] = STATE(4350), - [sym_declaration_command] = STATE(4350), - [sym_unset_command] = STATE(4350), - [sym_command] = STATE(4350), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(808), - [sym_variable_assignments] = STATE(4350), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(481), - [anon_sym_SEMI_SEMI] = ACTIONS(483), - [anon_sym_SEMI_AMP] = ACTIONS(485), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(485), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), - }, - [24] = { - [sym__statements] = STATE(6526), - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4350), - [sym_for_statement] = STATE(4350), - [sym_c_style_for_statement] = STATE(4350), - [sym_while_statement] = STATE(4219), - [sym_if_statement] = STATE(4219), - [sym_case_statement] = STATE(4350), - [sym_function_definition] = STATE(4350), - [sym_compound_statement] = STATE(4350), - [sym_subshell] = STATE(4350), - [sym_pipeline] = STATE(4717), - [sym_list] = STATE(4350), - [sym_negated_command] = STATE(4350), - [sym_test_command] = STATE(4350), - [sym_declaration_command] = STATE(4350), - [sym_unset_command] = STATE(4350), - [sym_command] = STATE(4350), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(808), - [sym_variable_assignments] = STATE(4350), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(487), - [anon_sym_SEMI_SEMI] = ACTIONS(489), - [anon_sym_SEMI_AMP] = ACTIONS(491), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(493), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), - }, - [25] = { - [sym__statements] = STATE(6541), - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4350), - [sym_for_statement] = STATE(4350), - [sym_c_style_for_statement] = STATE(4350), - [sym_while_statement] = STATE(4219), - [sym_if_statement] = STATE(4219), - [sym_case_statement] = STATE(4350), - [sym_function_definition] = STATE(4350), - [sym_compound_statement] = STATE(4350), - [sym_subshell] = STATE(4350), - [sym_pipeline] = STATE(4717), - [sym_list] = STATE(4350), - [sym_negated_command] = STATE(4350), - [sym_test_command] = STATE(4350), - [sym_declaration_command] = STATE(4350), - [sym_unset_command] = STATE(4350), - [sym_command] = STATE(4350), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(808), - [sym_variable_assignments] = STATE(4350), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), + [sym__statements] = STATE(6569), + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_c_style_for_statement] = STATE(4320), + [sym_while_statement] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_case_statement] = STATE(4320), + [sym_function_definition] = STATE(4320), + [sym_compound_statement] = STATE(4320), + [sym_subshell] = STATE(4320), + [sym_pipeline] = STATE(4778), + [sym_list] = STATE(4320), + [sym_negated_command] = STATE(4320), + [sym_test_command] = STATE(4320), + [sym_declaration_command] = STATE(4320), + [sym_unset_command] = STATE(4320), + [sym_command] = STATE(4320), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4320), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), [anon_sym_esac] = ACTIONS(495), [anon_sym_SEMI_SEMI] = ACTIONS(497), [anon_sym_SEMI_AMP] = ACTIONS(499), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(499), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), }, - [26] = { - [sym__statements] = STATE(6502), - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4350), - [sym_for_statement] = STATE(4350), - [sym_c_style_for_statement] = STATE(4350), - [sym_while_statement] = STATE(4219), - [sym_if_statement] = STATE(4219), - [sym_case_statement] = STATE(4350), - [sym_function_definition] = STATE(4350), - [sym_compound_statement] = STATE(4350), - [sym_subshell] = STATE(4350), - [sym_pipeline] = STATE(4717), - [sym_list] = STATE(4350), - [sym_negated_command] = STATE(4350), - [sym_test_command] = STATE(4350), - [sym_declaration_command] = STATE(4350), - [sym_unset_command] = STATE(4350), - [sym_command] = STATE(4350), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(808), - [sym_variable_assignments] = STATE(4350), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), + [24] = { + [sym__statements] = STATE(6558), + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_c_style_for_statement] = STATE(4320), + [sym_while_statement] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_case_statement] = STATE(4320), + [sym_function_definition] = STATE(4320), + [sym_compound_statement] = STATE(4320), + [sym_subshell] = STATE(4320), + [sym_pipeline] = STATE(4778), + [sym_list] = STATE(4320), + [sym_negated_command] = STATE(4320), + [sym_test_command] = STATE(4320), + [sym_declaration_command] = STATE(4320), + [sym_unset_command] = STATE(4320), + [sym_command] = STATE(4320), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4320), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), [anon_sym_esac] = ACTIONS(501), [anon_sym_SEMI_SEMI] = ACTIONS(503), [anon_sym_SEMI_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(505), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(507), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), }, - [27] = { - [sym__statements] = STATE(6514), - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4350), - [sym_for_statement] = STATE(4350), - [sym_c_style_for_statement] = STATE(4350), - [sym_while_statement] = STATE(4219), - [sym_if_statement] = STATE(4219), - [sym_case_statement] = STATE(4350), - [sym_function_definition] = STATE(4350), - [sym_compound_statement] = STATE(4350), - [sym_subshell] = STATE(4350), - [sym_pipeline] = STATE(4717), - [sym_list] = STATE(4350), - [sym_negated_command] = STATE(4350), - [sym_test_command] = STATE(4350), - [sym_declaration_command] = STATE(4350), - [sym_unset_command] = STATE(4350), - [sym_command] = STATE(4350), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(808), - [sym_variable_assignments] = STATE(4350), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(507), - [anon_sym_SEMI_SEMI] = ACTIONS(509), - [anon_sym_SEMI_AMP] = ACTIONS(511), + [25] = { + [sym__statements] = STATE(6573), + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_c_style_for_statement] = STATE(4320), + [sym_while_statement] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_case_statement] = STATE(4320), + [sym_function_definition] = STATE(4320), + [sym_compound_statement] = STATE(4320), + [sym_subshell] = STATE(4320), + [sym_pipeline] = STATE(4778), + [sym_list] = STATE(4320), + [sym_negated_command] = STATE(4320), + [sym_test_command] = STATE(4320), + [sym_declaration_command] = STATE(4320), + [sym_unset_command] = STATE(4320), + [sym_command] = STATE(4320), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4320), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), + [anon_sym_esac] = ACTIONS(509), + [anon_sym_SEMI_SEMI] = ACTIONS(511), + [anon_sym_SEMI_AMP] = ACTIONS(513), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(513), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), }, - [28] = { - [sym__statements] = STATE(6481), - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4350), - [sym_for_statement] = STATE(4350), - [sym_c_style_for_statement] = STATE(4350), - [sym_while_statement] = STATE(4219), - [sym_if_statement] = STATE(4219), - [sym_case_statement] = STATE(4350), - [sym_function_definition] = STATE(4350), - [sym_compound_statement] = STATE(4350), - [sym_subshell] = STATE(4350), - [sym_pipeline] = STATE(4717), - [sym_list] = STATE(4350), - [sym_negated_command] = STATE(4350), - [sym_test_command] = STATE(4350), - [sym_declaration_command] = STATE(4350), - [sym_unset_command] = STATE(4350), - [sym_command] = STATE(4350), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(808), - [sym_variable_assignments] = STATE(4350), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(507), - [anon_sym_SEMI_SEMI] = ACTIONS(515), - [anon_sym_SEMI_AMP] = ACTIONS(517), + [26] = { + [sym__statements] = STATE(6577), + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_c_style_for_statement] = STATE(4320), + [sym_while_statement] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_case_statement] = STATE(4320), + [sym_function_definition] = STATE(4320), + [sym_compound_statement] = STATE(4320), + [sym_subshell] = STATE(4320), + [sym_pipeline] = STATE(4778), + [sym_list] = STATE(4320), + [sym_negated_command] = STATE(4320), + [sym_test_command] = STATE(4320), + [sym_declaration_command] = STATE(4320), + [sym_unset_command] = STATE(4320), + [sym_command] = STATE(4320), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4320), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), + [anon_sym_esac] = ACTIONS(515), + [anon_sym_SEMI_SEMI] = ACTIONS(517), + [anon_sym_SEMI_AMP] = ACTIONS(519), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(519), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), }, - [29] = { - [sym__statements] = STATE(6488), - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4350), - [sym_for_statement] = STATE(4350), - [sym_c_style_for_statement] = STATE(4350), - [sym_while_statement] = STATE(4219), - [sym_if_statement] = STATE(4219), - [sym_case_statement] = STATE(4350), - [sym_function_definition] = STATE(4350), - [sym_compound_statement] = STATE(4350), - [sym_subshell] = STATE(4350), - [sym_pipeline] = STATE(4717), - [sym_list] = STATE(4350), - [sym_negated_command] = STATE(4350), - [sym_test_command] = STATE(4350), - [sym_declaration_command] = STATE(4350), - [sym_unset_command] = STATE(4350), - [sym_command] = STATE(4350), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(808), - [sym_variable_assignments] = STATE(4350), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(487), - [anon_sym_SEMI_SEMI] = ACTIONS(521), - [anon_sym_SEMI_AMP] = ACTIONS(523), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(525), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), + [27] = { + [sym__statements] = STATE(6588), + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_c_style_for_statement] = STATE(4320), + [sym_while_statement] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_case_statement] = STATE(4320), + [sym_function_definition] = STATE(4320), + [sym_compound_statement] = STATE(4320), + [sym_subshell] = STATE(4320), + [sym_pipeline] = STATE(4778), + [sym_list] = STATE(4320), + [sym_negated_command] = STATE(4320), + [sym_test_command] = STATE(4320), + [sym_declaration_command] = STATE(4320), + [sym_unset_command] = STATE(4320), + [sym_command] = STATE(4320), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4320), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), + [anon_sym_esac] = ACTIONS(521), + [anon_sym_SEMI_SEMI] = ACTIONS(523), + [anon_sym_SEMI_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(527), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), }, - [30] = { - [sym__statements] = STATE(6522), - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4350), - [sym_for_statement] = STATE(4350), - [sym_c_style_for_statement] = STATE(4350), - [sym_while_statement] = STATE(4219), - [sym_if_statement] = STATE(4219), - [sym_case_statement] = STATE(4350), - [sym_function_definition] = STATE(4350), - [sym_compound_statement] = STATE(4350), - [sym_subshell] = STATE(4350), - [sym_pipeline] = STATE(4717), - [sym_list] = STATE(4350), - [sym_negated_command] = STATE(4350), - [sym_test_command] = STATE(4350), - [sym_declaration_command] = STATE(4350), - [sym_unset_command] = STATE(4350), - [sym_command] = STATE(4350), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(808), - [sym_variable_assignments] = STATE(4350), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(527), + [28] = { + [sym__statements] = STATE(6597), + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_c_style_for_statement] = STATE(4320), + [sym_while_statement] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_case_statement] = STATE(4320), + [sym_function_definition] = STATE(4320), + [sym_compound_statement] = STATE(4320), + [sym_subshell] = STATE(4320), + [sym_pipeline] = STATE(4778), + [sym_list] = STATE(4320), + [sym_negated_command] = STATE(4320), + [sym_test_command] = STATE(4320), + [sym_declaration_command] = STATE(4320), + [sym_unset_command] = STATE(4320), + [sym_command] = STATE(4320), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4320), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), + [anon_sym_esac] = ACTIONS(521), [anon_sym_SEMI_SEMI] = ACTIONS(529), [anon_sym_SEMI_AMP] = ACTIONS(531), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(533), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), }, - [31] = { - [sym__statements] = STATE(6515), - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4350), - [sym_for_statement] = STATE(4350), - [sym_c_style_for_statement] = STATE(4350), - [sym_while_statement] = STATE(4219), - [sym_if_statement] = STATE(4219), - [sym_case_statement] = STATE(4350), - [sym_function_definition] = STATE(4350), - [sym_compound_statement] = STATE(4350), - [sym_subshell] = STATE(4350), - [sym_pipeline] = STATE(4717), - [sym_list] = STATE(4350), - [sym_negated_command] = STATE(4350), - [sym_test_command] = STATE(4350), - [sym_declaration_command] = STATE(4350), - [sym_unset_command] = STATE(4350), - [sym_command] = STATE(4350), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(808), - [sym_variable_assignments] = STATE(4350), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(535), - [anon_sym_SEMI_SEMI] = ACTIONS(537), - [anon_sym_SEMI_AMP] = ACTIONS(539), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(541), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), + [29] = { + [sym__statements] = STATE(6580), + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_c_style_for_statement] = STATE(4320), + [sym_while_statement] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_case_statement] = STATE(4320), + [sym_function_definition] = STATE(4320), + [sym_compound_statement] = STATE(4320), + [sym_subshell] = STATE(4320), + [sym_pipeline] = STATE(4778), + [sym_list] = STATE(4320), + [sym_negated_command] = STATE(4320), + [sym_test_command] = STATE(4320), + [sym_declaration_command] = STATE(4320), + [sym_unset_command] = STATE(4320), + [sym_command] = STATE(4320), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4320), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), + [anon_sym_esac] = ACTIONS(501), + [anon_sym_SEMI_SEMI] = ACTIONS(535), + [anon_sym_SEMI_AMP] = ACTIONS(537), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(539), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), }, - [32] = { - [sym__statements] = STATE(6497), - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4350), - [sym_for_statement] = STATE(4350), - [sym_c_style_for_statement] = STATE(4350), - [sym_while_statement] = STATE(4219), - [sym_if_statement] = STATE(4219), - [sym_case_statement] = STATE(4350), - [sym_function_definition] = STATE(4350), - [sym_compound_statement] = STATE(4350), - [sym_subshell] = STATE(4350), - [sym_pipeline] = STATE(4717), - [sym_list] = STATE(4350), - [sym_negated_command] = STATE(4350), - [sym_test_command] = STATE(4350), - [sym_declaration_command] = STATE(4350), - [sym_unset_command] = STATE(4350), - [sym_command] = STATE(4350), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(808), - [sym_variable_assignments] = STATE(4350), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(535), + [30] = { + [sym__statements] = STATE(6581), + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_c_style_for_statement] = STATE(4320), + [sym_while_statement] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_case_statement] = STATE(4320), + [sym_function_definition] = STATE(4320), + [sym_compound_statement] = STATE(4320), + [sym_subshell] = STATE(4320), + [sym_pipeline] = STATE(4778), + [sym_list] = STATE(4320), + [sym_negated_command] = STATE(4320), + [sym_test_command] = STATE(4320), + [sym_declaration_command] = STATE(4320), + [sym_unset_command] = STATE(4320), + [sym_command] = STATE(4320), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4320), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), + [anon_sym_esac] = ACTIONS(541), [anon_sym_SEMI_SEMI] = ACTIONS(543), [anon_sym_SEMI_AMP] = ACTIONS(545), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(547), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), + }, + [31] = { + [sym__statements] = STATE(6586), + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_c_style_for_statement] = STATE(4320), + [sym_while_statement] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_case_statement] = STATE(4320), + [sym_function_definition] = STATE(4320), + [sym_compound_statement] = STATE(4320), + [sym_subshell] = STATE(4320), + [sym_pipeline] = STATE(4778), + [sym_list] = STATE(4320), + [sym_negated_command] = STATE(4320), + [sym_test_command] = STATE(4320), + [sym_declaration_command] = STATE(4320), + [sym_unset_command] = STATE(4320), + [sym_command] = STATE(4320), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4320), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), + [anon_sym_esac] = ACTIONS(549), + [anon_sym_SEMI_SEMI] = ACTIONS(551), + [anon_sym_SEMI_AMP] = ACTIONS(553), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(555), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), + }, + [32] = { + [sym__statements] = STATE(6595), + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_c_style_for_statement] = STATE(4320), + [sym_while_statement] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_case_statement] = STATE(4320), + [sym_function_definition] = STATE(4320), + [sym_compound_statement] = STATE(4320), + [sym_subshell] = STATE(4320), + [sym_pipeline] = STATE(4778), + [sym_list] = STATE(4320), + [sym_negated_command] = STATE(4320), + [sym_test_command] = STATE(4320), + [sym_declaration_command] = STATE(4320), + [sym_unset_command] = STATE(4320), + [sym_command] = STATE(4320), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4320), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), + [anon_sym_esac] = ACTIONS(549), + [anon_sym_SEMI_SEMI] = ACTIONS(557), + [anon_sym_SEMI_AMP] = ACTIONS(559), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(561), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), }, [33] = { - [sym__statements] = STATE(6511), - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4350), - [sym_for_statement] = STATE(4350), - [sym_c_style_for_statement] = STATE(4350), - [sym_while_statement] = STATE(4219), - [sym_if_statement] = STATE(4219), - [sym_case_statement] = STATE(4350), - [sym_function_definition] = STATE(4350), - [sym_compound_statement] = STATE(4350), - [sym_subshell] = STATE(4350), - [sym_pipeline] = STATE(4717), - [sym_list] = STATE(4350), - [sym_negated_command] = STATE(4350), - [sym_test_command] = STATE(4350), - [sym_declaration_command] = STATE(4350), - [sym_unset_command] = STATE(4350), - [sym_command] = STATE(4350), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(808), - [sym_variable_assignments] = STATE(4350), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym__statements_repeat1] = STATE(429), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_esac] = ACTIONS(527), - [anon_sym_SEMI_SEMI] = ACTIONS(549), - [anon_sym_SEMI_AMP] = ACTIONS(551), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(553), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), + [sym__statements] = STATE(6591), + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4320), + [sym_for_statement] = STATE(4320), + [sym_c_style_for_statement] = STATE(4320), + [sym_while_statement] = STATE(4267), + [sym_if_statement] = STATE(4267), + [sym_case_statement] = STATE(4320), + [sym_function_definition] = STATE(4320), + [sym_compound_statement] = STATE(4320), + [sym_subshell] = STATE(4320), + [sym_pipeline] = STATE(4778), + [sym_list] = STATE(4320), + [sym_negated_command] = STATE(4320), + [sym_test_command] = STATE(4320), + [sym_declaration_command] = STATE(4320), + [sym_unset_command] = STATE(4320), + [sym_command] = STATE(4320), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(824), + [sym_variable_assignments] = STATE(4320), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym__statements_repeat1] = STATE(427), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), + [anon_sym_esac] = ACTIONS(541), + [anon_sym_SEMI_SEMI] = ACTIONS(563), + [anon_sym_SEMI_AMP] = ACTIONS(565), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(567), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), }, [34] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(555), - [anon_sym_for] = ACTIONS(558), - [anon_sym_select] = ACTIONS(561), - [anon_sym_LPAREN_LPAREN] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_while] = ACTIONS(576), - [anon_sym_until] = ACTIONS(576), - [anon_sym_do] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_then] = ACTIONS(579), - [anon_sym_fi] = ACTIONS(579), - [anon_sym_elif] = ACTIONS(579), - [anon_sym_else] = ACTIONS(579), - [anon_sym_case] = ACTIONS(584), - [anon_sym_function] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACK_LBRACK] = ACTIONS(599), - [anon_sym_declare] = ACTIONS(602), - [anon_sym_typeset] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_local] = ACTIONS(602), - [anon_sym_unset] = ACTIONS(605), - [anon_sym_unsetenv] = ACTIONS(605), - [anon_sym_AMP_GT] = ACTIONS(567), - [anon_sym_AMP_GT_GT] = ACTIONS(570), - [anon_sym_LT_AMP] = ACTIONS(567), - [anon_sym_GT_AMP] = ACTIONS(567), - [anon_sym_GT_PIPE] = ACTIONS(570), - [anon_sym_LT_AMP_DASH] = ACTIONS(608), - [anon_sym_GT_AMP_DASH] = ACTIONS(608), - [anon_sym_LT_LT_LT] = ACTIONS(611), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(614), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(617), - [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(71), - [sym_file_descriptor] = ACTIONS(653), - [sym_variable_name] = ACTIONS(656), - [sym_test_operator] = ACTIONS(659), - [sym__brace_start] = ACTIONS(662), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(569), + [anon_sym_for] = ACTIONS(572), + [anon_sym_select] = ACTIONS(575), + [anon_sym_LPAREN_LPAREN] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_while] = ACTIONS(590), + [anon_sym_until] = ACTIONS(590), + [anon_sym_do] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_then] = ACTIONS(593), + [anon_sym_fi] = ACTIONS(593), + [anon_sym_elif] = ACTIONS(593), + [anon_sym_else] = ACTIONS(593), + [anon_sym_case] = ACTIONS(598), + [anon_sym_function] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(613), + [anon_sym_declare] = ACTIONS(616), + [anon_sym_typeset] = ACTIONS(616), + [anon_sym_export] = ACTIONS(616), + [anon_sym_readonly] = ACTIONS(616), + [anon_sym_local] = ACTIONS(616), + [anon_sym_unset] = ACTIONS(619), + [anon_sym_unsetenv] = ACTIONS(619), + [anon_sym_AMP_GT] = ACTIONS(581), + [anon_sym_AMP_GT_GT] = ACTIONS(584), + [anon_sym_LT_AMP] = ACTIONS(581), + [anon_sym_GT_AMP] = ACTIONS(581), + [anon_sym_GT_PIPE] = ACTIONS(584), + [anon_sym_LT_AMP_DASH] = ACTIONS(622), + [anon_sym_GT_AMP_DASH] = ACTIONS(622), + [anon_sym_LT_LT_LT] = ACTIONS(625), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(628), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(634), + [sym__special_character] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(643), + [sym_ansi_c_string] = ACTIONS(646), + [aux_sym_number_token1] = ACTIONS(649), + [aux_sym_number_token2] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(658), + [anon_sym_BQUOTE] = ACTIONS(661), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(664), + [anon_sym_LT_LPAREN] = ACTIONS(667), + [anon_sym_GT_LPAREN] = ACTIONS(667), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(670), + [sym_variable_name] = ACTIONS(673), + [sym_test_operator] = ACTIONS(676), + [sym__brace_start] = ACTIONS(679), }, [35] = { - [sym__statements] = STATE(6549), - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4492), - [sym_for_statement] = STATE(4492), - [sym_c_style_for_statement] = STATE(4492), - [sym_while_statement] = STATE(4252), - [sym_if_statement] = STATE(4252), - [sym_case_statement] = STATE(4492), - [sym_function_definition] = STATE(4492), - [sym_compound_statement] = STATE(4492), - [sym_subshell] = STATE(4492), - [sym_pipeline] = STATE(4964), - [sym_list] = STATE(4492), - [sym_negated_command] = STATE(4492), - [sym_test_command] = STATE(4492), - [sym_declaration_command] = STATE(4492), - [sym_unset_command] = STATE(4492), - [sym_command] = STATE(4492), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(880), - [sym_variable_assignments] = STATE(4492), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(685), - [anon_sym_SEMI_AMP] = ACTIONS(511), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(513), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), + [sym__statements] = STATE(6727), + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4577), + [sym_for_statement] = STATE(4577), + [sym_c_style_for_statement] = STATE(4577), + [sym_while_statement] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_case_statement] = STATE(4577), + [sym_function_definition] = STATE(4577), + [sym_compound_statement] = STATE(4577), + [sym_subshell] = STATE(4577), + [sym_pipeline] = STATE(4938), + [sym_list] = STATE(4577), + [sym_negated_command] = STATE(4577), + [sym_test_command] = STATE(4577), + [sym_declaration_command] = STATE(4577), + [sym_unset_command] = STATE(4577), + [sym_command] = STATE(4577), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(856), + [sym_variable_assignments] = STATE(4577), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym__statements_repeat1] = STATE(430), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_SEMI_SEMI] = ACTIONS(702), + [anon_sym_SEMI_AMP] = ACTIONS(525), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(527), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), }, [36] = { - [sym__statements] = STATE(6596), - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4492), - [sym_for_statement] = STATE(4492), - [sym_c_style_for_statement] = STATE(4492), - [sym_while_statement] = STATE(4252), - [sym_if_statement] = STATE(4252), - [sym_case_statement] = STATE(4492), - [sym_function_definition] = STATE(4492), - [sym_compound_statement] = STATE(4492), - [sym_subshell] = STATE(4492), - [sym_pipeline] = STATE(4964), - [sym_list] = STATE(4492), - [sym_negated_command] = STATE(4492), - [sym_test_command] = STATE(4492), - [sym_declaration_command] = STATE(4492), - [sym_unset_command] = STATE(4492), - [sym_command] = STATE(4492), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(880), - [sym_variable_assignments] = STATE(4492), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(739), - [anon_sym_SEMI_AMP] = ACTIONS(485), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(485), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), - }, - [37] = { - [sym__statements] = STATE(6715), - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4492), - [sym_for_statement] = STATE(4492), - [sym_c_style_for_statement] = STATE(4492), - [sym_while_statement] = STATE(4252), - [sym_if_statement] = STATE(4252), - [sym_case_statement] = STATE(4492), - [sym_function_definition] = STATE(4492), - [sym_compound_statement] = STATE(4492), - [sym_subshell] = STATE(4492), - [sym_pipeline] = STATE(4964), - [sym_list] = STATE(4492), - [sym_negated_command] = STATE(4492), - [sym_test_command] = STATE(4492), - [sym_declaration_command] = STATE(4492), - [sym_unset_command] = STATE(4492), - [sym_command] = STATE(4492), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(880), - [sym_variable_assignments] = STATE(4492), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(741), + [sym__statements] = STATE(6753), + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4577), + [sym_for_statement] = STATE(4577), + [sym_c_style_for_statement] = STATE(4577), + [sym_while_statement] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_case_statement] = STATE(4577), + [sym_function_definition] = STATE(4577), + [sym_compound_statement] = STATE(4577), + [sym_subshell] = STATE(4577), + [sym_pipeline] = STATE(4938), + [sym_list] = STATE(4577), + [sym_negated_command] = STATE(4577), + [sym_test_command] = STATE(4577), + [sym_declaration_command] = STATE(4577), + [sym_unset_command] = STATE(4577), + [sym_command] = STATE(4577), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(856), + [sym_variable_assignments] = STATE(4577), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym__statements_repeat1] = STATE(430), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_SEMI_SEMI] = ACTIONS(758), [anon_sym_SEMI_AMP] = ACTIONS(499), [anon_sym_SEMI_SEMI_AMP] = ACTIONS(499), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), + }, + [37] = { + [sym__statements] = STATE(6697), + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4577), + [sym_for_statement] = STATE(4577), + [sym_c_style_for_statement] = STATE(4577), + [sym_while_statement] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_case_statement] = STATE(4577), + [sym_function_definition] = STATE(4577), + [sym_compound_statement] = STATE(4577), + [sym_subshell] = STATE(4577), + [sym_pipeline] = STATE(4938), + [sym_list] = STATE(4577), + [sym_negated_command] = STATE(4577), + [sym_test_command] = STATE(4577), + [sym_declaration_command] = STATE(4577), + [sym_unset_command] = STATE(4577), + [sym_command] = STATE(4577), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(856), + [sym_variable_assignments] = STATE(4577), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym__statements_repeat1] = STATE(430), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_SEMI_SEMI] = ACTIONS(760), + [anon_sym_SEMI_AMP] = ACTIONS(513), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(513), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), }, [38] = { - [sym__statements] = STATE(6563), - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4492), - [sym_for_statement] = STATE(4492), - [sym_c_style_for_statement] = STATE(4492), - [sym_while_statement] = STATE(4252), - [sym_if_statement] = STATE(4252), - [sym_case_statement] = STATE(4492), - [sym_function_definition] = STATE(4492), - [sym_compound_statement] = STATE(4492), - [sym_subshell] = STATE(4492), - [sym_pipeline] = STATE(4964), - [sym_list] = STATE(4492), - [sym_negated_command] = STATE(4492), - [sym_test_command] = STATE(4492), - [sym_declaration_command] = STATE(4492), - [sym_unset_command] = STATE(4492), - [sym_command] = STATE(4492), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(880), - [sym_variable_assignments] = STATE(4492), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(743), - [anon_sym_SEMI_AMP] = ACTIONS(427), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(427), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), + [sym__statements] = STATE(6752), + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4577), + [sym_for_statement] = STATE(4577), + [sym_c_style_for_statement] = STATE(4577), + [sym_while_statement] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_case_statement] = STATE(4577), + [sym_function_definition] = STATE(4577), + [sym_compound_statement] = STATE(4577), + [sym_subshell] = STATE(4577), + [sym_pipeline] = STATE(4938), + [sym_list] = STATE(4577), + [sym_negated_command] = STATE(4577), + [sym_test_command] = STATE(4577), + [sym_declaration_command] = STATE(4577), + [sym_unset_command] = STATE(4577), + [sym_command] = STATE(4577), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(856), + [sym_variable_assignments] = STATE(4577), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym__statements_repeat1] = STATE(430), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_SEMI_SEMI] = ACTIONS(762), + [anon_sym_SEMI_AMP] = ACTIONS(439), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(439), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), }, [39] = { - [sym__statements] = STATE(6704), - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4492), - [sym_for_statement] = STATE(4492), - [sym_c_style_for_statement] = STATE(4492), - [sym_while_statement] = STATE(4252), - [sym_if_statement] = STATE(4252), - [sym_case_statement] = STATE(4492), - [sym_function_definition] = STATE(4492), - [sym_compound_statement] = STATE(4492), - [sym_subshell] = STATE(4492), - [sym_pipeline] = STATE(4964), - [sym_list] = STATE(4492), - [sym_negated_command] = STATE(4492), - [sym_test_command] = STATE(4492), - [sym_declaration_command] = STATE(4492), - [sym_unset_command] = STATE(4492), - [sym_command] = STATE(4492), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(880), - [sym_variable_assignments] = STATE(4492), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(745), - [anon_sym_SEMI_AMP] = ACTIONS(491), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(493), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), + [sym__statements] = STATE(6648), + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4577), + [sym_for_statement] = STATE(4577), + [sym_c_style_for_statement] = STATE(4577), + [sym_while_statement] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_case_statement] = STATE(4577), + [sym_function_definition] = STATE(4577), + [sym_compound_statement] = STATE(4577), + [sym_subshell] = STATE(4577), + [sym_pipeline] = STATE(4938), + [sym_list] = STATE(4577), + [sym_negated_command] = STATE(4577), + [sym_test_command] = STATE(4577), + [sym_declaration_command] = STATE(4577), + [sym_unset_command] = STATE(4577), + [sym_command] = STATE(4577), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(856), + [sym_variable_assignments] = STATE(4577), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym__statements_repeat1] = STATE(430), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_SEMI_SEMI] = ACTIONS(764), + [anon_sym_SEMI_AMP] = ACTIONS(505), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(507), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), }, [40] = { - [sym__statements] = STATE(6722), - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4492), - [sym_for_statement] = STATE(4492), - [sym_c_style_for_statement] = STATE(4492), - [sym_while_statement] = STATE(4252), - [sym_if_statement] = STATE(4252), - [sym_case_statement] = STATE(4492), - [sym_function_definition] = STATE(4492), - [sym_compound_statement] = STATE(4492), - [sym_subshell] = STATE(4492), - [sym_pipeline] = STATE(4964), - [sym_list] = STATE(4492), - [sym_negated_command] = STATE(4492), - [sym_test_command] = STATE(4492), - [sym_declaration_command] = STATE(4492), - [sym_unset_command] = STATE(4492), - [sym_command] = STATE(4492), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(880), - [sym_variable_assignments] = STATE(4492), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(747), - [anon_sym_SEMI_AMP] = ACTIONS(505), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(505), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), + [sym__statements] = STATE(6652), + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4577), + [sym_for_statement] = STATE(4577), + [sym_c_style_for_statement] = STATE(4577), + [sym_while_statement] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_case_statement] = STATE(4577), + [sym_function_definition] = STATE(4577), + [sym_compound_statement] = STATE(4577), + [sym_subshell] = STATE(4577), + [sym_pipeline] = STATE(4938), + [sym_list] = STATE(4577), + [sym_negated_command] = STATE(4577), + [sym_test_command] = STATE(4577), + [sym_declaration_command] = STATE(4577), + [sym_unset_command] = STATE(4577), + [sym_command] = STATE(4577), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(856), + [sym_variable_assignments] = STATE(4577), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym__statements_repeat1] = STATE(430), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_SEMI_SEMI] = ACTIONS(766), + [anon_sym_SEMI_AMP] = ACTIONS(519), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(519), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), }, [41] = { - [sym__statements] = STATE(6552), - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4492), - [sym_for_statement] = STATE(4492), - [sym_c_style_for_statement] = STATE(4492), - [sym_while_statement] = STATE(4252), - [sym_if_statement] = STATE(4252), - [sym_case_statement] = STATE(4492), - [sym_function_definition] = STATE(4492), - [sym_compound_statement] = STATE(4492), - [sym_subshell] = STATE(4492), - [sym_pipeline] = STATE(4964), - [sym_list] = STATE(4492), - [sym_negated_command] = STATE(4492), - [sym_test_command] = STATE(4492), - [sym_declaration_command] = STATE(4492), - [sym_unset_command] = STATE(4492), - [sym_command] = STATE(4492), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(880), - [sym_variable_assignments] = STATE(4492), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(749), - [anon_sym_SEMI_AMP] = ACTIONS(517), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(519), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), + [sym__statements] = STATE(6744), + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4577), + [sym_for_statement] = STATE(4577), + [sym_c_style_for_statement] = STATE(4577), + [sym_while_statement] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_case_statement] = STATE(4577), + [sym_function_definition] = STATE(4577), + [sym_compound_statement] = STATE(4577), + [sym_subshell] = STATE(4577), + [sym_pipeline] = STATE(4938), + [sym_list] = STATE(4577), + [sym_negated_command] = STATE(4577), + [sym_test_command] = STATE(4577), + [sym_declaration_command] = STATE(4577), + [sym_unset_command] = STATE(4577), + [sym_command] = STATE(4577), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(856), + [sym_variable_assignments] = STATE(4577), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym__statements_repeat1] = STATE(430), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_SEMI_SEMI] = ACTIONS(768), + [anon_sym_SEMI_AMP] = ACTIONS(531), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(533), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), }, [42] = { - [sym__statements] = STATE(6574), - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4492), - [sym_for_statement] = STATE(4492), - [sym_c_style_for_statement] = STATE(4492), - [sym_while_statement] = STATE(4252), - [sym_if_statement] = STATE(4252), - [sym_case_statement] = STATE(4492), - [sym_function_definition] = STATE(4492), - [sym_compound_statement] = STATE(4492), - [sym_subshell] = STATE(4492), - [sym_pipeline] = STATE(4964), - [sym_list] = STATE(4492), - [sym_negated_command] = STATE(4492), - [sym_test_command] = STATE(4492), - [sym_declaration_command] = STATE(4492), - [sym_unset_command] = STATE(4492), - [sym_command] = STATE(4492), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(880), - [sym_variable_assignments] = STATE(4492), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(751), - [anon_sym_SEMI_AMP] = ACTIONS(545), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(547), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), + [sym__statements] = STATE(6718), + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4577), + [sym_for_statement] = STATE(4577), + [sym_c_style_for_statement] = STATE(4577), + [sym_while_statement] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_case_statement] = STATE(4577), + [sym_function_definition] = STATE(4577), + [sym_compound_statement] = STATE(4577), + [sym_subshell] = STATE(4577), + [sym_pipeline] = STATE(4938), + [sym_list] = STATE(4577), + [sym_negated_command] = STATE(4577), + [sym_test_command] = STATE(4577), + [sym_declaration_command] = STATE(4577), + [sym_unset_command] = STATE(4577), + [sym_command] = STATE(4577), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(856), + [sym_variable_assignments] = STATE(4577), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym__statements_repeat1] = STATE(430), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_SEMI_SEMI] = ACTIONS(770), + [anon_sym_SEMI_AMP] = ACTIONS(559), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(561), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), }, [43] = { - [sym__statements] = STATE(6554), - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4492), - [sym_for_statement] = STATE(4492), - [sym_c_style_for_statement] = STATE(4492), - [sym_while_statement] = STATE(4252), - [sym_if_statement] = STATE(4252), - [sym_case_statement] = STATE(4492), - [sym_function_definition] = STATE(4492), - [sym_compound_statement] = STATE(4492), - [sym_subshell] = STATE(4492), - [sym_pipeline] = STATE(4964), - [sym_list] = STATE(4492), - [sym_negated_command] = STATE(4492), - [sym_test_command] = STATE(4492), - [sym_declaration_command] = STATE(4492), - [sym_unset_command] = STATE(4492), - [sym_command] = STATE(4492), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(880), - [sym_variable_assignments] = STATE(4492), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(753), - [anon_sym_SEMI_AMP] = ACTIONS(523), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(525), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), + [sym__statements] = STATE(6764), + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4577), + [sym_for_statement] = STATE(4577), + [sym_c_style_for_statement] = STATE(4577), + [sym_while_statement] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_case_statement] = STATE(4577), + [sym_function_definition] = STATE(4577), + [sym_compound_statement] = STATE(4577), + [sym_subshell] = STATE(4577), + [sym_pipeline] = STATE(4938), + [sym_list] = STATE(4577), + [sym_negated_command] = STATE(4577), + [sym_test_command] = STATE(4577), + [sym_declaration_command] = STATE(4577), + [sym_unset_command] = STATE(4577), + [sym_command] = STATE(4577), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(856), + [sym_variable_assignments] = STATE(4577), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym__statements_repeat1] = STATE(430), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_SEMI_SEMI] = ACTIONS(772), + [anon_sym_SEMI_AMP] = ACTIONS(537), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(539), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), }, [44] = { - [sym__statements] = STATE(6569), - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4492), - [sym_for_statement] = STATE(4492), - [sym_c_style_for_statement] = STATE(4492), - [sym_while_statement] = STATE(4252), - [sym_if_statement] = STATE(4252), - [sym_case_statement] = STATE(4492), - [sym_function_definition] = STATE(4492), - [sym_compound_statement] = STATE(4492), - [sym_subshell] = STATE(4492), - [sym_pipeline] = STATE(4964), - [sym_list] = STATE(4492), - [sym_negated_command] = STATE(4492), - [sym_test_command] = STATE(4492), - [sym_declaration_command] = STATE(4492), - [sym_unset_command] = STATE(4492), - [sym_command] = STATE(4492), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(880), - [sym_variable_assignments] = STATE(4492), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(755), - [anon_sym_SEMI_AMP] = ACTIONS(531), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(533), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), + [sym__statements] = STATE(6642), + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4577), + [sym_for_statement] = STATE(4577), + [sym_c_style_for_statement] = STATE(4577), + [sym_while_statement] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_case_statement] = STATE(4577), + [sym_function_definition] = STATE(4577), + [sym_compound_statement] = STATE(4577), + [sym_subshell] = STATE(4577), + [sym_pipeline] = STATE(4938), + [sym_list] = STATE(4577), + [sym_negated_command] = STATE(4577), + [sym_test_command] = STATE(4577), + [sym_declaration_command] = STATE(4577), + [sym_unset_command] = STATE(4577), + [sym_command] = STATE(4577), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(856), + [sym_variable_assignments] = STATE(4577), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym__statements_repeat1] = STATE(430), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_SEMI_SEMI] = ACTIONS(774), + [anon_sym_SEMI_AMP] = ACTIONS(545), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(547), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), }, [45] = { - [sym__statements] = STATE(6572), - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4492), - [sym_for_statement] = STATE(4492), - [sym_c_style_for_statement] = STATE(4492), - [sym_while_statement] = STATE(4252), - [sym_if_statement] = STATE(4252), - [sym_case_statement] = STATE(4492), - [sym_function_definition] = STATE(4492), - [sym_compound_statement] = STATE(4492), - [sym_subshell] = STATE(4492), - [sym_pipeline] = STATE(4964), - [sym_list] = STATE(4492), - [sym_negated_command] = STATE(4492), - [sym_test_command] = STATE(4492), - [sym_declaration_command] = STATE(4492), - [sym_unset_command] = STATE(4492), - [sym_command] = STATE(4492), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(880), - [sym_variable_assignments] = STATE(4492), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(757), - [anon_sym_SEMI_AMP] = ACTIONS(539), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(541), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), + [sym__statements] = STATE(6655), + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4577), + [sym_for_statement] = STATE(4577), + [sym_c_style_for_statement] = STATE(4577), + [sym_while_statement] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_case_statement] = STATE(4577), + [sym_function_definition] = STATE(4577), + [sym_compound_statement] = STATE(4577), + [sym_subshell] = STATE(4577), + [sym_pipeline] = STATE(4938), + [sym_list] = STATE(4577), + [sym_negated_command] = STATE(4577), + [sym_test_command] = STATE(4577), + [sym_declaration_command] = STATE(4577), + [sym_unset_command] = STATE(4577), + [sym_command] = STATE(4577), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(856), + [sym_variable_assignments] = STATE(4577), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym__statements_repeat1] = STATE(430), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_SEMI_SEMI] = ACTIONS(776), + [anon_sym_SEMI_AMP] = ACTIONS(553), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(555), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), }, [46] = { - [sym__statements] = STATE(6576), - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4492), - [sym_for_statement] = STATE(4492), - [sym_c_style_for_statement] = STATE(4492), - [sym_while_statement] = STATE(4252), - [sym_if_statement] = STATE(4252), - [sym_case_statement] = STATE(4492), - [sym_function_definition] = STATE(4492), - [sym_compound_statement] = STATE(4492), - [sym_subshell] = STATE(4492), - [sym_pipeline] = STATE(4964), - [sym_list] = STATE(4492), - [sym_negated_command] = STATE(4492), - [sym_test_command] = STATE(4492), - [sym_declaration_command] = STATE(4492), - [sym_unset_command] = STATE(4492), - [sym_command] = STATE(4492), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(880), - [sym_variable_assignments] = STATE(4492), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym__statements_repeat1] = STATE(419), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_SEMI_SEMI] = ACTIONS(759), - [anon_sym_SEMI_AMP] = ACTIONS(551), - [anon_sym_SEMI_SEMI_AMP] = ACTIONS(553), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), + [sym__statements] = STATE(6791), + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4577), + [sym_for_statement] = STATE(4577), + [sym_c_style_for_statement] = STATE(4577), + [sym_while_statement] = STATE(4292), + [sym_if_statement] = STATE(4292), + [sym_case_statement] = STATE(4577), + [sym_function_definition] = STATE(4577), + [sym_compound_statement] = STATE(4577), + [sym_subshell] = STATE(4577), + [sym_pipeline] = STATE(4938), + [sym_list] = STATE(4577), + [sym_negated_command] = STATE(4577), + [sym_test_command] = STATE(4577), + [sym_declaration_command] = STATE(4577), + [sym_unset_command] = STATE(4577), + [sym_command] = STATE(4577), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(856), + [sym_variable_assignments] = STATE(4577), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym__statements_repeat1] = STATE(430), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_SEMI_SEMI] = ACTIONS(778), + [anon_sym_SEMI_AMP] = ACTIONS(565), + [anon_sym_SEMI_SEMI_AMP] = ACTIONS(567), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), }, [47] = { [aux_sym__terminated_statement] = STATE(48), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(761), - [anon_sym_elif] = ACTIONS(761), - [anon_sym_else] = ACTIONS(761), + [anon_sym_fi] = ACTIONS(780), + [anon_sym_elif] = ACTIONS(780), + [anon_sym_else] = ACTIONS(780), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [48] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(763), - [anon_sym_elif] = ACTIONS(763), - [anon_sym_else] = ACTIONS(763), + [anon_sym_fi] = ACTIONS(782), + [anon_sym_elif] = ACTIONS(782), + [anon_sym_else] = ACTIONS(782), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [49] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_do_group] = STATE(5577), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_do_group] = STATE(5660), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(765), + [anon_sym_do] = ACTIONS(784), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [50] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_do_group] = STATE(4662), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_do_group] = STATE(4669), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(767), + [anon_sym_do] = ACTIONS(786), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [51] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_do_group] = STATE(4805), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_do_group] = STATE(4793), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(769), + [anon_sym_do] = ACTIONS(788), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [52] = { - [sym__statements] = STATE(7298), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7497), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(792), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [53] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_do_group] = STATE(4953), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_do_group] = STATE(4946), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_do] = ACTIONS(783), + [anon_sym_do] = ACTIONS(802), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [54] = { - [sym__statements] = STATE(7298), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7497), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(785), + [anon_sym_RPAREN] = ACTIONS(804), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [55] = { - [sym__statements] = STATE(7064), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7573), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(787), + [anon_sym_RPAREN] = ACTIONS(806), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [56] = { - [sym__statements] = STATE(7455), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7259), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(789), + [anon_sym_RPAREN] = ACTIONS(808), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [57] = { - [sym__statements] = STATE(7105), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7334), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(791), + [anon_sym_RPAREN] = ACTIONS(810), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [58] = { - [sym__statements] = STATE(7298), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7497), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(793), + [anon_sym_RPAREN] = ACTIONS(812), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [59] = { - [sym__statements] = STATE(7298), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7497), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(795), + [anon_sym_RPAREN] = ACTIONS(814), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [60] = { - [sym__statements] = STATE(7298), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7497), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_RPAREN] = ACTIONS(797), + [anon_sym_RPAREN] = ACTIONS(816), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [61] = { - [sym__statements] = STATE(7159), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2012), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7336), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [62] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(65), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(799), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(828), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [63] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(72), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(830), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(801), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [64] = { - [sym__statements] = STATE(7448), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(1932), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7677), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2168), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [65] = { - [sym__statements] = STATE(7349), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), + [aux_sym__terminated_statement] = STATE(65), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(569), + [anon_sym_for] = ACTIONS(572), + [anon_sym_select] = ACTIONS(575), + [anon_sym_LPAREN_LPAREN] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_while] = ACTIONS(590), + [anon_sym_until] = ACTIONS(590), + [anon_sym_if] = ACTIONS(595), + [anon_sym_case] = ACTIONS(598), + [anon_sym_function] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_RBRACE] = ACTIONS(832), + [anon_sym_BANG] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(613), + [anon_sym_declare] = ACTIONS(616), + [anon_sym_typeset] = ACTIONS(616), + [anon_sym_export] = ACTIONS(616), + [anon_sym_readonly] = ACTIONS(616), + [anon_sym_local] = ACTIONS(616), + [anon_sym_unset] = ACTIONS(619), + [anon_sym_unsetenv] = ACTIONS(619), + [anon_sym_AMP_GT] = ACTIONS(581), + [anon_sym_AMP_GT_GT] = ACTIONS(584), + [anon_sym_LT_AMP] = ACTIONS(581), + [anon_sym_GT_AMP] = ACTIONS(581), + [anon_sym_GT_PIPE] = ACTIONS(584), + [anon_sym_LT_AMP_DASH] = ACTIONS(622), + [anon_sym_GT_AMP_DASH] = ACTIONS(622), + [anon_sym_LT_LT_LT] = ACTIONS(625), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(628), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(634), + [sym__special_character] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(643), + [sym_ansi_c_string] = ACTIONS(646), + [aux_sym_number_token1] = ACTIONS(649), + [aux_sym_number_token2] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(658), + [anon_sym_BQUOTE] = ACTIONS(661), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(664), + [anon_sym_LT_LPAREN] = ACTIONS(667), + [anon_sym_GT_LPAREN] = ACTIONS(667), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(670), + [sym_variable_name] = ACTIONS(673), + [sym_test_operator] = ACTIONS(676), + [sym__brace_start] = ACTIONS(679), + }, + [66] = { + [aux_sym__terminated_statement] = STATE(66), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(569), + [anon_sym_for] = ACTIONS(572), + [anon_sym_select] = ACTIONS(575), + [anon_sym_LPAREN_LPAREN] = ACTIONS(578), + [anon_sym_LT] = ACTIONS(581), + [anon_sym_GT] = ACTIONS(581), + [anon_sym_GT_GT] = ACTIONS(584), + [anon_sym_LPAREN] = ACTIONS(587), + [anon_sym_while] = ACTIONS(590), + [anon_sym_until] = ACTIONS(590), + [anon_sym_done] = ACTIONS(593), + [anon_sym_if] = ACTIONS(595), + [anon_sym_case] = ACTIONS(598), + [anon_sym_function] = ACTIONS(601), + [anon_sym_LBRACE] = ACTIONS(604), + [anon_sym_BANG] = ACTIONS(607), + [anon_sym_LBRACK] = ACTIONS(610), + [anon_sym_LBRACK_LBRACK] = ACTIONS(613), + [anon_sym_declare] = ACTIONS(616), + [anon_sym_typeset] = ACTIONS(616), + [anon_sym_export] = ACTIONS(616), + [anon_sym_readonly] = ACTIONS(616), + [anon_sym_local] = ACTIONS(616), + [anon_sym_unset] = ACTIONS(619), + [anon_sym_unsetenv] = ACTIONS(619), + [anon_sym_AMP_GT] = ACTIONS(581), + [anon_sym_AMP_GT_GT] = ACTIONS(584), + [anon_sym_LT_AMP] = ACTIONS(581), + [anon_sym_GT_AMP] = ACTIONS(581), + [anon_sym_GT_PIPE] = ACTIONS(584), + [anon_sym_LT_AMP_DASH] = ACTIONS(622), + [anon_sym_GT_AMP_DASH] = ACTIONS(622), + [anon_sym_LT_LT_LT] = ACTIONS(625), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(628), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(631), + [anon_sym_DOLLAR] = ACTIONS(634), + [sym__special_character] = ACTIONS(637), + [anon_sym_DQUOTE] = ACTIONS(640), + [anon_sym_SQUOTE] = ACTIONS(643), + [sym_ansi_c_string] = ACTIONS(646), + [aux_sym_number_token1] = ACTIONS(649), + [aux_sym_number_token2] = ACTIONS(652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(658), + [anon_sym_BQUOTE] = ACTIONS(661), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(664), + [anon_sym_LT_LPAREN] = ACTIONS(667), + [anon_sym_GT_LPAREN] = ACTIONS(667), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(670), + [sym_variable_name] = ACTIONS(673), + [sym_test_operator] = ACTIONS(676), + [sym__brace_start] = ACTIONS(679), + }, + [67] = { + [sym__statements] = STATE(7430), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [66] = { - [sym__statements] = STATE(7172), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), + [68] = { + [aux_sym__terminated_statement] = STATE(69), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_RBRACE] = ACTIONS(834), + [anon_sym_BANG] = ACTIONS(355), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [67] = { - [sym__statements] = STATE(7067), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [69] = { + [aux_sym__terminated_statement] = STATE(65), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_RBRACE] = ACTIONS(836), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [68] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [70] = { + [aux_sym__terminated_statement] = STATE(71), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(838), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(813), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [69] = { - [aux_sym__terminated_statement] = STATE(71), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [71] = { + [aux_sym__terminated_statement] = STATE(66), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(840), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [70] = { - [aux_sym__terminated_statement] = STATE(69), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [72] = { + [aux_sym__terminated_statement] = STATE(66), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(842), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), - }, - [71] = { - [aux_sym__terminated_statement] = STATE(71), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(555), - [anon_sym_for] = ACTIONS(558), - [anon_sym_select] = ACTIONS(561), - [anon_sym_LPAREN_LPAREN] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_while] = ACTIONS(576), - [anon_sym_until] = ACTIONS(576), - [anon_sym_if] = ACTIONS(581), - [anon_sym_case] = ACTIONS(584), - [anon_sym_function] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_RBRACE] = ACTIONS(819), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACK_LBRACK] = ACTIONS(599), - [anon_sym_declare] = ACTIONS(602), - [anon_sym_typeset] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_local] = ACTIONS(602), - [anon_sym_unset] = ACTIONS(605), - [anon_sym_unsetenv] = ACTIONS(605), - [anon_sym_AMP_GT] = ACTIONS(567), - [anon_sym_AMP_GT_GT] = ACTIONS(570), - [anon_sym_LT_AMP] = ACTIONS(567), - [anon_sym_GT_AMP] = ACTIONS(567), - [anon_sym_GT_PIPE] = ACTIONS(570), - [anon_sym_LT_AMP_DASH] = ACTIONS(608), - [anon_sym_GT_AMP_DASH] = ACTIONS(608), - [anon_sym_LT_LT_LT] = ACTIONS(611), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(614), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(617), - [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(71), - [sym_file_descriptor] = ACTIONS(653), - [sym_variable_name] = ACTIONS(656), - [sym_test_operator] = ACTIONS(659), - [sym__brace_start] = ACTIONS(662), - }, - [72] = { - [aux_sym__terminated_statement] = STATE(72), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(555), - [anon_sym_for] = ACTIONS(558), - [anon_sym_select] = ACTIONS(561), - [anon_sym_LPAREN_LPAREN] = ACTIONS(564), - [anon_sym_LT] = ACTIONS(567), - [anon_sym_GT] = ACTIONS(567), - [anon_sym_GT_GT] = ACTIONS(570), - [anon_sym_LPAREN] = ACTIONS(573), - [anon_sym_while] = ACTIONS(576), - [anon_sym_until] = ACTIONS(576), - [anon_sym_done] = ACTIONS(579), - [anon_sym_if] = ACTIONS(581), - [anon_sym_case] = ACTIONS(584), - [anon_sym_function] = ACTIONS(587), - [anon_sym_LBRACE] = ACTIONS(590), - [anon_sym_BANG] = ACTIONS(593), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACK_LBRACK] = ACTIONS(599), - [anon_sym_declare] = ACTIONS(602), - [anon_sym_typeset] = ACTIONS(602), - [anon_sym_export] = ACTIONS(602), - [anon_sym_readonly] = ACTIONS(602), - [anon_sym_local] = ACTIONS(602), - [anon_sym_unset] = ACTIONS(605), - [anon_sym_unsetenv] = ACTIONS(605), - [anon_sym_AMP_GT] = ACTIONS(567), - [anon_sym_AMP_GT_GT] = ACTIONS(570), - [anon_sym_LT_AMP] = ACTIONS(567), - [anon_sym_GT_AMP] = ACTIONS(567), - [anon_sym_GT_PIPE] = ACTIONS(570), - [anon_sym_LT_AMP_DASH] = ACTIONS(608), - [anon_sym_GT_AMP_DASH] = ACTIONS(608), - [anon_sym_LT_LT_LT] = ACTIONS(611), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(614), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(617), - [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(71), - [sym_file_descriptor] = ACTIONS(653), - [sym_variable_name] = ACTIONS(656), - [sym_test_operator] = ACTIONS(659), - [sym__brace_start] = ACTIONS(662), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [73] = { - [aux_sym__terminated_statement] = STATE(74), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(75), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(821), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [74] = { - [aux_sym__terminated_statement] = STATE(71), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(84), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(846), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(823), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [75] = { - [aux_sym__terminated_statement] = STATE(76), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(65), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(825), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(848), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [76] = { - [aux_sym__terminated_statement] = STATE(72), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(78), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(827), + [anon_sym_done] = ACTIONS(850), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [77] = { - [aux_sym__terminated_statement] = STATE(79), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statements] = STATE(6926), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(829), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [78] = { - [aux_sym__terminated_statement] = STATE(108), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(66), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(831), + [anon_sym_done] = ACTIONS(852), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [79] = { - [aux_sym__terminated_statement] = STATE(71), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(80), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(854), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [80] = { - [aux_sym__terminated_statement] = STATE(81), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(65), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(835), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(856), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [81] = { - [aux_sym__terminated_statement] = STATE(72), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(83), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(837), + [anon_sym_done] = ACTIONS(858), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [82] = { - [aux_sym__terminated_statement] = STATE(83), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(860), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(839), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [83] = { - [aux_sym__terminated_statement] = STATE(71), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(66), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(862), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(841), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [84] = { - [sym__statements] = STATE(7077), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_fi] = ACTIONS(864), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [85] = { - [aux_sym__terminated_statement] = STATE(86), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(87), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(866), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [86] = { - [aux_sym__terminated_statement] = STATE(72), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statements] = STATE(7801), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(845), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [87] = { - [aux_sym__terminated_statement] = STATE(88), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(65), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(847), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(868), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [88] = { - [aux_sym__terminated_statement] = STATE(71), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(89), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(870), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(849), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [89] = { - [aux_sym__terminated_statement] = STATE(90), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(66), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(851), + [anon_sym_done] = ACTIONS(872), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [90] = { - [aux_sym__terminated_statement] = STATE(72), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(91), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(853), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(874), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [91] = { - [aux_sym__terminated_statement] = STATE(92), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(65), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(855), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(876), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [92] = { - [aux_sym__terminated_statement] = STATE(71), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(93), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(878), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(857), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [93] = { - [aux_sym__terminated_statement] = STATE(94), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(66), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(859), + [anon_sym_done] = ACTIONS(880), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [94] = { - [aux_sym__terminated_statement] = STATE(72), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(95), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(861), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(882), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [95] = { - [aux_sym__terminated_statement] = STATE(96), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(65), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(884), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [96] = { - [aux_sym__terminated_statement] = STATE(71), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(97), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(886), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [97] = { - [aux_sym__terminated_statement] = STATE(98), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(66), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(867), + [anon_sym_done] = ACTIONS(888), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [98] = { - [aux_sym__terminated_statement] = STATE(72), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(99), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(869), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(890), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [99] = { - [aux_sym__terminated_statement] = STATE(100), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(65), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(871), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(892), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [100] = { - [aux_sym__terminated_statement] = STATE(71), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4971), - [sym_for_statement] = STATE(4971), - [sym_c_style_for_statement] = STATE(4971), - [sym_while_statement] = STATE(4432), - [sym_if_statement] = STATE(4432), - [sym_case_statement] = STATE(4971), - [sym_function_definition] = STATE(4971), - [sym_compound_statement] = STATE(4971), - [sym_subshell] = STATE(4971), - [sym_pipeline] = STATE(5217), - [sym_list] = STATE(4971), - [sym_negated_command] = STATE(4971), - [sym_test_command] = STATE(4971), - [sym_declaration_command] = STATE(4971), - [sym_unset_command] = STATE(4971), - [sym_command] = STATE(4971), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1032), - [sym_variable_assignments] = STATE(4971), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(101), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), + [anon_sym_done] = ACTIONS(894), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [101] = { - [aux_sym__terminated_statement] = STATE(102), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(66), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(4955), + [sym_for_statement] = STATE(4955), + [sym_c_style_for_statement] = STATE(4955), + [sym_while_statement] = STATE(4615), + [sym_if_statement] = STATE(4615), + [sym_case_statement] = STATE(4955), + [sym_function_definition] = STATE(4955), + [sym_compound_statement] = STATE(4955), + [sym_subshell] = STATE(4955), + [sym_pipeline] = STATE(5245), + [sym_list] = STATE(4955), + [sym_negated_command] = STATE(4955), + [sym_test_command] = STATE(4955), + [sym_declaration_command] = STATE(4955), + [sym_unset_command] = STATE(4955), + [sym_command] = STATE(4955), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1116), + [sym_variable_assignments] = STATE(4955), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(875), + [anon_sym_done] = ACTIONS(896), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [102] = { - [aux_sym__terminated_statement] = STATE(72), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statements] = STATE(7480), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(877), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [103] = { - [sym__statements] = STATE(7000), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7474), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2116), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [104] = { - [sym__statements] = STATE(7178), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7500), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [105] = { - [sym__statements] = STATE(7179), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7518), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [106] = { - [sym__statements] = STATE(7180), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7521), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [107] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(879), + [anon_sym_then] = ACTIONS(898), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [108] = { - [aux_sym__terminated_statement] = STATE(72), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4978), - [sym_for_statement] = STATE(4978), - [sym_c_style_for_statement] = STATE(4978), - [sym_while_statement] = STATE(4502), - [sym_if_statement] = STATE(4502), - [sym_case_statement] = STATE(4978), - [sym_function_definition] = STATE(4978), - [sym_compound_statement] = STATE(4978), - [sym_subshell] = STATE(4978), - [sym_pipeline] = STATE(5220), - [sym_list] = STATE(4978), - [sym_negated_command] = STATE(4978), - [sym_test_command] = STATE(4978), - [sym_declaration_command] = STATE(4978), - [sym_unset_command] = STATE(4978), - [sym_command] = STATE(4978), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1036), - [sym_variable_assignments] = STATE(4978), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statements] = STATE(7497), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), - [anon_sym_done] = ACTIONS(881), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [109] = { - [sym__statements] = STATE(7298), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7867), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2296), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [110] = { - [sym__statements] = STATE(7441), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2040), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7647), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [111] = { - [sym__statements] = STATE(7444), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6956), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [112] = { - [sym__statements] = STATE(7445), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7066), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [113] = { - [sym__statements] = STATE(7446), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), + [anon_sym_then] = ACTIONS(900), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [114] = { - [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(62), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5008), + [sym_for_statement] = STATE(5008), + [sym_c_style_for_statement] = STATE(5008), + [sym_while_statement] = STATE(4570), + [sym_if_statement] = STATE(4570), + [sym_case_statement] = STATE(5008), + [sym_function_definition] = STATE(5008), + [sym_compound_statement] = STATE(5008), + [sym_subshell] = STATE(5008), + [sym_pipeline] = STATE(5276), + [sym_list] = STATE(5008), + [sym_negated_command] = STATE(5008), + [sym_test_command] = STATE(5008), + [sym_declaration_command] = STATE(5008), + [sym_unset_command] = STATE(5008), + [sym_command] = STATE(5008), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1033), + [sym_variable_assignments] = STATE(5008), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(883), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_RBRACE] = ACTIONS(902), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [115] = { - [sym__statements] = STATE(7064), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7573), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [116] = { - [sym__statements] = STATE(7115), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2043), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6873), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2158), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [117] = { - [sym__statements] = STATE(7132), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6875), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [118] = { - [sym__statements] = STATE(7134), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6877), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [119] = { - [sym__statements] = STATE(7138), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6882), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [120] = { [aux_sym__terminated_statement] = STATE(34), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_then] = ACTIONS(885), + [anon_sym_then] = ACTIONS(904), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [121] = { - [aux_sym__terminated_statement] = STATE(63), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(34), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), - [anon_sym_fi] = ACTIONS(887), + [anon_sym_then] = ACTIONS(906), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [122] = { - [sym__statements] = STATE(7498), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7484), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [123] = { - [sym__statements] = STATE(7606), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2045), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7535), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2222), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [124] = { - [sym__statements] = STATE(7534), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7551), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [125] = { - [sym__statements] = STATE(6937), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7555), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [126] = { - [sym__statements] = STATE(7131), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7557), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [127] = { - [sym__statements] = STATE(6957), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7574), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [128] = { - [sym__statements] = STATE(6826), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2047), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7115), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2140), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [129] = { - [sym__statements] = STATE(6831), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7123), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [130] = { - [sym__statements] = STATE(6832), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7221), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [131] = { - [sym__statements] = STATE(6833), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7283), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [132] = { - [sym__statements] = STATE(7455), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7259), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [133] = { - [sym__statements] = STATE(7003), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2048), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6919), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2186), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [134] = { - [sym__statements] = STATE(7007), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6958), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [135] = { - [sym__statements] = STATE(7017), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6965), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [136] = { - [sym__statements] = STATE(7020), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6972), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [137] = { - [sym__statements] = STATE(7105), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7334), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [138] = { - [sym__statements] = STATE(7137), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2049), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7482), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2249), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [139] = { - [sym__statements] = STATE(7143), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7488), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [140] = { - [sym__statements] = STATE(7148), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7498), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [141] = { - [sym__statements] = STATE(7151), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7505), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [142] = { - [sym__statements] = STATE(7234), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2050), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6901), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2255), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [143] = { - [sym__statements] = STATE(7246), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6909), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [144] = { - [sym__statements] = STATE(7248), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6918), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [145] = { - [sym__statements] = STATE(7249), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6922), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [146] = { - [sym__statements] = STATE(7320), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2051), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7018), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2259), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [147] = { - [sym__statements] = STATE(7326), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7036), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [148] = { - [sym__statements] = STATE(7327), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7038), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [149] = { - [sym__statements] = STATE(7328), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7040), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [150] = { - [sym__statements] = STATE(7397), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2052), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7179), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2267), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [151] = { - [sym__statements] = STATE(7406), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7186), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [152] = { - [sym__statements] = STATE(7413), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7203), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [153] = { - [sym__statements] = STATE(7415), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7208), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [154] = { - [sym__statements] = STATE(7458), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2053), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7267), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2268), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [155] = { - [sym__statements] = STATE(7460), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7270), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [156] = { - [sym__statements] = STATE(7461), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7279), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [157] = { - [sym__statements] = STATE(7462), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7280), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [158] = { - [sym__statements] = STATE(7509), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2054), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7333), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2273), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [159] = { - [sym__statements] = STATE(7515), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7335), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [160] = { - [sym__statements] = STATE(7517), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7522), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [161] = { - [sym__statements] = STATE(7519), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7339), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [162] = { - [sym__statements] = STATE(6838), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2055), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7453), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2275), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [163] = { - [sym__statements] = STATE(6934), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7456), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [164] = { - [sym__statements] = STATE(6989), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7458), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [165] = { - [sym__statements] = STATE(6996), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7461), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [166] = { - [sym__statements] = STATE(6818), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2056), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7539), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2281), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [167] = { - [sym__statements] = STATE(6821), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7544), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [168] = { - [sym__statements] = STATE(6827), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7548), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [169] = { - [sym__statements] = STATE(6829), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7549), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [170] = { - [sym__statements] = STATE(7005), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2057), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7611), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2100), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [171] = { - [sym__statements] = STATE(7026), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7626), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [172] = { - [sym__statements] = STATE(7045), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7638), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [173] = { - [sym__statements] = STATE(7048), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7642), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [174] = { - [sym__statements] = STATE(7295), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(1930), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7700), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2101), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [175] = { - [sym__statements] = STATE(7318), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7706), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [176] = { - [sym__statements] = STATE(7329), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7715), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [177] = { - [sym__statements] = STATE(7336), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7716), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [178] = { - [sym__statements] = STATE(6798), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2059), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6881), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2102), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [179] = { - [sym__statements] = STATE(6804), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6888), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [180] = { - [sym__statements] = STATE(6805), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6890), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [181] = { - [sym__statements] = STATE(6808), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6891), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [182] = { - [sym__statements] = STATE(6859), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2060), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6925), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2108), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [183] = { - [sym__statements] = STATE(6861), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6928), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [184] = { - [sym__statements] = STATE(6862), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6929), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [185] = { - [sym__statements] = STATE(6868), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6936), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [186] = { - [sym__statements] = STATE(6915), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2061), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6969), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2111), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [187] = { - [sym__statements] = STATE(6919), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6971), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [188] = { - [sym__statements] = STATE(6922), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6975), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [189] = { - [sym__statements] = STATE(6928), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6976), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [190] = { - [sym__statements] = STATE(6972), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2062), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7028), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [191] = { - [sym__statements] = STATE(6976), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7029), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [192] = { - [sym__statements] = STATE(6977), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7030), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [193] = { - [sym__statements] = STATE(6979), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7093), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2120), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [194] = { - [sym__statements] = STATE(7025), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2063), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7095), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [195] = { - [sym__statements] = STATE(7027), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7096), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [196] = { - [sym__statements] = STATE(7028), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7098), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [197] = { - [sym__statements] = STATE(7032), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7152), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2132), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [198] = { - [sym__statements] = STATE(7070), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2064), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7160), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [199] = { - [sym__statements] = STATE(7083), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7162), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [200] = { - [sym__statements] = STATE(7085), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7165), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [201] = { - [sym__statements] = STATE(7087), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7195), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2133), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [202] = { - [sym__statements] = STATE(7117), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2065), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7198), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [203] = { - [sym__statements] = STATE(7122), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7199), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [204] = { - [sym__statements] = STATE(7127), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7200), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [205] = { - [sym__statements] = STATE(7130), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7232), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2136), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [206] = { - [sym__statements] = STATE(7158), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2066), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7235), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [207] = { - [sym__statements] = STATE(7162), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7237), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [208] = { - [sym__statements] = STATE(7168), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7238), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [209] = { - [sym__statements] = STATE(7171), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7275), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2138), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [210] = { - [sym__statements] = STATE(7200), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2067), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7286), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [211] = { - [sym__statements] = STATE(7209), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7295), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [212] = { - [sym__statements] = STATE(7210), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7296), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [213] = { - [sym__statements] = STATE(7213), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7341), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2142), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [214] = { - [sym__statements] = STATE(7236), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2068), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7347), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [215] = { - [sym__statements] = STATE(7238), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7349), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [216] = { - [sym__statements] = STATE(7239), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7351), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [217] = { - [sym__statements] = STATE(7242), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7384), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2147), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [218] = { - [sym__statements] = STATE(7266), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2069), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7387), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [219] = { - [sym__statements] = STATE(7274), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7389), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [220] = { - [sym__statements] = STATE(7275), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7390), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [221] = { - [sym__statements] = STATE(7276), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7421), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2150), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [222] = { - [sym__statements] = STATE(7302), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2070), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7423), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [223] = { - [sym__statements] = STATE(7306), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7424), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [224] = { - [sym__statements] = STATE(7307), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7425), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [225] = { - [sym__statements] = STATE(7308), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7440), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2154), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [226] = { - [sym__statements] = STATE(7333), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2071), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7442), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [227] = { - [sym__statements] = STATE(7339), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7443), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [228] = { - [sym__statements] = STATE(7340), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7444), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [229] = { - [sym__statements] = STATE(7341), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7463), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2160), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [230] = { - [sym__statements] = STATE(7371), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2072), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7467), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [231] = { - [sym__statements] = STATE(7374), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7469), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [232] = { - [sym__statements] = STATE(7375), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7472), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [233] = { - [sym__statements] = STATE(7376), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7487), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2167), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [234] = { - [sym__statements] = STATE(7404), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2073), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7490), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [235] = { - [sym__statements] = STATE(7407), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7492), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [236] = { - [sym__statements] = STATE(7410), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7493), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [237] = { - [sym__statements] = STATE(7411), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7509), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2170), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [238] = { - [sym__statements] = STATE(7431), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2074), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7511), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [239] = { - [sym__statements] = STATE(7434), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7512), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [240] = { - [sym__statements] = STATE(7435), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7513), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [241] = { - [sym__statements] = STATE(7436), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7538), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2179), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [242] = { - [sym__statements] = STATE(7450), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2075), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7545), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [243] = { - [sym__statements] = STATE(7452), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7546), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [244] = { - [sym__statements] = STATE(7453), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7547), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [245] = { - [sym__statements] = STATE(7454), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7564), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2187), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [246] = { - [sym__statements] = STATE(7468), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2076), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7566), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [247] = { - [sym__statements] = STATE(7470), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7567), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [248] = { - [sym__statements] = STATE(7471), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7568), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [249] = { - [sym__statements] = STATE(7473), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7595), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2193), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [250] = { - [sym__statements] = STATE(7497), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2077), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym__statements] = STATE(7599), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [251] = { - [sym__statements] = STATE(7499), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7601), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [252] = { - [sym__statements] = STATE(7500), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7603), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(794), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [253] = { - [sym__statements] = STATE(7521), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2078), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7632), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2201), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [254] = { - [sym__statements] = STATE(7524), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7635), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [255] = { - [sym__statements] = STATE(7525), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7636), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [256] = { - [sym__statements] = STATE(7528), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7637), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [257] = { - [sym__statements] = STATE(7492), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2079), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7657), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2204), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [258] = { - [sym__statements] = STATE(6811), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7660), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [259] = { - [sym__statements] = STATE(6874), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7661), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [260] = { - [sym__statements] = STATE(6901), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7662), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [261] = { - [sym__statements] = STATE(6854), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2080), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7685), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2205), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [262] = { - [sym__statements] = STATE(6883), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7687), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [263] = { - [sym__statements] = STATE(6885), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7689), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [264] = { - [sym__statements] = STATE(6899), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7690), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [265] = { - [sym__statements] = STATE(7188), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2081), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7705), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2096), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [266] = { - [sym__statements] = STATE(7225), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7707), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [267] = { - [sym__statements] = STATE(7253), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7712), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [268] = { - [sym__statements] = STATE(7277), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7713), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [269] = { - [sym__statements] = STATE(7518), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2082), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7729), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2298), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [270] = { - [sym__statements] = STATE(7535), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7731), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [271] = { - [sym__statements] = STATE(7599), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7732), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [272] = { - [sym__statements] = STATE(6793), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7733), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [273] = { - [sym__statements] = STATE(6847), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2083), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7646), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2213), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [274] = { - [sym__statements] = STATE(6856), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6915), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [275] = { - [sym__statements] = STATE(6865), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6955), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [276] = { - [sym__statements] = STATE(6872), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7049), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [277] = { - [sym__statements] = STATE(6930), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2084), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7569), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2214), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [278] = { - [sym__statements] = STATE(6936), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7583), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [279] = { - [sym__statements] = STATE(6941), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7616), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [280] = { - [sym__statements] = STATE(6944), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7643), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [281] = { - [sym__statements] = STATE(7021), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2085), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7352), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2215), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [282] = { - [sym__statements] = STATE(7036), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7395), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [283] = { - [sym__statements] = STATE(7038), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7399), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [284] = { - [sym__statements] = STATE(7040), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7400), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [285] = { - [sym__statements] = STATE(7099), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2086), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6906), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2218), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [286] = { - [sym__statements] = STATE(7126), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6939), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [287] = { - [sym__statements] = STATE(7139), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6949), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [288] = { - [sym__statements] = STATE(7147), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6952), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [289] = { - [sym__statements] = STATE(7245), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2087), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7218), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2219), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [290] = { - [sym__statements] = STATE(7257), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7240), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [291] = { - [sym__statements] = STATE(7258), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7255), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [292] = { - [sym__statements] = STATE(7263), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7256), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [293] = { - [sym__statements] = STATE(7356), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2088), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7413), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2223), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [294] = { - [sym__statements] = STATE(7384), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7525), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [295] = { - [sym__statements] = STATE(7387), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7528), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [296] = { - [sym__statements] = STATE(7412), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7529), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [297] = { - [sym__statements] = STATE(7505), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2089), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7694), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2224), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [298] = { - [sym__statements] = STATE(7530), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7795), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [299] = { - [sym__statements] = STATE(7531), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6870), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [300] = { - [sym__statements] = STATE(7532), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6874), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [301] = { - [sym__statements] = STATE(6813), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2090), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6990), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2225), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [302] = { - [sym__statements] = STATE(6815), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7004), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [303] = { - [sym__statements] = STATE(6816), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7019), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [304] = { - [sym__statements] = STATE(6817), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7035), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [305] = { - [sym__statements] = STATE(6840), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2091), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7130), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2226), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [306] = { - [sym__statements] = STATE(6842), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7178), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [307] = { - [sym__statements] = STATE(6843), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7189), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [308] = { - [sym__statements] = STATE(6844), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7214), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [309] = { - [sym__statements] = STATE(6867), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2092), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7312), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2227), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [310] = { - [sym__statements] = STATE(6869), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7317), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [311] = { - [sym__statements] = STATE(6870), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7323), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [312] = { - [sym__statements] = STATE(6871), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7327), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [313] = { - [sym__statements] = STATE(6894), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2093), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7473), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2243), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [314] = { - [sym__statements] = STATE(6896), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7483), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [315] = { - [sym__statements] = STATE(6897), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7494), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [316] = { - [sym__statements] = STATE(6898), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7520), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [317] = { - [sym__statements] = STATE(6921), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2094), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7582), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2244), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [318] = { - [sym__statements] = STATE(6923), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7584), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [319] = { - [sym__statements] = STATE(6924), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7607), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [320] = { - [sym__statements] = STATE(6926), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7615), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [321] = { - [sym__statements] = STATE(6943), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2095), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7725), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2245), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [322] = { - [sym__statements] = STATE(6945), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7803), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [323] = { - [sym__statements] = STATE(6947), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7804), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [324] = { - [sym__statements] = STATE(6948), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6862), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [325] = { - [sym__statements] = STATE(6965), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2096), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6934), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2247), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [326] = { - [sym__statements] = STATE(6968), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6941), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [327] = { - [sym__statements] = STATE(6969), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6942), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [328] = { - [sym__statements] = STATE(6970), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6944), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [329] = { - [sym__statements] = STATE(6987), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2097), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6989), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2248), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [330] = { - [sym__statements] = STATE(6990), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6991), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [331] = { - [sym__statements] = STATE(6991), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6996), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [332] = { - [sym__statements] = STATE(6993), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7000), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [333] = { - [sym__statements] = STATE(7010), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2098), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7088), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2253), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [334] = { - [sym__statements] = STATE(7012), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7102), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [335] = { - [sym__statements] = STATE(7013), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7106), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [336] = { - [sym__statements] = STATE(7014), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7112), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [337] = { - [sym__statements] = STATE(7031), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2099), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7135), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2254), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [338] = { - [sym__statements] = STATE(7033), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7157), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [339] = { - [sym__statements] = STATE(7034), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7166), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [340] = { - [sym__statements] = STATE(7035), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7167), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [341] = { - [sym__statements] = STATE(7052), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2100), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7245), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2257), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [342] = { - [sym__statements] = STATE(7054), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7248), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [343] = { - [sym__statements] = STATE(7055), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7250), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [344] = { - [sym__statements] = STATE(7056), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7254), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [345] = { - [sym__statements] = STATE(7073), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2101), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7299), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2258), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [346] = { - [sym__statements] = STATE(7075), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7304), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [347] = { - [sym__statements] = STATE(7080), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7307), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [348] = { - [sym__statements] = STATE(7081), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7310), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [349] = { - [sym__statements] = STATE(7098), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2102), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7366), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2260), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [350] = { - [sym__statements] = STATE(7101), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7375), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [351] = { - [sym__statements] = STATE(7102), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7379), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [352] = { - [sym__statements] = STATE(7103), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7391), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [353] = { - [sym__statements] = STATE(7120), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2103), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7868), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2274), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [354] = { - [sym__statements] = STATE(7123), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7431), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [355] = { - [sym__statements] = STATE(7124), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7432), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [356] = { - [sym__statements] = STATE(7125), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7437), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [357] = { - [sym__statements] = STATE(7141), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2104), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7504), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2279), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [358] = { - [sym__statements] = STATE(7144), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7506), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [359] = { - [sym__statements] = STATE(7145), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7515), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [360] = { - [sym__statements] = STATE(7146), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7517), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [361] = { - [sym__statements] = STATE(7161), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2105), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7552), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2280), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [362] = { - [sym__statements] = STATE(7164), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7556), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [363] = { - [sym__statements] = STATE(7165), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7558), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [364] = { - [sym__statements] = STATE(7166), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7560), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [365] = { - [sym__statements] = STATE(7182), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2106), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7605), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2282), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [366] = { - [sym__statements] = STATE(7185), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7610), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [367] = { - [sym__statements] = STATE(7186), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7612), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [368] = { - [sym__statements] = STATE(7187), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7614), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [369] = { - [sym__statements] = STATE(7202), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2107), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7654), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2207), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [370] = { - [sym__statements] = STATE(7206), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7671), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [371] = { - [sym__statements] = STATE(7207), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7673), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [372] = { - [sym__statements] = STATE(7218), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2108), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7718), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2185), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [373] = { - [sym__statements] = STATE(7220), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7721), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [374] = { - [sym__statements] = STATE(7221), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7723), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [375] = { - [sym__statements] = STATE(7229), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2109), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6859), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2188), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [376] = { - [sym__statements] = STATE(7231), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6863), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [377] = { - [sym__statements] = STATE(7233), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6866), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [378] = { - [sym__statements] = STATE(7241), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2110), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6886), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2191), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [379] = { - [sym__statements] = STATE(7243), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6892), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [380] = { - [sym__statements] = STATE(7244), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6893), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [381] = { - [sym__statements] = STATE(7252), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2111), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6908), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2195), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [382] = { - [sym__statements] = STATE(7254), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6912), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [383] = { - [sym__statements] = STATE(7255), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6913), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [384] = { - [sym__statements] = STATE(7265), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2112), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6932), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2206), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [385] = { - [sym__statements] = STATE(7269), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6935), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [386] = { - [sym__statements] = STATE(7270), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6938), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [387] = { - [sym__statements] = STATE(7279), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2113), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6948), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2241), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [388] = { - [sym__statements] = STATE(7281), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6950), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [389] = { - [sym__statements] = STATE(7282), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6951), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [390] = { - [sym__statements] = STATE(7289), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2114), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6960), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2252), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [391] = { - [sym__statements] = STATE(7292), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6962), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [392] = { - [sym__statements] = STATE(7293), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6964), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [393] = { - [sym__statements] = STATE(7301), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2115), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6980), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2256), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [394] = { - [sym__statements] = STATE(7303), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6984), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [395] = { - [sym__statements] = STATE(7304), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6985), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [396] = { - [sym__statements] = STATE(7311), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2116), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(6994), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2271), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [397] = { - [sym__statements] = STATE(7313), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6998), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [398] = { - [sym__statements] = STATE(7314), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(6999), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [399] = { - [sym__statements] = STATE(7322), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2117), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7009), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2288), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [400] = { - [sym__statements] = STATE(7324), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7012), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [401] = { - [sym__statements] = STATE(7325), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7014), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [402] = { - [sym__statements] = STATE(7332), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2118), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7026), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2103), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [403] = { - [sym__statements] = STATE(7334), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7032), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [404] = { - [sym__statements] = STATE(7335), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7034), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [405] = { - [sym__statements] = STATE(7344), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2119), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7044), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2118), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [406] = { - [sym__statements] = STATE(7346), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7046), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [407] = { - [sym__statements] = STATE(7347), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7048), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [408] = { - [sym__statements] = STATE(7355), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2120), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7060), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2121), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [409] = { - [sym__statements] = STATE(7357), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7062), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [410] = { - [sym__statements] = STATE(7358), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7064), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [411] = { - [sym__statements] = STATE(7360), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2121), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7068), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2126), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [412] = { - [sym__statements] = STATE(7362), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7072), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [413] = { - [sym__statements] = STATE(7363), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7074), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [414] = { - [sym__statements] = STATE(7364), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2122), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7075), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2161), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [415] = { - [sym__statements] = STATE(7366), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7079), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [416] = { - [sym__statements] = STATE(7367), - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4656), - [sym_for_statement] = STATE(4656), - [sym_c_style_for_statement] = STATE(4656), - [sym_while_statement] = STATE(4396), - [sym_if_statement] = STATE(4396), - [sym_case_statement] = STATE(4656), - [sym_function_definition] = STATE(4656), - [sym_compound_statement] = STATE(4656), - [sym_subshell] = STATE(4656), - [sym_pipeline] = STATE(5037), - [sym_list] = STATE(4656), - [sym_negated_command] = STATE(4656), - [sym_test_command] = STATE(4656), - [sym_declaration_command] = STATE(4656), - [sym_unset_command] = STATE(4656), - [sym_command] = STATE(4656), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1025), - [sym_variable_assignments] = STATE(4656), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(426), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym__statements] = STATE(7083), + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4807), + [sym_for_statement] = STATE(4807), + [sym_c_style_for_statement] = STATE(4807), + [sym_while_statement] = STATE(4328), + [sym_if_statement] = STATE(4328), + [sym_case_statement] = STATE(4807), + [sym_function_definition] = STATE(4807), + [sym_compound_statement] = STATE(4807), + [sym_subshell] = STATE(4807), + [sym_pipeline] = STATE(5157), + [sym_list] = STATE(4807), + [sym_negated_command] = STATE(4807), + [sym_test_command] = STATE(4807), + [sym_declaration_command] = STATE(4807), + [sym_unset_command] = STATE(4807), + [sym_command] = STATE(4807), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1145), + [sym_variable_assignments] = STATE(4807), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(422), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(822), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [417] = { - [sym__statements] = STATE(7501), - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4635), - [sym_for_statement] = STATE(4635), - [sym_c_style_for_statement] = STATE(4635), - [sym_while_statement] = STATE(4398), - [sym_if_statement] = STATE(4398), - [sym_case_statement] = STATE(4635), - [sym_function_definition] = STATE(4635), - [sym_compound_statement] = STATE(4635), - [sym_subshell] = STATE(4635), - [sym_pipeline] = STATE(5071), - [sym_list] = STATE(4635), - [sym_negated_command] = STATE(4635), - [sym_test_command] = STATE(4635), - [sym_declaration_command] = STATE(4635), - [sym_unset_command] = STATE(4635), - [sym_command] = STATE(4635), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(983), - [sym_variable_assignments] = STATE(4635), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym__statements_repeat1] = STATE(422), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statements] = STATE(7025), + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4723), + [sym_for_statement] = STATE(4723), + [sym_c_style_for_statement] = STATE(4723), + [sym_while_statement] = STATE(4310), + [sym_if_statement] = STATE(4310), + [sym_case_statement] = STATE(4723), + [sym_function_definition] = STATE(4723), + [sym_compound_statement] = STATE(4723), + [sym_subshell] = STATE(4723), + [sym_pipeline] = STATE(5166), + [sym_list] = STATE(4723), + [sym_negated_command] = STATE(4723), + [sym_test_command] = STATE(4723), + [sym_declaration_command] = STATE(4723), + [sym_unset_command] = STATE(4723), + [sym_command] = STATE(4723), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(954), + [sym_variable_assignments] = STATE(4723), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2112), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(425), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(91), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, [418] = { - [aux_sym__terminated_statement] = STATE(49), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(121), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [419] = { - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4512), - [sym_for_statement] = STATE(4512), - [sym_c_style_for_statement] = STATE(4512), - [sym_while_statement] = STATE(4231), - [sym_if_statement] = STATE(4231), - [sym_case_statement] = STATE(4512), - [sym_function_definition] = STATE(4512), - [sym_compound_statement] = STATE(4512), - [sym_subshell] = STATE(4512), - [sym_pipeline] = STATE(5023), - [sym_list] = STATE(4512), - [sym_negated_command] = STATE(4512), - [sym_test_command] = STATE(4512), - [sym_declaration_command] = STATE(4512), - [sym_unset_command] = STATE(4512), - [sym_command] = STATE(4512), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(846), - [sym_variable_assignments] = STATE(4512), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym__statements_repeat1] = STATE(421), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), - }, - [420] = { - [aux_sym__terminated_statement] = STATE(51), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [aux_sym__terminated_statement] = STATE(120), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), - }, - [421] = { - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4927), - [sym_for_statement] = STATE(4927), - [sym_c_style_for_statement] = STATE(4927), - [sym_while_statement] = STATE(4546), - [sym_if_statement] = STATE(4546), - [sym_case_statement] = STATE(4927), - [sym_function_definition] = STATE(4927), - [sym_compound_statement] = STATE(4927), - [sym_subshell] = STATE(4927), - [sym_pipeline] = STATE(5152), - [sym_list] = STATE(4927), - [sym_negated_command] = STATE(4927), - [sym_test_command] = STATE(4927), - [sym_declaration_command] = STATE(4927), - [sym_unset_command] = STATE(4927), - [sym_command] = STATE(4927), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1118), - [sym_variable_assignments] = STATE(4927), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(421), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(889), - [anon_sym_for] = ACTIONS(892), - [anon_sym_select] = ACTIONS(895), - [anon_sym_LPAREN_LPAREN] = ACTIONS(898), - [anon_sym_LT] = ACTIONS(901), - [anon_sym_GT] = ACTIONS(901), - [anon_sym_GT_GT] = ACTIONS(904), - [anon_sym_LPAREN] = ACTIONS(907), - [anon_sym_while] = ACTIONS(910), - [anon_sym_until] = ACTIONS(910), - [anon_sym_if] = ACTIONS(913), - [anon_sym_case] = ACTIONS(916), - [anon_sym_function] = ACTIONS(919), - [anon_sym_LBRACE] = ACTIONS(922), - [anon_sym_BANG] = ACTIONS(925), - [anon_sym_LBRACK] = ACTIONS(928), - [anon_sym_LBRACK_LBRACK] = ACTIONS(931), - [anon_sym_declare] = ACTIONS(934), - [anon_sym_typeset] = ACTIONS(934), - [anon_sym_export] = ACTIONS(934), - [anon_sym_readonly] = ACTIONS(934), - [anon_sym_local] = ACTIONS(934), - [anon_sym_unset] = ACTIONS(937), - [anon_sym_unsetenv] = ACTIONS(937), - [anon_sym_AMP_GT] = ACTIONS(901), - [anon_sym_AMP_GT_GT] = ACTIONS(904), - [anon_sym_LT_AMP] = ACTIONS(901), - [anon_sym_GT_AMP] = ACTIONS(901), - [anon_sym_GT_PIPE] = ACTIONS(904), - [anon_sym_LT_AMP_DASH] = ACTIONS(940), - [anon_sym_GT_AMP_DASH] = ACTIONS(940), - [anon_sym_LT_LT_LT] = ACTIONS(943), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(946), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(952), - [sym__special_character] = ACTIONS(955), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym_raw_string] = ACTIONS(961), - [sym_ansi_c_string] = ACTIONS(961), - [aux_sym_number_token1] = ACTIONS(964), - [aux_sym_number_token2] = ACTIONS(967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(970), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(973), - [anon_sym_BQUOTE] = ACTIONS(976), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(979), - [anon_sym_LT_LPAREN] = ACTIONS(982), - [anon_sym_GT_LPAREN] = ACTIONS(982), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(985), - [sym_variable_name] = ACTIONS(988), - [sym_test_operator] = ACTIONS(991), - [sym__brace_start] = ACTIONS(994), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [422] = { - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4812), - [sym_for_statement] = STATE(4812), - [sym_c_style_for_statement] = STATE(4812), - [sym_while_statement] = STATE(4390), - [sym_if_statement] = STATE(4390), - [sym_case_statement] = STATE(4812), - [sym_function_definition] = STATE(4812), - [sym_compound_statement] = STATE(4812), - [sym_subshell] = STATE(4812), - [sym_pipeline] = STATE(5094), - [sym_list] = STATE(4812), - [sym_negated_command] = STATE(4812), - [sym_test_command] = STATE(4812), - [sym_declaration_command] = STATE(4812), - [sym_unset_command] = STATE(4812), - [sym_command] = STATE(4812), + [420] = { + [sym__statement_not_pipeline] = STATE(6746), + [sym_redirected_statement] = STATE(4890), + [sym_for_statement] = STATE(4890), + [sym_c_style_for_statement] = STATE(4890), + [sym_while_statement] = STATE(4335), + [sym_if_statement] = STATE(4335), + [sym_case_statement] = STATE(4890), + [sym_function_definition] = STATE(4890), + [sym_compound_statement] = STATE(4890), + [sym_subshell] = STATE(4890), + [sym_pipeline] = STATE(5106), + [sym_list] = STATE(4890), + [sym_negated_command] = STATE(4890), + [sym_test_command] = STATE(4890), + [sym_declaration_command] = STATE(4890), + [sym_unset_command] = STATE(4890), + [sym_command] = STATE(4890), [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(1003), - [sym_variable_assignments] = STATE(4812), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), + [sym_variable_assignment] = STATE(982), + [sym_variable_assignments] = STATE(4890), + [sym_subscript] = STATE(6814), + [sym_file_redirect] = STATE(2238), + [sym_herestring_redirect] = STATE(2286), + [sym_arithmetic_expansion] = STATE(926), + [sym_brace_expression] = STATE(926), + [sym_concatenation] = STATE(1383), + [sym_string] = STATE(926), + [sym_translated_string] = STATE(926), + [sym_raw_string] = STATE(926), + [sym_number] = STATE(926), + [sym_simple_expansion] = STATE(926), + [sym_expansion] = STATE(926), + [sym_command_substitution] = STATE(926), + [sym_process_substitution] = STATE(926), [aux_sym__statements_repeat1] = STATE(421), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [aux_sym_redirected_statement_repeat2] = STATE(4540), + [aux_sym_command_repeat1] = STATE(903), + [aux_sym__literal_repeat1] = STATE(1290), + [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(13), + [anon_sym_LT] = ACTIONS(15), + [anon_sym_GT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(17), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(91), + [anon_sym_function] = ACTIONS(27), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(31), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(37), + [anon_sym_typeset] = ACTIONS(37), + [anon_sym_export] = ACTIONS(37), + [anon_sym_readonly] = ACTIONS(37), + [anon_sym_local] = ACTIONS(37), + [anon_sym_unset] = ACTIONS(39), + [anon_sym_unsetenv] = ACTIONS(39), + [anon_sym_AMP_GT] = ACTIONS(15), + [anon_sym_AMP_GT_GT] = ACTIONS(17), + [anon_sym_LT_AMP] = ACTIONS(15), + [anon_sym_GT_AMP] = ACTIONS(15), + [anon_sym_GT_PIPE] = ACTIONS(17), + [anon_sym_LT_AMP_DASH] = ACTIONS(41), + [anon_sym_GT_AMP_DASH] = ACTIONS(41), + [anon_sym_LT_LT_LT] = ACTIONS(43), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), + [anon_sym_DOLLAR] = ACTIONS(49), + [sym__special_character] = ACTIONS(51), + [anon_sym_DQUOTE] = ACTIONS(53), + [anon_sym_SQUOTE] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(57), + [aux_sym_number_token1] = ACTIONS(59), + [aux_sym_number_token2] = ACTIONS(61), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(69), + [anon_sym_LT_LPAREN] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(71), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(75), + [sym_variable_name] = ACTIONS(77), + [sym_test_operator] = ACTIONS(79), + [sym__brace_start] = ACTIONS(81), }, - [423] = { - [aux_sym__terminated_statement] = STATE(62), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), - [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(343), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [421] = { + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5036), + [sym_for_statement] = STATE(5036), + [sym_c_style_for_statement] = STATE(5036), + [sym_while_statement] = STATE(4579), + [sym_if_statement] = STATE(4579), + [sym_case_statement] = STATE(5036), + [sym_function_definition] = STATE(5036), + [sym_compound_statement] = STATE(5036), + [sym_subshell] = STATE(5036), + [sym_pipeline] = STATE(5179), + [sym_list] = STATE(5036), + [sym_negated_command] = STATE(5036), + [sym_test_command] = STATE(5036), + [sym_declaration_command] = STATE(5036), + [sym_unset_command] = STATE(5036), + [sym_command] = STATE(5036), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1060), + [sym_variable_assignments] = STATE(5036), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(421), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(908), + [anon_sym_for] = ACTIONS(911), + [anon_sym_select] = ACTIONS(914), + [anon_sym_LPAREN_LPAREN] = ACTIONS(917), + [anon_sym_LT] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(920), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_LPAREN] = ACTIONS(926), + [anon_sym_while] = ACTIONS(929), + [anon_sym_until] = ACTIONS(929), + [anon_sym_if] = ACTIONS(932), + [anon_sym_case] = ACTIONS(935), + [anon_sym_function] = ACTIONS(938), + [anon_sym_LBRACE] = ACTIONS(941), + [anon_sym_BANG] = ACTIONS(944), + [anon_sym_LBRACK] = ACTIONS(947), + [anon_sym_LBRACK_LBRACK] = ACTIONS(950), + [anon_sym_declare] = ACTIONS(953), + [anon_sym_typeset] = ACTIONS(953), + [anon_sym_export] = ACTIONS(953), + [anon_sym_readonly] = ACTIONS(953), + [anon_sym_local] = ACTIONS(953), + [anon_sym_unset] = ACTIONS(956), + [anon_sym_unsetenv] = ACTIONS(956), + [anon_sym_AMP_GT] = ACTIONS(920), + [anon_sym_AMP_GT_GT] = ACTIONS(923), + [anon_sym_LT_AMP] = ACTIONS(920), + [anon_sym_GT_AMP] = ACTIONS(920), + [anon_sym_GT_PIPE] = ACTIONS(923), + [anon_sym_LT_AMP_DASH] = ACTIONS(959), + [anon_sym_GT_AMP_DASH] = ACTIONS(959), + [anon_sym_LT_LT_LT] = ACTIONS(962), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(965), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(971), + [sym__special_character] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(977), + [anon_sym_SQUOTE] = ACTIONS(980), + [sym_ansi_c_string] = ACTIONS(983), + [aux_sym_number_token1] = ACTIONS(986), + [aux_sym_number_token2] = ACTIONS(989), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(992), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(995), + [anon_sym_BQUOTE] = ACTIONS(998), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1001), + [anon_sym_LT_LPAREN] = ACTIONS(1004), + [anon_sym_GT_LPAREN] = ACTIONS(1004), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1007), + [sym_variable_name] = ACTIONS(1010), + [sym_test_operator] = ACTIONS(1013), + [sym__brace_start] = ACTIONS(1016), }, - [424] = { - [aux_sym__terminated_statement] = STATE(53), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [422] = { + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4758), + [sym_for_statement] = STATE(4758), + [sym_c_style_for_statement] = STATE(4758), + [sym_while_statement] = STATE(4406), + [sym_if_statement] = STATE(4406), + [sym_case_statement] = STATE(4758), + [sym_function_definition] = STATE(4758), + [sym_compound_statement] = STATE(4758), + [sym_subshell] = STATE(4758), + [sym_pipeline] = STATE(5116), + [sym_list] = STATE(4758), + [sym_negated_command] = STATE(4758), + [sym_test_command] = STATE(4758), + [sym_declaration_command] = STATE(4758), + [sym_unset_command] = STATE(4758), + [sym_command] = STATE(4758), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1126), + [sym_variable_assignments] = STATE(4758), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym__statements_repeat1] = STATE(421), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [425] = { - [aux_sym__terminated_statement] = STATE(68), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [423] = { + [aux_sym__terminated_statement] = STATE(82), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [426] = { - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4781), - [sym_for_statement] = STATE(4781), - [sym_c_style_for_statement] = STATE(4781), - [sym_while_statement] = STATE(4311), - [sym_if_statement] = STATE(4311), - [sym_case_statement] = STATE(4781), - [sym_function_definition] = STATE(4781), - [sym_compound_statement] = STATE(4781), - [sym_subshell] = STATE(4781), - [sym_pipeline] = STATE(5068), - [sym_list] = STATE(4781), - [sym_negated_command] = STATE(4781), - [sym_test_command] = STATE(4781), - [sym_declaration_command] = STATE(4781), - [sym_unset_command] = STATE(4781), - [sym_command] = STATE(4781), + [424] = { + [aux_sym__terminated_statement] = STATE(49), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1035), - [sym_variable_assignments] = STATE(4781), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym__statements_repeat1] = STATE(421), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(355), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [427] = { - [aux_sym__terminated_statement] = STATE(50), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [425] = { + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4662), + [sym_for_statement] = STATE(4662), + [sym_c_style_for_statement] = STATE(4662), + [sym_while_statement] = STATE(4344), + [sym_if_statement] = STATE(4344), + [sym_case_statement] = STATE(4662), + [sym_function_definition] = STATE(4662), + [sym_compound_statement] = STATE(4662), + [sym_subshell] = STATE(4662), + [sym_pipeline] = STATE(5149), + [sym_list] = STATE(4662), + [sym_negated_command] = STATE(4662), + [sym_test_command] = STATE(4662), + [sym_declaration_command] = STATE(4662), + [sym_unset_command] = STATE(4662), + [sym_command] = STATE(4662), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(933), + [sym_variable_assignments] = STATE(4662), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym__statements_repeat1] = STATE(421), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [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(343), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, - [428] = { - [sym__statement_not_pipeline] = STATE(6709), - [sym_redirected_statement] = STATE(4789), - [sym_for_statement] = STATE(4789), - [sym_c_style_for_statement] = STATE(4789), - [sym_while_statement] = STATE(4375), - [sym_if_statement] = STATE(4375), - [sym_case_statement] = STATE(4789), - [sym_function_definition] = STATE(4789), - [sym_compound_statement] = STATE(4789), - [sym_subshell] = STATE(4789), - [sym_pipeline] = STATE(5069), - [sym_list] = STATE(4789), - [sym_negated_command] = STATE(4789), - [sym_test_command] = STATE(4789), - [sym_declaration_command] = STATE(4789), - [sym_unset_command] = STATE(4789), - [sym_command] = STATE(4789), - [sym_command_name] = STATE(534), - [sym_variable_assignment] = STATE(952), - [sym_variable_assignments] = STATE(4789), - [sym_subscript] = STATE(6771), - [sym_file_redirect] = STATE(2203), - [sym_herestring_redirect] = STATE(2204), - [sym_arithmetic_expansion] = STATE(954), - [sym_brace_expression] = STATE(954), - [sym_concatenation] = STATE(1432), - [sym_string] = STATE(954), - [sym_translated_string] = STATE(954), - [sym_number] = STATE(954), - [sym_simple_expansion] = STATE(954), - [sym_expansion] = STATE(954), - [sym_command_substitution] = STATE(954), - [sym_process_substitution] = STATE(954), - [aux_sym__statements_repeat1] = STATE(421), - [aux_sym_redirected_statement_repeat2] = STATE(4541), - [aux_sym_command_repeat1] = STATE(972), - [aux_sym__literal_repeat1] = STATE(1257), - [sym_word] = ACTIONS(7), + [426] = { + [aux_sym__terminated_statement] = STATE(51), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(13), - [anon_sym_LT] = ACTIONS(15), - [anon_sym_GT] = ACTIONS(15), - [anon_sym_GT_GT] = ACTIONS(17), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(27), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(37), - [anon_sym_typeset] = ACTIONS(37), - [anon_sym_export] = ACTIONS(37), - [anon_sym_readonly] = ACTIONS(37), - [anon_sym_local] = ACTIONS(37), - [anon_sym_unset] = ACTIONS(39), - [anon_sym_unsetenv] = ACTIONS(39), - [anon_sym_AMP_GT] = ACTIONS(15), - [anon_sym_AMP_GT_GT] = ACTIONS(17), - [anon_sym_LT_AMP] = ACTIONS(15), - [anon_sym_GT_AMP] = ACTIONS(15), - [anon_sym_GT_PIPE] = ACTIONS(17), - [anon_sym_LT_AMP_DASH] = ACTIONS(41), - [anon_sym_GT_AMP_DASH] = ACTIONS(41), - [anon_sym_LT_LT_LT] = ACTIONS(43), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(45), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(47), - [anon_sym_DOLLAR] = ACTIONS(49), - [sym__special_character] = ACTIONS(51), - [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(73), - [sym_variable_name] = ACTIONS(75), - [sym_test_operator] = ACTIONS(77), - [sym__brace_start] = ACTIONS(79), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [429] = { - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4374), - [sym_for_statement] = STATE(4374), - [sym_c_style_for_statement] = STATE(4374), - [sym_while_statement] = STATE(4217), - [sym_if_statement] = STATE(4217), - [sym_case_statement] = STATE(4374), - [sym_function_definition] = STATE(4374), - [sym_compound_statement] = STATE(4374), - [sym_subshell] = STATE(4374), - [sym_pipeline] = STATE(4676), - [sym_list] = STATE(4374), - [sym_negated_command] = STATE(4374), - [sym_test_command] = STATE(4374), - [sym_declaration_command] = STATE(4374), - [sym_unset_command] = STATE(4374), - [sym_command] = STATE(4374), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(819), - [sym_variable_assignments] = STATE(4374), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), + [427] = { + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4458), + [sym_for_statement] = STATE(4458), + [sym_c_style_for_statement] = STATE(4458), + [sym_while_statement] = STATE(4262), + [sym_if_statement] = STATE(4262), + [sym_case_statement] = STATE(4458), + [sym_function_definition] = STATE(4458), + [sym_compound_statement] = STATE(4458), + [sym_subshell] = STATE(4458), + [sym_pipeline] = STATE(4664), + [sym_list] = STATE(4458), + [sym_negated_command] = STATE(4458), + [sym_test_command] = STATE(4458), + [sym_declaration_command] = STATE(4458), + [sym_unset_command] = STATE(4458), + [sym_command] = STATE(4458), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(830), + [sym_variable_assignments] = STATE(4458), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), [aux_sym__statements_repeat1] = STATE(421), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), }, - [430] = { + [428] = { [aux_sym__terminated_statement] = STATE(107), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [431] = { - [aux_sym__terminated_statement] = STATE(114), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [429] = { + [aux_sym__terminated_statement] = STATE(53), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [432] = { - [aux_sym__terminated_statement] = STATE(120), - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(4945), - [sym_for_statement] = STATE(4945), - [sym_c_style_for_statement] = STATE(4945), - [sym_while_statement] = STATE(4557), - [sym_if_statement] = STATE(4557), - [sym_case_statement] = STATE(4945), - [sym_function_definition] = STATE(4945), - [sym_compound_statement] = STATE(4945), - [sym_subshell] = STATE(4945), - [sym_pipeline] = STATE(5210), - [sym_list] = STATE(4945), - [sym_negated_command] = STATE(4945), - [sym_test_command] = STATE(4945), - [sym_declaration_command] = STATE(4945), - [sym_unset_command] = STATE(4945), - [sym_command] = STATE(4945), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1034), - [sym_variable_assignments] = STATE(4945), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), - [anon_sym_for] = ACTIONS(9), - [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), - [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(343), - [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [430] = { + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4474), + [sym_for_statement] = STATE(4474), + [sym_c_style_for_statement] = STATE(4474), + [sym_while_statement] = STATE(4287), + [sym_if_statement] = STATE(4287), + [sym_case_statement] = STATE(4474), + [sym_function_definition] = STATE(4474), + [sym_compound_statement] = STATE(4474), + [sym_subshell] = STATE(4474), + [sym_pipeline] = STATE(4926), + [sym_list] = STATE(4474), + [sym_negated_command] = STATE(4474), + [sym_test_command] = STATE(4474), + [sym_declaration_command] = STATE(4474), + [sym_unset_command] = STATE(4474), + [sym_command] = STATE(4474), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(851), + [sym_variable_assignments] = STATE(4474), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym__statements_repeat1] = STATE(421), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), }, - [433] = { - [sym__statement_not_pipeline] = STATE(6632), - [sym_redirected_statement] = STATE(4738), - [sym_for_statement] = STATE(4738), - [sym_c_style_for_statement] = STATE(4738), - [sym_while_statement] = STATE(4296), - [sym_if_statement] = STATE(4296), - [sym_case_statement] = STATE(4738), - [sym_function_definition] = STATE(4738), - [sym_compound_statement] = STATE(4738), - [sym_subshell] = STATE(4738), - [sym_pipeline] = STATE(4740), - [sym_list] = STATE(4738), - [sym_negated_command] = STATE(4738), - [sym_test_command] = STATE(4738), - [sym_declaration_command] = STATE(4738), - [sym_unset_command] = STATE(4738), - [sym_command] = STATE(4738), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(913), - [sym_variable_assignments] = STATE(4738), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [431] = { + [aux_sym__terminated_statement] = STATE(50), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [434] = { - [sym__statement_not_pipeline] = STATE(4720), - [sym_redirected_statement] = STATE(4720), - [sym_for_statement] = STATE(4720), - [sym_c_style_for_statement] = STATE(4720), - [sym_while_statement] = STATE(4413), - [sym_if_statement] = STATE(4413), - [sym_case_statement] = STATE(4720), - [sym_function_definition] = STATE(4720), - [sym_compound_statement] = STATE(4720), - [sym_subshell] = STATE(4720), - [sym_pipeline] = STATE(5578), - [sym_list] = STATE(4720), - [sym_negated_command] = STATE(4720), - [sym_test_command] = STATE(4720), - [sym_declaration_command] = STATE(4720), - [sym_unset_command] = STATE(4720), - [sym_command] = STATE(4720), + [432] = { + [aux_sym__terminated_statement] = STATE(113), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5054), + [sym_for_statement] = STATE(5054), + [sym_c_style_for_statement] = STATE(5054), + [sym_while_statement] = STATE(4572), + [sym_if_statement] = STATE(4572), + [sym_case_statement] = STATE(5054), + [sym_function_definition] = STATE(5054), + [sym_compound_statement] = STATE(5054), + [sym_subshell] = STATE(5054), + [sym_pipeline] = STATE(5197), + [sym_list] = STATE(5054), + [sym_negated_command] = STATE(5054), + [sym_test_command] = STATE(5054), + [sym_declaration_command] = STATE(5054), + [sym_unset_command] = STATE(5054), + [sym_command] = STATE(5054), [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1132), - [sym_variable_assignments] = STATE(4720), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [sym_variable_assignment] = STATE(1066), + [sym_variable_assignments] = STATE(5054), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(355), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, - [435] = { - [sym__statement_not_pipeline] = STATE(6588), - [sym_redirected_statement] = STATE(4433), - [sym_for_statement] = STATE(4433), - [sym_c_style_for_statement] = STATE(4433), - [sym_while_statement] = STATE(4235), - [sym_if_statement] = STATE(4235), - [sym_case_statement] = STATE(4433), - [sym_function_definition] = STATE(4433), - [sym_compound_statement] = STATE(4433), - [sym_subshell] = STATE(4433), - [sym_pipeline] = STATE(4436), - [sym_list] = STATE(4433), - [sym_negated_command] = STATE(4433), - [sym_test_command] = STATE(4433), - [sym_declaration_command] = STATE(4433), - [sym_unset_command] = STATE(4433), - [sym_command] = STATE(4433), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(861), - [sym_variable_assignments] = STATE(4433), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), - }, - [436] = { - [sym__statement_not_pipeline] = STATE(6654), - [sym_redirected_statement] = STATE(4678), - [sym_for_statement] = STATE(4678), - [sym_c_style_for_statement] = STATE(4678), - [sym_while_statement] = STATE(4404), - [sym_if_statement] = STATE(4404), - [sym_case_statement] = STATE(4678), - [sym_function_definition] = STATE(4678), - [sym_compound_statement] = STATE(4678), - [sym_subshell] = STATE(4678), - [sym_pipeline] = STATE(4680), - [sym_list] = STATE(4678), - [sym_negated_command] = STATE(4678), - [sym_test_command] = STATE(4678), - [sym_declaration_command] = STATE(4678), - [sym_unset_command] = STATE(4678), - [sym_command] = STATE(4678), - [sym_command_name] = STATE(546), - [sym_variable_assignment] = STATE(1047), - [sym_variable_assignments] = STATE(4678), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2292), - [sym_herestring_redirect] = STATE(2293), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4495), - [aux_sym_command_repeat1] = STATE(1009), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(803), + [433] = { + [sym__statement_not_pipeline] = STATE(6765), + [sym_redirected_statement] = STATE(5455), + [sym_for_statement] = STATE(5455), + [sym_c_style_for_statement] = STATE(5455), + [sym_while_statement] = STATE(5119), + [sym_if_statement] = STATE(5119), + [sym_case_statement] = STATE(5455), + [sym_function_definition] = STATE(5455), + [sym_compound_statement] = STATE(5455), + [sym_subshell] = STATE(5455), + [sym_pipeline] = STATE(5565), + [sym_list] = STATE(5455), + [sym_negated_command] = STATE(5455), + [sym_test_command] = STATE(5455), + [sym_declaration_command] = STATE(5455), + [sym_unset_command] = STATE(5455), + [sym_command] = STATE(5455), + [sym_command_name] = STATE(606), + [sym_variable_assignment] = STATE(1566), + [sym_variable_assignments] = STATE(5455), + [sym_subscript] = STATE(6795), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1765), + [sym_brace_expression] = STATE(1765), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1765), + [sym_translated_string] = STATE(1765), + [sym_raw_string] = STATE(1765), + [sym_number] = STATE(1765), + [sym_simple_expansion] = STATE(1765), + [sym_expansion] = STATE(1765), + [sym_command_substitution] = STATE(1765), + [sym_process_substitution] = STATE(1765), + [aux_sym_redirected_statement_repeat2] = STATE(5207), + [aux_sym_command_repeat1] = STATE(907), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(1019), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(1021), + [anon_sym_GT] = ACTIONS(1021), + [anon_sym_GT_GT] = ACTIONS(1023), [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_function] = ACTIONS(1025), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(807), + [anon_sym_BANG] = ACTIONS(1027), [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(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(1029), + [anon_sym_typeset] = ACTIONS(1029), + [anon_sym_export] = ACTIONS(1029), + [anon_sym_readonly] = ACTIONS(1029), + [anon_sym_local] = ACTIONS(1029), + [anon_sym_unset] = ACTIONS(1031), + [anon_sym_unsetenv] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1021), + [anon_sym_AMP_GT_GT] = ACTIONS(1023), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [anon_sym_GT_PIPE] = ACTIONS(1023), + [anon_sym_LT_AMP_DASH] = ACTIONS(1033), + [anon_sym_GT_AMP_DASH] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(1039), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1041), + [sym_variable_name] = ACTIONS(1043), + [sym_test_operator] = ACTIONS(1045), + [sym__brace_start] = ACTIONS(399), }, - [437] = { - [sym__statement_not_pipeline] = STATE(6709), - [sym_redirected_statement] = STATE(4725), - [sym_for_statement] = STATE(4725), - [sym_c_style_for_statement] = STATE(4725), - [sym_while_statement] = STATE(4263), - [sym_if_statement] = STATE(4263), - [sym_case_statement] = STATE(4725), - [sym_function_definition] = STATE(4725), - [sym_compound_statement] = STATE(4725), - [sym_subshell] = STATE(4725), - [sym_pipeline] = STATE(4729), - [sym_list] = STATE(4725), - [sym_negated_command] = STATE(4725), - [sym_test_command] = STATE(4725), - [sym_declaration_command] = STATE(4725), - [sym_unset_command] = STATE(4725), - [sym_command] = STATE(4725), - [sym_command_name] = STATE(534), - [sym_variable_assignment] = STATE(986), - [sym_variable_assignments] = STATE(4725), - [sym_subscript] = STATE(6771), - [sym_file_redirect] = STATE(2203), - [sym_herestring_redirect] = STATE(2204), - [sym_arithmetic_expansion] = STATE(954), - [sym_brace_expression] = STATE(954), - [sym_concatenation] = STATE(1432), - [sym_string] = STATE(954), - [sym_translated_string] = STATE(954), - [sym_number] = STATE(954), - [sym_simple_expansion] = STATE(954), - [sym_expansion] = STATE(954), - [sym_command_substitution] = STATE(954), - [sym_process_substitution] = STATE(954), - [aux_sym_redirected_statement_repeat2] = STATE(4541), - [aux_sym_command_repeat1] = STATE(972), - [aux_sym__literal_repeat1] = STATE(1257), + [434] = { + [sym__statement_not_pipeline] = STATE(6746), + [sym_redirected_statement] = STATE(4818), + [sym_for_statement] = STATE(4818), + [sym_c_style_for_statement] = STATE(4818), + [sym_while_statement] = STATE(4438), + [sym_if_statement] = STATE(4438), + [sym_case_statement] = STATE(4818), + [sym_function_definition] = STATE(4818), + [sym_compound_statement] = STATE(4818), + [sym_subshell] = STATE(4818), + [sym_pipeline] = STATE(4825), + [sym_list] = STATE(4818), + [sym_negated_command] = STATE(4818), + [sym_test_command] = STATE(4818), + [sym_declaration_command] = STATE(4818), + [sym_unset_command] = STATE(4818), + [sym_command] = STATE(4818), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(935), + [sym_variable_assignments] = STATE(4818), + [sym_subscript] = STATE(6814), + [sym_file_redirect] = STATE(2238), + [sym_herestring_redirect] = STATE(2286), + [sym_arithmetic_expansion] = STATE(926), + [sym_brace_expression] = STATE(926), + [sym_concatenation] = STATE(1383), + [sym_string] = STATE(926), + [sym_translated_string] = STATE(926), + [sym_raw_string] = STATE(926), + [sym_number] = STATE(926), + [sym_simple_expansion] = STATE(926), + [sym_expansion] = STATE(926), + [sym_command_substitution] = STATE(926), + [sym_process_substitution] = STATE(926), + [aux_sym_redirected_statement_repeat2] = STATE(4540), + [aux_sym_command_repeat1] = STATE(903), + [aux_sym__literal_repeat1] = STATE(1290), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -69752,329 +70360,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(49), [sym__special_character] = ACTIONS(51), [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(73), - [sym_variable_name] = ACTIONS(75), - [sym_test_operator] = ACTIONS(77), - [sym__brace_start] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(57), + [aux_sym_number_token1] = ACTIONS(59), + [aux_sym_number_token2] = ACTIONS(61), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(69), + [anon_sym_LT_LPAREN] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(71), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(75), + [sym_variable_name] = ACTIONS(77), + [sym_test_operator] = ACTIONS(79), + [sym__brace_start] = ACTIONS(81), }, - [438] = { - [sym__statement_not_pipeline] = STATE(6713), - [sym_redirected_statement] = STATE(5318), - [sym_for_statement] = STATE(5318), - [sym_c_style_for_statement] = STATE(5318), - [sym_while_statement] = STATE(5093), - [sym_if_statement] = STATE(5093), - [sym_case_statement] = STATE(5318), - [sym_function_definition] = STATE(5318), - [sym_compound_statement] = STATE(5318), - [sym_subshell] = STATE(5318), - [sym_pipeline] = STATE(5545), - [sym_list] = STATE(5318), - [sym_negated_command] = STATE(5318), - [sym_test_command] = STATE(5318), - [sym_declaration_command] = STATE(5318), - [sym_unset_command] = STATE(5318), - [sym_command] = STATE(5318), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1550), - [sym_variable_assignments] = STATE(5318), - [sym_subscript] = STATE(6779), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1693), - [sym_brace_expression] = STATE(1693), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1693), - [sym_translated_string] = STATE(1693), - [sym_number] = STATE(1693), - [sym_simple_expansion] = STATE(1693), - [sym_expansion] = STATE(1693), - [sym_command_substitution] = STATE(1693), - [sym_process_substitution] = STATE(1693), - [aux_sym_redirected_statement_repeat2] = STATE(5134), - [aux_sym_command_repeat1] = STATE(1004), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(997), + [435] = { + [sym__statement_not_pipeline] = STATE(6617), + [sym_redirected_statement] = STATE(4757), + [sym_for_statement] = STATE(4757), + [sym_c_style_for_statement] = STATE(4757), + [sym_while_statement] = STATE(4317), + [sym_if_statement] = STATE(4317), + [sym_case_statement] = STATE(4757), + [sym_function_definition] = STATE(4757), + [sym_compound_statement] = STATE(4757), + [sym_subshell] = STATE(4757), + [sym_pipeline] = STATE(4763), + [sym_list] = STATE(4757), + [sym_negated_command] = STATE(4757), + [sym_test_command] = STATE(4757), + [sym_declaration_command] = STATE(4757), + [sym_unset_command] = STATE(4757), + [sym_command] = STATE(4757), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(941), + [sym_variable_assignments] = STATE(4757), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(1003), + [anon_sym_function] = ACTIONS(93), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(794), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1007), - [anon_sym_typeset] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1007), - [anon_sym_readonly] = ACTIONS(1007), - [anon_sym_local] = ACTIONS(1007), - [anon_sym_unset] = ACTIONS(1009), - [anon_sym_unsetenv] = ACTIONS(1009), - [anon_sym_AMP_GT] = ACTIONS(999), - [anon_sym_AMP_GT_GT] = ACTIONS(1001), - [anon_sym_LT_AMP] = ACTIONS(999), - [anon_sym_GT_AMP] = ACTIONS(999), - [anon_sym_GT_PIPE] = ACTIONS(1001), - [anon_sym_LT_AMP_DASH] = ACTIONS(1011), - [anon_sym_GT_AMP_DASH] = ACTIONS(1011), - [anon_sym_LT_LT_LT] = ACTIONS(1013), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(1017), - [sym_ansi_c_string] = ACTIONS(1017), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1019), - [sym_variable_name] = ACTIONS(1021), - [sym_test_operator] = ACTIONS(1023), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, - [439] = { - [sym__statement_not_pipeline] = STATE(5598), - [sym_redirected_statement] = STATE(5598), - [sym_for_statement] = STATE(5598), - [sym_c_style_for_statement] = STATE(5598), - [sym_while_statement] = STATE(5139), - [sym_if_statement] = STATE(5139), - [sym_case_statement] = STATE(5598), - [sym_function_definition] = STATE(5598), - [sym_compound_statement] = STATE(5598), - [sym_subshell] = STATE(5598), - [sym_pipeline] = STATE(5606), - [sym_list] = STATE(5598), - [sym_negated_command] = STATE(5598), - [sym_test_command] = STATE(5598), - [sym_declaration_command] = STATE(5598), - [sym_unset_command] = STATE(5598), - [sym_command] = STATE(5598), - [sym_command_name] = STATE(634), - [sym_variable_assignment] = STATE(1916), - [sym_variable_assignments] = STATE(5598), - [sym_subscript] = STATE(6766), - [sym_file_redirect] = STATE(2791), - [sym_herestring_redirect] = STATE(2802), - [sym_arithmetic_expansion] = STATE(1853), - [sym_brace_expression] = STATE(1853), - [sym_concatenation] = STATE(2352), - [sym_string] = STATE(1853), - [sym_translated_string] = STATE(1853), - [sym_number] = STATE(1853), - [sym_simple_expansion] = STATE(1853), - [sym_expansion] = STATE(1853), - [sym_command_substitution] = STATE(1853), - [sym_process_substitution] = STATE(1853), - [aux_sym_redirected_statement_repeat2] = STATE(5255), - [aux_sym_command_repeat1] = STATE(950), - [aux_sym__literal_repeat1] = STATE(2277), - [sym_word] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1029), - [anon_sym_GT_GT] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(157), - [anon_sym_until] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_function] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_declare] = ACTIONS(175), - [anon_sym_typeset] = ACTIONS(175), - [anon_sym_export] = ACTIONS(175), - [anon_sym_readonly] = ACTIONS(175), - [anon_sym_local] = ACTIONS(175), - [anon_sym_unset] = ACTIONS(177), - [anon_sym_unsetenv] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(1029), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1029), - [anon_sym_GT_AMP] = ACTIONS(1029), - [anon_sym_GT_PIPE] = ACTIONS(1031), - [anon_sym_LT_AMP_DASH] = ACTIONS(1037), - [anon_sym_GT_AMP_DASH] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1041), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1043), - [anon_sym_DOLLAR] = ACTIONS(1045), - [sym__special_character] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1049), - [sym_raw_string] = ACTIONS(1051), - [sym_ansi_c_string] = ACTIONS(1051), - [aux_sym_number_token1] = ACTIONS(1053), - [aux_sym_number_token2] = ACTIONS(1055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1059), - [anon_sym_BQUOTE] = ACTIONS(1061), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1067), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(1069), - [sym__brace_start] = ACTIONS(1071), - }, - [440] = { - [sym__statement_not_pipeline] = STATE(6684), - [sym_redirected_statement] = STATE(5406), - [sym_for_statement] = STATE(5406), - [sym_c_style_for_statement] = STATE(5406), - [sym_while_statement] = STATE(5147), - [sym_if_statement] = STATE(5147), - [sym_case_statement] = STATE(5406), - [sym_function_definition] = STATE(5406), - [sym_compound_statement] = STATE(5406), - [sym_subshell] = STATE(5406), - [sym_pipeline] = STATE(5410), - [sym_list] = STATE(5406), - [sym_negated_command] = STATE(5406), - [sym_test_command] = STATE(5406), - [sym_declaration_command] = STATE(5406), - [sym_unset_command] = STATE(5406), - [sym_command] = STATE(5406), - [sym_command_name] = STATE(634), - [sym_variable_assignment] = STATE(1896), - [sym_variable_assignments] = STATE(5406), - [sym_subscript] = STATE(6766), - [sym_file_redirect] = STATE(2791), - [sym_herestring_redirect] = STATE(2802), - [sym_arithmetic_expansion] = STATE(1853), - [sym_brace_expression] = STATE(1853), - [sym_concatenation] = STATE(2352), - [sym_string] = STATE(1853), - [sym_translated_string] = STATE(1853), - [sym_number] = STATE(1853), - [sym_simple_expansion] = STATE(1853), - [sym_expansion] = STATE(1853), - [sym_command_substitution] = STATE(1853), - [sym_process_substitution] = STATE(1853), - [aux_sym_redirected_statement_repeat2] = STATE(5255), - [aux_sym_command_repeat1] = STATE(950), - [aux_sym__literal_repeat1] = STATE(2277), - [sym_word] = ACTIONS(1025), - [anon_sym_for] = ACTIONS(145), - [anon_sym_select] = ACTIONS(147), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1027), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_GT] = ACTIONS(1029), - [anon_sym_GT_GT] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1033), - [anon_sym_while] = ACTIONS(157), - [anon_sym_until] = ACTIONS(157), - [anon_sym_if] = ACTIONS(159), - [anon_sym_case] = ACTIONS(161), - [anon_sym_function] = ACTIONS(163), - [anon_sym_LBRACE] = ACTIONS(165), - [anon_sym_BANG] = ACTIONS(1035), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_declare] = ACTIONS(175), - [anon_sym_typeset] = ACTIONS(175), - [anon_sym_export] = ACTIONS(175), - [anon_sym_readonly] = ACTIONS(175), - [anon_sym_local] = ACTIONS(175), - [anon_sym_unset] = ACTIONS(177), - [anon_sym_unsetenv] = ACTIONS(177), - [anon_sym_AMP_GT] = ACTIONS(1029), - [anon_sym_AMP_GT_GT] = ACTIONS(1031), - [anon_sym_LT_AMP] = ACTIONS(1029), - [anon_sym_GT_AMP] = ACTIONS(1029), - [anon_sym_GT_PIPE] = ACTIONS(1031), - [anon_sym_LT_AMP_DASH] = ACTIONS(1037), - [anon_sym_GT_AMP_DASH] = ACTIONS(1037), - [anon_sym_LT_LT_LT] = ACTIONS(1039), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1041), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1043), - [anon_sym_DOLLAR] = ACTIONS(1045), - [sym__special_character] = ACTIONS(1047), - [anon_sym_DQUOTE] = ACTIONS(1049), - [sym_raw_string] = ACTIONS(1051), - [sym_ansi_c_string] = ACTIONS(1051), - [aux_sym_number_token1] = ACTIONS(1053), - [aux_sym_number_token2] = ACTIONS(1055), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1059), - [anon_sym_BQUOTE] = ACTIONS(1061), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1063), - [anon_sym_LT_LPAREN] = ACTIONS(1065), - [anon_sym_GT_LPAREN] = ACTIONS(1065), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1067), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(1069), - [sym__brace_start] = ACTIONS(1071), - }, - [441] = { - [sym__statement_not_pipeline] = STATE(4720), - [sym_redirected_statement] = STATE(4720), - [sym_for_statement] = STATE(4720), - [sym_c_style_for_statement] = STATE(4720), + [436] = { + [sym__statement_not_pipeline] = STATE(4801), + [sym_redirected_statement] = STATE(4801), + [sym_for_statement] = STATE(4801), + [sym_c_style_for_statement] = STATE(4801), [sym_while_statement] = STATE(4331), [sym_if_statement] = STATE(4331), - [sym_case_statement] = STATE(4720), - [sym_function_definition] = STATE(4720), - [sym_compound_statement] = STATE(4720), - [sym_subshell] = STATE(4720), - [sym_pipeline] = STATE(5594), - [sym_list] = STATE(4720), - [sym_negated_command] = STATE(4720), - [sym_test_command] = STATE(4720), - [sym_declaration_command] = STATE(4720), - [sym_unset_command] = STATE(4720), - [sym_command] = STATE(4720), - [sym_command_name] = STATE(534), - [sym_variable_assignment] = STATE(989), - [sym_variable_assignments] = STATE(4720), - [sym_subscript] = STATE(6771), - [sym_file_redirect] = STATE(2203), - [sym_herestring_redirect] = STATE(2204), - [sym_arithmetic_expansion] = STATE(954), - [sym_brace_expression] = STATE(954), - [sym_concatenation] = STATE(1432), - [sym_string] = STATE(954), - [sym_translated_string] = STATE(954), - [sym_number] = STATE(954), - [sym_simple_expansion] = STATE(954), - [sym_expansion] = STATE(954), - [sym_command_substitution] = STATE(954), - [sym_process_substitution] = STATE(954), - [aux_sym_redirected_statement_repeat2] = STATE(4541), - [aux_sym_command_repeat1] = STATE(972), - [aux_sym__literal_repeat1] = STATE(1257), + [sym_case_statement] = STATE(4801), + [sym_function_definition] = STATE(4801), + [sym_compound_statement] = STATE(4801), + [sym_subshell] = STATE(4801), + [sym_pipeline] = STATE(5650), + [sym_list] = STATE(4801), + [sym_negated_command] = STATE(4801), + [sym_test_command] = STATE(4801), + [sym_declaration_command] = STATE(4801), + [sym_unset_command] = STATE(4801), + [sym_command] = STATE(4801), + [sym_command_name] = STATE(539), + [sym_variable_assignment] = STATE(1005), + [sym_variable_assignments] = STATE(4801), + [sym_subscript] = STATE(6814), + [sym_file_redirect] = STATE(2238), + [sym_herestring_redirect] = STATE(2286), + [sym_arithmetic_expansion] = STATE(926), + [sym_brace_expression] = STATE(926), + [sym_concatenation] = STATE(1383), + [sym_string] = STATE(926), + [sym_translated_string] = STATE(926), + [sym_raw_string] = STATE(926), + [sym_number] = STATE(926), + [sym_simple_expansion] = STATE(926), + [sym_expansion] = STATE(926), + [sym_command_substitution] = STATE(926), + [sym_process_substitution] = STATE(926), + [aux_sym_redirected_statement_repeat2] = STATE(4540), + [aux_sym_command_repeat1] = STATE(903), + [aux_sym__literal_repeat1] = STATE(1290), [sym_word] = ACTIONS(7), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), @@ -70112,2953 +70542,2972 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(49), [sym__special_character] = ACTIONS(51), [anon_sym_DQUOTE] = ACTIONS(53), - [sym_raw_string] = ACTIONS(55), - [sym_ansi_c_string] = ACTIONS(55), - [aux_sym_number_token1] = ACTIONS(57), - [aux_sym_number_token2] = ACTIONS(59), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(61), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(63), - [anon_sym_BQUOTE] = ACTIONS(65), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(67), - [anon_sym_LT_LPAREN] = ACTIONS(69), - [anon_sym_GT_LPAREN] = ACTIONS(69), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(73), - [sym_variable_name] = ACTIONS(75), - [sym_test_operator] = ACTIONS(77), - [sym__brace_start] = ACTIONS(79), + [anon_sym_SQUOTE] = ACTIONS(55), + [sym_ansi_c_string] = ACTIONS(57), + [aux_sym_number_token1] = ACTIONS(59), + [aux_sym_number_token2] = ACTIONS(61), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(63), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(65), + [anon_sym_BQUOTE] = ACTIONS(67), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(69), + [anon_sym_LT_LPAREN] = ACTIONS(71), + [anon_sym_GT_LPAREN] = ACTIONS(71), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(75), + [sym_variable_name] = ACTIONS(77), + [sym_test_operator] = ACTIONS(79), + [sym__brace_start] = ACTIONS(81), }, - [442] = { - [sym__statement_not_pipeline] = STATE(4642), - [sym_redirected_statement] = STATE(4642), - [sym_for_statement] = STATE(4642), - [sym_c_style_for_statement] = STATE(4642), - [sym_while_statement] = STATE(4221), - [sym_if_statement] = STATE(4221), - [sym_case_statement] = STATE(4642), - [sym_function_definition] = STATE(4642), - [sym_compound_statement] = STATE(4642), - [sym_subshell] = STATE(4642), - [sym_pipeline] = STATE(5567), - [sym_list] = STATE(4642), - [sym_negated_command] = STATE(4642), - [sym_test_command] = STATE(4642), - [sym_declaration_command] = STATE(4642), - [sym_unset_command] = STATE(4642), - [sym_command] = STATE(4642), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(809), - [sym_variable_assignments] = STATE(4642), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), - }, - [443] = { - [sym__statement_not_pipeline] = STATE(6716), - [sym_redirected_statement] = STATE(4373), - [sym_for_statement] = STATE(4373), - [sym_c_style_for_statement] = STATE(4373), - [sym_while_statement] = STATE(4224), - [sym_if_statement] = STATE(4224), - [sym_case_statement] = STATE(4373), - [sym_function_definition] = STATE(4373), - [sym_compound_statement] = STATE(4373), - [sym_subshell] = STATE(4373), - [sym_pipeline] = STATE(4381), - [sym_list] = STATE(4373), - [sym_negated_command] = STATE(4373), - [sym_test_command] = STATE(4373), - [sym_declaration_command] = STATE(4373), - [sym_unset_command] = STATE(4373), - [sym_command] = STATE(4373), - [sym_command_name] = STATE(528), - [sym_variable_assignment] = STATE(810), - [sym_variable_assignments] = STATE(4373), - [sym_subscript] = STATE(6784), - [sym_file_redirect] = STATE(1556), - [sym_herestring_redirect] = STATE(1718), - [sym_arithmetic_expansion] = STATE(813), - [sym_brace_expression] = STATE(813), - [sym_concatenation] = STATE(1073), - [sym_string] = STATE(813), - [sym_translated_string] = STATE(813), - [sym_number] = STATE(813), - [sym_simple_expansion] = STATE(813), - [sym_expansion] = STATE(813), - [sym_command_substitution] = STATE(813), - [sym_process_substitution] = STATE(813), - [aux_sym_redirected_statement_repeat2] = STATE(4250), - [aux_sym_command_repeat1] = STATE(977), - [aux_sym__literal_repeat1] = STATE(978), - [sym_word] = ACTIONS(403), - [anon_sym_for] = ACTIONS(405), - [anon_sym_select] = ACTIONS(407), - [anon_sym_LPAREN_LPAREN] = ACTIONS(409), - [anon_sym_LT] = ACTIONS(411), - [anon_sym_GT] = ACTIONS(411), - [anon_sym_GT_GT] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(415), - [anon_sym_while] = ACTIONS(417), - [anon_sym_until] = ACTIONS(417), - [anon_sym_if] = ACTIONS(419), - [anon_sym_case] = ACTIONS(421), - [anon_sym_function] = ACTIONS(429), - [anon_sym_LBRACE] = ACTIONS(431), - [anon_sym_BANG] = ACTIONS(433), - [anon_sym_LBRACK] = ACTIONS(435), - [anon_sym_LBRACK_LBRACK] = ACTIONS(437), - [anon_sym_declare] = ACTIONS(439), - [anon_sym_typeset] = ACTIONS(439), - [anon_sym_export] = ACTIONS(439), - [anon_sym_readonly] = ACTIONS(439), - [anon_sym_local] = ACTIONS(439), - [anon_sym_unset] = ACTIONS(441), - [anon_sym_unsetenv] = ACTIONS(441), - [anon_sym_AMP_GT] = ACTIONS(411), - [anon_sym_AMP_GT_GT] = ACTIONS(413), - [anon_sym_LT_AMP] = ACTIONS(411), - [anon_sym_GT_AMP] = ACTIONS(411), - [anon_sym_GT_PIPE] = ACTIONS(413), - [anon_sym_LT_AMP_DASH] = ACTIONS(443), - [anon_sym_GT_AMP_DASH] = ACTIONS(443), - [anon_sym_LT_LT_LT] = ACTIONS(445), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(447), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(449), - [anon_sym_DOLLAR] = ACTIONS(451), - [sym__special_character] = ACTIONS(453), - [anon_sym_DQUOTE] = ACTIONS(455), - [sym_raw_string] = ACTIONS(457), - [sym_ansi_c_string] = ACTIONS(457), - [aux_sym_number_token1] = ACTIONS(459), - [aux_sym_number_token2] = ACTIONS(461), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(463), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(465), - [anon_sym_BQUOTE] = ACTIONS(467), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(469), - [anon_sym_LT_LPAREN] = ACTIONS(471), - [anon_sym_GT_LPAREN] = ACTIONS(471), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(473), - [sym_variable_name] = ACTIONS(475), - [sym_test_operator] = ACTIONS(477), - [sym__brace_start] = ACTIONS(479), + [437] = { + [sym__statement_not_pipeline] = STATE(4801), + [sym_redirected_statement] = STATE(4801), + [sym_for_statement] = STATE(4801), + [sym_c_style_for_statement] = STATE(4801), + [sym_while_statement] = STATE(4321), + [sym_if_statement] = STATE(4321), + [sym_case_statement] = STATE(4801), + [sym_function_definition] = STATE(4801), + [sym_compound_statement] = STATE(4801), + [sym_subshell] = STATE(4801), + [sym_pipeline] = STATE(5628), + [sym_list] = STATE(4801), + [sym_negated_command] = STATE(4801), + [sym_test_command] = STATE(4801), + [sym_declaration_command] = STATE(4801), + [sym_unset_command] = STATE(4801), + [sym_command] = STATE(4801), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(977), + [sym_variable_assignments] = STATE(4801), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(944), + [sym_brace_expression] = STATE(944), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(944), + [sym_translated_string] = STATE(944), + [sym_raw_string] = STATE(944), + [sym_number] = STATE(944), + [sym_simple_expansion] = STATE(944), + [sym_expansion] = STATE(944), + [sym_command_substitution] = STATE(944), + [sym_process_substitution] = STATE(944), + [aux_sym_redirected_statement_repeat2] = STATE(4569), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(790), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_GT_GT] = ACTIONS(89), + [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(93), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(794), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_typeset] = ACTIONS(97), + [anon_sym_export] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_local] = ACTIONS(97), + [anon_sym_unset] = ACTIONS(99), + [anon_sym_unsetenv] = ACTIONS(99), + [anon_sym_AMP_GT] = ACTIONS(87), + [anon_sym_AMP_GT_GT] = ACTIONS(89), + [anon_sym_LT_AMP] = ACTIONS(87), + [anon_sym_GT_AMP] = ACTIONS(87), + [anon_sym_GT_PIPE] = ACTIONS(89), + [anon_sym_LT_AMP_DASH] = ACTIONS(101), + [anon_sym_GT_AMP_DASH] = ACTIONS(101), + [anon_sym_LT_LT_LT] = ACTIONS(103), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(796), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(798), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(139), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(800), + [sym__brace_start] = ACTIONS(399), }, - [444] = { - [sym__statement_not_pipeline] = STATE(4720), - [sym_redirected_statement] = STATE(4720), - [sym_for_statement] = STATE(4720), - [sym_c_style_for_statement] = STATE(4720), - [sym_while_statement] = STATE(4469), - [sym_if_statement] = STATE(4469), - [sym_case_statement] = STATE(4720), - [sym_function_definition] = STATE(4720), - [sym_compound_statement] = STATE(4720), - [sym_subshell] = STATE(4720), - [sym_pipeline] = STATE(5558), - [sym_list] = STATE(4720), - [sym_negated_command] = STATE(4720), - [sym_test_command] = STATE(4720), - [sym_declaration_command] = STATE(4720), - [sym_unset_command] = STATE(4720), - [sym_command] = STATE(4720), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1150), - [sym_variable_assignments] = STATE(4720), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [438] = { + [sym__statement_not_pipeline] = STATE(6765), + [sym_redirected_statement] = STATE(5453), + [sym_for_statement] = STATE(5453), + [sym_c_style_for_statement] = STATE(5453), + [sym_while_statement] = STATE(5118), + [sym_if_statement] = STATE(5118), + [sym_case_statement] = STATE(5453), + [sym_function_definition] = STATE(5453), + [sym_compound_statement] = STATE(5453), + [sym_subshell] = STATE(5453), + [sym_pipeline] = STATE(5562), + [sym_list] = STATE(5453), + [sym_negated_command] = STATE(5453), + [sym_test_command] = STATE(5453), + [sym_declaration_command] = STATE(5453), + [sym_unset_command] = STATE(5453), + [sym_command] = STATE(5453), + [sym_command_name] = STATE(606), + [sym_variable_assignment] = STATE(1556), + [sym_variable_assignments] = STATE(5453), + [sym_subscript] = STATE(6795), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1765), + [sym_brace_expression] = STATE(1765), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1765), + [sym_translated_string] = STATE(1765), + [sym_raw_string] = STATE(1765), + [sym_number] = STATE(1765), + [sym_simple_expansion] = STATE(1765), + [sym_expansion] = STATE(1765), + [sym_command_substitution] = STATE(1765), + [sym_process_substitution] = STATE(1765), + [aux_sym_redirected_statement_repeat2] = STATE(5207), + [aux_sym_command_repeat1] = STATE(907), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(1019), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(1021), + [anon_sym_GT] = ACTIONS(1021), + [anon_sym_GT_GT] = ACTIONS(1023), [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(343), + [anon_sym_function] = ACTIONS(1025), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(1027), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(1029), + [anon_sym_typeset] = ACTIONS(1029), + [anon_sym_export] = ACTIONS(1029), + [anon_sym_readonly] = ACTIONS(1029), + [anon_sym_local] = ACTIONS(1029), + [anon_sym_unset] = ACTIONS(1031), + [anon_sym_unsetenv] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1021), + [anon_sym_AMP_GT_GT] = ACTIONS(1023), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [anon_sym_GT_PIPE] = ACTIONS(1023), + [anon_sym_LT_AMP_DASH] = ACTIONS(1033), + [anon_sym_GT_AMP_DASH] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(1039), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1041), + [sym_variable_name] = ACTIONS(1043), + [sym_test_operator] = ACTIONS(1045), + [sym__brace_start] = ACTIONS(399), }, - [445] = { - [sym__statement_not_pipeline] = STATE(6705), - [sym_redirected_statement] = STATE(5021), - [sym_for_statement] = STATE(5021), - [sym_c_style_for_statement] = STATE(5021), - [sym_while_statement] = STATE(4468), - [sym_if_statement] = STATE(4468), - [sym_case_statement] = STATE(5021), - [sym_function_definition] = STATE(5021), - [sym_compound_statement] = STATE(5021), - [sym_subshell] = STATE(5021), - [sym_pipeline] = STATE(5024), - [sym_list] = STATE(5021), - [sym_negated_command] = STATE(5021), - [sym_test_command] = STATE(5021), - [sym_declaration_command] = STATE(5021), - [sym_unset_command] = STATE(5021), - [sym_command] = STATE(5021), - [sym_command_name] = STATE(552), - [sym_variable_assignment] = STATE(1148), - [sym_variable_assignments] = STATE(5021), - [sym_subscript] = STATE(6785), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1010), - [sym_brace_expression] = STATE(1010), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1010), - [sym_translated_string] = STATE(1010), - [sym_number] = STATE(1010), - [sym_simple_expansion] = STATE(1010), - [sym_expansion] = STATE(1010), - [sym_command_substitution] = STATE(1010), - [sym_process_substitution] = STATE(1010), - [aux_sym_redirected_statement_repeat2] = STATE(4626), - [aux_sym_command_repeat1] = STATE(1001), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(329), + [439] = { + [sym__statement_not_pipeline] = STATE(5609), + [sym_redirected_statement] = STATE(5609), + [sym_for_statement] = STATE(5609), + [sym_c_style_for_statement] = STATE(5609), + [sym_while_statement] = STATE(5229), + [sym_if_statement] = STATE(5229), + [sym_case_statement] = STATE(5609), + [sym_function_definition] = STATE(5609), + [sym_compound_statement] = STATE(5609), + [sym_subshell] = STATE(5609), + [sym_pipeline] = STATE(5657), + [sym_list] = STATE(5609), + [sym_negated_command] = STATE(5609), + [sym_test_command] = STATE(5609), + [sym_declaration_command] = STATE(5609), + [sym_unset_command] = STATE(5609), + [sym_command] = STATE(5609), + [sym_command_name] = STATE(644), + [sym_variable_assignment] = STATE(1839), + [sym_variable_assignments] = STATE(5609), + [sym_subscript] = STATE(6803), + [sym_file_redirect] = STATE(2884), + [sym_herestring_redirect] = STATE(2887), + [sym_arithmetic_expansion] = STATE(1918), + [sym_brace_expression] = STATE(1918), + [sym_concatenation] = STATE(2443), + [sym_string] = STATE(1918), + [sym_translated_string] = STATE(1918), + [sym_raw_string] = STATE(1918), + [sym_number] = STATE(1918), + [sym_simple_expansion] = STATE(1918), + [sym_expansion] = STATE(1918), + [sym_command_substitution] = STATE(1918), + [sym_process_substitution] = STATE(1918), + [aux_sym_redirected_statement_repeat2] = STATE(5451), + [aux_sym_command_repeat1] = STATE(855), + [aux_sym__literal_repeat1] = STATE(2378), + [sym_word] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(149), + [anon_sym_select] = ACTIONS(151), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_GT_GT] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_while] = ACTIONS(161), + [anon_sym_until] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_case] = ACTIONS(165), + [anon_sym_function] = ACTIONS(167), + [anon_sym_LBRACE] = ACTIONS(169), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(177), + [anon_sym_declare] = ACTIONS(179), + [anon_sym_typeset] = ACTIONS(179), + [anon_sym_export] = ACTIONS(179), + [anon_sym_readonly] = ACTIONS(179), + [anon_sym_local] = ACTIONS(179), + [anon_sym_unset] = ACTIONS(181), + [anon_sym_unsetenv] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(1051), + [anon_sym_AMP_GT_GT] = ACTIONS(1053), + [anon_sym_LT_AMP] = ACTIONS(1051), + [anon_sym_GT_AMP] = ACTIONS(1051), + [anon_sym_GT_PIPE] = ACTIONS(1053), + [anon_sym_LT_AMP_DASH] = ACTIONS(1059), + [anon_sym_GT_AMP_DASH] = ACTIONS(1059), + [anon_sym_LT_LT_LT] = ACTIONS(1061), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1067), + [sym__special_character] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1071), + [anon_sym_SQUOTE] = ACTIONS(1073), + [sym_ansi_c_string] = ACTIONS(1075), + [aux_sym_number_token1] = ACTIONS(1077), + [aux_sym_number_token2] = ACTIONS(1079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1083), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1087), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1091), + [sym_variable_name] = ACTIONS(223), + [sym_test_operator] = ACTIONS(1093), + [sym__brace_start] = ACTIONS(1095), + }, + [440] = { + [sym__statement_not_pipeline] = STATE(6667), + [sym_redirected_statement] = STATE(5500), + [sym_for_statement] = STATE(5500), + [sym_c_style_for_statement] = STATE(5500), + [sym_while_statement] = STATE(5239), + [sym_if_statement] = STATE(5239), + [sym_case_statement] = STATE(5500), + [sym_function_definition] = STATE(5500), + [sym_compound_statement] = STATE(5500), + [sym_subshell] = STATE(5500), + [sym_pipeline] = STATE(5501), + [sym_list] = STATE(5500), + [sym_negated_command] = STATE(5500), + [sym_test_command] = STATE(5500), + [sym_declaration_command] = STATE(5500), + [sym_unset_command] = STATE(5500), + [sym_command] = STATE(5500), + [sym_command_name] = STATE(644), + [sym_variable_assignment] = STATE(1877), + [sym_variable_assignments] = STATE(5500), + [sym_subscript] = STATE(6803), + [sym_file_redirect] = STATE(2884), + [sym_herestring_redirect] = STATE(2887), + [sym_arithmetic_expansion] = STATE(1918), + [sym_brace_expression] = STATE(1918), + [sym_concatenation] = STATE(2443), + [sym_string] = STATE(1918), + [sym_translated_string] = STATE(1918), + [sym_raw_string] = STATE(1918), + [sym_number] = STATE(1918), + [sym_simple_expansion] = STATE(1918), + [sym_expansion] = STATE(1918), + [sym_command_substitution] = STATE(1918), + [sym_process_substitution] = STATE(1918), + [aux_sym_redirected_statement_repeat2] = STATE(5451), + [aux_sym_command_repeat1] = STATE(855), + [aux_sym__literal_repeat1] = STATE(2378), + [sym_word] = ACTIONS(1047), + [anon_sym_for] = ACTIONS(149), + [anon_sym_select] = ACTIONS(151), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1049), + [anon_sym_LT] = ACTIONS(1051), + [anon_sym_GT] = ACTIONS(1051), + [anon_sym_GT_GT] = ACTIONS(1053), + [anon_sym_LPAREN] = ACTIONS(1055), + [anon_sym_while] = ACTIONS(161), + [anon_sym_until] = ACTIONS(161), + [anon_sym_if] = ACTIONS(163), + [anon_sym_case] = ACTIONS(165), + [anon_sym_function] = ACTIONS(167), + [anon_sym_LBRACE] = ACTIONS(169), + [anon_sym_BANG] = ACTIONS(1057), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(177), + [anon_sym_declare] = ACTIONS(179), + [anon_sym_typeset] = ACTIONS(179), + [anon_sym_export] = ACTIONS(179), + [anon_sym_readonly] = ACTIONS(179), + [anon_sym_local] = ACTIONS(179), + [anon_sym_unset] = ACTIONS(181), + [anon_sym_unsetenv] = ACTIONS(181), + [anon_sym_AMP_GT] = ACTIONS(1051), + [anon_sym_AMP_GT_GT] = ACTIONS(1053), + [anon_sym_LT_AMP] = ACTIONS(1051), + [anon_sym_GT_AMP] = ACTIONS(1051), + [anon_sym_GT_PIPE] = ACTIONS(1053), + [anon_sym_LT_AMP_DASH] = ACTIONS(1059), + [anon_sym_GT_AMP_DASH] = ACTIONS(1059), + [anon_sym_LT_LT_LT] = ACTIONS(1061), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1063), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1065), + [anon_sym_DOLLAR] = ACTIONS(1067), + [sym__special_character] = ACTIONS(1069), + [anon_sym_DQUOTE] = ACTIONS(1071), + [anon_sym_SQUOTE] = ACTIONS(1073), + [sym_ansi_c_string] = ACTIONS(1075), + [aux_sym_number_token1] = ACTIONS(1077), + [aux_sym_number_token2] = ACTIONS(1079), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1081), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1083), + [anon_sym_BQUOTE] = ACTIONS(1085), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1087), + [anon_sym_LT_LPAREN] = ACTIONS(1089), + [anon_sym_GT_LPAREN] = ACTIONS(1089), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1091), + [sym_variable_name] = ACTIONS(223), + [sym_test_operator] = ACTIONS(1093), + [sym__brace_start] = ACTIONS(1095), + }, + [441] = { + [sym__statement_not_pipeline] = STATE(6722), + [sym_redirected_statement] = STATE(4857), + [sym_for_statement] = STATE(4857), + [sym_c_style_for_statement] = STATE(4857), + [sym_while_statement] = STATE(4329), + [sym_if_statement] = STATE(4329), + [sym_case_statement] = STATE(4857), + [sym_function_definition] = STATE(4857), + [sym_compound_statement] = STATE(4857), + [sym_subshell] = STATE(4857), + [sym_pipeline] = STATE(4860), + [sym_list] = STATE(4857), + [sym_negated_command] = STATE(4857), + [sym_test_command] = STATE(4857), + [sym_declaration_command] = STATE(4857), + [sym_unset_command] = STATE(4857), + [sym_command] = STATE(4857), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1071), + [sym_variable_assignments] = STATE(4857), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(333), - [anon_sym_GT] = ACTIONS(333), - [anon_sym_GT_GT] = ACTIONS(335), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(343), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(345), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(347), - [anon_sym_typeset] = ACTIONS(347), - [anon_sym_export] = ACTIONS(347), - [anon_sym_readonly] = ACTIONS(347), - [anon_sym_local] = ACTIONS(347), - [anon_sym_unset] = ACTIONS(349), - [anon_sym_unsetenv] = ACTIONS(349), - [anon_sym_AMP_GT] = ACTIONS(333), - [anon_sym_AMP_GT_GT] = ACTIONS(335), - [anon_sym_LT_AMP] = ACTIONS(333), - [anon_sym_GT_AMP] = ACTIONS(333), - [anon_sym_GT_PIPE] = ACTIONS(335), - [anon_sym_LT_AMP_DASH] = ACTIONS(351), - [anon_sym_GT_AMP_DASH] = ACTIONS(351), - [anon_sym_LT_LT_LT] = ACTIONS(353), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(361), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(365), - [sym_ansi_c_string] = ACTIONS(365), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(381), - [sym_variable_name] = ACTIONS(383), - [sym_test_operator] = ACTIONS(385), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), + }, + [442] = { + [sym__statement_not_pipeline] = STATE(6676), + [sym_redirected_statement] = STATE(4433), + [sym_for_statement] = STATE(4433), + [sym_c_style_for_statement] = STATE(4433), + [sym_while_statement] = STATE(4268), + [sym_if_statement] = STATE(4268), + [sym_case_statement] = STATE(4433), + [sym_function_definition] = STATE(4433), + [sym_compound_statement] = STATE(4433), + [sym_subshell] = STATE(4433), + [sym_pipeline] = STATE(4434), + [sym_list] = STATE(4433), + [sym_negated_command] = STATE(4433), + [sym_test_command] = STATE(4433), + [sym_declaration_command] = STATE(4433), + [sym_unset_command] = STATE(4433), + [sym_command] = STATE(4433), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(818), + [sym_variable_assignments] = STATE(4433), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), + }, + [443] = { + [sym__statement_not_pipeline] = STATE(4802), + [sym_redirected_statement] = STATE(4802), + [sym_for_statement] = STATE(4802), + [sym_c_style_for_statement] = STATE(4802), + [sym_while_statement] = STATE(4271), + [sym_if_statement] = STATE(4271), + [sym_case_statement] = STATE(4802), + [sym_function_definition] = STATE(4802), + [sym_compound_statement] = STATE(4802), + [sym_subshell] = STATE(4802), + [sym_pipeline] = STATE(5620), + [sym_list] = STATE(4802), + [sym_negated_command] = STATE(4802), + [sym_test_command] = STATE(4802), + [sym_declaration_command] = STATE(4802), + [sym_unset_command] = STATE(4802), + [sym_command] = STATE(4802), + [sym_command_name] = STATE(530), + [sym_variable_assignment] = STATE(819), + [sym_variable_assignments] = STATE(4802), + [sym_subscript] = STATE(6820), + [sym_file_redirect] = STATE(1515), + [sym_herestring_redirect] = STATE(1517), + [sym_arithmetic_expansion] = STATE(845), + [sym_brace_expression] = STATE(845), + [sym_concatenation] = STATE(1061), + [sym_string] = STATE(845), + [sym_translated_string] = STATE(845), + [sym_raw_string] = STATE(845), + [sym_number] = STATE(845), + [sym_simple_expansion] = STATE(845), + [sym_expansion] = STATE(845), + [sym_command_substitution] = STATE(845), + [sym_process_substitution] = STATE(845), + [aux_sym_redirected_statement_repeat2] = STATE(4278), + [aux_sym_command_repeat1] = STATE(853), + [aux_sym__literal_repeat1] = STATE(940), + [sym_word] = ACTIONS(415), + [anon_sym_for] = ACTIONS(417), + [anon_sym_select] = ACTIONS(419), + [anon_sym_LPAREN_LPAREN] = ACTIONS(421), + [anon_sym_LT] = ACTIONS(423), + [anon_sym_GT] = ACTIONS(423), + [anon_sym_GT_GT] = ACTIONS(425), + [anon_sym_LPAREN] = ACTIONS(427), + [anon_sym_while] = ACTIONS(429), + [anon_sym_until] = ACTIONS(429), + [anon_sym_if] = ACTIONS(431), + [anon_sym_case] = ACTIONS(433), + [anon_sym_function] = ACTIONS(441), + [anon_sym_LBRACE] = ACTIONS(443), + [anon_sym_BANG] = ACTIONS(445), + [anon_sym_LBRACK] = ACTIONS(447), + [anon_sym_LBRACK_LBRACK] = ACTIONS(449), + [anon_sym_declare] = ACTIONS(451), + [anon_sym_typeset] = ACTIONS(451), + [anon_sym_export] = ACTIONS(451), + [anon_sym_readonly] = ACTIONS(451), + [anon_sym_local] = ACTIONS(451), + [anon_sym_unset] = ACTIONS(453), + [anon_sym_unsetenv] = ACTIONS(453), + [anon_sym_AMP_GT] = ACTIONS(423), + [anon_sym_AMP_GT_GT] = ACTIONS(425), + [anon_sym_LT_AMP] = ACTIONS(423), + [anon_sym_GT_AMP] = ACTIONS(423), + [anon_sym_GT_PIPE] = ACTIONS(425), + [anon_sym_LT_AMP_DASH] = ACTIONS(455), + [anon_sym_GT_AMP_DASH] = ACTIONS(455), + [anon_sym_LT_LT_LT] = ACTIONS(457), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(459), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(461), + [anon_sym_DOLLAR] = ACTIONS(463), + [sym__special_character] = ACTIONS(465), + [anon_sym_DQUOTE] = ACTIONS(467), + [anon_sym_SQUOTE] = ACTIONS(469), + [sym_ansi_c_string] = ACTIONS(471), + [aux_sym_number_token1] = ACTIONS(473), + [aux_sym_number_token2] = ACTIONS(475), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(477), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(479), + [anon_sym_BQUOTE] = ACTIONS(481), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(483), + [anon_sym_LT_LPAREN] = ACTIONS(485), + [anon_sym_GT_LPAREN] = ACTIONS(485), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(487), + [sym_variable_name] = ACTIONS(489), + [sym_test_operator] = ACTIONS(491), + [sym__brace_start] = ACTIONS(493), + }, + [444] = { + [sym__statement_not_pipeline] = STATE(6622), + [sym_redirected_statement] = STATE(4585), + [sym_for_statement] = STATE(4585), + [sym_c_style_for_statement] = STATE(4585), + [sym_while_statement] = STATE(4284), + [sym_if_statement] = STATE(4284), + [sym_case_statement] = STATE(4585), + [sym_function_definition] = STATE(4585), + [sym_compound_statement] = STATE(4585), + [sym_subshell] = STATE(4585), + [sym_pipeline] = STATE(4587), + [sym_list] = STATE(4585), + [sym_negated_command] = STATE(4585), + [sym_test_command] = STATE(4585), + [sym_declaration_command] = STATE(4585), + [sym_unset_command] = STATE(4585), + [sym_command] = STATE(4585), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(912), + [sym_variable_assignments] = STATE(4585), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), + }, + [445] = { + [sym__statement_not_pipeline] = STATE(5012), + [sym_redirected_statement] = STATE(5012), + [sym_for_statement] = STATE(5012), + [sym_c_style_for_statement] = STATE(5012), + [sym_while_statement] = STATE(4286), + [sym_if_statement] = STATE(4286), + [sym_case_statement] = STATE(5012), + [sym_function_definition] = STATE(5012), + [sym_compound_statement] = STATE(5012), + [sym_subshell] = STATE(5012), + [sym_pipeline] = STATE(5640), + [sym_list] = STATE(5012), + [sym_negated_command] = STATE(5012), + [sym_test_command] = STATE(5012), + [sym_declaration_command] = STATE(5012), + [sym_unset_command] = STATE(5012), + [sym_command] = STATE(5012), + [sym_command_name] = STATE(532), + [sym_variable_assignment] = STATE(849), + [sym_variable_assignments] = STATE(5012), + [sym_subscript] = STATE(6821), + [sym_file_redirect] = STATE(1846), + [sym_herestring_redirect] = STATE(1851), + [sym_arithmetic_expansion] = STATE(896), + [sym_brace_expression] = STATE(896), + [sym_concatenation] = STATE(1308), + [sym_string] = STATE(896), + [sym_translated_string] = STATE(896), + [sym_raw_string] = STATE(896), + [sym_number] = STATE(896), + [sym_simple_expansion] = STATE(896), + [sym_expansion] = STATE(896), + [sym_command_substitution] = STATE(896), + [sym_process_substitution] = STATE(896), + [aux_sym_redirected_statement_repeat2] = STATE(4332), + [aux_sym_command_repeat1] = STATE(914), + [aux_sym__literal_repeat1] = STATE(1026), + [sym_word] = ACTIONS(682), + [anon_sym_for] = ACTIONS(684), + [anon_sym_select] = ACTIONS(686), + [anon_sym_LPAREN_LPAREN] = ACTIONS(688), + [anon_sym_LT] = ACTIONS(690), + [anon_sym_GT] = ACTIONS(690), + [anon_sym_GT_GT] = ACTIONS(692), + [anon_sym_LPAREN] = ACTIONS(694), + [anon_sym_while] = ACTIONS(696), + [anon_sym_until] = ACTIONS(696), + [anon_sym_if] = ACTIONS(698), + [anon_sym_case] = ACTIONS(700), + [anon_sym_function] = ACTIONS(704), + [anon_sym_LBRACE] = ACTIONS(706), + [anon_sym_BANG] = ACTIONS(708), + [anon_sym_LBRACK] = ACTIONS(710), + [anon_sym_LBRACK_LBRACK] = ACTIONS(712), + [anon_sym_declare] = ACTIONS(714), + [anon_sym_typeset] = ACTIONS(714), + [anon_sym_export] = ACTIONS(714), + [anon_sym_readonly] = ACTIONS(714), + [anon_sym_local] = ACTIONS(714), + [anon_sym_unset] = ACTIONS(716), + [anon_sym_unsetenv] = ACTIONS(716), + [anon_sym_AMP_GT] = ACTIONS(690), + [anon_sym_AMP_GT_GT] = ACTIONS(692), + [anon_sym_LT_AMP] = ACTIONS(690), + [anon_sym_GT_AMP] = ACTIONS(690), + [anon_sym_GT_PIPE] = ACTIONS(692), + [anon_sym_LT_AMP_DASH] = ACTIONS(718), + [anon_sym_GT_AMP_DASH] = ACTIONS(718), + [anon_sym_LT_LT_LT] = ACTIONS(720), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(722), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(724), + [anon_sym_DOLLAR] = ACTIONS(726), + [sym__special_character] = ACTIONS(728), + [anon_sym_DQUOTE] = ACTIONS(730), + [anon_sym_SQUOTE] = ACTIONS(732), + [sym_ansi_c_string] = ACTIONS(734), + [aux_sym_number_token1] = ACTIONS(736), + [aux_sym_number_token2] = ACTIONS(738), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(742), + [anon_sym_BQUOTE] = ACTIONS(744), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(746), + [anon_sym_LT_LPAREN] = ACTIONS(748), + [anon_sym_GT_LPAREN] = ACTIONS(748), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(750), + [sym_variable_name] = ACTIONS(752), + [sym_test_operator] = ACTIONS(754), + [sym__brace_start] = ACTIONS(756), }, [446] = { - [sym__statement_not_pipeline] = STATE(4720), - [sym_redirected_statement] = STATE(4720), - [sym_for_statement] = STATE(4720), - [sym_c_style_for_statement] = STATE(4720), - [sym_while_statement] = STATE(4312), - [sym_if_statement] = STATE(4312), - [sym_case_statement] = STATE(4720), - [sym_function_definition] = STATE(4720), - [sym_compound_statement] = STATE(4720), - [sym_subshell] = STATE(4720), - [sym_pipeline] = STATE(5586), - [sym_list] = STATE(4720), - [sym_negated_command] = STATE(4720), - [sym_test_command] = STATE(4720), - [sym_declaration_command] = STATE(4720), - [sym_unset_command] = STATE(4720), - [sym_command] = STATE(4720), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(951), - [sym_variable_assignments] = STATE(4720), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(980), - [sym_brace_expression] = STATE(980), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(980), - [sym_translated_string] = STATE(980), - [sym_number] = STATE(980), - [sym_simple_expansion] = STATE(980), - [sym_expansion] = STATE(980), - [sym_command_substitution] = STATE(980), - [sym_process_substitution] = STATE(980), - [aux_sym_redirected_statement_repeat2] = STATE(4430), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(771), + [sym__statement_not_pipeline] = STATE(4801), + [sym_redirected_statement] = STATE(4801), + [sym_for_statement] = STATE(4801), + [sym_c_style_for_statement] = STATE(4801), + [sym_while_statement] = STATE(4330), + [sym_if_statement] = STATE(4330), + [sym_case_statement] = STATE(4801), + [sym_function_definition] = STATE(4801), + [sym_compound_statement] = STATE(4801), + [sym_subshell] = STATE(4801), + [sym_pipeline] = STATE(5610), + [sym_list] = STATE(4801), + [sym_negated_command] = STATE(4801), + [sym_test_command] = STATE(4801), + [sym_declaration_command] = STATE(4801), + [sym_unset_command] = STATE(4801), + [sym_command] = STATE(4801), + [sym_command_name] = STATE(550), + [sym_variable_assignment] = STATE(1063), + [sym_variable_assignments] = STATE(4801), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2307), + [sym_herestring_redirect] = STATE(2308), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4609), + [aux_sym_command_repeat1] = STATE(924), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(818), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(85), - [anon_sym_GT] = ACTIONS(85), - [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [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(91), + [anon_sym_function] = ACTIONS(820), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(822), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(95), - [anon_sym_typeset] = ACTIONS(95), - [anon_sym_export] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_local] = ACTIONS(95), - [anon_sym_unset] = ACTIONS(97), - [anon_sym_unsetenv] = ACTIONS(97), - [anon_sym_AMP_GT] = ACTIONS(85), - [anon_sym_AMP_GT_GT] = ACTIONS(87), - [anon_sym_LT_AMP] = ACTIONS(85), - [anon_sym_GT_AMP] = ACTIONS(85), - [anon_sym_GT_PIPE] = ACTIONS(87), - [anon_sym_LT_AMP_DASH] = ACTIONS(99), - [anon_sym_GT_AMP_DASH] = ACTIONS(99), - [anon_sym_LT_LT_LT] = ACTIONS(101), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(777), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(779), - [sym_ansi_c_string] = ACTIONS(779), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(135), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(781), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(824), + [anon_sym_typeset] = ACTIONS(824), + [anon_sym_export] = ACTIONS(824), + [anon_sym_readonly] = ACTIONS(824), + [anon_sym_local] = ACTIONS(824), + [anon_sym_unset] = ACTIONS(826), + [anon_sym_unsetenv] = ACTIONS(826), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [447] = { - [sym__statement_not_pipeline] = STATE(4720), - [sym_redirected_statement] = STATE(4720), - [sym_for_statement] = STATE(4720), - [sym_c_style_for_statement] = STATE(4720), - [sym_while_statement] = STATE(5100), - [sym_if_statement] = STATE(5100), - [sym_case_statement] = STATE(4720), - [sym_function_definition] = STATE(4720), - [sym_compound_statement] = STATE(4720), - [sym_subshell] = STATE(4720), - [sym_pipeline] = STATE(5613), - [sym_list] = STATE(4720), - [sym_negated_command] = STATE(4720), - [sym_test_command] = STATE(4720), - [sym_declaration_command] = STATE(4720), - [sym_unset_command] = STATE(4720), - [sym_command] = STATE(4720), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1711), - [sym_variable_assignments] = STATE(4720), - [sym_subscript] = STATE(6779), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1693), - [sym_brace_expression] = STATE(1693), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1693), - [sym_translated_string] = STATE(1693), - [sym_number] = STATE(1693), - [sym_simple_expansion] = STATE(1693), - [sym_expansion] = STATE(1693), - [sym_command_substitution] = STATE(1693), - [sym_process_substitution] = STATE(1693), - [aux_sym_redirected_statement_repeat2] = STATE(5134), - [aux_sym_command_repeat1] = STATE(1004), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(997), + [sym__statement_not_pipeline] = STATE(4801), + [sym_redirected_statement] = STATE(4801), + [sym_for_statement] = STATE(4801), + [sym_c_style_for_statement] = STATE(4801), + [sym_while_statement] = STATE(4558), + [sym_if_statement] = STATE(4558), + [sym_case_statement] = STATE(4801), + [sym_function_definition] = STATE(4801), + [sym_compound_statement] = STATE(4801), + [sym_subshell] = STATE(4801), + [sym_pipeline] = STATE(5648), + [sym_list] = STATE(4801), + [sym_negated_command] = STATE(4801), + [sym_test_command] = STATE(4801), + [sym_declaration_command] = STATE(4801), + [sym_unset_command] = STATE(4801), + [sym_command] = STATE(4801), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1135), + [sym_variable_assignments] = STATE(4801), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(1003), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1007), - [anon_sym_typeset] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1007), - [anon_sym_readonly] = ACTIONS(1007), - [anon_sym_local] = ACTIONS(1007), - [anon_sym_unset] = ACTIONS(1009), - [anon_sym_unsetenv] = ACTIONS(1009), - [anon_sym_AMP_GT] = ACTIONS(999), - [anon_sym_AMP_GT_GT] = ACTIONS(1001), - [anon_sym_LT_AMP] = ACTIONS(999), - [anon_sym_GT_AMP] = ACTIONS(999), - [anon_sym_GT_PIPE] = ACTIONS(1001), - [anon_sym_LT_AMP_DASH] = ACTIONS(1011), - [anon_sym_GT_AMP_DASH] = ACTIONS(1011), - [anon_sym_LT_LT_LT] = ACTIONS(1013), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(1017), - [sym_ansi_c_string] = ACTIONS(1017), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1019), - [sym_variable_name] = ACTIONS(1021), - [sym_test_operator] = ACTIONS(1023), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [448] = { - [sym__statement_not_pipeline] = STATE(6713), - [sym_redirected_statement] = STATE(5299), - [sym_for_statement] = STATE(5299), - [sym_c_style_for_statement] = STATE(5299), - [sym_while_statement] = STATE(5098), - [sym_if_statement] = STATE(5098), - [sym_case_statement] = STATE(5299), - [sym_function_definition] = STATE(5299), - [sym_compound_statement] = STATE(5299), - [sym_subshell] = STATE(5299), - [sym_pipeline] = STATE(5300), - [sym_list] = STATE(5299), - [sym_negated_command] = STATE(5299), - [sym_test_command] = STATE(5299), - [sym_declaration_command] = STATE(5299), - [sym_unset_command] = STATE(5299), - [sym_command] = STATE(5299), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1708), - [sym_variable_assignments] = STATE(5299), - [sym_subscript] = STATE(6779), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1693), - [sym_brace_expression] = STATE(1693), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1693), - [sym_translated_string] = STATE(1693), - [sym_number] = STATE(1693), - [sym_simple_expansion] = STATE(1693), - [sym_expansion] = STATE(1693), - [sym_command_substitution] = STATE(1693), - [sym_process_substitution] = STATE(1693), - [aux_sym_redirected_statement_repeat2] = STATE(5134), - [aux_sym_command_repeat1] = STATE(1004), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(997), + [sym__statement_not_pipeline] = STATE(6728), + [sym_redirected_statement] = STATE(5061), + [sym_for_statement] = STATE(5061), + [sym_c_style_for_statement] = STATE(5061), + [sym_while_statement] = STATE(4557), + [sym_if_statement] = STATE(4557), + [sym_case_statement] = STATE(5061), + [sym_function_definition] = STATE(5061), + [sym_compound_statement] = STATE(5061), + [sym_subshell] = STATE(5061), + [sym_pipeline] = STATE(5062), + [sym_list] = STATE(5061), + [sym_negated_command] = STATE(5061), + [sym_test_command] = STATE(5061), + [sym_declaration_command] = STATE(5061), + [sym_unset_command] = STATE(5061), + [sym_command] = STATE(5061), + [sym_command_name] = STATE(546), + [sym_variable_assignment] = STATE(1132), + [sym_variable_assignments] = STATE(5061), + [sym_subscript] = STATE(6835), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1117), + [sym_brace_expression] = STATE(1117), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1117), + [sym_translated_string] = STATE(1117), + [sym_raw_string] = STATE(1117), + [sym_number] = STATE(1117), + [sym_simple_expansion] = STATE(1117), + [sym_expansion] = STATE(1117), + [sym_command_substitution] = STATE(1117), + [sym_process_substitution] = STATE(1117), + [aux_sym_redirected_statement_repeat2] = STATE(4708), + [aux_sym_command_repeat1] = STATE(894), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(339), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(343), + [anon_sym_GT] = ACTIONS(343), + [anon_sym_GT_GT] = ACTIONS(345), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(1003), + [anon_sym_function] = ACTIONS(353), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(355), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1007), - [anon_sym_typeset] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1007), - [anon_sym_readonly] = ACTIONS(1007), - [anon_sym_local] = ACTIONS(1007), - [anon_sym_unset] = ACTIONS(1009), - [anon_sym_unsetenv] = ACTIONS(1009), - [anon_sym_AMP_GT] = ACTIONS(999), - [anon_sym_AMP_GT_GT] = ACTIONS(1001), - [anon_sym_LT_AMP] = ACTIONS(999), - [anon_sym_GT_AMP] = ACTIONS(999), - [anon_sym_GT_PIPE] = ACTIONS(1001), - [anon_sym_LT_AMP_DASH] = ACTIONS(1011), - [anon_sym_GT_AMP_DASH] = ACTIONS(1011), - [anon_sym_LT_LT_LT] = ACTIONS(1013), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(1017), - [sym_ansi_c_string] = ACTIONS(1017), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1019), - [sym_variable_name] = ACTIONS(1021), - [sym_test_operator] = ACTIONS(1023), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(357), + [anon_sym_typeset] = ACTIONS(357), + [anon_sym_export] = ACTIONS(357), + [anon_sym_readonly] = ACTIONS(357), + [anon_sym_local] = ACTIONS(357), + [anon_sym_unset] = ACTIONS(359), + [anon_sym_unsetenv] = ACTIONS(359), + [anon_sym_AMP_GT] = ACTIONS(343), + [anon_sym_AMP_GT_GT] = ACTIONS(345), + [anon_sym_LT_AMP] = ACTIONS(343), + [anon_sym_GT_AMP] = ACTIONS(343), + [anon_sym_GT_PIPE] = ACTIONS(345), + [anon_sym_LT_AMP_DASH] = ACTIONS(361), + [anon_sym_GT_AMP_DASH] = ACTIONS(361), + [anon_sym_LT_LT_LT] = ACTIONS(363), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(371), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(377), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(393), + [sym_variable_name] = ACTIONS(395), + [sym_test_operator] = ACTIONS(397), + [sym__brace_start] = ACTIONS(399), }, [449] = { - [sym__statement_not_pipeline] = STATE(4999), - [sym_redirected_statement] = STATE(4999), - [sym_for_statement] = STATE(4999), - [sym_c_style_for_statement] = STATE(4999), - [sym_while_statement] = STATE(4251), - [sym_if_statement] = STATE(4251), - [sym_case_statement] = STATE(4999), - [sym_function_definition] = STATE(4999), - [sym_compound_statement] = STATE(4999), - [sym_subshell] = STATE(4999), - [sym_pipeline] = STATE(5557), - [sym_list] = STATE(4999), - [sym_negated_command] = STATE(4999), - [sym_test_command] = STATE(4999), - [sym_declaration_command] = STATE(4999), - [sym_unset_command] = STATE(4999), - [sym_command] = STATE(4999), - [sym_command_name] = STATE(531), - [sym_variable_assignment] = STATE(874), - [sym_variable_assignments] = STATE(4999), - [sym_subscript] = STATE(6746), - [sym_file_redirect] = STATE(1807), - [sym_herestring_redirect] = STATE(1808), - [sym_arithmetic_expansion] = STATE(859), - [sym_brace_expression] = STATE(859), - [sym_concatenation] = STATE(1231), - [sym_string] = STATE(859), - [sym_translated_string] = STATE(859), - [sym_number] = STATE(859), - [sym_simple_expansion] = STATE(859), - [sym_expansion] = STATE(859), - [sym_command_substitution] = STATE(859), - [sym_process_substitution] = STATE(859), - [aux_sym_redirected_statement_repeat2] = STATE(4335), - [aux_sym_command_repeat1] = STATE(992), - [aux_sym__literal_repeat1] = STATE(1127), - [sym_word] = ACTIONS(665), - [anon_sym_for] = ACTIONS(667), - [anon_sym_select] = ACTIONS(669), - [anon_sym_LPAREN_LPAREN] = ACTIONS(671), - [anon_sym_LT] = ACTIONS(673), - [anon_sym_GT] = ACTIONS(673), - [anon_sym_GT_GT] = ACTIONS(675), - [anon_sym_LPAREN] = ACTIONS(677), - [anon_sym_while] = ACTIONS(679), - [anon_sym_until] = ACTIONS(679), - [anon_sym_if] = ACTIONS(681), - [anon_sym_case] = ACTIONS(683), - [anon_sym_function] = ACTIONS(687), - [anon_sym_LBRACE] = ACTIONS(689), - [anon_sym_BANG] = ACTIONS(691), - [anon_sym_LBRACK] = ACTIONS(693), - [anon_sym_LBRACK_LBRACK] = ACTIONS(695), - [anon_sym_declare] = ACTIONS(697), - [anon_sym_typeset] = ACTIONS(697), - [anon_sym_export] = ACTIONS(697), - [anon_sym_readonly] = ACTIONS(697), - [anon_sym_local] = ACTIONS(697), - [anon_sym_unset] = ACTIONS(699), - [anon_sym_unsetenv] = ACTIONS(699), - [anon_sym_AMP_GT] = ACTIONS(673), - [anon_sym_AMP_GT_GT] = ACTIONS(675), - [anon_sym_LT_AMP] = ACTIONS(673), - [anon_sym_GT_AMP] = ACTIONS(673), - [anon_sym_GT_PIPE] = ACTIONS(675), - [anon_sym_LT_AMP_DASH] = ACTIONS(701), - [anon_sym_GT_AMP_DASH] = ACTIONS(701), - [anon_sym_LT_LT_LT] = ACTIONS(703), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(705), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(707), - [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(71), - [sym_file_descriptor] = ACTIONS(731), - [sym_variable_name] = ACTIONS(733), - [sym_test_operator] = ACTIONS(735), - [sym__brace_start] = ACTIONS(737), + [sym__statement_not_pipeline] = STATE(4801), + [sym_redirected_statement] = STATE(4801), + [sym_for_statement] = STATE(4801), + [sym_c_style_for_statement] = STATE(4801), + [sym_while_statement] = STATE(5173), + [sym_if_statement] = STATE(5173), + [sym_case_statement] = STATE(4801), + [sym_function_definition] = STATE(4801), + [sym_compound_statement] = STATE(4801), + [sym_subshell] = STATE(4801), + [sym_pipeline] = STATE(5636), + [sym_list] = STATE(4801), + [sym_negated_command] = STATE(4801), + [sym_test_command] = STATE(4801), + [sym_declaration_command] = STATE(4801), + [sym_unset_command] = STATE(4801), + [sym_command] = STATE(4801), + [sym_command_name] = STATE(606), + [sym_variable_assignment] = STATE(1769), + [sym_variable_assignments] = STATE(4801), + [sym_subscript] = STATE(6795), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1765), + [sym_brace_expression] = STATE(1765), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1765), + [sym_translated_string] = STATE(1765), + [sym_raw_string] = STATE(1765), + [sym_number] = STATE(1765), + [sym_simple_expansion] = STATE(1765), + [sym_expansion] = STATE(1765), + [sym_command_substitution] = STATE(1765), + [sym_process_substitution] = STATE(1765), + [aux_sym_redirected_statement_repeat2] = STATE(5207), + [aux_sym_command_repeat1] = STATE(907), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(1019), + [anon_sym_for] = ACTIONS(9), + [anon_sym_select] = ACTIONS(11), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(1021), + [anon_sym_GT] = ACTIONS(1021), + [anon_sym_GT_GT] = ACTIONS(1023), + [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(1025), + [anon_sym_LBRACE] = ACTIONS(29), + [anon_sym_BANG] = ACTIONS(1027), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_declare] = ACTIONS(1029), + [anon_sym_typeset] = ACTIONS(1029), + [anon_sym_export] = ACTIONS(1029), + [anon_sym_readonly] = ACTIONS(1029), + [anon_sym_local] = ACTIONS(1029), + [anon_sym_unset] = ACTIONS(1031), + [anon_sym_unsetenv] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1021), + [anon_sym_AMP_GT_GT] = ACTIONS(1023), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [anon_sym_GT_PIPE] = ACTIONS(1023), + [anon_sym_LT_AMP_DASH] = ACTIONS(1033), + [anon_sym_GT_AMP_DASH] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(1039), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1041), + [sym_variable_name] = ACTIONS(1043), + [sym_test_operator] = ACTIONS(1045), + [sym__brace_start] = ACTIONS(399), }, [450] = { - [sym__statement_not_pipeline] = STATE(6713), - [sym_redirected_statement] = STATE(5304), - [sym_for_statement] = STATE(5304), - [sym_c_style_for_statement] = STATE(5304), - [sym_while_statement] = STATE(5080), - [sym_if_statement] = STATE(5080), - [sym_case_statement] = STATE(5304), - [sym_function_definition] = STATE(5304), - [sym_compound_statement] = STATE(5304), - [sym_subshell] = STATE(5304), - [sym_pipeline] = STATE(5500), - [sym_list] = STATE(5304), - [sym_negated_command] = STATE(5304), - [sym_test_command] = STATE(5304), - [sym_declaration_command] = STATE(5304), - [sym_unset_command] = STATE(5304), - [sym_command] = STATE(5304), - [sym_command_name] = STATE(611), - [sym_variable_assignment] = STATE(1547), - [sym_variable_assignments] = STATE(5304), - [sym_subscript] = STATE(6779), - [sym_file_redirect] = STATE(2172), - [sym_herestring_redirect] = STATE(2175), - [sym_arithmetic_expansion] = STATE(1693), - [sym_brace_expression] = STATE(1693), - [sym_concatenation] = STATE(1398), - [sym_string] = STATE(1693), - [sym_translated_string] = STATE(1693), - [sym_number] = STATE(1693), - [sym_simple_expansion] = STATE(1693), - [sym_expansion] = STATE(1693), - [sym_command_substitution] = STATE(1693), - [sym_process_substitution] = STATE(1693), - [aux_sym_redirected_statement_repeat2] = STATE(5134), - [aux_sym_command_repeat1] = STATE(1004), - [aux_sym__literal_repeat1] = STATE(1179), - [sym_word] = ACTIONS(997), + [sym__statement_not_pipeline] = STATE(6765), + [sym_redirected_statement] = STATE(5362), + [sym_for_statement] = STATE(5362), + [sym_c_style_for_statement] = STATE(5362), + [sym_while_statement] = STATE(5170), + [sym_if_statement] = STATE(5170), + [sym_case_statement] = STATE(5362), + [sym_function_definition] = STATE(5362), + [sym_compound_statement] = STATE(5362), + [sym_subshell] = STATE(5362), + [sym_pipeline] = STATE(5364), + [sym_list] = STATE(5362), + [sym_negated_command] = STATE(5362), + [sym_test_command] = STATE(5362), + [sym_declaration_command] = STATE(5362), + [sym_unset_command] = STATE(5362), + [sym_command] = STATE(5362), + [sym_command_name] = STATE(606), + [sym_variable_assignment] = STATE(1768), + [sym_variable_assignments] = STATE(5362), + [sym_subscript] = STATE(6795), + [sym_file_redirect] = STATE(2180), + [sym_herestring_redirect] = STATE(2184), + [sym_arithmetic_expansion] = STATE(1765), + [sym_brace_expression] = STATE(1765), + [sym_concatenation] = STATE(1375), + [sym_string] = STATE(1765), + [sym_translated_string] = STATE(1765), + [sym_raw_string] = STATE(1765), + [sym_number] = STATE(1765), + [sym_simple_expansion] = STATE(1765), + [sym_expansion] = STATE(1765), + [sym_command_substitution] = STATE(1765), + [sym_process_substitution] = STATE(1765), + [aux_sym_redirected_statement_repeat2] = STATE(5207), + [aux_sym_command_repeat1] = STATE(907), + [aux_sym__literal_repeat1] = STATE(1252), + [sym_word] = ACTIONS(1019), [anon_sym_for] = ACTIONS(9), [anon_sym_select] = ACTIONS(11), - [anon_sym_LPAREN_LPAREN] = ACTIONS(331), - [anon_sym_LT] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(999), - [anon_sym_GT_GT] = ACTIONS(1001), + [anon_sym_LPAREN_LPAREN] = ACTIONS(341), + [anon_sym_LT] = ACTIONS(1021), + [anon_sym_GT] = ACTIONS(1021), + [anon_sym_GT_GT] = ACTIONS(1023), [anon_sym_LPAREN] = ACTIONS(19), [anon_sym_while] = ACTIONS(21), [anon_sym_until] = ACTIONS(21), [anon_sym_if] = ACTIONS(23), [anon_sym_case] = ACTIONS(25), - [anon_sym_function] = ACTIONS(1003), + [anon_sym_function] = ACTIONS(1025), [anon_sym_LBRACE] = ACTIONS(29), - [anon_sym_BANG] = ACTIONS(1005), + [anon_sym_BANG] = ACTIONS(1027), [anon_sym_LBRACK] = ACTIONS(33), [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_declare] = ACTIONS(1007), - [anon_sym_typeset] = ACTIONS(1007), - [anon_sym_export] = ACTIONS(1007), - [anon_sym_readonly] = ACTIONS(1007), - [anon_sym_local] = ACTIONS(1007), - [anon_sym_unset] = ACTIONS(1009), - [anon_sym_unsetenv] = ACTIONS(1009), - [anon_sym_AMP_GT] = ACTIONS(999), - [anon_sym_AMP_GT_GT] = ACTIONS(1001), - [anon_sym_LT_AMP] = ACTIONS(999), - [anon_sym_GT_AMP] = ACTIONS(999), - [anon_sym_GT_PIPE] = ACTIONS(1001), - [anon_sym_LT_AMP_DASH] = ACTIONS(1011), - [anon_sym_GT_AMP_DASH] = ACTIONS(1011), - [anon_sym_LT_LT_LT] = ACTIONS(1013), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(355), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(357), - [anon_sym_DOLLAR] = ACTIONS(359), - [sym__special_character] = ACTIONS(1015), - [anon_sym_DQUOTE] = ACTIONS(363), - [sym_raw_string] = ACTIONS(1017), - [sym_ansi_c_string] = ACTIONS(1017), - [aux_sym_number_token1] = ACTIONS(367), - [aux_sym_number_token2] = ACTIONS(369), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(371), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(373), - [anon_sym_BQUOTE] = ACTIONS(375), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(377), - [anon_sym_LT_LPAREN] = ACTIONS(379), - [anon_sym_GT_LPAREN] = ACTIONS(379), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1019), - [sym_variable_name] = ACTIONS(1021), - [sym_test_operator] = ACTIONS(1023), - [sym__brace_start] = ACTIONS(387), + [anon_sym_declare] = ACTIONS(1029), + [anon_sym_typeset] = ACTIONS(1029), + [anon_sym_export] = ACTIONS(1029), + [anon_sym_readonly] = ACTIONS(1029), + [anon_sym_local] = ACTIONS(1029), + [anon_sym_unset] = ACTIONS(1031), + [anon_sym_unsetenv] = ACTIONS(1031), + [anon_sym_AMP_GT] = ACTIONS(1021), + [anon_sym_AMP_GT_GT] = ACTIONS(1023), + [anon_sym_LT_AMP] = ACTIONS(1021), + [anon_sym_GT_AMP] = ACTIONS(1021), + [anon_sym_GT_PIPE] = ACTIONS(1023), + [anon_sym_LT_AMP_DASH] = ACTIONS(1033), + [anon_sym_GT_AMP_DASH] = ACTIONS(1033), + [anon_sym_LT_LT_LT] = ACTIONS(1035), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(365), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(367), + [anon_sym_DOLLAR] = ACTIONS(369), + [sym__special_character] = ACTIONS(1037), + [anon_sym_DQUOTE] = ACTIONS(373), + [anon_sym_SQUOTE] = ACTIONS(375), + [sym_ansi_c_string] = ACTIONS(1039), + [aux_sym_number_token1] = ACTIONS(379), + [aux_sym_number_token2] = ACTIONS(381), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(383), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(385), + [anon_sym_BQUOTE] = ACTIONS(387), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(389), + [anon_sym_LT_LPAREN] = ACTIONS(391), + [anon_sym_GT_LPAREN] = ACTIONS(391), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1041), + [sym_variable_name] = ACTIONS(1043), + [sym_test_operator] = ACTIONS(1045), + [sym__brace_start] = ACTIONS(399), }, [451] = { - [sym__expression] = STATE(2808), - [sym_binary_expression] = STATE(2884), - [sym_ternary_expression] = STATE(2884), - [sym_unary_expression] = STATE(2884), - [sym_postfix_expression] = STATE(2884), - [sym_parenthesized_expression] = STATE(2884), - [sym_arithmetic_expansion] = STATE(2556), - [sym_brace_expression] = STATE(2556), - [sym_concatenation] = STATE(2884), - [sym_string] = STATE(2556), - [sym_translated_string] = STATE(2556), - [sym_number] = STATE(2556), - [sym_simple_expansion] = STATE(2556), - [sym_expansion] = STATE(2556), - [sym_command_substitution] = STATE(2556), - [sym_process_substitution] = STATE(2556), - [aux_sym__literal_repeat1] = STATE(2503), - [aux_sym_concatenation_repeat1] = STATE(2456), - [sym_word] = ACTIONS(1073), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(243), - [anon_sym_GT_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_RBRACK] = ACTIONS(1079), - [anon_sym_EQ_TILDE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1081), - [anon_sym_DASH_DASH2] = ACTIONS(1081), - [anon_sym_DASH2] = ACTIONS(1083), - [anon_sym_PLUS2] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), - [aux_sym_concatenation_token1] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(303), - [sym__special_character] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(307), - [sym_raw_string] = ACTIONS(1091), - [sym_ansi_c_string] = ACTIONS(1091), - [aux_sym_number_token1] = ACTIONS(311), - [aux_sym_number_token2] = ACTIONS(313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), - [anon_sym_BQUOTE] = ACTIONS(319), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1093), - [sym_test_operator] = ACTIONS(1095), - [sym__brace_start] = ACTIONS(327), + [sym__expression] = STATE(3060), + [sym_binary_expression] = STATE(3167), + [sym_ternary_expression] = STATE(3167), + [sym_unary_expression] = STATE(3167), + [sym_postfix_expression] = STATE(3167), + [sym_parenthesized_expression] = STATE(3167), + [sym_arithmetic_expansion] = STATE(2507), + [sym_brace_expression] = STATE(2507), + [sym_concatenation] = STATE(3167), + [sym_string] = STATE(2507), + [sym_translated_string] = STATE(2507), + [sym_raw_string] = STATE(2507), + [sym_number] = STATE(2507), + [sym_simple_expansion] = STATE(2507), + [sym_expansion] = STATE(2507), + [sym_command_substitution] = STATE(2507), + [sym_process_substitution] = STATE(2507), + [aux_sym__literal_repeat1] = STATE(2653), + [aux_sym_concatenation_repeat1] = STATE(2613), + [sym_word] = ACTIONS(243), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_AMP_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(254), + [anon_sym_RPAREN] = ACTIONS(298), + [anon_sym_BANG] = ACTIONS(256), + [anon_sym_EQ_TILDE] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(105), + [anon_sym_DASH_DASH2] = ACTIONS(105), + [anon_sym_DASH2] = ACTIONS(107), + [anon_sym_PLUS2] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1097), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1099), + [aux_sym_concatenation_token1] = ACTIONS(1101), + [anon_sym_DOLLAR] = ACTIONS(264), + [sym__special_character] = ACTIONS(1103), + [anon_sym_DQUOTE] = ACTIONS(1105), + [anon_sym_SQUOTE] = ACTIONS(1107), + [sym_ansi_c_string] = ACTIONS(1109), + [aux_sym_number_token1] = ACTIONS(272), + [aux_sym_number_token2] = ACTIONS(274), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1111), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(278), + [anon_sym_BQUOTE] = ACTIONS(280), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1113), + [anon_sym_LT_LPAREN] = ACTIONS(1115), + [anon_sym_GT_LPAREN] = ACTIONS(1115), + [sym_comment] = ACTIONS(73), + [sym__concat] = ACTIONS(1101), + [sym_test_operator] = ACTIONS(290), + [sym__brace_start] = ACTIONS(292), }, [452] = { - [sym__expression] = STATE(3123), - [sym_binary_expression] = STATE(2674), - [sym_ternary_expression] = STATE(2674), - [sym_unary_expression] = STATE(2674), - [sym_postfix_expression] = STATE(2674), - [sym_parenthesized_expression] = STATE(2674), - [sym_arithmetic_expansion] = STATE(2554), - [sym_brace_expression] = STATE(2554), - [sym_concatenation] = STATE(2674), - [sym_string] = STATE(2554), - [sym_translated_string] = STATE(2554), - [sym_number] = STATE(2554), - [sym_simple_expansion] = STATE(2554), - [sym_expansion] = STATE(2554), - [sym_command_substitution] = STATE(2554), - [sym_process_substitution] = STATE(2554), - [aux_sym__literal_repeat1] = STATE(2593), - [aux_sym_concatenation_repeat1] = STATE(2507), - [sym_word] = ACTIONS(1097), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1099), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(243), - [anon_sym_GT_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_RBRACK_RBRACK] = ACTIONS(290), - [anon_sym_EQ_TILDE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1105), - [anon_sym_DASH_DASH2] = ACTIONS(1105), - [anon_sym_DASH2] = ACTIONS(1107), - [anon_sym_PLUS2] = ACTIONS(1107), - [anon_sym_TILDE] = ACTIONS(1109), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1099), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1111), - [aux_sym_concatenation_token1] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1115), - [sym__special_character] = ACTIONS(1117), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym_raw_string] = ACTIONS(1121), - [sym_ansi_c_string] = ACTIONS(1121), - [aux_sym_number_token1] = ACTIONS(1123), - [aux_sym_number_token2] = ACTIONS(1125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1127), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1135), - [anon_sym_GT_LPAREN] = ACTIONS(1135), - [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), - [sym_test_operator] = ACTIONS(1137), - [sym__brace_start] = ACTIONS(1139), + [sym__expression] = STATE(3019), + [sym_binary_expression] = STATE(2758), + [sym_ternary_expression] = STATE(2758), + [sym_unary_expression] = STATE(2758), + [sym_postfix_expression] = STATE(2758), + [sym_parenthesized_expression] = STATE(2758), + [sym_arithmetic_expansion] = STATE(2588), + [sym_brace_expression] = STATE(2588), + [sym_concatenation] = STATE(2758), + [sym_string] = STATE(2588), + [sym_translated_string] = STATE(2588), + [sym_raw_string] = STATE(2588), + [sym_number] = STATE(2588), + [sym_simple_expansion] = STATE(2588), + [sym_expansion] = STATE(2588), + [sym_command_substitution] = STATE(2588), + [sym_process_substitution] = STATE(2588), + [aux_sym__literal_repeat1] = STATE(2705), + [aux_sym_concatenation_repeat1] = STATE(2508), + [sym_word] = ACTIONS(1117), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_AMP_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1123), + [anon_sym_RBRACK_RBRACK] = ACTIONS(298), + [anon_sym_EQ_TILDE] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(1125), + [anon_sym_DASH_DASH2] = ACTIONS(1125), + [anon_sym_DASH2] = ACTIONS(1127), + [anon_sym_PLUS2] = ACTIONS(1127), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1119), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1131), + [aux_sym_concatenation_token1] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(1135), + [sym__special_character] = ACTIONS(1137), + [anon_sym_DQUOTE] = ACTIONS(1139), + [anon_sym_SQUOTE] = ACTIONS(1141), + [sym_ansi_c_string] = ACTIONS(1143), + [aux_sym_number_token1] = ACTIONS(1145), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1155), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(73), + [sym__concat] = ACTIONS(1133), + [sym_test_operator] = ACTIONS(1159), + [sym__brace_start] = ACTIONS(1161), }, [453] = { - [sym__expression] = STATE(2808), - [sym_binary_expression] = STATE(2884), - [sym_ternary_expression] = STATE(2884), - [sym_unary_expression] = STATE(2884), - [sym_postfix_expression] = STATE(2884), - [sym_parenthesized_expression] = STATE(2884), - [sym_arithmetic_expansion] = STATE(2556), - [sym_brace_expression] = STATE(2556), - [sym_concatenation] = STATE(2884), - [sym_string] = STATE(2556), - [sym_translated_string] = STATE(2556), - [sym_number] = STATE(2556), - [sym_simple_expansion] = STATE(2556), - [sym_expansion] = STATE(2556), - [sym_command_substitution] = STATE(2556), - [sym_process_substitution] = STATE(2556), - [aux_sym__literal_repeat1] = STATE(2503), - [aux_sym_concatenation_repeat1] = STATE(2456), - [sym_word] = ACTIONS(1073), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(243), - [anon_sym_GT_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_RBRACK] = ACTIONS(1141), - [anon_sym_EQ_TILDE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1081), - [anon_sym_DASH_DASH2] = ACTIONS(1081), - [anon_sym_DASH2] = ACTIONS(1083), - [anon_sym_PLUS2] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), - [aux_sym_concatenation_token1] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(303), - [sym__special_character] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(307), - [sym_raw_string] = ACTIONS(1091), - [sym_ansi_c_string] = ACTIONS(1091), - [aux_sym_number_token1] = ACTIONS(311), - [aux_sym_number_token2] = ACTIONS(313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), - [anon_sym_BQUOTE] = ACTIONS(319), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1143), - [sym_test_operator] = ACTIONS(1095), - [sym__brace_start] = ACTIONS(327), + [sym__expression] = STATE(2798), + [sym_binary_expression] = STATE(2984), + [sym_ternary_expression] = STATE(2984), + [sym_unary_expression] = STATE(2984), + [sym_postfix_expression] = STATE(2984), + [sym_parenthesized_expression] = STATE(2984), + [sym_arithmetic_expansion] = STATE(2525), + [sym_brace_expression] = STATE(2525), + [sym_concatenation] = STATE(2984), + [sym_string] = STATE(2525), + [sym_translated_string] = STATE(2525), + [sym_raw_string] = STATE(2525), + [sym_number] = STATE(2525), + [sym_simple_expansion] = STATE(2525), + [sym_expansion] = STATE(2525), + [sym_command_substitution] = STATE(2525), + [sym_process_substitution] = STATE(2525), + [aux_sym__literal_repeat1] = STATE(2502), + [aux_sym_concatenation_repeat1] = STATE(2532), + [sym_word] = ACTIONS(1163), + [anon_sym_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_AMP_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_RBRACK] = ACTIONS(298), + [anon_sym_EQ_TILDE] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(1169), + [anon_sym_DASH_DASH2] = ACTIONS(1169), + [anon_sym_DASH2] = ACTIONS(1171), + [anon_sym_PLUS2] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(307), + [aux_sym_concatenation_token1] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(311), + [sym__special_character] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(315), + [anon_sym_SQUOTE] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(1179), + [aux_sym_number_token1] = ACTIONS(321), + [aux_sym_number_token2] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(327), + [anon_sym_BQUOTE] = ACTIONS(329), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_comment] = ACTIONS(73), + [sym__concat] = ACTIONS(298), + [sym_test_operator] = ACTIONS(1181), + [sym__brace_start] = ACTIONS(337), }, [454] = { - [sym__expression] = STATE(2808), - [sym_binary_expression] = STATE(2884), - [sym_ternary_expression] = STATE(2884), - [sym_unary_expression] = STATE(2884), - [sym_postfix_expression] = STATE(2884), - [sym_parenthesized_expression] = STATE(2884), - [sym_arithmetic_expansion] = STATE(2556), - [sym_brace_expression] = STATE(2556), - [sym_concatenation] = STATE(2884), - [sym_string] = STATE(2556), - [sym_translated_string] = STATE(2556), - [sym_number] = STATE(2556), - [sym_simple_expansion] = STATE(2556), - [sym_expansion] = STATE(2556), - [sym_command_substitution] = STATE(2556), - [sym_process_substitution] = STATE(2556), - [aux_sym__literal_repeat1] = STATE(2503), - [aux_sym_concatenation_repeat1] = STATE(2456), - [sym_word] = ACTIONS(1073), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(243), - [anon_sym_GT_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_RBRACK] = ACTIONS(1145), - [anon_sym_EQ_TILDE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1081), - [anon_sym_DASH_DASH2] = ACTIONS(1081), - [anon_sym_DASH2] = ACTIONS(1083), - [anon_sym_PLUS2] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), - [aux_sym_concatenation_token1] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(303), - [sym__special_character] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(307), - [sym_raw_string] = ACTIONS(1091), - [sym_ansi_c_string] = ACTIONS(1091), - [aux_sym_number_token1] = ACTIONS(311), - [aux_sym_number_token2] = ACTIONS(313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), - [anon_sym_BQUOTE] = ACTIONS(319), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1147), - [sym_test_operator] = ACTIONS(1095), - [sym__brace_start] = ACTIONS(327), + [sym__expression] = STATE(2798), + [sym_binary_expression] = STATE(2984), + [sym_ternary_expression] = STATE(2984), + [sym_unary_expression] = STATE(2984), + [sym_postfix_expression] = STATE(2984), + [sym_parenthesized_expression] = STATE(2984), + [sym_arithmetic_expansion] = STATE(2525), + [sym_brace_expression] = STATE(2525), + [sym_concatenation] = STATE(2984), + [sym_string] = STATE(2525), + [sym_translated_string] = STATE(2525), + [sym_raw_string] = STATE(2525), + [sym_number] = STATE(2525), + [sym_simple_expansion] = STATE(2525), + [sym_expansion] = STATE(2525), + [sym_command_substitution] = STATE(2525), + [sym_process_substitution] = STATE(2525), + [aux_sym__literal_repeat1] = STATE(2502), + [aux_sym_concatenation_repeat1] = STATE(2532), + [sym_word] = ACTIONS(1163), + [anon_sym_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_AMP_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_RBRACK] = ACTIONS(1183), + [anon_sym_EQ_TILDE] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(1169), + [anon_sym_DASH_DASH2] = ACTIONS(1169), + [anon_sym_DASH2] = ACTIONS(1171), + [anon_sym_PLUS2] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(307), + [aux_sym_concatenation_token1] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(311), + [sym__special_character] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(315), + [anon_sym_SQUOTE] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(1179), + [aux_sym_number_token1] = ACTIONS(321), + [aux_sym_number_token2] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(327), + [anon_sym_BQUOTE] = ACTIONS(329), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_comment] = ACTIONS(73), + [sym__concat] = ACTIONS(1185), + [sym_test_operator] = ACTIONS(1181), + [sym__brace_start] = ACTIONS(337), }, [455] = { - [sym__expression] = STATE(3111), - [sym_binary_expression] = STATE(2952), - [sym_ternary_expression] = STATE(2952), - [sym_unary_expression] = STATE(2952), - [sym_postfix_expression] = STATE(2952), - [sym_parenthesized_expression] = STATE(2952), - [sym_arithmetic_expansion] = STATE(2509), - [sym_brace_expression] = STATE(2509), - [sym_concatenation] = STATE(2952), - [sym_string] = STATE(2509), - [sym_translated_string] = STATE(2509), - [sym_number] = STATE(2509), - [sym_simple_expansion] = STATE(2509), - [sym_expansion] = STATE(2509), - [sym_command_substitution] = STATE(2509), - [sym_process_substitution] = STATE(2509), - [aux_sym__literal_repeat1] = STATE(2705), - [aux_sym_concatenation_repeat1] = STATE(2510), - [sym_word] = ACTIONS(286), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(243), - [anon_sym_GT_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(295), - [anon_sym_BANG] = ACTIONS(297), - [anon_sym_RBRACK] = ACTIONS(290), - [anon_sym_EQ_TILDE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), - [aux_sym_concatenation_token1] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(303), - [sym__special_character] = ACTIONS(305), - [anon_sym_DQUOTE] = ACTIONS(307), - [sym_raw_string] = ACTIONS(309), - [sym_ansi_c_string] = ACTIONS(309), - [aux_sym_number_token1] = ACTIONS(311), - [aux_sym_number_token2] = ACTIONS(313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), - [anon_sym_BQUOTE] = ACTIONS(319), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1087), - [sym_test_operator] = ACTIONS(325), - [sym__brace_start] = ACTIONS(327), - }, - [456] = { - [sym__expression] = STATE(2808), - [sym_binary_expression] = STATE(2884), - [sym_ternary_expression] = STATE(2884), - [sym_unary_expression] = STATE(2884), - [sym_postfix_expression] = STATE(2884), - [sym_parenthesized_expression] = STATE(2884), - [sym_arithmetic_expansion] = STATE(2556), - [sym_brace_expression] = STATE(2556), - [sym_concatenation] = STATE(2884), - [sym_string] = STATE(2556), - [sym_translated_string] = STATE(2556), - [sym_number] = STATE(2556), - [sym_simple_expansion] = STATE(2556), - [sym_expansion] = STATE(2556), - [sym_command_substitution] = STATE(2556), - [sym_process_substitution] = STATE(2556), - [aux_sym__literal_repeat1] = STATE(2503), - [aux_sym_concatenation_repeat1] = STATE(2456), - [sym_word] = ACTIONS(1073), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(243), - [anon_sym_GT_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_RBRACK] = ACTIONS(1149), - [anon_sym_EQ_TILDE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1081), - [anon_sym_DASH_DASH2] = ACTIONS(1081), - [anon_sym_DASH2] = ACTIONS(1083), - [anon_sym_PLUS2] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), - [aux_sym_concatenation_token1] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(303), - [sym__special_character] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(307), - [sym_raw_string] = ACTIONS(1091), - [sym_ansi_c_string] = ACTIONS(1091), - [aux_sym_number_token1] = ACTIONS(311), - [aux_sym_number_token2] = ACTIONS(313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), - [anon_sym_BQUOTE] = ACTIONS(319), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1151), - [sym_test_operator] = ACTIONS(1095), - [sym__brace_start] = ACTIONS(327), - }, - [457] = { - [sym__expression] = STATE(2950), - [sym_binary_expression] = STATE(2976), - [sym_ternary_expression] = STATE(2976), - [sym_unary_expression] = STATE(2976), - [sym_postfix_expression] = STATE(2976), - [sym_parenthesized_expression] = STATE(2976), - [sym_arithmetic_expansion] = STATE(2498), - [sym_brace_expression] = STATE(2498), - [sym_concatenation] = STATE(2976), - [sym_string] = STATE(2498), - [sym_translated_string] = STATE(2498), - [sym_number] = STATE(2498), - [sym_simple_expansion] = STATE(2498), - [sym_expansion] = STATE(2498), - [sym_command_substitution] = STATE(2498), - [sym_process_substitution] = STATE(2498), - [aux_sym__literal_repeat1] = STATE(2623), - [aux_sym_concatenation_repeat1] = STATE(2480), - [sym_word] = ACTIONS(237), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1153), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(243), - [anon_sym_GT_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(248), - [anon_sym_RPAREN] = ACTIONS(290), - [anon_sym_BANG] = ACTIONS(250), - [anon_sym_EQ_TILDE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(103), - [anon_sym_DASH_DASH2] = ACTIONS(103), - [anon_sym_DASH2] = ACTIONS(105), - [anon_sym_PLUS2] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1153), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1155), - [aux_sym_concatenation_token1] = ACTIONS(1157), - [anon_sym_DOLLAR] = ACTIONS(258), - [sym__special_character] = ACTIONS(1159), - [anon_sym_DQUOTE] = ACTIONS(1161), - [sym_raw_string] = ACTIONS(1163), - [sym_ansi_c_string] = ACTIONS(1163), - [aux_sym_number_token1] = ACTIONS(264), - [aux_sym_number_token2] = ACTIONS(266), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1165), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(270), - [anon_sym_BQUOTE] = ACTIONS(272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1167), - [anon_sym_LT_LPAREN] = ACTIONS(1169), - [anon_sym_GT_LPAREN] = ACTIONS(1169), - [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1157), - [sym_test_operator] = ACTIONS(282), - [sym__brace_start] = ACTIONS(284), - }, - [458] = { - [sym__expression] = STATE(3102), - [sym_binary_expression] = STATE(2674), - [sym_ternary_expression] = STATE(2674), - [sym_unary_expression] = STATE(2674), - [sym_postfix_expression] = STATE(2674), - [sym_parenthesized_expression] = STATE(2674), - [sym_arithmetic_expansion] = STATE(2530), - [sym_brace_expression] = STATE(2530), - [sym_concatenation] = STATE(2674), - [sym_string] = STATE(2530), - [sym_translated_string] = STATE(2530), - [sym_number] = STATE(2530), - [sym_simple_expansion] = STATE(2530), - [sym_expansion] = STATE(2530), - [sym_command_substitution] = STATE(2530), - [sym_process_substitution] = STATE(2530), - [aux_sym__literal_repeat1] = STATE(2548), - [aux_sym_concatenation_repeat1] = STATE(2485), - [sym_word] = ACTIONS(1171), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1099), - [anon_sym_RPAREN_RPAREN] = ACTIONS(290), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(243), - [anon_sym_GT_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1173), - [anon_sym_EQ_TILDE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1175), - [anon_sym_DASH_DASH2] = ACTIONS(1175), - [anon_sym_DASH2] = ACTIONS(1177), - [anon_sym_PLUS2] = ACTIONS(1177), - [anon_sym_TILDE] = ACTIONS(1179), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1099), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1111), - [aux_sym_concatenation_token1] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1115), - [sym__special_character] = ACTIONS(1181), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym_raw_string] = ACTIONS(1183), - [sym_ansi_c_string] = ACTIONS(1183), - [aux_sym_number_token1] = ACTIONS(1123), - [aux_sym_number_token2] = ACTIONS(1125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1127), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1135), - [anon_sym_GT_LPAREN] = ACTIONS(1135), - [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), - [sym_test_operator] = ACTIONS(1185), - [sym__brace_start] = ACTIONS(1139), - }, - [459] = { - [sym__expression] = STATE(2808), - [sym_binary_expression] = STATE(2884), - [sym_ternary_expression] = STATE(2884), - [sym_unary_expression] = STATE(2884), - [sym_postfix_expression] = STATE(2884), - [sym_parenthesized_expression] = STATE(2884), - [sym_arithmetic_expansion] = STATE(2556), - [sym_brace_expression] = STATE(2556), - [sym_concatenation] = STATE(2884), - [sym_string] = STATE(2556), - [sym_translated_string] = STATE(2556), - [sym_number] = STATE(2556), - [sym_simple_expansion] = STATE(2556), - [sym_expansion] = STATE(2556), - [sym_command_substitution] = STATE(2556), - [sym_process_substitution] = STATE(2556), - [aux_sym__literal_repeat1] = STATE(2503), - [aux_sym_concatenation_repeat1] = STATE(2456), - [sym_word] = ACTIONS(1073), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(243), - [anon_sym_GT_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1077), - [anon_sym_RBRACK] = ACTIONS(290), - [anon_sym_EQ_TILDE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1081), - [anon_sym_DASH_DASH2] = ACTIONS(1081), - [anon_sym_DASH2] = ACTIONS(1083), - [anon_sym_PLUS2] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), - [aux_sym_concatenation_token1] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(303), - [sym__special_character] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(307), - [sym_raw_string] = ACTIONS(1091), - [sym_ansi_c_string] = ACTIONS(1091), - [aux_sym_number_token1] = ACTIONS(311), - [aux_sym_number_token2] = ACTIONS(313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), - [anon_sym_BQUOTE] = ACTIONS(319), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(290), - [sym_test_operator] = ACTIONS(1095), - [sym__brace_start] = ACTIONS(327), - }, - [460] = { - [sym__expression] = STATE(2963), - [sym_binary_expression] = STATE(2674), - [sym_ternary_expression] = STATE(2674), - [sym_unary_expression] = STATE(2674), - [sym_postfix_expression] = STATE(2674), - [sym_parenthesized_expression] = STATE(2674), - [sym_arithmetic_expansion] = STATE(2567), - [sym_brace_expression] = STATE(2567), - [sym_concatenation] = STATE(2674), - [sym_string] = STATE(2567), - [sym_translated_string] = STATE(2567), - [sym_number] = STATE(2567), - [sym_simple_expansion] = STATE(2567), - [sym_expansion] = STATE(2567), - [sym_command_substitution] = STATE(2567), - [sym_process_substitution] = STATE(2567), - [aux_sym__literal_repeat1] = STATE(2548), - [aux_sym_concatenation_repeat1] = STATE(2512), + [sym__expression] = STATE(3007), + [sym_binary_expression] = STATE(2758), + [sym_ternary_expression] = STATE(2758), + [sym_unary_expression] = STATE(2758), + [sym_postfix_expression] = STATE(2758), + [sym_parenthesized_expression] = STATE(2758), + [sym_arithmetic_expansion] = STATE(2606), + [sym_brace_expression] = STATE(2606), + [sym_concatenation] = STATE(2758), + [sym_string] = STATE(2606), + [sym_translated_string] = STATE(2606), + [sym_raw_string] = STATE(2606), + [sym_number] = STATE(2606), + [sym_simple_expansion] = STATE(2606), + [sym_expansion] = STATE(2606), + [sym_command_substitution] = STATE(2606), + [sym_process_substitution] = STATE(2606), + [aux_sym__literal_repeat1] = STATE(2546), + [aux_sym_concatenation_repeat1] = STATE(2516), [sym_word] = ACTIONS(1187), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1099), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(243), - [anon_sym_GT_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_AMP_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(1121), [anon_sym_BANG] = ACTIONS(1189), - [anon_sym_EQ_TILDE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_COLON] = ACTIONS(243), + [anon_sym_EQ_TILDE] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_COLON] = ACTIONS(249), [anon_sym_PLUS_PLUS2] = ACTIONS(1191), [anon_sym_DASH_DASH2] = ACTIONS(1191), [anon_sym_DASH2] = ACTIONS(1193), [anon_sym_PLUS2] = ACTIONS(1193), [anon_sym_TILDE] = ACTIONS(1195), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1099), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1111), - [aux_sym_concatenation_token1] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1115), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1119), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1131), + [aux_sym_concatenation_token1] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(1135), [sym__special_character] = ACTIONS(1197), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym_raw_string] = ACTIONS(1199), + [anon_sym_DQUOTE] = ACTIONS(1139), + [anon_sym_SQUOTE] = ACTIONS(1141), [sym_ansi_c_string] = ACTIONS(1199), - [aux_sym_number_token1] = ACTIONS(1123), - [aux_sym_number_token2] = ACTIONS(1125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1127), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1135), - [anon_sym_GT_LPAREN] = ACTIONS(1135), - [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), + [aux_sym_number_token1] = ACTIONS(1145), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1155), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(73), + [sym__concat] = ACTIONS(1133), [sym_test_operator] = ACTIONS(1201), - [sym__brace_start] = ACTIONS(1139), + [sym__brace_start] = ACTIONS(1161), }, - [461] = { - [sym__expression] = STATE(2808), - [sym_binary_expression] = STATE(2884), - [sym_ternary_expression] = STATE(2884), - [sym_unary_expression] = STATE(2884), - [sym_postfix_expression] = STATE(2884), - [sym_parenthesized_expression] = STATE(2884), - [sym_arithmetic_expansion] = STATE(2556), - [sym_brace_expression] = STATE(2556), - [sym_concatenation] = STATE(2884), - [sym_string] = STATE(2556), - [sym_translated_string] = STATE(2556), - [sym_number] = STATE(2556), - [sym_simple_expansion] = STATE(2556), - [sym_expansion] = STATE(2556), - [sym_command_substitution] = STATE(2556), - [sym_process_substitution] = STATE(2556), - [aux_sym__literal_repeat1] = STATE(2503), - [aux_sym_concatenation_repeat1] = STATE(2456), - [sym_word] = ACTIONS(1073), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(243), - [anon_sym_GT_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1077), + [456] = { + [sym__expression] = STATE(2798), + [sym_binary_expression] = STATE(2984), + [sym_ternary_expression] = STATE(2984), + [sym_unary_expression] = STATE(2984), + [sym_postfix_expression] = STATE(2984), + [sym_parenthesized_expression] = STATE(2984), + [sym_arithmetic_expansion] = STATE(2525), + [sym_brace_expression] = STATE(2525), + [sym_concatenation] = STATE(2984), + [sym_string] = STATE(2525), + [sym_translated_string] = STATE(2525), + [sym_raw_string] = STATE(2525), + [sym_number] = STATE(2525), + [sym_simple_expansion] = STATE(2525), + [sym_expansion] = STATE(2525), + [sym_command_substitution] = STATE(2525), + [sym_process_substitution] = STATE(2525), + [aux_sym__literal_repeat1] = STATE(2502), + [aux_sym_concatenation_repeat1] = STATE(2532), + [sym_word] = ACTIONS(1163), + [anon_sym_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_AMP_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1167), [anon_sym_RBRACK] = ACTIONS(1203), - [anon_sym_EQ_TILDE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1081), - [anon_sym_DASH_DASH2] = ACTIONS(1081), - [anon_sym_DASH2] = ACTIONS(1083), - [anon_sym_PLUS2] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), - [aux_sym_concatenation_token1] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(303), - [sym__special_character] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(307), - [sym_raw_string] = ACTIONS(1091), - [sym_ansi_c_string] = ACTIONS(1091), - [aux_sym_number_token1] = ACTIONS(311), - [aux_sym_number_token2] = ACTIONS(313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), - [anon_sym_BQUOTE] = ACTIONS(319), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(71), + [anon_sym_EQ_TILDE] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(1169), + [anon_sym_DASH_DASH2] = ACTIONS(1169), + [anon_sym_DASH2] = ACTIONS(1171), + [anon_sym_PLUS2] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(307), + [aux_sym_concatenation_token1] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(311), + [sym__special_character] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(315), + [anon_sym_SQUOTE] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(1179), + [aux_sym_number_token1] = ACTIONS(321), + [aux_sym_number_token2] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(327), + [anon_sym_BQUOTE] = ACTIONS(329), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_comment] = ACTIONS(73), [sym__concat] = ACTIONS(1205), - [sym_test_operator] = ACTIONS(1095), - [sym__brace_start] = ACTIONS(327), + [sym_test_operator] = ACTIONS(1181), + [sym__brace_start] = ACTIONS(337), }, - [462] = { - [sym__expression] = STATE(2808), - [sym_binary_expression] = STATE(2884), - [sym_ternary_expression] = STATE(2884), - [sym_unary_expression] = STATE(2884), - [sym_postfix_expression] = STATE(2884), - [sym_parenthesized_expression] = STATE(2884), - [sym_arithmetic_expansion] = STATE(2556), - [sym_brace_expression] = STATE(2556), - [sym_concatenation] = STATE(2884), - [sym_string] = STATE(2556), - [sym_translated_string] = STATE(2556), - [sym_number] = STATE(2556), - [sym_simple_expansion] = STATE(2556), - [sym_expansion] = STATE(2556), - [sym_command_substitution] = STATE(2556), - [sym_process_substitution] = STATE(2556), - [aux_sym__literal_repeat1] = STATE(2503), - [aux_sym_concatenation_repeat1] = STATE(2456), - [sym_word] = ACTIONS(1073), - [anon_sym_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(243), - [anon_sym_GT_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1075), - [anon_sym_BANG] = ACTIONS(1077), + [457] = { + [sym__expression] = STATE(2798), + [sym_binary_expression] = STATE(2984), + [sym_ternary_expression] = STATE(2984), + [sym_unary_expression] = STATE(2984), + [sym_postfix_expression] = STATE(2984), + [sym_parenthesized_expression] = STATE(2984), + [sym_arithmetic_expansion] = STATE(2525), + [sym_brace_expression] = STATE(2525), + [sym_concatenation] = STATE(2984), + [sym_string] = STATE(2525), + [sym_translated_string] = STATE(2525), + [sym_raw_string] = STATE(2525), + [sym_number] = STATE(2525), + [sym_simple_expansion] = STATE(2525), + [sym_expansion] = STATE(2525), + [sym_command_substitution] = STATE(2525), + [sym_process_substitution] = STATE(2525), + [aux_sym__literal_repeat1] = STATE(2502), + [aux_sym_concatenation_repeat1] = STATE(2532), + [sym_word] = ACTIONS(1163), + [anon_sym_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_AMP_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1167), [anon_sym_RBRACK] = ACTIONS(1207), - [anon_sym_EQ_TILDE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1081), - [anon_sym_DASH_DASH2] = ACTIONS(1081), - [anon_sym_DASH2] = ACTIONS(1083), - [anon_sym_PLUS2] = ACTIONS(1083), - [anon_sym_TILDE] = ACTIONS(1085), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(288), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(299), - [aux_sym_concatenation_token1] = ACTIONS(1087), - [anon_sym_DOLLAR] = ACTIONS(303), - [sym__special_character] = ACTIONS(1089), - [anon_sym_DQUOTE] = ACTIONS(307), - [sym_raw_string] = ACTIONS(1091), - [sym_ansi_c_string] = ACTIONS(1091), - [aux_sym_number_token1] = ACTIONS(311), - [aux_sym_number_token2] = ACTIONS(313), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(315), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(317), - [anon_sym_BQUOTE] = ACTIONS(319), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(321), - [anon_sym_LT_LPAREN] = ACTIONS(323), - [anon_sym_GT_LPAREN] = ACTIONS(323), - [sym_comment] = ACTIONS(71), + [anon_sym_EQ_TILDE] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(1169), + [anon_sym_DASH_DASH2] = ACTIONS(1169), + [anon_sym_DASH2] = ACTIONS(1171), + [anon_sym_PLUS2] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(307), + [aux_sym_concatenation_token1] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(311), + [sym__special_character] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(315), + [anon_sym_SQUOTE] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(1179), + [aux_sym_number_token1] = ACTIONS(321), + [aux_sym_number_token2] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(327), + [anon_sym_BQUOTE] = ACTIONS(329), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_comment] = ACTIONS(73), [sym__concat] = ACTIONS(1209), - [sym_test_operator] = ACTIONS(1095), - [sym__brace_start] = ACTIONS(327), + [sym_test_operator] = ACTIONS(1181), + [sym__brace_start] = ACTIONS(337), }, - [463] = { - [sym__expression] = STATE(3448), - [sym_binary_expression] = STATE(2674), - [sym_ternary_expression] = STATE(2674), - [sym_unary_expression] = STATE(2674), - [sym_postfix_expression] = STATE(2674), - [sym_parenthesized_expression] = STATE(2674), - [sym_arithmetic_expansion] = STATE(2732), - [sym_brace_expression] = STATE(2732), - [sym_concatenation] = STATE(2674), - [sym_string] = STATE(2732), - [sym_translated_string] = STATE(2732), - [sym_number] = STATE(2732), - [sym_simple_expansion] = STATE(2732), - [sym_expansion] = STATE(2732), - [sym_command_substitution] = STATE(2732), - [sym_process_substitution] = STATE(2732), - [aux_sym__literal_repeat1] = STATE(2548), - [aux_sym_concatenation_repeat1] = STATE(2637), - [sym_word] = ACTIONS(1211), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1099), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(290), - [anon_sym_AMP_AMP] = ACTIONS(290), - [anon_sym_PIPE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(243), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(243), - [anon_sym_GT] = ACTIONS(243), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(243), - [anon_sym_GT_GT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_BANG] = ACTIONS(1213), - [anon_sym_EQ_TILDE] = ACTIONS(243), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_PLUS_PLUS2] = ACTIONS(1215), - [anon_sym_DASH_DASH2] = ACTIONS(1215), - [anon_sym_DASH2] = ACTIONS(1217), - [anon_sym_PLUS2] = ACTIONS(1217), - [anon_sym_TILDE] = ACTIONS(1219), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1099), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1111), - [aux_sym_concatenation_token1] = ACTIONS(1113), - [anon_sym_DOLLAR] = ACTIONS(1115), - [sym__special_character] = ACTIONS(1221), - [anon_sym_DQUOTE] = ACTIONS(1119), - [sym_raw_string] = ACTIONS(1223), - [sym_ansi_c_string] = ACTIONS(1223), - [aux_sym_number_token1] = ACTIONS(1123), - [aux_sym_number_token2] = ACTIONS(1125), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1127), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1129), - [anon_sym_BQUOTE] = ACTIONS(1131), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1133), - [anon_sym_LT_LPAREN] = ACTIONS(1135), - [anon_sym_GT_LPAREN] = ACTIONS(1135), - [sym_comment] = ACTIONS(71), - [sym__concat] = ACTIONS(1113), - [sym_test_operator] = ACTIONS(1225), - [sym__brace_start] = ACTIONS(1139), + [458] = { + [sym__expression] = STATE(2798), + [sym_binary_expression] = STATE(2984), + [sym_ternary_expression] = STATE(2984), + [sym_unary_expression] = STATE(2984), + [sym_postfix_expression] = STATE(2984), + [sym_parenthesized_expression] = STATE(2984), + [sym_arithmetic_expansion] = STATE(2525), + [sym_brace_expression] = STATE(2525), + [sym_concatenation] = STATE(2984), + [sym_string] = STATE(2525), + [sym_translated_string] = STATE(2525), + [sym_raw_string] = STATE(2525), + [sym_number] = STATE(2525), + [sym_simple_expansion] = STATE(2525), + [sym_expansion] = STATE(2525), + [sym_command_substitution] = STATE(2525), + [sym_process_substitution] = STATE(2525), + [aux_sym__literal_repeat1] = STATE(2502), + [aux_sym_concatenation_repeat1] = STATE(2532), + [sym_word] = ACTIONS(1163), + [anon_sym_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_AMP_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_EQ_TILDE] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(1169), + [anon_sym_DASH_DASH2] = ACTIONS(1169), + [anon_sym_DASH2] = ACTIONS(1171), + [anon_sym_PLUS2] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(307), + [aux_sym_concatenation_token1] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(311), + [sym__special_character] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(315), + [anon_sym_SQUOTE] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(1179), + [aux_sym_number_token1] = ACTIONS(321), + [aux_sym_number_token2] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(327), + [anon_sym_BQUOTE] = ACTIONS(329), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_comment] = ACTIONS(73), + [sym__concat] = ACTIONS(1213), + [sym_test_operator] = ACTIONS(1181), + [sym__brace_start] = ACTIONS(337), }, - [464] = { - [sym_string] = STATE(476), - [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_STAR_STAR_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_PIPE] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1227), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_RPAREN] = ACTIONS(1227), - [anon_sym_SEMI_SEMI] = ACTIONS(1227), - [anon_sym_PIPE_AMP] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1229), - [anon_sym_EQ_TILDE] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [anon_sym_GT_PIPE] = ACTIONS(1227), - [anon_sym_LT_AMP_DASH] = ACTIONS(1227), - [anon_sym_GT_AMP_DASH] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1227), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1229), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(1229), - [sym__special_character] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1231), - [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_POUND] = ACTIONS(1229), - [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), - [aux_sym__simple_variable_name_token1] = ACTIONS(1233), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1233), - [anon_sym_AT2] = ACTIONS(1229), - [anon_sym_0] = ACTIONS(1229), - [anon_sym__] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1235), - [sym_variable_name] = ACTIONS(1237), - [sym_test_operator] = ACTIONS(1235), - [sym__bare_dollar] = ACTIONS(1235), - [sym__brace_start] = ACTIONS(1235), + [459] = { + [sym__expression] = STATE(3138), + [sym_binary_expression] = STATE(3140), + [sym_ternary_expression] = STATE(3140), + [sym_unary_expression] = STATE(3140), + [sym_postfix_expression] = STATE(3140), + [sym_parenthesized_expression] = STATE(3140), + [sym_arithmetic_expansion] = STATE(2549), + [sym_brace_expression] = STATE(2549), + [sym_concatenation] = STATE(3140), + [sym_string] = STATE(2549), + [sym_translated_string] = STATE(2549), + [sym_raw_string] = STATE(2549), + [sym_number] = STATE(2549), + [sym_simple_expansion] = STATE(2549), + [sym_expansion] = STATE(2549), + [sym_command_substitution] = STATE(2549), + [sym_process_substitution] = STATE(2549), + [aux_sym__literal_repeat1] = STATE(2724), + [aux_sym_concatenation_repeat1] = STATE(2510), + [sym_word] = ACTIONS(294), + [anon_sym_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_AMP_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(303), + [anon_sym_BANG] = ACTIONS(305), + [anon_sym_RBRACK] = ACTIONS(298), + [anon_sym_EQ_TILDE] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(187), + [anon_sym_DASH_DASH2] = ACTIONS(187), + [anon_sym_DASH2] = ACTIONS(189), + [anon_sym_PLUS2] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(307), + [aux_sym_concatenation_token1] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(311), + [sym__special_character] = ACTIONS(313), + [anon_sym_DQUOTE] = ACTIONS(315), + [anon_sym_SQUOTE] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(319), + [aux_sym_number_token1] = ACTIONS(321), + [aux_sym_number_token2] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(327), + [anon_sym_BQUOTE] = ACTIONS(329), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_comment] = ACTIONS(73), + [sym__concat] = ACTIONS(1175), + [sym_test_operator] = ACTIONS(335), + [sym__brace_start] = ACTIONS(337), }, - [465] = { - [sym_string] = STATE(476), - [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_STAR_STAR_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_PIPE_PIPE] = ACTIONS(1239), - [anon_sym_AMP_AMP] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_CARET] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1239), - [anon_sym_EQ_EQ] = ACTIONS(1239), - [anon_sym_BANG_EQ] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT_EQ] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1239), - [anon_sym_LT_LT] = ACTIONS(1239), - [anon_sym_GT_GT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1229), - [anon_sym_STAR] = ACTIONS(1229), - [anon_sym_SLASH] = ACTIONS(1239), - [anon_sym_PERCENT] = ACTIONS(1239), - [anon_sym_STAR_STAR] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_RPAREN] = ACTIONS(1239), - [anon_sym_SEMI_SEMI] = ACTIONS(1239), - [anon_sym_PIPE_AMP] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1229), - [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_AMP_DASH] = ACTIONS(1239), - [anon_sym_GT_AMP_DASH] = ACTIONS(1239), - [anon_sym_LT_LT_DASH] = ACTIONS(1239), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1239), - [anon_sym_LT_LT_LT] = ACTIONS(1239), - [anon_sym_QMARK] = ACTIONS(1229), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1239), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1239), - [anon_sym_DOLLAR] = ACTIONS(1229), - [sym__special_character] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1231), - [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_POUND] = ACTIONS(1229), - [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), - [aux_sym__simple_variable_name_token1] = ACTIONS(1233), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1233), - [anon_sym_AT2] = ACTIONS(1229), - [anon_sym_0] = ACTIONS(1229), - [anon_sym__] = ACTIONS(1229), - [sym_file_descriptor] = ACTIONS(1241), - [sym_variable_name] = ACTIONS(1237), - [sym_test_operator] = ACTIONS(1241), - [sym__bare_dollar] = ACTIONS(1241), - [sym__brace_start] = ACTIONS(1241), + [460] = { + [sym__expression] = STATE(2798), + [sym_binary_expression] = STATE(2984), + [sym_ternary_expression] = STATE(2984), + [sym_unary_expression] = STATE(2984), + [sym_postfix_expression] = STATE(2984), + [sym_parenthesized_expression] = STATE(2984), + [sym_arithmetic_expansion] = STATE(2525), + [sym_brace_expression] = STATE(2525), + [sym_concatenation] = STATE(2984), + [sym_string] = STATE(2525), + [sym_translated_string] = STATE(2525), + [sym_raw_string] = STATE(2525), + [sym_number] = STATE(2525), + [sym_simple_expansion] = STATE(2525), + [sym_expansion] = STATE(2525), + [sym_command_substitution] = STATE(2525), + [sym_process_substitution] = STATE(2525), + [aux_sym__literal_repeat1] = STATE(2502), + [aux_sym_concatenation_repeat1] = STATE(2532), + [sym_word] = ACTIONS(1163), + [anon_sym_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_AMP_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_RBRACK] = ACTIONS(1215), + [anon_sym_EQ_TILDE] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(1169), + [anon_sym_DASH_DASH2] = ACTIONS(1169), + [anon_sym_DASH2] = ACTIONS(1171), + [anon_sym_PLUS2] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(307), + [aux_sym_concatenation_token1] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(311), + [sym__special_character] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(315), + [anon_sym_SQUOTE] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(1179), + [aux_sym_number_token1] = ACTIONS(321), + [aux_sym_number_token2] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(327), + [anon_sym_BQUOTE] = ACTIONS(329), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_comment] = ACTIONS(73), + [sym__concat] = ACTIONS(1217), + [sym_test_operator] = ACTIONS(1181), + [sym__brace_start] = ACTIONS(337), }, - [466] = { - [sym_string] = STATE(508), - [sym_word] = ACTIONS(1227), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1227), - [anon_sym_EQ] = ACTIONS(1227), - [anon_sym_PLUS_PLUS] = ACTIONS(1227), - [anon_sym_DASH_DASH] = ACTIONS(1227), - [anon_sym_PLUS_EQ] = ACTIONS(1227), - [anon_sym_DASH_EQ] = ACTIONS(1227), - [anon_sym_STAR_EQ] = ACTIONS(1227), - [anon_sym_SLASH_EQ] = ACTIONS(1227), - [anon_sym_PERCENT_EQ] = ACTIONS(1227), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1227), - [anon_sym_LT_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_GT_EQ] = ACTIONS(1227), - [anon_sym_AMP_EQ] = ACTIONS(1227), - [anon_sym_CARET_EQ] = ACTIONS(1227), - [anon_sym_PIPE_EQ] = ACTIONS(1227), - [anon_sym_PIPE_PIPE] = ACTIONS(1227), - [anon_sym_AMP_AMP] = ACTIONS(1227), - [anon_sym_PIPE] = ACTIONS(1227), - [anon_sym_CARET] = ACTIONS(1227), - [anon_sym_AMP] = ACTIONS(1227), - [anon_sym_EQ_EQ] = ACTIONS(1227), - [anon_sym_BANG_EQ] = ACTIONS(1227), - [anon_sym_LT] = ACTIONS(1227), - [anon_sym_GT] = ACTIONS(1227), - [anon_sym_LT_EQ] = ACTIONS(1227), - [anon_sym_GT_EQ] = ACTIONS(1227), - [anon_sym_LT_LT] = ACTIONS(1227), - [anon_sym_GT_GT] = ACTIONS(1227), - [anon_sym_PLUS] = ACTIONS(1227), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1227), - [anon_sym_PERCENT] = ACTIONS(1227), - [anon_sym_STAR_STAR] = ACTIONS(1227), - [anon_sym_LPAREN] = ACTIONS(1227), - [anon_sym_PIPE_AMP] = ACTIONS(1227), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_RBRACK] = ACTIONS(1227), - [anon_sym_EQ_TILDE] = ACTIONS(1227), - [anon_sym_AMP_GT] = ACTIONS(1227), - [anon_sym_AMP_GT_GT] = ACTIONS(1227), - [anon_sym_LT_AMP] = ACTIONS(1227), - [anon_sym_GT_AMP] = ACTIONS(1227), - [anon_sym_GT_PIPE] = ACTIONS(1227), - [anon_sym_LT_AMP_DASH] = ACTIONS(1227), - [anon_sym_GT_AMP_DASH] = ACTIONS(1227), - [anon_sym_LT_LT_DASH] = ACTIONS(1227), - [anon_sym_LT_LT_LT] = ACTIONS(1227), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1227), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1227), - [anon_sym_DOLLAR] = ACTIONS(1243), - [sym__special_character] = ACTIONS(1227), - [anon_sym_DQUOTE] = ACTIONS(1245), - [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_POUND] = ACTIONS(1243), - [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), - [aux_sym__simple_variable_name_token1] = ACTIONS(1247), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1247), - [anon_sym_AT2] = ACTIONS(1243), - [anon_sym_0] = ACTIONS(1243), - [anon_sym__] = ACTIONS(1243), - [sym_file_descriptor] = ACTIONS(1235), - [sym_variable_name] = ACTIONS(1249), - [sym_test_operator] = ACTIONS(1235), - [sym__bare_dollar] = ACTIONS(1235), - [sym__brace_start] = ACTIONS(1235), + [461] = { + [sym__expression] = STATE(2798), + [sym_binary_expression] = STATE(2984), + [sym_ternary_expression] = STATE(2984), + [sym_unary_expression] = STATE(2984), + [sym_postfix_expression] = STATE(2984), + [sym_parenthesized_expression] = STATE(2984), + [sym_arithmetic_expansion] = STATE(2525), + [sym_brace_expression] = STATE(2525), + [sym_concatenation] = STATE(2984), + [sym_string] = STATE(2525), + [sym_translated_string] = STATE(2525), + [sym_raw_string] = STATE(2525), + [sym_number] = STATE(2525), + [sym_simple_expansion] = STATE(2525), + [sym_expansion] = STATE(2525), + [sym_command_substitution] = STATE(2525), + [sym_process_substitution] = STATE(2525), + [aux_sym__literal_repeat1] = STATE(2502), + [aux_sym_concatenation_repeat1] = STATE(2532), + [sym_word] = ACTIONS(1163), + [anon_sym_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_AMP_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(1165), + [anon_sym_BANG] = ACTIONS(1167), + [anon_sym_RBRACK] = ACTIONS(1219), + [anon_sym_EQ_TILDE] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(1169), + [anon_sym_DASH_DASH2] = ACTIONS(1169), + [anon_sym_DASH2] = ACTIONS(1171), + [anon_sym_PLUS2] = ACTIONS(1171), + [anon_sym_TILDE] = ACTIONS(1173), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(296), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(307), + [aux_sym_concatenation_token1] = ACTIONS(1175), + [anon_sym_DOLLAR] = ACTIONS(311), + [sym__special_character] = ACTIONS(1177), + [anon_sym_DQUOTE] = ACTIONS(315), + [anon_sym_SQUOTE] = ACTIONS(317), + [sym_ansi_c_string] = ACTIONS(1179), + [aux_sym_number_token1] = ACTIONS(321), + [aux_sym_number_token2] = ACTIONS(323), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(327), + [anon_sym_BQUOTE] = ACTIONS(329), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(331), + [anon_sym_LT_LPAREN] = ACTIONS(333), + [anon_sym_GT_LPAREN] = ACTIONS(333), + [sym_comment] = ACTIONS(73), + [sym__concat] = ACTIONS(1221), + [sym_test_operator] = ACTIONS(1181), + [sym__brace_start] = ACTIONS(337), }, - [467] = { - [sym_string] = STATE(508), + [462] = { + [sym__expression] = STATE(3213), + [sym_binary_expression] = STATE(2758), + [sym_ternary_expression] = STATE(2758), + [sym_unary_expression] = STATE(2758), + [sym_postfix_expression] = STATE(2758), + [sym_parenthesized_expression] = STATE(2758), + [sym_arithmetic_expansion] = STATE(2492), + [sym_brace_expression] = STATE(2492), + [sym_concatenation] = STATE(2758), + [sym_string] = STATE(2492), + [sym_translated_string] = STATE(2492), + [sym_raw_string] = STATE(2492), + [sym_number] = STATE(2492), + [sym_simple_expansion] = STATE(2492), + [sym_expansion] = STATE(2492), + [sym_command_substitution] = STATE(2492), + [sym_process_substitution] = STATE(2492), + [aux_sym__literal_repeat1] = STATE(2546), + [aux_sym_concatenation_repeat1] = STATE(2478), + [sym_word] = ACTIONS(1223), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1119), + [anon_sym_RPAREN_RPAREN] = ACTIONS(298), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_AMP_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1225), + [anon_sym_EQ_TILDE] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(1227), + [anon_sym_DASH_DASH2] = ACTIONS(1227), + [anon_sym_DASH2] = ACTIONS(1229), + [anon_sym_PLUS2] = ACTIONS(1229), + [anon_sym_TILDE] = ACTIONS(1231), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1119), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1131), + [aux_sym_concatenation_token1] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(1135), + [sym__special_character] = ACTIONS(1233), + [anon_sym_DQUOTE] = ACTIONS(1139), + [anon_sym_SQUOTE] = ACTIONS(1141), + [sym_ansi_c_string] = ACTIONS(1235), + [aux_sym_number_token1] = ACTIONS(1145), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1155), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(73), + [sym__concat] = ACTIONS(1133), + [sym_test_operator] = ACTIONS(1237), + [sym__brace_start] = ACTIONS(1161), + }, + [463] = { + [sym__expression] = STATE(3502), + [sym_binary_expression] = STATE(2758), + [sym_ternary_expression] = STATE(2758), + [sym_unary_expression] = STATE(2758), + [sym_postfix_expression] = STATE(2758), + [sym_parenthesized_expression] = STATE(2758), + [sym_arithmetic_expansion] = STATE(2777), + [sym_brace_expression] = STATE(2777), + [sym_concatenation] = STATE(2758), + [sym_string] = STATE(2777), + [sym_translated_string] = STATE(2777), + [sym_raw_string] = STATE(2777), + [sym_number] = STATE(2777), + [sym_simple_expansion] = STATE(2777), + [sym_expansion] = STATE(2777), + [sym_command_substitution] = STATE(2777), + [sym_process_substitution] = STATE(2777), + [aux_sym__literal_repeat1] = STATE(2546), + [aux_sym_concatenation_repeat1] = STATE(2740), [sym_word] = ACTIONS(1239), - [anon_sym_LPAREN_LPAREN] = 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_STAR_STAR_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_PIPE_PIPE] = ACTIONS(1239), - [anon_sym_AMP_AMP] = ACTIONS(1239), - [anon_sym_PIPE] = ACTIONS(1239), - [anon_sym_CARET] = ACTIONS(1239), - [anon_sym_AMP] = ACTIONS(1239), - [anon_sym_EQ_EQ] = ACTIONS(1239), - [anon_sym_BANG_EQ] = ACTIONS(1239), - [anon_sym_LT] = ACTIONS(1239), - [anon_sym_GT] = ACTIONS(1239), - [anon_sym_LT_EQ] = ACTIONS(1239), - [anon_sym_GT_EQ] = ACTIONS(1239), - [anon_sym_LT_LT] = ACTIONS(1239), - [anon_sym_GT_GT] = ACTIONS(1239), - [anon_sym_PLUS] = ACTIONS(1239), - [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_STAR] = ACTIONS(1243), - [anon_sym_SLASH] = ACTIONS(1239), - [anon_sym_PERCENT] = ACTIONS(1239), - [anon_sym_STAR_STAR] = ACTIONS(1239), - [anon_sym_LPAREN] = ACTIONS(1239), - [anon_sym_PIPE_AMP] = ACTIONS(1239), - [anon_sym_BANG] = ACTIONS(1243), - [anon_sym_RBRACK] = 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_AMP_DASH] = ACTIONS(1239), - [anon_sym_GT_AMP_DASH] = ACTIONS(1239), - [anon_sym_LT_LT_DASH] = ACTIONS(1239), - [anon_sym_LT_LT_LT] = ACTIONS(1239), - [anon_sym_QMARK] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1239), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1239), - [anon_sym_DOLLAR] = ACTIONS(1243), - [sym__special_character] = ACTIONS(1239), - [anon_sym_DQUOTE] = ACTIONS(1245), - [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_POUND] = ACTIONS(1243), - [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), - [aux_sym__simple_variable_name_token1] = ACTIONS(1247), - [aux_sym__multiline_variable_name_token1] = ACTIONS(1247), - [anon_sym_AT2] = ACTIONS(1243), - [anon_sym_0] = ACTIONS(1243), - [anon_sym__] = ACTIONS(1243), - [sym_file_descriptor] = ACTIONS(1241), - [sym_variable_name] = ACTIONS(1249), - [sym_test_operator] = ACTIONS(1241), - [sym__bare_dollar] = ACTIONS(1241), - [sym__brace_start] = ACTIONS(1241), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1119), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(298), + [anon_sym_AMP_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(249), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(249), + [anon_sym_GT] = ACTIONS(249), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(249), + [anon_sym_GT_GT] = ACTIONS(249), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1241), + [anon_sym_EQ_TILDE] = ACTIONS(249), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_PLUS_PLUS2] = ACTIONS(1243), + [anon_sym_DASH_DASH2] = ACTIONS(1243), + [anon_sym_DASH2] = ACTIONS(1245), + [anon_sym_PLUS2] = ACTIONS(1245), + [anon_sym_TILDE] = ACTIONS(1247), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1119), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1131), + [aux_sym_concatenation_token1] = ACTIONS(1133), + [anon_sym_DOLLAR] = ACTIONS(1135), + [sym__special_character] = ACTIONS(1249), + [anon_sym_DQUOTE] = ACTIONS(1139), + [anon_sym_SQUOTE] = ACTIONS(1141), + [sym_ansi_c_string] = ACTIONS(1251), + [aux_sym_number_token1] = ACTIONS(1145), + [aux_sym_number_token2] = ACTIONS(1147), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1149), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1151), + [anon_sym_BQUOTE] = ACTIONS(1153), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1155), + [anon_sym_LT_LPAREN] = ACTIONS(1157), + [anon_sym_GT_LPAREN] = ACTIONS(1157), + [sym_comment] = ACTIONS(73), + [sym__concat] = ACTIONS(1133), + [sym_test_operator] = ACTIONS(1253), + [sym__brace_start] = ACTIONS(1161), }, - [468] = { - [aux_sym_concatenation_repeat1] = STATE(473), - [sym_word] = ACTIONS(1251), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_PLUS_EQ] = ACTIONS(1253), - [anon_sym_DASH_EQ] = ACTIONS(1253), - [anon_sym_STAR_EQ] = ACTIONS(1253), - [anon_sym_SLASH_EQ] = ACTIONS(1253), - [anon_sym_PERCENT_EQ] = ACTIONS(1253), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1253), - [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(1253), - [anon_sym_PIPE_EQ] = ACTIONS(1253), + [464] = { + [sym_string] = STATE(480), + [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_STAR_STAR_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_PIPE_PIPE] = ACTIONS(1255), [anon_sym_AMP_AMP] = ACTIONS(1255), [anon_sym_PIPE] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1255), [anon_sym_AMP] = ACTIONS(1255), [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1255), [anon_sym_LT] = ACTIONS(1255), [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), [anon_sym_LT_LT] = ACTIONS(1255), [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1255), [anon_sym_RPAREN] = ACTIONS(1255), - [anon_sym_SEMI_SEMI] = ACTIONS(1251), - [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_SEMI_SEMI] = ACTIONS(1255), + [anon_sym_PIPE_AMP] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1257), [anon_sym_EQ_TILDE] = ACTIONS(1255), - [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_AMP_DASH] = ACTIONS(1251), - [anon_sym_GT_AMP_DASH] = ACTIONS(1251), - [anon_sym_LT_LT_DASH] = ACTIONS(1251), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(1253), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1251), - [aux_sym_concatenation_token1] = ACTIONS(256), - [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), + [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_AMP_DASH] = ACTIONS(1255), + [anon_sym_GT_AMP_DASH] = ACTIONS(1255), + [anon_sym_LT_LT_DASH] = ACTIONS(1255), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1255), + [anon_sym_LT_LT_LT] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1257), + [sym__special_character] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1255), + [sym_ansi_c_string] = ACTIONS(1255), + [aux_sym_number_token1] = ACTIONS(1255), + [aux_sym_number_token2] = ACTIONS(1255), + [anon_sym_POUND] = ACTIONS(1257), + [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_file_descriptor] = ACTIONS(1258), - [sym__concat] = ACTIONS(280), - [sym_test_operator] = ACTIONS(1260), - [sym__bare_dollar] = ACTIONS(1258), - [sym__brace_start] = ACTIONS(1258), + [aux_sym__simple_variable_name_token1] = ACTIONS(1261), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1261), + [anon_sym_AT2] = ACTIONS(1257), + [anon_sym_0] = ACTIONS(1257), + [anon_sym__] = ACTIONS(1257), + [sym_file_descriptor] = ACTIONS(1263), + [sym_variable_name] = ACTIONS(1265), + [sym_test_operator] = ACTIONS(1263), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), }, - [469] = { - [aux_sym_concatenation_repeat1] = STATE(473), - [sym_word] = ACTIONS(1251), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_PLUS_EQ] = ACTIONS(1253), - [anon_sym_DASH_EQ] = ACTIONS(1253), - [anon_sym_STAR_EQ] = ACTIONS(1253), - [anon_sym_SLASH_EQ] = ACTIONS(1253), - [anon_sym_PERCENT_EQ] = ACTIONS(1253), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1253), - [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(1253), - [anon_sym_PIPE_EQ] = ACTIONS(1253), + [465] = { + [sym_string] = STATE(480), + [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_STAR_STAR_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_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1257), + [anon_sym_STAR] = ACTIONS(1257), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_RPAREN] = ACTIONS(1267), + [anon_sym_SEMI_SEMI] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1257), + [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_AMP_DASH] = ACTIONS(1267), + [anon_sym_GT_AMP_DASH] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1267), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1267), + [anon_sym_LT_LT_LT] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1257), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1257), + [sym__special_character] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1259), + [anon_sym_SQUOTE] = ACTIONS(1267), + [sym_ansi_c_string] = ACTIONS(1267), + [aux_sym_number_token1] = ACTIONS(1267), + [aux_sym_number_token2] = ACTIONS(1267), + [anon_sym_POUND] = ACTIONS(1257), + [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), + [aux_sym__simple_variable_name_token1] = ACTIONS(1261), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1261), + [anon_sym_AT2] = ACTIONS(1257), + [anon_sym_0] = ACTIONS(1257), + [anon_sym__] = ACTIONS(1257), + [sym_file_descriptor] = ACTIONS(1269), + [sym_variable_name] = ACTIONS(1265), + [sym_test_operator] = ACTIONS(1269), + [sym__bare_dollar] = ACTIONS(1269), + [sym__brace_start] = ACTIONS(1269), + }, + [466] = { + [sym_string] = STATE(518), + [sym_word] = ACTIONS(1255), + [anon_sym_LPAREN_LPAREN] = 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_STAR_STAR_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_PIPE_PIPE] = ACTIONS(1255), [anon_sym_AMP_AMP] = ACTIONS(1255), [anon_sym_PIPE] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1253), + [anon_sym_CARET] = ACTIONS(1255), [anon_sym_AMP] = ACTIONS(1255), [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1253), + [anon_sym_BANG_EQ] = ACTIONS(1255), [anon_sym_LT] = ACTIONS(1255), [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), + [anon_sym_LT_EQ] = ACTIONS(1255), + [anon_sym_GT_EQ] = ACTIONS(1255), [anon_sym_LT_LT] = ACTIONS(1255), [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1263), - [anon_sym_RPAREN] = ACTIONS(1255), - [anon_sym_SEMI_SEMI] = ACTIONS(1251), - [anon_sym_PIPE_AMP] = ACTIONS(1251), + [anon_sym_PLUS] = ACTIONS(1255), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_PERCENT] = ACTIONS(1255), + [anon_sym_STAR_STAR] = ACTIONS(1255), + [anon_sym_LPAREN] = ACTIONS(1255), + [anon_sym_PIPE_AMP] = ACTIONS(1255), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_RBRACK] = ACTIONS(1255), [anon_sym_EQ_TILDE] = ACTIONS(1255), - [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_AMP_DASH] = ACTIONS(1251), - [anon_sym_GT_AMP_DASH] = ACTIONS(1251), - [anon_sym_LT_LT_DASH] = ACTIONS(1251), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(1253), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1251), - [aux_sym_concatenation_token1] = ACTIONS(256), - [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), + [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_AMP_DASH] = ACTIONS(1255), + [anon_sym_GT_AMP_DASH] = ACTIONS(1255), + [anon_sym_LT_LT_DASH] = ACTIONS(1255), + [anon_sym_LT_LT_LT] = ACTIONS(1255), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1255), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1255), + [anon_sym_DOLLAR] = ACTIONS(1271), + [sym__special_character] = ACTIONS(1255), + [anon_sym_DQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1255), + [sym_ansi_c_string] = ACTIONS(1255), + [aux_sym_number_token1] = ACTIONS(1255), + [aux_sym_number_token2] = ACTIONS(1255), + [anon_sym_POUND] = ACTIONS(1271), + [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_file_descriptor] = ACTIONS(1258), - [sym__concat] = ACTIONS(280), - [sym_test_operator] = ACTIONS(1260), - [sym__bare_dollar] = ACTIONS(1258), - [sym__brace_start] = ACTIONS(1258), + [aux_sym__simple_variable_name_token1] = ACTIONS(1275), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1275), + [anon_sym_AT2] = ACTIONS(1271), + [anon_sym_0] = ACTIONS(1271), + [anon_sym__] = ACTIONS(1271), + [sym_file_descriptor] = ACTIONS(1263), + [sym_variable_name] = ACTIONS(1277), + [sym_test_operator] = ACTIONS(1263), + [sym__bare_dollar] = ACTIONS(1263), + [sym__brace_start] = ACTIONS(1263), }, - [470] = { - [aux_sym_concatenation_repeat1] = STATE(472), - [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_STAR_STAR_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_PIPE_PIPE] = ACTIONS(1266), - [anon_sym_AMP_AMP] = ACTIONS(1266), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_EQ_EQ] = ACTIONS(1266), - [anon_sym_BANG_EQ] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_LT_EQ] = ACTIONS(1266), - [anon_sym_GT_EQ] = 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_LPAREN] = ACTIONS(1266), - [anon_sym_RPAREN] = 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_AMP_DASH] = ACTIONS(1266), - [anon_sym_GT_AMP_DASH] = ACTIONS(1266), - [anon_sym_LT_LT_DASH] = ACTIONS(1266), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1268), - [anon_sym_LT_LT_LT] = ACTIONS(1266), - [anon_sym_QMARK] = ACTIONS(1266), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1266), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1266), - [aux_sym_concatenation_token1] = ACTIONS(256), - [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_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1268), - [sym__concat] = ACTIONS(1270), - [sym_test_operator] = ACTIONS(1268), - [sym__bare_dollar] = ACTIONS(1268), - [sym__brace_start] = ACTIONS(1268), - }, - [471] = { - [aux_sym_concatenation_repeat1] = STATE(470), - [sym_word] = ACTIONS(1272), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_EQ] = ACTIONS(1272), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1272), - [anon_sym_PIPE_PIPE] = ACTIONS(1272), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_SEMI_SEMI] = ACTIONS(1272), - [anon_sym_PIPE_AMP] = ACTIONS(1272), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1272), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1272), - [anon_sym_LT_AMP_DASH] = ACTIONS(1272), - [anon_sym_GT_AMP_DASH] = ACTIONS(1272), - [anon_sym_LT_LT_DASH] = ACTIONS(1272), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1272), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1272), - [aux_sym_concatenation_token1] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_raw_string] = ACTIONS(1272), - [sym_ansi_c_string] = ACTIONS(1272), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), - [anon_sym_LT_LPAREN] = ACTIONS(1272), - [anon_sym_GT_LPAREN] = ACTIONS(1272), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(280), - [sym_test_operator] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), - }, - [472] = { - [aux_sym_concatenation_repeat1] = STATE(472), - [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_STAR_STAR_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_EQ] = ACTIONS(1276), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1276), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_GT_PIPE] = ACTIONS(1276), - [anon_sym_LT_AMP_DASH] = ACTIONS(1276), - [anon_sym_GT_AMP_DASH] = ACTIONS(1276), - [anon_sym_LT_LT_DASH] = ACTIONS(1276), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1278), - [anon_sym_LT_LT_LT] = ACTIONS(1276), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1276), - [aux_sym_concatenation_token1] = ACTIONS(1280), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_raw_string] = ACTIONS(1276), - [sym_ansi_c_string] = ACTIONS(1276), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), - [anon_sym_LT_LPAREN] = ACTIONS(1276), - [anon_sym_GT_LPAREN] = ACTIONS(1276), + [467] = { + [sym_string] = STATE(518), + [sym_word] = ACTIONS(1267), + [anon_sym_LPAREN_LPAREN] = 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_STAR_STAR_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_PIPE_PIPE] = ACTIONS(1267), + [anon_sym_AMP_AMP] = ACTIONS(1267), + [anon_sym_PIPE] = ACTIONS(1267), + [anon_sym_CARET] = ACTIONS(1267), + [anon_sym_AMP] = ACTIONS(1267), + [anon_sym_EQ_EQ] = ACTIONS(1267), + [anon_sym_BANG_EQ] = ACTIONS(1267), + [anon_sym_LT] = ACTIONS(1267), + [anon_sym_GT] = ACTIONS(1267), + [anon_sym_LT_EQ] = ACTIONS(1267), + [anon_sym_GT_EQ] = ACTIONS(1267), + [anon_sym_LT_LT] = ACTIONS(1267), + [anon_sym_GT_GT] = ACTIONS(1267), + [anon_sym_PLUS] = ACTIONS(1267), + [anon_sym_DASH] = ACTIONS(1271), + [anon_sym_STAR] = ACTIONS(1271), + [anon_sym_SLASH] = ACTIONS(1267), + [anon_sym_PERCENT] = ACTIONS(1267), + [anon_sym_STAR_STAR] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(1267), + [anon_sym_PIPE_AMP] = ACTIONS(1267), + [anon_sym_BANG] = ACTIONS(1271), + [anon_sym_RBRACK] = 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_AMP_DASH] = ACTIONS(1267), + [anon_sym_GT_AMP_DASH] = ACTIONS(1267), + [anon_sym_LT_LT_DASH] = ACTIONS(1267), + [anon_sym_LT_LT_LT] = ACTIONS(1267), + [anon_sym_QMARK] = ACTIONS(1271), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1267), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1267), + [anon_sym_DOLLAR] = ACTIONS(1271), + [sym__special_character] = ACTIONS(1267), + [anon_sym_DQUOTE] = ACTIONS(1273), + [anon_sym_SQUOTE] = ACTIONS(1267), + [sym_ansi_c_string] = ACTIONS(1267), + [aux_sym_number_token1] = ACTIONS(1267), + [aux_sym_number_token2] = ACTIONS(1267), + [anon_sym_POUND] = ACTIONS(1271), + [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_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1283), - [sym_test_operator] = ACTIONS(1278), - [sym__bare_dollar] = ACTIONS(1278), - [sym__brace_start] = ACTIONS(1278), + [aux_sym__simple_variable_name_token1] = ACTIONS(1275), + [aux_sym__multiline_variable_name_token1] = ACTIONS(1275), + [anon_sym_AT2] = ACTIONS(1271), + [anon_sym_0] = ACTIONS(1271), + [anon_sym__] = ACTIONS(1271), + [sym_file_descriptor] = ACTIONS(1269), + [sym_variable_name] = ACTIONS(1277), + [sym_test_operator] = ACTIONS(1269), + [sym__bare_dollar] = ACTIONS(1269), + [sym__brace_start] = ACTIONS(1269), }, - [473] = { - [aux_sym_concatenation_repeat1] = STATE(472), - [sym_word] = ACTIONS(1286), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1286), - [anon_sym_SEMI] = ACTIONS(1286), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_EQ] = ACTIONS(1286), - [anon_sym_DASH_EQ] = ACTIONS(1286), - [anon_sym_STAR_EQ] = ACTIONS(1286), - [anon_sym_SLASH_EQ] = ACTIONS(1286), - [anon_sym_PERCENT_EQ] = ACTIONS(1286), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1286), - [anon_sym_LT_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_GT_EQ] = ACTIONS(1286), - [anon_sym_AMP_EQ] = ACTIONS(1286), - [anon_sym_CARET_EQ] = ACTIONS(1286), - [anon_sym_PIPE_EQ] = ACTIONS(1286), - [anon_sym_PIPE_PIPE] = ACTIONS(1286), - [anon_sym_AMP_AMP] = ACTIONS(1286), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_CARET] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1286), - [anon_sym_BANG_EQ] = ACTIONS(1286), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1286), - [anon_sym_GT_EQ] = ACTIONS(1286), - [anon_sym_LT_LT] = ACTIONS(1286), - [anon_sym_GT_GT] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_PERCENT] = ACTIONS(1286), - [anon_sym_STAR_STAR] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_RPAREN] = ACTIONS(1286), - [anon_sym_SEMI_SEMI] = ACTIONS(1286), - [anon_sym_PIPE_AMP] = ACTIONS(1286), - [anon_sym_EQ_TILDE] = ACTIONS(1286), - [anon_sym_AMP_GT] = ACTIONS(1286), - [anon_sym_AMP_GT_GT] = ACTIONS(1286), - [anon_sym_LT_AMP] = ACTIONS(1286), - [anon_sym_GT_AMP] = ACTIONS(1286), - [anon_sym_GT_PIPE] = ACTIONS(1286), - [anon_sym_LT_AMP_DASH] = ACTIONS(1286), - [anon_sym_GT_AMP_DASH] = ACTIONS(1286), - [anon_sym_LT_LT_DASH] = ACTIONS(1286), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1288), - [anon_sym_LT_LT_LT] = ACTIONS(1286), - [anon_sym_QMARK] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1286), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1286), - [aux_sym_concatenation_token1] = ACTIONS(256), - [anon_sym_DOLLAR] = ACTIONS(1286), - [sym__special_character] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1286), - [sym_raw_string] = ACTIONS(1286), - [sym_ansi_c_string] = ACTIONS(1286), - [aux_sym_number_token1] = ACTIONS(1286), - [aux_sym_number_token2] = ACTIONS(1286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1286), - [anon_sym_BQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1286), - [anon_sym_LT_LPAREN] = ACTIONS(1286), - [anon_sym_GT_LPAREN] = ACTIONS(1286), + [468] = { + [aux_sym_concatenation_repeat1] = STATE(473), + [sym_word] = ACTIONS(1279), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_GT_EQ] = ACTIONS(1281), + [anon_sym_AMP_EQ] = ACTIONS(1281), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_SLASH] = ACTIONS(1281), + [anon_sym_PERCENT] = ACTIONS(1281), + [anon_sym_STAR_STAR] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_EQ_TILDE] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1279), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [anon_sym_GT_PIPE] = ACTIONS(1279), + [anon_sym_LT_AMP_DASH] = ACTIONS(1279), + [anon_sym_GT_AMP_DASH] = ACTIONS(1279), + [anon_sym_LT_LT_DASH] = ACTIONS(1279), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1286), + [anon_sym_LT_LT_LT] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1279), + [aux_sym_concatenation_token1] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym__special_character] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_SQUOTE] = ACTIONS(1279), + [sym_ansi_c_string] = ACTIONS(1279), + [aux_sym_number_token1] = ACTIONS(1279), + [aux_sym_number_token2] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1288), - [sym__concat] = ACTIONS(1290), + [sym_file_descriptor] = ACTIONS(1286), + [sym__concat] = ACTIONS(288), [sym_test_operator] = ACTIONS(1288), - [sym__bare_dollar] = ACTIONS(1288), - [sym__brace_start] = ACTIONS(1288), + [sym__bare_dollar] = ACTIONS(1286), + [sym__brace_start] = ACTIONS(1286), }, - [474] = { - [sym_word] = ACTIONS(1292), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1292), - [anon_sym_SEMI] = ACTIONS(1292), - [anon_sym_EQ] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_GT_EQ] = ACTIONS(1292), - [anon_sym_AMP_EQ] = ACTIONS(1292), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1292), - [anon_sym_PIPE_PIPE] = ACTIONS(1292), - [anon_sym_AMP_AMP] = ACTIONS(1292), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_EQ_EQ] = ACTIONS(1292), - [anon_sym_BANG_EQ] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1292), - [anon_sym_LT_EQ] = ACTIONS(1292), - [anon_sym_GT_EQ] = ACTIONS(1292), - [anon_sym_LT_LT] = ACTIONS(1292), - [anon_sym_GT_GT] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_SLASH] = ACTIONS(1292), - [anon_sym_PERCENT] = ACTIONS(1292), - [anon_sym_STAR_STAR] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_RPAREN] = ACTIONS(1292), - [anon_sym_SEMI_SEMI] = ACTIONS(1292), - [anon_sym_PIPE_AMP] = ACTIONS(1292), - [anon_sym_EQ_TILDE] = ACTIONS(1292), - [anon_sym_AMP_GT] = ACTIONS(1292), - [anon_sym_AMP_GT_GT] = ACTIONS(1292), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), - [anon_sym_GT_PIPE] = ACTIONS(1292), - [anon_sym_LT_AMP_DASH] = ACTIONS(1292), - [anon_sym_GT_AMP_DASH] = ACTIONS(1292), - [anon_sym_LT_LT_DASH] = ACTIONS(1292), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1292), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1292), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1292), - [aux_sym_concatenation_token1] = ACTIONS(1292), - [anon_sym_DOLLAR] = ACTIONS(1292), - [sym__special_character] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1292), - [sym_raw_string] = ACTIONS(1292), - [sym_ansi_c_string] = ACTIONS(1292), - [aux_sym_number_token1] = ACTIONS(1292), - [aux_sym_number_token2] = ACTIONS(1292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1292), - [anon_sym_LT_LPAREN] = ACTIONS(1292), - [anon_sym_GT_LPAREN] = ACTIONS(1292), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1294), - [sym__concat] = ACTIONS(1294), - [sym_test_operator] = ACTIONS(1294), - [sym__bare_dollar] = ACTIONS(1294), - [sym__brace_start] = ACTIONS(1294), - }, - [475] = { - [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_STAR_STAR_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_GT_EQ] = ACTIONS(1276), - [anon_sym_AMP_EQ] = ACTIONS(1276), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1276), - [anon_sym_PIPE_PIPE] = ACTIONS(1276), - [anon_sym_AMP_AMP] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1276), - [anon_sym_GT_EQ] = ACTIONS(1276), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_RPAREN] = ACTIONS(1276), - [anon_sym_SEMI_SEMI] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1276), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1276), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_GT_PIPE] = ACTIONS(1276), - [anon_sym_LT_AMP_DASH] = ACTIONS(1276), - [anon_sym_GT_AMP_DASH] = ACTIONS(1276), - [anon_sym_LT_LT_DASH] = ACTIONS(1276), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1278), - [anon_sym_LT_LT_LT] = ACTIONS(1276), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1276), - [aux_sym_concatenation_token1] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym_raw_string] = ACTIONS(1276), - [sym_ansi_c_string] = ACTIONS(1276), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1276), - [anon_sym_LT_LPAREN] = ACTIONS(1276), - [anon_sym_GT_LPAREN] = ACTIONS(1276), + [469] = { + [aux_sym_concatenation_repeat1] = STATE(473), + [sym_word] = ACTIONS(1279), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_GT_EQ] = ACTIONS(1281), + [anon_sym_AMP_EQ] = ACTIONS(1281), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_SLASH] = ACTIONS(1281), + [anon_sym_PERCENT] = ACTIONS(1281), + [anon_sym_STAR_STAR] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1291), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_EQ_TILDE] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1279), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [anon_sym_GT_PIPE] = ACTIONS(1279), + [anon_sym_LT_AMP_DASH] = ACTIONS(1279), + [anon_sym_GT_AMP_DASH] = ACTIONS(1279), + [anon_sym_LT_LT_DASH] = ACTIONS(1279), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1286), + [anon_sym_LT_LT_LT] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1279), + [aux_sym_concatenation_token1] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym__special_character] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_SQUOTE] = ACTIONS(1279), + [sym_ansi_c_string] = ACTIONS(1279), + [aux_sym_number_token1] = ACTIONS(1279), + [aux_sym_number_token2] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1278), - [sym_test_operator] = ACTIONS(1278), - [sym__bare_dollar] = ACTIONS(1278), - [sym__brace_start] = ACTIONS(1278), + [sym_file_descriptor] = ACTIONS(1286), + [sym__concat] = ACTIONS(288), + [sym_test_operator] = ACTIONS(1288), + [sym__bare_dollar] = ACTIONS(1286), + [sym__brace_start] = ACTIONS(1286), }, - [476] = { - [sym_word] = ACTIONS(1296), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_SEMI] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_PERCENT_EQ] = ACTIONS(1296), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1296), - [anon_sym_LT_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_GT_EQ] = ACTIONS(1296), - [anon_sym_AMP_EQ] = ACTIONS(1296), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_PIPE_EQ] = ACTIONS(1296), - [anon_sym_PIPE_PIPE] = ACTIONS(1296), - [anon_sym_AMP_AMP] = ACTIONS(1296), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_LT_EQ] = ACTIONS(1296), - [anon_sym_GT_EQ] = ACTIONS(1296), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1296), - [anon_sym_PERCENT] = ACTIONS(1296), - [anon_sym_STAR_STAR] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_RPAREN] = ACTIONS(1296), - [anon_sym_SEMI_SEMI] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1296), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [anon_sym_AMP_GT_GT] = ACTIONS(1296), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_GT_PIPE] = ACTIONS(1296), - [anon_sym_LT_AMP_DASH] = ACTIONS(1296), - [anon_sym_GT_AMP_DASH] = ACTIONS(1296), - [anon_sym_LT_LT_DASH] = ACTIONS(1296), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1298), - [anon_sym_LT_LT_LT] = ACTIONS(1296), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1296), - [aux_sym_concatenation_token1] = ACTIONS(1296), - [anon_sym_DOLLAR] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1296), - [sym_raw_string] = ACTIONS(1296), - [sym_ansi_c_string] = ACTIONS(1296), - [aux_sym_number_token1] = ACTIONS(1296), - [aux_sym_number_token2] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_BQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1296), - [anon_sym_LT_LPAREN] = ACTIONS(1296), - [anon_sym_GT_LPAREN] = ACTIONS(1296), + [470] = { + [aux_sym_concatenation_repeat1] = STATE(472), + [sym_word] = ACTIONS(1294), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_SEMI] = ACTIONS(1294), + [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_EQ] = ACTIONS(1294), + [anon_sym_DASH_EQ] = ACTIONS(1294), + [anon_sym_STAR_EQ] = ACTIONS(1294), + [anon_sym_SLASH_EQ] = ACTIONS(1294), + [anon_sym_PERCENT_EQ] = ACTIONS(1294), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1294), + [anon_sym_LT_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_GT_EQ] = ACTIONS(1294), + [anon_sym_AMP_EQ] = ACTIONS(1294), + [anon_sym_CARET_EQ] = ACTIONS(1294), + [anon_sym_PIPE_EQ] = ACTIONS(1294), + [anon_sym_PIPE_PIPE] = ACTIONS(1294), + [anon_sym_AMP_AMP] = ACTIONS(1294), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_EQ_EQ] = ACTIONS(1294), + [anon_sym_BANG_EQ] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_LT_EQ] = ACTIONS(1294), + [anon_sym_GT_EQ] = ACTIONS(1294), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_SLASH] = ACTIONS(1294), + [anon_sym_PERCENT] = ACTIONS(1294), + [anon_sym_STAR_STAR] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_RPAREN] = ACTIONS(1294), + [anon_sym_SEMI_SEMI] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1294), + [anon_sym_EQ_TILDE] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1294), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_GT_PIPE] = ACTIONS(1294), + [anon_sym_LT_AMP_DASH] = ACTIONS(1294), + [anon_sym_GT_AMP_DASH] = ACTIONS(1294), + [anon_sym_LT_LT_DASH] = ACTIONS(1294), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1294), + [anon_sym_QMARK] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1294), + [aux_sym_concatenation_token1] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1294), + [anon_sym_SQUOTE] = ACTIONS(1294), + [sym_ansi_c_string] = ACTIONS(1294), + [aux_sym_number_token1] = ACTIONS(1294), + [aux_sym_number_token2] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), + [anon_sym_LT_LPAREN] = ACTIONS(1294), + [anon_sym_GT_LPAREN] = ACTIONS(1294), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1298), + [sym_file_descriptor] = ACTIONS(1296), [sym__concat] = ACTIONS(1298), - [sym_test_operator] = ACTIONS(1298), - [sym__bare_dollar] = ACTIONS(1298), - [sym__brace_start] = ACTIONS(1298), + [sym_test_operator] = ACTIONS(1296), + [sym__bare_dollar] = ACTIONS(1296), + [sym__brace_start] = ACTIONS(1296), }, - [477] = { + [471] = { + [aux_sym_concatenation_repeat1] = STATE(470), [sym_word] = ACTIONS(1300), [anon_sym_LPAREN_LPAREN] = ACTIONS(1300), [anon_sym_SEMI] = ACTIONS(1300), @@ -73113,11 +73562,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1300), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1300), - [aux_sym_concatenation_token1] = ACTIONS(1300), + [aux_sym_concatenation_token1] = ACTIONS(262), [anon_sym_DOLLAR] = ACTIONS(1300), [sym__special_character] = ACTIONS(1300), [anon_sym_DQUOTE] = ACTIONS(1300), - [sym_raw_string] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), [sym_ansi_c_string] = ACTIONS(1300), [aux_sym_number_token1] = ACTIONS(1300), [aux_sym_number_token2] = ACTIONS(1300), @@ -73129,12 +73578,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1300), [sym_comment] = ACTIONS(3), [sym_file_descriptor] = ACTIONS(1302), - [sym__concat] = ACTIONS(1302), + [sym__concat] = ACTIONS(288), [sym_test_operator] = ACTIONS(1302), [sym__bare_dollar] = ACTIONS(1302), [sym__brace_start] = ACTIONS(1302), }, - [478] = { + [472] = { + [aux_sym_concatenation_repeat1] = STATE(472), [sym_word] = ACTIONS(1304), [anon_sym_LPAREN_LPAREN] = ACTIONS(1304), [anon_sym_SEMI] = ACTIONS(1304), @@ -73189,11 +73639,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1304), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1304), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1304), - [aux_sym_concatenation_token1] = ACTIONS(1304), + [aux_sym_concatenation_token1] = ACTIONS(1308), [anon_sym_DOLLAR] = ACTIONS(1304), [sym__special_character] = ACTIONS(1304), [anon_sym_DQUOTE] = ACTIONS(1304), - [sym_raw_string] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), [sym_ansi_c_string] = ACTIONS(1304), [aux_sym_number_token1] = ACTIONS(1304), [aux_sym_number_token2] = ACTIONS(1304), @@ -73205,240 +73655,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1304), [sym_comment] = ACTIONS(3), [sym_file_descriptor] = ACTIONS(1306), - [sym__concat] = ACTIONS(1306), + [sym__concat] = ACTIONS(1311), [sym_test_operator] = ACTIONS(1306), [sym__bare_dollar] = ACTIONS(1306), [sym__brace_start] = ACTIONS(1306), }, - [479] = { - [sym_word] = ACTIONS(1308), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_SEMI] = ACTIONS(1308), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_STAR_EQ] = ACTIONS(1308), - [anon_sym_SLASH_EQ] = ACTIONS(1308), - [anon_sym_PERCENT_EQ] = ACTIONS(1308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1308), - [anon_sym_LT_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_GT_EQ] = ACTIONS(1308), - [anon_sym_AMP_EQ] = ACTIONS(1308), - [anon_sym_CARET_EQ] = ACTIONS(1308), - [anon_sym_PIPE_EQ] = ACTIONS(1308), - [anon_sym_PIPE_PIPE] = ACTIONS(1308), - [anon_sym_AMP_AMP] = ACTIONS(1308), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1308), - [anon_sym_GT_EQ] = ACTIONS(1308), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_PERCENT] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_RPAREN] = ACTIONS(1308), - [anon_sym_SEMI_SEMI] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1308), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_AMP_GT_GT] = ACTIONS(1308), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_GT_PIPE] = ACTIONS(1308), - [anon_sym_LT_AMP_DASH] = ACTIONS(1308), - [anon_sym_GT_AMP_DASH] = ACTIONS(1308), - [anon_sym_LT_LT_DASH] = ACTIONS(1308), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1308), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1308), - [aux_sym_concatenation_token1] = ACTIONS(1308), - [anon_sym_DOLLAR] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1308), - [sym_raw_string] = ACTIONS(1308), - [sym_ansi_c_string] = ACTIONS(1308), - [aux_sym_number_token1] = ACTIONS(1308), - [aux_sym_number_token2] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1308), - [anon_sym_LT_LPAREN] = ACTIONS(1308), - [anon_sym_GT_LPAREN] = ACTIONS(1308), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1310), - [sym__concat] = ACTIONS(1310), - [sym_test_operator] = ACTIONS(1310), - [sym__bare_dollar] = ACTIONS(1310), - [sym__brace_start] = ACTIONS(1310), - }, - [480] = { - [sym_word] = ACTIONS(1312), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1312), - [anon_sym_SEMI] = ACTIONS(1312), - [anon_sym_EQ] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_EQ] = ACTIONS(1312), - [anon_sym_DASH_EQ] = ACTIONS(1312), - [anon_sym_STAR_EQ] = ACTIONS(1312), - [anon_sym_SLASH_EQ] = ACTIONS(1312), - [anon_sym_PERCENT_EQ] = ACTIONS(1312), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1312), - [anon_sym_LT_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_GT_EQ] = ACTIONS(1312), - [anon_sym_AMP_EQ] = ACTIONS(1312), - [anon_sym_CARET_EQ] = ACTIONS(1312), - [anon_sym_PIPE_EQ] = ACTIONS(1312), - [anon_sym_PIPE_PIPE] = ACTIONS(1312), - [anon_sym_AMP_AMP] = ACTIONS(1312), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1312), - [anon_sym_GT_EQ] = ACTIONS(1312), - [anon_sym_LT_LT] = ACTIONS(1312), - [anon_sym_GT_GT] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_PERCENT] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_RPAREN] = ACTIONS(1312), - [anon_sym_SEMI_SEMI] = ACTIONS(1312), - [anon_sym_PIPE_AMP] = ACTIONS(1312), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_AMP_GT] = ACTIONS(1312), - [anon_sym_AMP_GT_GT] = ACTIONS(1312), - [anon_sym_LT_AMP] = ACTIONS(1312), - [anon_sym_GT_AMP] = ACTIONS(1312), - [anon_sym_GT_PIPE] = ACTIONS(1312), - [anon_sym_LT_AMP_DASH] = ACTIONS(1312), - [anon_sym_GT_AMP_DASH] = ACTIONS(1312), - [anon_sym_LT_LT_DASH] = ACTIONS(1312), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1314), - [anon_sym_LT_LT_LT] = ACTIONS(1312), - [anon_sym_QMARK] = ACTIONS(1312), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1312), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1312), - [aux_sym_concatenation_token1] = ACTIONS(1312), - [anon_sym_DOLLAR] = ACTIONS(1312), - [sym__special_character] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1312), - [sym_raw_string] = ACTIONS(1312), - [sym_ansi_c_string] = ACTIONS(1312), - [aux_sym_number_token1] = ACTIONS(1312), - [aux_sym_number_token2] = ACTIONS(1312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), - [anon_sym_BQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1312), - [anon_sym_LT_LPAREN] = ACTIONS(1312), - [anon_sym_GT_LPAREN] = ACTIONS(1312), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1314), - [sym__concat] = ACTIONS(1314), - [sym_test_operator] = ACTIONS(1314), - [sym__bare_dollar] = ACTIONS(1314), - [sym__brace_start] = ACTIONS(1314), - }, - [481] = { - [sym_word] = ACTIONS(1316), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1316), - [anon_sym_SEMI] = ACTIONS(1316), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_STAR_EQ] = ACTIONS(1316), - [anon_sym_SLASH_EQ] = ACTIONS(1316), - [anon_sym_PERCENT_EQ] = ACTIONS(1316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1316), - [anon_sym_LT_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_GT_EQ] = ACTIONS(1316), - [anon_sym_AMP_EQ] = ACTIONS(1316), - [anon_sym_CARET_EQ] = ACTIONS(1316), - [anon_sym_PIPE_EQ] = ACTIONS(1316), - [anon_sym_PIPE_PIPE] = ACTIONS(1316), - [anon_sym_AMP_AMP] = ACTIONS(1316), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1316), - [anon_sym_GT_EQ] = ACTIONS(1316), - [anon_sym_LT_LT] = ACTIONS(1316), - [anon_sym_GT_GT] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_RPAREN] = ACTIONS(1316), - [anon_sym_SEMI_SEMI] = ACTIONS(1316), - [anon_sym_PIPE_AMP] = ACTIONS(1316), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_AMP_GT] = ACTIONS(1316), - [anon_sym_AMP_GT_GT] = ACTIONS(1316), - [anon_sym_LT_AMP] = ACTIONS(1316), - [anon_sym_GT_AMP] = ACTIONS(1316), - [anon_sym_GT_PIPE] = ACTIONS(1316), - [anon_sym_LT_AMP_DASH] = ACTIONS(1316), - [anon_sym_GT_AMP_DASH] = ACTIONS(1316), - [anon_sym_LT_LT_DASH] = ACTIONS(1316), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1318), - [anon_sym_LT_LT_LT] = ACTIONS(1316), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1316), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1316), - [aux_sym_concatenation_token1] = ACTIONS(1316), - [anon_sym_DOLLAR] = ACTIONS(1316), - [sym__special_character] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1316), - [sym_raw_string] = ACTIONS(1316), - [sym_ansi_c_string] = ACTIONS(1316), - [aux_sym_number_token1] = ACTIONS(1316), - [aux_sym_number_token2] = ACTIONS(1316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), - [anon_sym_BQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1316), - [anon_sym_LT_LPAREN] = ACTIONS(1316), - [anon_sym_GT_LPAREN] = ACTIONS(1316), + [473] = { + [aux_sym_concatenation_repeat1] = STATE(472), + [sym_word] = ACTIONS(1314), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1314), + [anon_sym_SEMI] = ACTIONS(1314), + [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_EQ] = ACTIONS(1314), + [anon_sym_DASH_EQ] = ACTIONS(1314), + [anon_sym_STAR_EQ] = ACTIONS(1314), + [anon_sym_SLASH_EQ] = ACTIONS(1314), + [anon_sym_PERCENT_EQ] = ACTIONS(1314), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1314), + [anon_sym_LT_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_GT_EQ] = ACTIONS(1314), + [anon_sym_AMP_EQ] = ACTIONS(1314), + [anon_sym_CARET_EQ] = ACTIONS(1314), + [anon_sym_PIPE_EQ] = ACTIONS(1314), + [anon_sym_PIPE_PIPE] = ACTIONS(1314), + [anon_sym_AMP_AMP] = ACTIONS(1314), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_CARET] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1314), + [anon_sym_BANG_EQ] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_GT] = ACTIONS(1314), + [anon_sym_LT_EQ] = ACTIONS(1314), + [anon_sym_GT_EQ] = ACTIONS(1314), + [anon_sym_LT_LT] = ACTIONS(1314), + [anon_sym_GT_GT] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_SLASH] = ACTIONS(1314), + [anon_sym_PERCENT] = ACTIONS(1314), + [anon_sym_STAR_STAR] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_RPAREN] = ACTIONS(1314), + [anon_sym_SEMI_SEMI] = ACTIONS(1314), + [anon_sym_PIPE_AMP] = ACTIONS(1314), + [anon_sym_EQ_TILDE] = ACTIONS(1314), + [anon_sym_AMP_GT] = ACTIONS(1314), + [anon_sym_AMP_GT_GT] = ACTIONS(1314), + [anon_sym_LT_AMP] = ACTIONS(1314), + [anon_sym_GT_AMP] = ACTIONS(1314), + [anon_sym_GT_PIPE] = ACTIONS(1314), + [anon_sym_LT_AMP_DASH] = ACTIONS(1314), + [anon_sym_GT_AMP_DASH] = ACTIONS(1314), + [anon_sym_LT_LT_DASH] = ACTIONS(1314), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1316), + [anon_sym_LT_LT_LT] = ACTIONS(1314), + [anon_sym_QMARK] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1314), + [aux_sym_concatenation_token1] = ACTIONS(262), + [anon_sym_DOLLAR] = ACTIONS(1314), + [sym__special_character] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1314), + [anon_sym_SQUOTE] = ACTIONS(1314), + [sym_ansi_c_string] = ACTIONS(1314), + [aux_sym_number_token1] = ACTIONS(1314), + [aux_sym_number_token2] = ACTIONS(1314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1314), + [anon_sym_BQUOTE] = ACTIONS(1314), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), + [anon_sym_LT_LPAREN] = ACTIONS(1314), + [anon_sym_GT_LPAREN] = ACTIONS(1314), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1318), + [sym_file_descriptor] = ACTIONS(1316), [sym__concat] = ACTIONS(1318), - [sym_test_operator] = ACTIONS(1318), - [sym__bare_dollar] = ACTIONS(1318), - [sym__brace_start] = ACTIONS(1318), + [sym_test_operator] = ACTIONS(1316), + [sym__bare_dollar] = ACTIONS(1316), + [sym__brace_start] = ACTIONS(1316), }, - [482] = { + [474] = { [sym_word] = ACTIONS(1320), [anon_sym_LPAREN_LPAREN] = ACTIONS(1320), [anon_sym_SEMI] = ACTIONS(1320), @@ -73497,7 +73796,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1320), [sym__special_character] = ACTIONS(1320), [anon_sym_DQUOTE] = ACTIONS(1320), - [sym_raw_string] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1320), [sym_ansi_c_string] = ACTIONS(1320), [aux_sym_number_token1] = ACTIONS(1320), [aux_sym_number_token2] = ACTIONS(1320), @@ -73514,7 +73813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1322), [sym__brace_start] = ACTIONS(1322), }, - [483] = { + [475] = { [sym_word] = ACTIONS(1324), [anon_sym_LPAREN_LPAREN] = ACTIONS(1324), [anon_sym_SEMI] = ACTIONS(1324), @@ -73573,7 +73872,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1324), [sym__special_character] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(1324), - [sym_raw_string] = ACTIONS(1324), + [anon_sym_SQUOTE] = ACTIONS(1324), [sym_ansi_c_string] = ACTIONS(1324), [aux_sym_number_token1] = ACTIONS(1324), [aux_sym_number_token2] = ACTIONS(1324), @@ -73590,7 +73889,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1326), [sym__brace_start] = ACTIONS(1326), }, - [484] = { + [476] = { [sym_word] = ACTIONS(1328), [anon_sym_LPAREN_LPAREN] = ACTIONS(1328), [anon_sym_SEMI] = ACTIONS(1328), @@ -73649,7 +73948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1328), [sym__special_character] = ACTIONS(1328), [anon_sym_DQUOTE] = ACTIONS(1328), - [sym_raw_string] = ACTIONS(1328), + [anon_sym_SQUOTE] = ACTIONS(1328), [sym_ansi_c_string] = ACTIONS(1328), [aux_sym_number_token1] = ACTIONS(1328), [aux_sym_number_token2] = ACTIONS(1328), @@ -73666,7 +73965,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1330), [sym__brace_start] = ACTIONS(1330), }, - [485] = { + [477] = { [sym_word] = ACTIONS(1332), [anon_sym_LPAREN_LPAREN] = ACTIONS(1332), [anon_sym_SEMI] = ACTIONS(1332), @@ -73725,7 +74024,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1332), [sym__special_character] = ACTIONS(1332), [anon_sym_DQUOTE] = ACTIONS(1332), - [sym_raw_string] = ACTIONS(1332), + [anon_sym_SQUOTE] = ACTIONS(1332), [sym_ansi_c_string] = ACTIONS(1332), [aux_sym_number_token1] = ACTIONS(1332), [aux_sym_number_token2] = ACTIONS(1332), @@ -73742,7 +74041,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1334), [sym__brace_start] = ACTIONS(1334), }, - [486] = { + [478] = { [sym_word] = ACTIONS(1336), [anon_sym_LPAREN_LPAREN] = ACTIONS(1336), [anon_sym_SEMI] = ACTIONS(1336), @@ -73801,7 +74100,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1336), [sym__special_character] = ACTIONS(1336), [anon_sym_DQUOTE] = ACTIONS(1336), - [sym_raw_string] = ACTIONS(1336), + [anon_sym_SQUOTE] = ACTIONS(1336), [sym_ansi_c_string] = ACTIONS(1336), [aux_sym_number_token1] = ACTIONS(1336), [aux_sym_number_token2] = ACTIONS(1336), @@ -73818,7 +74117,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1338), [sym__brace_start] = ACTIONS(1338), }, - [487] = { + [479] = { [sym_word] = ACTIONS(1340), [anon_sym_LPAREN_LPAREN] = ACTIONS(1340), [anon_sym_SEMI] = ACTIONS(1340), @@ -73877,7 +74176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1340), [sym__special_character] = ACTIONS(1340), [anon_sym_DQUOTE] = ACTIONS(1340), - [sym_raw_string] = ACTIONS(1340), + [anon_sym_SQUOTE] = ACTIONS(1340), [sym_ansi_c_string] = ACTIONS(1340), [aux_sym_number_token1] = ACTIONS(1340), [aux_sym_number_token2] = ACTIONS(1340), @@ -73894,7 +74193,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1342), [sym__brace_start] = ACTIONS(1342), }, - [488] = { + [480] = { [sym_word] = ACTIONS(1344), [anon_sym_LPAREN_LPAREN] = ACTIONS(1344), [anon_sym_SEMI] = ACTIONS(1344), @@ -73953,7 +74252,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1344), [sym__special_character] = ACTIONS(1344), [anon_sym_DQUOTE] = ACTIONS(1344), - [sym_raw_string] = ACTIONS(1344), + [anon_sym_SQUOTE] = ACTIONS(1344), [sym_ansi_c_string] = ACTIONS(1344), [aux_sym_number_token1] = ACTIONS(1344), [aux_sym_number_token2] = ACTIONS(1344), @@ -73970,7 +74269,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1346), [sym__brace_start] = ACTIONS(1346), }, - [489] = { + [481] = { [sym_word] = ACTIONS(1348), [anon_sym_LPAREN_LPAREN] = ACTIONS(1348), [anon_sym_SEMI] = ACTIONS(1348), @@ -74029,7 +74328,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1348), [sym__special_character] = ACTIONS(1348), [anon_sym_DQUOTE] = ACTIONS(1348), - [sym_raw_string] = ACTIONS(1348), + [anon_sym_SQUOTE] = ACTIONS(1348), [sym_ansi_c_string] = ACTIONS(1348), [aux_sym_number_token1] = ACTIONS(1348), [aux_sym_number_token2] = ACTIONS(1348), @@ -74046,7 +74345,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1350), [sym__brace_start] = ACTIONS(1350), }, - [490] = { + [482] = { + [sym_word] = ACTIONS(1304), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1304), + [anon_sym_SEMI] = ACTIONS(1304), + [anon_sym_EQ] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), + [anon_sym_STAR_EQ] = ACTIONS(1304), + [anon_sym_SLASH_EQ] = ACTIONS(1304), + [anon_sym_PERCENT_EQ] = ACTIONS(1304), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1304), + [anon_sym_LT_LT_EQ] = ACTIONS(1304), + [anon_sym_GT_GT_EQ] = ACTIONS(1304), + [anon_sym_AMP_EQ] = ACTIONS(1304), + [anon_sym_CARET_EQ] = ACTIONS(1304), + [anon_sym_PIPE_EQ] = ACTIONS(1304), + [anon_sym_PIPE_PIPE] = ACTIONS(1304), + [anon_sym_AMP_AMP] = ACTIONS(1304), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_CARET] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1304), + [anon_sym_GT_EQ] = ACTIONS(1304), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_SLASH] = ACTIONS(1304), + [anon_sym_PERCENT] = ACTIONS(1304), + [anon_sym_STAR_STAR] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_RPAREN] = ACTIONS(1304), + [anon_sym_SEMI_SEMI] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1304), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1304), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_GT_PIPE] = ACTIONS(1304), + [anon_sym_LT_AMP_DASH] = ACTIONS(1304), + [anon_sym_GT_AMP_DASH] = ACTIONS(1304), + [anon_sym_LT_LT_DASH] = ACTIONS(1304), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1306), + [anon_sym_LT_LT_LT] = ACTIONS(1304), + [anon_sym_QMARK] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1304), + [aux_sym_concatenation_token1] = ACTIONS(1304), + [anon_sym_DOLLAR] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1304), + [anon_sym_SQUOTE] = ACTIONS(1304), + [sym_ansi_c_string] = ACTIONS(1304), + [aux_sym_number_token1] = ACTIONS(1304), + [aux_sym_number_token2] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1304), + [anon_sym_LT_LPAREN] = ACTIONS(1304), + [anon_sym_GT_LPAREN] = ACTIONS(1304), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1306), + [sym__concat] = ACTIONS(1306), + [sym_test_operator] = ACTIONS(1306), + [sym__bare_dollar] = ACTIONS(1306), + [sym__brace_start] = ACTIONS(1306), + }, + [483] = { [sym_word] = ACTIONS(1352), [anon_sym_LPAREN_LPAREN] = ACTIONS(1352), [anon_sym_SEMI] = ACTIONS(1352), @@ -74105,7 +74480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1352), [sym__special_character] = ACTIONS(1352), [anon_sym_DQUOTE] = ACTIONS(1352), - [sym_raw_string] = ACTIONS(1352), + [anon_sym_SQUOTE] = ACTIONS(1352), [sym_ansi_c_string] = ACTIONS(1352), [aux_sym_number_token1] = ACTIONS(1352), [aux_sym_number_token2] = ACTIONS(1352), @@ -74122,83 +74497,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1354), [sym__brace_start] = ACTIONS(1354), }, - [491] = { - [sym_word] = ACTIONS(1356), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_SEMI] = ACTIONS(1356), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1356), - [anon_sym_DASH_EQ] = ACTIONS(1356), - [anon_sym_STAR_EQ] = ACTIONS(1356), - [anon_sym_SLASH_EQ] = ACTIONS(1356), - [anon_sym_PERCENT_EQ] = ACTIONS(1356), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1356), - [anon_sym_LT_LT_EQ] = ACTIONS(1356), - [anon_sym_GT_GT_EQ] = ACTIONS(1356), - [anon_sym_AMP_EQ] = ACTIONS(1356), - [anon_sym_CARET_EQ] = ACTIONS(1356), - [anon_sym_PIPE_EQ] = ACTIONS(1356), - [anon_sym_PIPE_PIPE] = ACTIONS(1356), - [anon_sym_AMP_AMP] = ACTIONS(1356), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [anon_sym_BANG_EQ] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1356), - [anon_sym_GT_EQ] = ACTIONS(1356), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_STAR_STAR] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_RPAREN] = ACTIONS(1356), - [anon_sym_SEMI_SEMI] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1356), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_AMP_GT] = ACTIONS(1356), - [anon_sym_AMP_GT_GT] = ACTIONS(1356), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [anon_sym_GT_PIPE] = ACTIONS(1356), - [anon_sym_LT_AMP_DASH] = ACTIONS(1356), - [anon_sym_GT_AMP_DASH] = ACTIONS(1356), - [anon_sym_LT_LT_DASH] = ACTIONS(1356), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1358), - [anon_sym_LT_LT_LT] = ACTIONS(1356), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1356), - [aux_sym_concatenation_token1] = ACTIONS(1356), - [anon_sym_DOLLAR] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), - [sym_ansi_c_string] = ACTIONS(1356), - [aux_sym_number_token1] = ACTIONS(1356), - [aux_sym_number_token2] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_BQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1356), - [anon_sym_LT_LPAREN] = ACTIONS(1356), - [anon_sym_GT_LPAREN] = ACTIONS(1356), - [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1358), - [sym__concat] = ACTIONS(1358), - [sym_test_operator] = ACTIONS(1358), - [sym__bare_dollar] = ACTIONS(1358), - [sym__brace_start] = ACTIONS(1358), - }, - [492] = { + [484] = { [sym_word] = ACTIONS(1356), [anon_sym_LPAREN_LPAREN] = ACTIONS(1356), [anon_sym_SEMI] = ACTIONS(1356), @@ -74257,7 +74556,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1356), [sym__special_character] = ACTIONS(1356), [anon_sym_DQUOTE] = ACTIONS(1356), - [sym_raw_string] = ACTIONS(1356), + [anon_sym_SQUOTE] = ACTIONS(1356), [sym_ansi_c_string] = ACTIONS(1356), [aux_sym_number_token1] = ACTIONS(1356), [aux_sym_number_token2] = ACTIONS(1356), @@ -74274,8 +74573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__bare_dollar] = ACTIONS(1358), [sym__brace_start] = ACTIONS(1358), }, - [493] = { - [aux_sym__literal_repeat1] = STATE(493), + [485] = { [sym_word] = ACTIONS(1360), [anon_sym_LPAREN_LPAREN] = ACTIONS(1360), [anon_sym_SEMI] = ACTIONS(1360), @@ -74330,10 +74628,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1360), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1360), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1360), + [aux_sym_concatenation_token1] = ACTIONS(1360), [anon_sym_DOLLAR] = ACTIONS(1360), - [sym__special_character] = ACTIONS(1364), + [sym__special_character] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(1360), - [sym_raw_string] = ACTIONS(1360), + [anon_sym_SQUOTE] = ACTIONS(1360), [sym_ansi_c_string] = ACTIONS(1360), [aux_sym_number_token1] = ACTIONS(1360), [aux_sym_number_token2] = ACTIONS(1360), @@ -74345,1262 +74644,1581 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(1360), [sym_comment] = ACTIONS(3), [sym_file_descriptor] = ACTIONS(1362), + [sym__concat] = ACTIONS(1362), [sym_test_operator] = ACTIONS(1362), [sym__bare_dollar] = ACTIONS(1362), [sym__brace_start] = ACTIONS(1362), }, + [486] = { + [sym_word] = ACTIONS(1364), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1364), + [anon_sym_SEMI] = ACTIONS(1364), + [anon_sym_EQ] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_EQ] = ACTIONS(1364), + [anon_sym_DASH_EQ] = ACTIONS(1364), + [anon_sym_STAR_EQ] = ACTIONS(1364), + [anon_sym_SLASH_EQ] = ACTIONS(1364), + [anon_sym_PERCENT_EQ] = ACTIONS(1364), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1364), + [anon_sym_LT_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_GT_EQ] = ACTIONS(1364), + [anon_sym_AMP_EQ] = ACTIONS(1364), + [anon_sym_CARET_EQ] = ACTIONS(1364), + [anon_sym_PIPE_EQ] = ACTIONS(1364), + [anon_sym_PIPE_PIPE] = ACTIONS(1364), + [anon_sym_AMP_AMP] = ACTIONS(1364), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_CARET] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_EQ_EQ] = ACTIONS(1364), + [anon_sym_BANG_EQ] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_GT] = ACTIONS(1364), + [anon_sym_LT_EQ] = ACTIONS(1364), + [anon_sym_GT_EQ] = ACTIONS(1364), + [anon_sym_LT_LT] = ACTIONS(1364), + [anon_sym_GT_GT] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_SLASH] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1364), + [anon_sym_STAR_STAR] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_RPAREN] = ACTIONS(1364), + [anon_sym_SEMI_SEMI] = ACTIONS(1364), + [anon_sym_PIPE_AMP] = ACTIONS(1364), + [anon_sym_EQ_TILDE] = ACTIONS(1364), + [anon_sym_AMP_GT] = ACTIONS(1364), + [anon_sym_AMP_GT_GT] = ACTIONS(1364), + [anon_sym_LT_AMP] = ACTIONS(1364), + [anon_sym_GT_AMP] = ACTIONS(1364), + [anon_sym_GT_PIPE] = ACTIONS(1364), + [anon_sym_LT_AMP_DASH] = ACTIONS(1364), + [anon_sym_GT_AMP_DASH] = ACTIONS(1364), + [anon_sym_LT_LT_DASH] = ACTIONS(1364), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1366), + [anon_sym_LT_LT_LT] = ACTIONS(1364), + [anon_sym_QMARK] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1364), + [aux_sym_concatenation_token1] = ACTIONS(1364), + [anon_sym_DOLLAR] = ACTIONS(1364), + [sym__special_character] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1364), + [anon_sym_SQUOTE] = ACTIONS(1364), + [sym_ansi_c_string] = ACTIONS(1364), + [aux_sym_number_token1] = ACTIONS(1364), + [aux_sym_number_token2] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1364), + [anon_sym_LT_LPAREN] = ACTIONS(1364), + [anon_sym_GT_LPAREN] = ACTIONS(1364), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1366), + [sym__concat] = ACTIONS(1366), + [sym_test_operator] = ACTIONS(1366), + [sym__bare_dollar] = ACTIONS(1366), + [sym__brace_start] = ACTIONS(1366), + }, + [487] = { + [sym_word] = ACTIONS(1368), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_EQ] = ACTIONS(1368), + [anon_sym_DASH_EQ] = ACTIONS(1368), + [anon_sym_STAR_EQ] = ACTIONS(1368), + [anon_sym_SLASH_EQ] = ACTIONS(1368), + [anon_sym_PERCENT_EQ] = ACTIONS(1368), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1368), + [anon_sym_LT_LT_EQ] = ACTIONS(1368), + [anon_sym_GT_GT_EQ] = ACTIONS(1368), + [anon_sym_AMP_EQ] = ACTIONS(1368), + [anon_sym_CARET_EQ] = ACTIONS(1368), + [anon_sym_PIPE_EQ] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1368), + [anon_sym_BANG_EQ] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_LT_EQ] = ACTIONS(1368), + [anon_sym_GT_EQ] = ACTIONS(1368), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [anon_sym_STAR_STAR] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1368), + [anon_sym_EQ_TILDE] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1368), + [anon_sym_AMP_GT_GT] = ACTIONS(1368), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [anon_sym_GT_PIPE] = ACTIONS(1368), + [anon_sym_LT_AMP_DASH] = ACTIONS(1368), + [anon_sym_GT_AMP_DASH] = ACTIONS(1368), + [anon_sym_LT_LT_DASH] = ACTIONS(1368), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1370), + [anon_sym_LT_LT_LT] = ACTIONS(1368), + [anon_sym_QMARK] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1368), + [aux_sym_concatenation_token1] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [sym__special_character] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [sym_ansi_c_string] = ACTIONS(1368), + [aux_sym_number_token1] = ACTIONS(1368), + [aux_sym_number_token2] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(1368), + [anon_sym_GT_LPAREN] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1370), + [sym__concat] = ACTIONS(1370), + [sym_test_operator] = ACTIONS(1370), + [sym__bare_dollar] = ACTIONS(1370), + [sym__brace_start] = ACTIONS(1370), + }, + [488] = { + [sym_word] = ACTIONS(1372), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1372), + [anon_sym_SEMI] = ACTIONS(1372), + [anon_sym_EQ] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_EQ] = ACTIONS(1372), + [anon_sym_DASH_EQ] = ACTIONS(1372), + [anon_sym_STAR_EQ] = ACTIONS(1372), + [anon_sym_SLASH_EQ] = ACTIONS(1372), + [anon_sym_PERCENT_EQ] = ACTIONS(1372), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1372), + [anon_sym_LT_LT_EQ] = ACTIONS(1372), + [anon_sym_GT_GT_EQ] = ACTIONS(1372), + [anon_sym_AMP_EQ] = ACTIONS(1372), + [anon_sym_CARET_EQ] = ACTIONS(1372), + [anon_sym_PIPE_EQ] = ACTIONS(1372), + [anon_sym_PIPE_PIPE] = ACTIONS(1372), + [anon_sym_AMP_AMP] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_EQ_EQ] = ACTIONS(1372), + [anon_sym_BANG_EQ] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1372), + [anon_sym_LT_EQ] = ACTIONS(1372), + [anon_sym_GT_EQ] = ACTIONS(1372), + [anon_sym_LT_LT] = ACTIONS(1372), + [anon_sym_GT_GT] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(1372), + [anon_sym_PERCENT] = ACTIONS(1372), + [anon_sym_STAR_STAR] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_RPAREN] = ACTIONS(1372), + [anon_sym_SEMI_SEMI] = ACTIONS(1372), + [anon_sym_PIPE_AMP] = ACTIONS(1372), + [anon_sym_EQ_TILDE] = ACTIONS(1372), + [anon_sym_AMP_GT] = ACTIONS(1372), + [anon_sym_AMP_GT_GT] = ACTIONS(1372), + [anon_sym_LT_AMP] = ACTIONS(1372), + [anon_sym_GT_AMP] = ACTIONS(1372), + [anon_sym_GT_PIPE] = ACTIONS(1372), + [anon_sym_LT_AMP_DASH] = ACTIONS(1372), + [anon_sym_GT_AMP_DASH] = ACTIONS(1372), + [anon_sym_LT_LT_DASH] = ACTIONS(1372), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1374), + [anon_sym_LT_LT_LT] = ACTIONS(1372), + [anon_sym_QMARK] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1372), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1372), + [aux_sym_concatenation_token1] = ACTIONS(1372), + [anon_sym_DOLLAR] = ACTIONS(1372), + [sym__special_character] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1372), + [anon_sym_SQUOTE] = ACTIONS(1372), + [sym_ansi_c_string] = ACTIONS(1372), + [aux_sym_number_token1] = ACTIONS(1372), + [aux_sym_number_token2] = ACTIONS(1372), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1372), + [anon_sym_LT_LPAREN] = ACTIONS(1372), + [anon_sym_GT_LPAREN] = ACTIONS(1372), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1374), + [sym__concat] = ACTIONS(1374), + [sym_test_operator] = ACTIONS(1374), + [sym__bare_dollar] = ACTIONS(1374), + [sym__brace_start] = ACTIONS(1374), + }, + [489] = { + [sym_word] = ACTIONS(1376), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1376), + [anon_sym_SEMI] = ACTIONS(1376), + [anon_sym_EQ] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(1376), + [anon_sym_DASH_EQ] = ACTIONS(1376), + [anon_sym_STAR_EQ] = ACTIONS(1376), + [anon_sym_SLASH_EQ] = ACTIONS(1376), + [anon_sym_PERCENT_EQ] = ACTIONS(1376), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1376), + [anon_sym_LT_LT_EQ] = ACTIONS(1376), + [anon_sym_GT_GT_EQ] = ACTIONS(1376), + [anon_sym_AMP_EQ] = ACTIONS(1376), + [anon_sym_CARET_EQ] = ACTIONS(1376), + [anon_sym_PIPE_EQ] = ACTIONS(1376), + [anon_sym_PIPE_PIPE] = ACTIONS(1376), + [anon_sym_AMP_AMP] = ACTIONS(1376), + [anon_sym_PIPE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_EQ_EQ] = ACTIONS(1376), + [anon_sym_BANG_EQ] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_GT] = ACTIONS(1376), + [anon_sym_LT_EQ] = ACTIONS(1376), + [anon_sym_GT_EQ] = ACTIONS(1376), + [anon_sym_LT_LT] = ACTIONS(1376), + [anon_sym_GT_GT] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1376), + [anon_sym_PERCENT] = ACTIONS(1376), + [anon_sym_STAR_STAR] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_RPAREN] = ACTIONS(1376), + [anon_sym_SEMI_SEMI] = ACTIONS(1376), + [anon_sym_PIPE_AMP] = ACTIONS(1376), + [anon_sym_EQ_TILDE] = ACTIONS(1376), + [anon_sym_AMP_GT] = ACTIONS(1376), + [anon_sym_AMP_GT_GT] = ACTIONS(1376), + [anon_sym_LT_AMP] = ACTIONS(1376), + [anon_sym_GT_AMP] = ACTIONS(1376), + [anon_sym_GT_PIPE] = ACTIONS(1376), + [anon_sym_LT_AMP_DASH] = ACTIONS(1376), + [anon_sym_GT_AMP_DASH] = ACTIONS(1376), + [anon_sym_LT_LT_DASH] = ACTIONS(1376), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1378), + [anon_sym_LT_LT_LT] = ACTIONS(1376), + [anon_sym_QMARK] = ACTIONS(1376), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1376), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1376), + [aux_sym_concatenation_token1] = ACTIONS(1376), + [anon_sym_DOLLAR] = ACTIONS(1376), + [sym__special_character] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1376), + [anon_sym_SQUOTE] = ACTIONS(1376), + [sym_ansi_c_string] = ACTIONS(1376), + [aux_sym_number_token1] = ACTIONS(1376), + [aux_sym_number_token2] = ACTIONS(1376), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1376), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1376), + [anon_sym_BQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1376), + [anon_sym_LT_LPAREN] = ACTIONS(1376), + [anon_sym_GT_LPAREN] = ACTIONS(1376), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1378), + [sym__concat] = ACTIONS(1378), + [sym_test_operator] = ACTIONS(1378), + [sym__bare_dollar] = ACTIONS(1378), + [sym__brace_start] = ACTIONS(1378), + }, + [490] = { + [sym_word] = ACTIONS(1380), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1380), + [anon_sym_EQ] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_EQ] = ACTIONS(1380), + [anon_sym_DASH_EQ] = ACTIONS(1380), + [anon_sym_STAR_EQ] = ACTIONS(1380), + [anon_sym_SLASH_EQ] = ACTIONS(1380), + [anon_sym_PERCENT_EQ] = ACTIONS(1380), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1380), + [anon_sym_LT_LT_EQ] = ACTIONS(1380), + [anon_sym_GT_GT_EQ] = ACTIONS(1380), + [anon_sym_AMP_EQ] = ACTIONS(1380), + [anon_sym_CARET_EQ] = ACTIONS(1380), + [anon_sym_PIPE_EQ] = ACTIONS(1380), + [anon_sym_PIPE_PIPE] = ACTIONS(1380), + [anon_sym_AMP_AMP] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1380), + [anon_sym_CARET] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_EQ_EQ] = ACTIONS(1380), + [anon_sym_BANG_EQ] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1380), + [anon_sym_GT] = ACTIONS(1380), + [anon_sym_LT_EQ] = ACTIONS(1380), + [anon_sym_GT_EQ] = ACTIONS(1380), + [anon_sym_LT_LT] = ACTIONS(1380), + [anon_sym_GT_GT] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(1380), + [anon_sym_PERCENT] = ACTIONS(1380), + [anon_sym_STAR_STAR] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1380), + [anon_sym_RPAREN] = ACTIONS(1380), + [anon_sym_SEMI_SEMI] = ACTIONS(1380), + [anon_sym_PIPE_AMP] = ACTIONS(1380), + [anon_sym_EQ_TILDE] = ACTIONS(1380), + [anon_sym_AMP_GT] = ACTIONS(1380), + [anon_sym_AMP_GT_GT] = ACTIONS(1380), + [anon_sym_LT_AMP] = ACTIONS(1380), + [anon_sym_GT_AMP] = ACTIONS(1380), + [anon_sym_GT_PIPE] = ACTIONS(1380), + [anon_sym_LT_AMP_DASH] = ACTIONS(1380), + [anon_sym_GT_AMP_DASH] = ACTIONS(1380), + [anon_sym_LT_LT_DASH] = ACTIONS(1380), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1382), + [anon_sym_LT_LT_LT] = ACTIONS(1380), + [anon_sym_QMARK] = ACTIONS(1380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1380), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1380), + [aux_sym_concatenation_token1] = ACTIONS(1380), + [anon_sym_DOLLAR] = ACTIONS(1380), + [sym__special_character] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1380), + [anon_sym_SQUOTE] = ACTIONS(1380), + [sym_ansi_c_string] = ACTIONS(1380), + [aux_sym_number_token1] = ACTIONS(1380), + [aux_sym_number_token2] = ACTIONS(1380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1380), + [anon_sym_BQUOTE] = ACTIONS(1380), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1380), + [anon_sym_LT_LPAREN] = ACTIONS(1380), + [anon_sym_GT_LPAREN] = ACTIONS(1380), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1382), + [sym__concat] = ACTIONS(1382), + [sym_test_operator] = ACTIONS(1382), + [sym__bare_dollar] = ACTIONS(1382), + [sym__brace_start] = ACTIONS(1382), + }, + [491] = { + [sym_word] = ACTIONS(1384), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1384), + [anon_sym_EQ] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_EQ] = ACTIONS(1384), + [anon_sym_DASH_EQ] = ACTIONS(1384), + [anon_sym_STAR_EQ] = ACTIONS(1384), + [anon_sym_SLASH_EQ] = ACTIONS(1384), + [anon_sym_PERCENT_EQ] = ACTIONS(1384), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1384), + [anon_sym_LT_LT_EQ] = ACTIONS(1384), + [anon_sym_GT_GT_EQ] = ACTIONS(1384), + [anon_sym_AMP_EQ] = ACTIONS(1384), + [anon_sym_CARET_EQ] = ACTIONS(1384), + [anon_sym_PIPE_EQ] = ACTIONS(1384), + [anon_sym_PIPE_PIPE] = ACTIONS(1384), + [anon_sym_AMP_AMP] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_EQ_EQ] = ACTIONS(1384), + [anon_sym_BANG_EQ] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT_EQ] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1384), + [anon_sym_LT_LT] = ACTIONS(1384), + [anon_sym_GT_GT] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_STAR_STAR] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_RPAREN] = ACTIONS(1384), + [anon_sym_SEMI_SEMI] = ACTIONS(1384), + [anon_sym_PIPE_AMP] = ACTIONS(1384), + [anon_sym_EQ_TILDE] = ACTIONS(1384), + [anon_sym_AMP_GT] = ACTIONS(1384), + [anon_sym_AMP_GT_GT] = ACTIONS(1384), + [anon_sym_LT_AMP] = ACTIONS(1384), + [anon_sym_GT_AMP] = ACTIONS(1384), + [anon_sym_GT_PIPE] = ACTIONS(1384), + [anon_sym_LT_AMP_DASH] = ACTIONS(1384), + [anon_sym_GT_AMP_DASH] = ACTIONS(1384), + [anon_sym_LT_LT_DASH] = ACTIONS(1384), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1386), + [anon_sym_LT_LT_LT] = ACTIONS(1384), + [anon_sym_QMARK] = ACTIONS(1384), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1384), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1384), + [aux_sym_concatenation_token1] = ACTIONS(1384), + [anon_sym_DOLLAR] = ACTIONS(1384), + [sym__special_character] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1384), + [anon_sym_SQUOTE] = ACTIONS(1384), + [sym_ansi_c_string] = ACTIONS(1384), + [aux_sym_number_token1] = ACTIONS(1384), + [aux_sym_number_token2] = ACTIONS(1384), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1384), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1384), + [anon_sym_BQUOTE] = ACTIONS(1384), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1384), + [anon_sym_LT_LPAREN] = ACTIONS(1384), + [anon_sym_GT_LPAREN] = ACTIONS(1384), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1386), + [sym__concat] = ACTIONS(1386), + [sym_test_operator] = ACTIONS(1386), + [sym__bare_dollar] = ACTIONS(1386), + [sym__brace_start] = ACTIONS(1386), + }, + [492] = { + [sym_word] = ACTIONS(1368), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1368), + [anon_sym_SEMI] = ACTIONS(1368), + [anon_sym_EQ] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_EQ] = ACTIONS(1368), + [anon_sym_DASH_EQ] = ACTIONS(1368), + [anon_sym_STAR_EQ] = ACTIONS(1368), + [anon_sym_SLASH_EQ] = ACTIONS(1368), + [anon_sym_PERCENT_EQ] = ACTIONS(1368), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1368), + [anon_sym_LT_LT_EQ] = ACTIONS(1368), + [anon_sym_GT_GT_EQ] = ACTIONS(1368), + [anon_sym_AMP_EQ] = ACTIONS(1368), + [anon_sym_CARET_EQ] = ACTIONS(1368), + [anon_sym_PIPE_EQ] = ACTIONS(1368), + [anon_sym_PIPE_PIPE] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1368), + [anon_sym_BANG_EQ] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_LT_EQ] = ACTIONS(1368), + [anon_sym_GT_EQ] = ACTIONS(1368), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [anon_sym_STAR_STAR] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_RPAREN] = ACTIONS(1368), + [anon_sym_SEMI_SEMI] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1368), + [anon_sym_EQ_TILDE] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1368), + [anon_sym_AMP_GT_GT] = ACTIONS(1368), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [anon_sym_GT_PIPE] = ACTIONS(1368), + [anon_sym_LT_AMP_DASH] = ACTIONS(1368), + [anon_sym_GT_AMP_DASH] = ACTIONS(1368), + [anon_sym_LT_LT_DASH] = ACTIONS(1368), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1370), + [anon_sym_LT_LT_LT] = ACTIONS(1368), + [anon_sym_QMARK] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1368), + [aux_sym_concatenation_token1] = ACTIONS(1368), + [anon_sym_DOLLAR] = ACTIONS(1368), + [sym__special_character] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1368), + [anon_sym_SQUOTE] = ACTIONS(1368), + [sym_ansi_c_string] = ACTIONS(1368), + [aux_sym_number_token1] = ACTIONS(1368), + [aux_sym_number_token2] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1368), + [anon_sym_LT_LPAREN] = ACTIONS(1368), + [anon_sym_GT_LPAREN] = ACTIONS(1368), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1370), + [sym__concat] = ACTIONS(1370), + [sym_test_operator] = ACTIONS(1370), + [sym__bare_dollar] = ACTIONS(1370), + [sym__brace_start] = ACTIONS(1370), + }, + [493] = { + [sym_word] = ACTIONS(1388), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1388), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_EQ] = ACTIONS(1388), + [anon_sym_DASH_EQ] = ACTIONS(1388), + [anon_sym_STAR_EQ] = ACTIONS(1388), + [anon_sym_SLASH_EQ] = ACTIONS(1388), + [anon_sym_PERCENT_EQ] = ACTIONS(1388), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1388), + [anon_sym_LT_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_GT_EQ] = ACTIONS(1388), + [anon_sym_AMP_EQ] = ACTIONS(1388), + [anon_sym_CARET_EQ] = ACTIONS(1388), + [anon_sym_PIPE_EQ] = ACTIONS(1388), + [anon_sym_PIPE_PIPE] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_LT_EQ] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_STAR_STAR] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_RPAREN] = ACTIONS(1388), + [anon_sym_SEMI_SEMI] = ACTIONS(1388), + [anon_sym_PIPE_AMP] = ACTIONS(1388), + [anon_sym_EQ_TILDE] = ACTIONS(1388), + [anon_sym_AMP_GT] = ACTIONS(1388), + [anon_sym_AMP_GT_GT] = ACTIONS(1388), + [anon_sym_LT_AMP] = ACTIONS(1388), + [anon_sym_GT_AMP] = ACTIONS(1388), + [anon_sym_GT_PIPE] = ACTIONS(1388), + [anon_sym_LT_AMP_DASH] = ACTIONS(1388), + [anon_sym_GT_AMP_DASH] = ACTIONS(1388), + [anon_sym_LT_LT_DASH] = ACTIONS(1388), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1390), + [anon_sym_LT_LT_LT] = ACTIONS(1388), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1388), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1388), + [aux_sym_concatenation_token1] = ACTIONS(1388), + [anon_sym_DOLLAR] = ACTIONS(1388), + [sym__special_character] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1388), + [anon_sym_SQUOTE] = ACTIONS(1388), + [sym_ansi_c_string] = ACTIONS(1388), + [aux_sym_number_token1] = ACTIONS(1388), + [aux_sym_number_token2] = ACTIONS(1388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1388), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1388), + [anon_sym_BQUOTE] = ACTIONS(1388), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1388), + [anon_sym_LT_LPAREN] = ACTIONS(1388), + [anon_sym_GT_LPAREN] = ACTIONS(1388), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1390), + [sym__concat] = ACTIONS(1390), + [sym_test_operator] = ACTIONS(1390), + [sym__bare_dollar] = ACTIONS(1390), + [sym__brace_start] = ACTIONS(1390), + }, [494] = { - [aux_sym__literal_repeat1] = STATE(493), - [sym_word] = ACTIONS(241), - [anon_sym_LPAREN_LPAREN] = ACTIONS(241), - [anon_sym_SEMI] = ACTIONS(241), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(243), - [anon_sym_GT_GT_EQ] = ACTIONS(243), - [anon_sym_AMP_EQ] = ACTIONS(243), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(243), - [anon_sym_PIPE_PIPE] = ACTIONS(245), - [anon_sym_AMP_AMP] = ACTIONS(245), - [anon_sym_PIPE] = ACTIONS(245), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(245), - [anon_sym_EQ_EQ] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [anon_sym_GT] = ACTIONS(245), - [anon_sym_LT_EQ] = ACTIONS(243), - [anon_sym_GT_EQ] = ACTIONS(243), - [anon_sym_LT_LT] = ACTIONS(245), - [anon_sym_GT_GT] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_RPAREN] = ACTIONS(245), - [anon_sym_SEMI_SEMI] = ACTIONS(241), - [anon_sym_PIPE_AMP] = ACTIONS(241), - [anon_sym_EQ_TILDE] = ACTIONS(245), - [anon_sym_AMP_GT] = ACTIONS(241), - [anon_sym_AMP_GT_GT] = ACTIONS(241), - [anon_sym_LT_AMP] = ACTIONS(241), - [anon_sym_GT_AMP] = ACTIONS(241), - [anon_sym_GT_PIPE] = ACTIONS(241), - [anon_sym_LT_AMP_DASH] = ACTIONS(241), - [anon_sym_GT_AMP_DASH] = ACTIONS(241), - [anon_sym_LT_LT_DASH] = ACTIONS(241), - [aux_sym_heredoc_redirect_token1] = ACTIONS(278), - [anon_sym_LT_LT_LT] = ACTIONS(241), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(241), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(241), - [anon_sym_DOLLAR] = ACTIONS(241), - [sym__special_character] = ACTIONS(1367), - [anon_sym_DQUOTE] = ACTIONS(241), - [sym_raw_string] = ACTIONS(241), - [sym_ansi_c_string] = ACTIONS(241), - [aux_sym_number_token1] = ACTIONS(241), - [aux_sym_number_token2] = ACTIONS(241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(241), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(241), - [anon_sym_LT_LPAREN] = ACTIONS(241), - [anon_sym_GT_LPAREN] = ACTIONS(241), + [aux_sym__literal_repeat1] = STATE(495), + [sym_word] = ACTIONS(247), + [anon_sym_LPAREN_LPAREN] = ACTIONS(247), + [anon_sym_SEMI] = ACTIONS(247), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(249), + [anon_sym_GT_GT_EQ] = ACTIONS(249), + [anon_sym_AMP_EQ] = ACTIONS(249), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(249), + [anon_sym_PIPE_PIPE] = ACTIONS(251), + [anon_sym_AMP_AMP] = ACTIONS(251), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(251), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(249), + [anon_sym_GT_EQ] = ACTIONS(249), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_RPAREN] = ACTIONS(251), + [anon_sym_SEMI_SEMI] = ACTIONS(247), + [anon_sym_PIPE_AMP] = ACTIONS(247), + [anon_sym_EQ_TILDE] = ACTIONS(251), + [anon_sym_AMP_GT] = ACTIONS(247), + [anon_sym_AMP_GT_GT] = ACTIONS(247), + [anon_sym_LT_AMP] = ACTIONS(247), + [anon_sym_GT_AMP] = ACTIONS(247), + [anon_sym_GT_PIPE] = ACTIONS(247), + [anon_sym_LT_AMP_DASH] = ACTIONS(247), + [anon_sym_GT_AMP_DASH] = ACTIONS(247), + [anon_sym_LT_LT_DASH] = ACTIONS(247), + [aux_sym_heredoc_redirect_token1] = ACTIONS(286), + [anon_sym_LT_LT_LT] = ACTIONS(247), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(247), + [anon_sym_DOLLAR] = ACTIONS(247), + [sym__special_character] = ACTIONS(1392), + [anon_sym_DQUOTE] = ACTIONS(247), + [anon_sym_SQUOTE] = ACTIONS(247), + [sym_ansi_c_string] = ACTIONS(247), + [aux_sym_number_token1] = ACTIONS(247), + [aux_sym_number_token2] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(247), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(247), + [anon_sym_BQUOTE] = ACTIONS(247), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(247), + [anon_sym_LT_LPAREN] = ACTIONS(247), + [anon_sym_GT_LPAREN] = ACTIONS(247), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(278), - [sym_test_operator] = ACTIONS(292), - [sym__bare_dollar] = ACTIONS(278), - [sym__brace_start] = ACTIONS(278), + [sym_file_descriptor] = ACTIONS(286), + [sym_test_operator] = ACTIONS(300), + [sym__bare_dollar] = ACTIONS(286), + [sym__brace_start] = ACTIONS(286), }, [495] = { - [sym_word] = ACTIONS(1251), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1251), - [anon_sym_SEMI] = ACTIONS(1251), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_PLUS_EQ] = ACTIONS(1253), - [anon_sym_DASH_EQ] = ACTIONS(1253), - [anon_sym_STAR_EQ] = ACTIONS(1253), - [anon_sym_SLASH_EQ] = ACTIONS(1253), - [anon_sym_PERCENT_EQ] = ACTIONS(1253), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1253), - [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(1253), - [anon_sym_PIPE_EQ] = ACTIONS(1253), - [anon_sym_PIPE_PIPE] = ACTIONS(1255), - [anon_sym_AMP_AMP] = ACTIONS(1255), - [anon_sym_PIPE] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1255), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1253), - [anon_sym_GT_EQ] = ACTIONS(1253), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_RPAREN] = ACTIONS(1255), - [anon_sym_SEMI_SEMI] = ACTIONS(1251), - [anon_sym_PIPE_AMP] = ACTIONS(1251), - [anon_sym_EQ_TILDE] = ACTIONS(1255), - [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_AMP_DASH] = ACTIONS(1251), - [anon_sym_GT_AMP_DASH] = ACTIONS(1251), - [anon_sym_LT_LT_DASH] = ACTIONS(1251), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(1253), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1251), - [anon_sym_DOLLAR_LBRACK] = 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), + [aux_sym__literal_repeat1] = STATE(495), + [sym_word] = ACTIONS(1394), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1394), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_EQ] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_EQ] = ACTIONS(1394), + [anon_sym_DASH_EQ] = ACTIONS(1394), + [anon_sym_STAR_EQ] = ACTIONS(1394), + [anon_sym_SLASH_EQ] = ACTIONS(1394), + [anon_sym_PERCENT_EQ] = ACTIONS(1394), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1394), + [anon_sym_LT_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_GT_EQ] = ACTIONS(1394), + [anon_sym_AMP_EQ] = ACTIONS(1394), + [anon_sym_CARET_EQ] = ACTIONS(1394), + [anon_sym_PIPE_EQ] = ACTIONS(1394), + [anon_sym_PIPE_PIPE] = ACTIONS(1394), + [anon_sym_AMP_AMP] = ACTIONS(1394), + [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_CARET] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_LT_LT] = ACTIONS(1394), + [anon_sym_GT_GT] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_PERCENT] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_RPAREN] = ACTIONS(1394), + [anon_sym_SEMI_SEMI] = ACTIONS(1394), + [anon_sym_PIPE_AMP] = ACTIONS(1394), + [anon_sym_EQ_TILDE] = ACTIONS(1394), + [anon_sym_AMP_GT] = ACTIONS(1394), + [anon_sym_AMP_GT_GT] = ACTIONS(1394), + [anon_sym_LT_AMP] = ACTIONS(1394), + [anon_sym_GT_AMP] = ACTIONS(1394), + [anon_sym_GT_PIPE] = ACTIONS(1394), + [anon_sym_LT_AMP_DASH] = ACTIONS(1394), + [anon_sym_GT_AMP_DASH] = ACTIONS(1394), + [anon_sym_LT_LT_DASH] = ACTIONS(1394), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1394), + [anon_sym_QMARK] = ACTIONS(1394), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1394), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1394), + [anon_sym_DOLLAR] = ACTIONS(1394), + [sym__special_character] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1394), + [sym_ansi_c_string] = ACTIONS(1394), + [aux_sym_number_token1] = ACTIONS(1394), + [aux_sym_number_token2] = ACTIONS(1394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1394), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1394), + [anon_sym_BQUOTE] = ACTIONS(1394), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1394), + [anon_sym_LT_LPAREN] = ACTIONS(1394), + [anon_sym_GT_LPAREN] = ACTIONS(1394), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1258), - [sym_test_operator] = ACTIONS(1260), - [sym__bare_dollar] = ACTIONS(1258), - [sym__brace_start] = ACTIONS(1258), + [sym_file_descriptor] = ACTIONS(1396), + [sym_test_operator] = ACTIONS(1396), + [sym__bare_dollar] = ACTIONS(1396), + [sym__brace_start] = ACTIONS(1396), }, [496] = { - [aux_sym_concatenation_repeat1] = STATE(500), - [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_STAR_STAR_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_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1266), - [anon_sym_CARET] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(1266), - [anon_sym_EQ_EQ] = ACTIONS(1266), - [anon_sym_BANG_EQ] = ACTIONS(1266), - [anon_sym_LT] = ACTIONS(1266), - [anon_sym_GT] = ACTIONS(1266), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = 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_LPAREN] = 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(1266), - [anon_sym_GT_AMP] = ACTIONS(1266), - [anon_sym_GT_PIPE] = ACTIONS(1268), - [anon_sym_LT_AMP_DASH] = ACTIONS(1268), - [anon_sym_GT_AMP_DASH] = ACTIONS(1268), - [anon_sym_LT_LT_DASH] = ACTIONS(1268), - [anon_sym_LT_LT_LT] = ACTIONS(1268), - [anon_sym_QMARK] = ACTIONS(1266), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1268), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1268), - [aux_sym_concatenation_token1] = ACTIONS(301), - [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_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1268), - [sym__concat] = ACTIONS(1369), - [sym_test_operator] = ACTIONS(1268), - [sym__bare_dollar] = ACTIONS(1268), - [sym__brace_start] = ACTIONS(1268), + [aux_sym_concatenation_repeat1] = STATE(499), + [sym_word] = ACTIONS(1294), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_EQ] = ACTIONS(1294), + [anon_sym_PLUS_PLUS] = ACTIONS(1294), + [anon_sym_DASH_DASH] = ACTIONS(1294), + [anon_sym_PLUS_EQ] = ACTIONS(1294), + [anon_sym_DASH_EQ] = ACTIONS(1294), + [anon_sym_STAR_EQ] = ACTIONS(1294), + [anon_sym_SLASH_EQ] = ACTIONS(1294), + [anon_sym_PERCENT_EQ] = ACTIONS(1294), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1294), + [anon_sym_LT_LT_EQ] = ACTIONS(1296), + [anon_sym_GT_GT_EQ] = ACTIONS(1296), + [anon_sym_AMP_EQ] = ACTIONS(1296), + [anon_sym_CARET_EQ] = ACTIONS(1294), + [anon_sym_PIPE_EQ] = ACTIONS(1296), + [anon_sym_PIPE_PIPE] = ACTIONS(1296), + [anon_sym_AMP_AMP] = ACTIONS(1296), + [anon_sym_PIPE] = ACTIONS(1294), + [anon_sym_CARET] = ACTIONS(1294), + [anon_sym_AMP] = ACTIONS(1294), + [anon_sym_EQ_EQ] = ACTIONS(1294), + [anon_sym_BANG_EQ] = ACTIONS(1294), + [anon_sym_LT] = ACTIONS(1294), + [anon_sym_GT] = ACTIONS(1294), + [anon_sym_LT_EQ] = ACTIONS(1296), + [anon_sym_GT_EQ] = ACTIONS(1296), + [anon_sym_LT_LT] = ACTIONS(1294), + [anon_sym_GT_GT] = ACTIONS(1294), + [anon_sym_PLUS] = ACTIONS(1294), + [anon_sym_DASH] = ACTIONS(1294), + [anon_sym_STAR] = ACTIONS(1294), + [anon_sym_SLASH] = ACTIONS(1294), + [anon_sym_PERCENT] = ACTIONS(1294), + [anon_sym_STAR_STAR] = ACTIONS(1294), + [anon_sym_LPAREN] = ACTIONS(1294), + [anon_sym_PIPE_AMP] = ACTIONS(1296), + [anon_sym_RBRACK] = ACTIONS(1296), + [anon_sym_EQ_TILDE] = ACTIONS(1294), + [anon_sym_AMP_GT] = ACTIONS(1294), + [anon_sym_AMP_GT_GT] = ACTIONS(1296), + [anon_sym_LT_AMP] = ACTIONS(1294), + [anon_sym_GT_AMP] = ACTIONS(1294), + [anon_sym_GT_PIPE] = ACTIONS(1296), + [anon_sym_LT_AMP_DASH] = ACTIONS(1296), + [anon_sym_GT_AMP_DASH] = ACTIONS(1296), + [anon_sym_LT_LT_DASH] = ACTIONS(1296), + [anon_sym_LT_LT_LT] = ACTIONS(1296), + [anon_sym_QMARK] = ACTIONS(1294), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1296), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1296), + [aux_sym_concatenation_token1] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(1294), + [sym__special_character] = ACTIONS(1294), + [anon_sym_DQUOTE] = ACTIONS(1296), + [anon_sym_SQUOTE] = ACTIONS(1296), + [sym_ansi_c_string] = ACTIONS(1296), + [aux_sym_number_token1] = ACTIONS(1294), + [aux_sym_number_token2] = ACTIONS(1294), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1296), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1294), + [anon_sym_BQUOTE] = ACTIONS(1294), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1296), + [anon_sym_LT_LPAREN] = ACTIONS(1296), + [anon_sym_GT_LPAREN] = ACTIONS(1296), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1296), + [sym__concat] = ACTIONS(1401), + [sym_test_operator] = ACTIONS(1296), + [sym__bare_dollar] = ACTIONS(1296), + [sym__brace_start] = ACTIONS(1296), }, [497] = { [aux_sym_concatenation_repeat1] = STATE(500), - [sym_word] = ACTIONS(1286), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1288), - [anon_sym_EQ] = ACTIONS(1286), - [anon_sym_PLUS_PLUS] = ACTIONS(1286), - [anon_sym_DASH_DASH] = ACTIONS(1286), - [anon_sym_PLUS_EQ] = ACTIONS(1286), - [anon_sym_DASH_EQ] = ACTIONS(1286), - [anon_sym_STAR_EQ] = ACTIONS(1286), - [anon_sym_SLASH_EQ] = ACTIONS(1286), - [anon_sym_PERCENT_EQ] = ACTIONS(1286), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1286), - [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(1286), - [anon_sym_PIPE_EQ] = ACTIONS(1288), + [sym_word] = ACTIONS(1279), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1403), [anon_sym_PIPE_PIPE] = ACTIONS(1288), [anon_sym_AMP_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1286), - [anon_sym_CARET] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1286), - [anon_sym_EQ_EQ] = ACTIONS(1286), - [anon_sym_BANG_EQ] = ACTIONS(1286), - [anon_sym_LT] = ACTIONS(1286), - [anon_sym_GT] = ACTIONS(1286), - [anon_sym_LT_EQ] = ACTIONS(1288), - [anon_sym_GT_EQ] = ACTIONS(1288), - [anon_sym_LT_LT] = ACTIONS(1286), - [anon_sym_GT_GT] = ACTIONS(1286), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_STAR] = ACTIONS(1286), - [anon_sym_SLASH] = ACTIONS(1286), - [anon_sym_PERCENT] = ACTIONS(1286), - [anon_sym_STAR_STAR] = ACTIONS(1286), - [anon_sym_LPAREN] = ACTIONS(1286), - [anon_sym_PIPE_AMP] = ACTIONS(1288), - [anon_sym_RBRACK] = ACTIONS(1288), - [anon_sym_EQ_TILDE] = ACTIONS(1286), - [anon_sym_AMP_GT] = ACTIONS(1286), - [anon_sym_AMP_GT_GT] = ACTIONS(1288), - [anon_sym_LT_AMP] = ACTIONS(1286), - [anon_sym_GT_AMP] = ACTIONS(1286), - [anon_sym_GT_PIPE] = ACTIONS(1288), - [anon_sym_LT_AMP_DASH] = ACTIONS(1288), - [anon_sym_GT_AMP_DASH] = ACTIONS(1288), - [anon_sym_LT_LT_DASH] = ACTIONS(1288), - [anon_sym_LT_LT_LT] = ACTIONS(1288), - [anon_sym_QMARK] = ACTIONS(1286), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1288), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1288), - [aux_sym_concatenation_token1] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1286), - [sym__special_character] = ACTIONS(1286), - [anon_sym_DQUOTE] = ACTIONS(1288), - [sym_raw_string] = ACTIONS(1288), - [sym_ansi_c_string] = ACTIONS(1288), - [aux_sym_number_token1] = ACTIONS(1286), - [aux_sym_number_token2] = ACTIONS(1286), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1286), - [anon_sym_BQUOTE] = ACTIONS(1286), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1288), - [anon_sym_LT_LPAREN] = ACTIONS(1288), - [anon_sym_GT_LPAREN] = ACTIONS(1288), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1288), - [sym__concat] = ACTIONS(1371), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_EQ_EQ] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_EQ] = ACTIONS(1403), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_SLASH] = ACTIONS(1281), + [anon_sym_PERCENT] = ACTIONS(1281), + [anon_sym_STAR_STAR] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1286), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_EQ_TILDE] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1279), + [anon_sym_AMP_GT_GT] = ACTIONS(1286), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [anon_sym_GT_PIPE] = ACTIONS(1286), + [anon_sym_LT_AMP_DASH] = ACTIONS(1286), + [anon_sym_GT_AMP_DASH] = ACTIONS(1286), + [anon_sym_LT_LT_DASH] = ACTIONS(1286), + [anon_sym_LT_LT_LT] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1286), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1286), + [aux_sym_concatenation_token1] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym__special_character] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [sym_ansi_c_string] = ACTIONS(1286), + [aux_sym_number_token1] = ACTIONS(1279), + [aux_sym_number_token2] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1286), + [anon_sym_LT_LPAREN] = ACTIONS(1286), + [anon_sym_GT_LPAREN] = ACTIONS(1286), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1286), + [sym__concat] = ACTIONS(309), [sym_test_operator] = ACTIONS(1288), - [sym__bare_dollar] = ACTIONS(1288), - [sym__brace_start] = ACTIONS(1288), + [sym__bare_dollar] = ACTIONS(1286), + [sym__brace_start] = ACTIONS(1286), }, [498] = { - [sym_word] = ACTIONS(1272), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_GT_EQ] = ACTIONS(1272), - [anon_sym_AMP_EQ] = ACTIONS(1272), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1272), - [anon_sym_PIPE_PIPE] = ACTIONS(1272), - [anon_sym_AMP_AMP] = ACTIONS(1272), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1272), - [anon_sym_GT_EQ] = ACTIONS(1272), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_SEMI_SEMI] = ACTIONS(1272), - [anon_sym_PIPE_AMP] = ACTIONS(1272), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1272), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1272), - [anon_sym_LT_AMP_DASH] = ACTIONS(1272), - [anon_sym_GT_AMP_DASH] = ACTIONS(1272), - [anon_sym_LT_LT_DASH] = ACTIONS(1272), - [aux_sym_heredoc_redirect_token1] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1272), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym_raw_string] = ACTIONS(1272), - [sym_ansi_c_string] = ACTIONS(1272), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1272), - [anon_sym_LT_LPAREN] = ACTIONS(1272), - [anon_sym_GT_LPAREN] = ACTIONS(1272), + [sym_word] = ACTIONS(1279), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1279), + [anon_sym_SEMI] = ACTIONS(1279), + [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_GT_EQ] = ACTIONS(1281), + [anon_sym_AMP_EQ] = ACTIONS(1281), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1281), + [anon_sym_PIPE_PIPE] = ACTIONS(1283), + [anon_sym_AMP_AMP] = ACTIONS(1283), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1283), + [anon_sym_EQ_EQ] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1281), + [anon_sym_GT_EQ] = ACTIONS(1281), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_SLASH] = ACTIONS(1281), + [anon_sym_PERCENT] = ACTIONS(1281), + [anon_sym_STAR_STAR] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_RPAREN] = ACTIONS(1283), + [anon_sym_SEMI_SEMI] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1279), + [anon_sym_EQ_TILDE] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1279), + [anon_sym_AMP_GT_GT] = ACTIONS(1279), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [anon_sym_GT_PIPE] = ACTIONS(1279), + [anon_sym_LT_AMP_DASH] = ACTIONS(1279), + [anon_sym_GT_AMP_DASH] = ACTIONS(1279), + [anon_sym_LT_LT_DASH] = ACTIONS(1279), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1286), + [anon_sym_LT_LT_LT] = ACTIONS(1279), + [anon_sym_QMARK] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1279), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym__special_character] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1279), + [anon_sym_SQUOTE] = ACTIONS(1279), + [sym_ansi_c_string] = ACTIONS(1279), + [aux_sym_number_token1] = ACTIONS(1279), + [aux_sym_number_token2] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1279), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1279), + [anon_sym_LT_LPAREN] = ACTIONS(1279), + [anon_sym_GT_LPAREN] = ACTIONS(1279), [sym_comment] = ACTIONS(3), - [sym_file_descriptor] = ACTIONS(1274), - [sym_test_operator] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), + [sym_file_descriptor] = ACTIONS(1286), + [sym_test_operator] = ACTIONS(1288), + [sym__bare_dollar] = ACTIONS(1286), + [sym__brace_start] = ACTIONS(1286), }, [499] = { - [aux_sym_concatenation_repeat1] = STATE(496), - [sym_word] = ACTIONS(1272), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_EQ] = ACTIONS(1274), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_RBRACK] = ACTIONS(1274), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1274), - [anon_sym_LT_AMP_DASH] = ACTIONS(1274), - [anon_sym_GT_AMP_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1274), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1274), - [aux_sym_concatenation_token1] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [sym_ansi_c_string] = ACTIONS(1274), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1274), - [sym__concat] = ACTIONS(301), - [sym_test_operator] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), + [aux_sym_concatenation_repeat1] = STATE(499), + [sym_word] = ACTIONS(1304), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1306), + [anon_sym_EQ] = ACTIONS(1304), + [anon_sym_PLUS_PLUS] = ACTIONS(1304), + [anon_sym_DASH_DASH] = ACTIONS(1304), + [anon_sym_PLUS_EQ] = ACTIONS(1304), + [anon_sym_DASH_EQ] = ACTIONS(1304), + [anon_sym_STAR_EQ] = ACTIONS(1304), + [anon_sym_SLASH_EQ] = ACTIONS(1304), + [anon_sym_PERCENT_EQ] = ACTIONS(1304), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1304), + [anon_sym_LT_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_GT_EQ] = ACTIONS(1306), + [anon_sym_AMP_EQ] = ACTIONS(1306), + [anon_sym_CARET_EQ] = ACTIONS(1304), + [anon_sym_PIPE_EQ] = ACTIONS(1306), + [anon_sym_PIPE_PIPE] = ACTIONS(1306), + [anon_sym_AMP_AMP] = ACTIONS(1306), + [anon_sym_PIPE] = ACTIONS(1304), + [anon_sym_CARET] = ACTIONS(1304), + [anon_sym_AMP] = ACTIONS(1304), + [anon_sym_EQ_EQ] = ACTIONS(1304), + [anon_sym_BANG_EQ] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(1304), + [anon_sym_GT] = ACTIONS(1304), + [anon_sym_LT_EQ] = ACTIONS(1306), + [anon_sym_GT_EQ] = ACTIONS(1306), + [anon_sym_LT_LT] = ACTIONS(1304), + [anon_sym_GT_GT] = ACTIONS(1304), + [anon_sym_PLUS] = ACTIONS(1304), + [anon_sym_DASH] = ACTIONS(1304), + [anon_sym_STAR] = ACTIONS(1304), + [anon_sym_SLASH] = ACTIONS(1304), + [anon_sym_PERCENT] = ACTIONS(1304), + [anon_sym_STAR_STAR] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1304), + [anon_sym_PIPE_AMP] = ACTIONS(1306), + [anon_sym_RBRACK] = ACTIONS(1306), + [anon_sym_EQ_TILDE] = ACTIONS(1304), + [anon_sym_AMP_GT] = ACTIONS(1304), + [anon_sym_AMP_GT_GT] = ACTIONS(1306), + [anon_sym_LT_AMP] = ACTIONS(1304), + [anon_sym_GT_AMP] = ACTIONS(1304), + [anon_sym_GT_PIPE] = ACTIONS(1306), + [anon_sym_LT_AMP_DASH] = ACTIONS(1306), + [anon_sym_GT_AMP_DASH] = ACTIONS(1306), + [anon_sym_LT_LT_DASH] = ACTIONS(1306), + [anon_sym_LT_LT_LT] = ACTIONS(1306), + [anon_sym_QMARK] = ACTIONS(1304), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1306), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1306), + [aux_sym_concatenation_token1] = ACTIONS(1405), + [anon_sym_DOLLAR] = ACTIONS(1304), + [sym__special_character] = ACTIONS(1304), + [anon_sym_DQUOTE] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), + [sym_ansi_c_string] = ACTIONS(1306), + [aux_sym_number_token1] = ACTIONS(1304), + [aux_sym_number_token2] = ACTIONS(1304), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1304), + [anon_sym_BQUOTE] = ACTIONS(1304), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1306), + [anon_sym_LT_LPAREN] = ACTIONS(1306), + [anon_sym_GT_LPAREN] = ACTIONS(1306), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1306), + [sym__concat] = ACTIONS(1405), + [sym_test_operator] = ACTIONS(1306), + [sym__bare_dollar] = ACTIONS(1306), + [sym__brace_start] = ACTIONS(1306), }, [500] = { - [aux_sym_concatenation_repeat1] = STATE(500), - [sym_word] = ACTIONS(1276), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1278), - [anon_sym_RBRACK] = ACTIONS(1278), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1278), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_GT_PIPE] = ACTIONS(1278), - [anon_sym_LT_AMP_DASH] = ACTIONS(1278), - [anon_sym_GT_AMP_DASH] = ACTIONS(1278), - [anon_sym_LT_LT_DASH] = ACTIONS(1278), - [anon_sym_LT_LT_LT] = ACTIONS(1278), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1278), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1278), - [aux_sym_concatenation_token1] = ACTIONS(1373), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_raw_string] = ACTIONS(1278), - [sym_ansi_c_string] = ACTIONS(1278), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1278), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1278), - [anon_sym_LT_LPAREN] = ACTIONS(1278), - [anon_sym_GT_LPAREN] = ACTIONS(1278), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1373), - [sym_test_operator] = ACTIONS(1278), - [sym__bare_dollar] = ACTIONS(1278), - [sym__brace_start] = ACTIONS(1278), + [aux_sym_concatenation_repeat1] = STATE(499), + [sym_word] = ACTIONS(1314), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1316), + [anon_sym_EQ] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1314), + [anon_sym_DASH_DASH] = ACTIONS(1314), + [anon_sym_PLUS_EQ] = ACTIONS(1314), + [anon_sym_DASH_EQ] = ACTIONS(1314), + [anon_sym_STAR_EQ] = ACTIONS(1314), + [anon_sym_SLASH_EQ] = ACTIONS(1314), + [anon_sym_PERCENT_EQ] = ACTIONS(1314), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1314), + [anon_sym_LT_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_GT_EQ] = ACTIONS(1316), + [anon_sym_AMP_EQ] = ACTIONS(1316), + [anon_sym_CARET_EQ] = ACTIONS(1314), + [anon_sym_PIPE_EQ] = ACTIONS(1316), + [anon_sym_PIPE_PIPE] = ACTIONS(1316), + [anon_sym_AMP_AMP] = ACTIONS(1316), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_CARET] = ACTIONS(1314), + [anon_sym_AMP] = ACTIONS(1314), + [anon_sym_EQ_EQ] = ACTIONS(1314), + [anon_sym_BANG_EQ] = ACTIONS(1314), + [anon_sym_LT] = ACTIONS(1314), + [anon_sym_GT] = ACTIONS(1314), + [anon_sym_LT_EQ] = ACTIONS(1316), + [anon_sym_GT_EQ] = ACTIONS(1316), + [anon_sym_LT_LT] = ACTIONS(1314), + [anon_sym_GT_GT] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1314), + [anon_sym_DASH] = ACTIONS(1314), + [anon_sym_STAR] = ACTIONS(1314), + [anon_sym_SLASH] = ACTIONS(1314), + [anon_sym_PERCENT] = ACTIONS(1314), + [anon_sym_STAR_STAR] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_PIPE_AMP] = ACTIONS(1316), + [anon_sym_RBRACK] = ACTIONS(1316), + [anon_sym_EQ_TILDE] = ACTIONS(1314), + [anon_sym_AMP_GT] = ACTIONS(1314), + [anon_sym_AMP_GT_GT] = ACTIONS(1316), + [anon_sym_LT_AMP] = ACTIONS(1314), + [anon_sym_GT_AMP] = ACTIONS(1314), + [anon_sym_GT_PIPE] = ACTIONS(1316), + [anon_sym_LT_AMP_DASH] = ACTIONS(1316), + [anon_sym_GT_AMP_DASH] = ACTIONS(1316), + [anon_sym_LT_LT_DASH] = ACTIONS(1316), + [anon_sym_LT_LT_LT] = ACTIONS(1316), + [anon_sym_QMARK] = ACTIONS(1314), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1316), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1316), + [aux_sym_concatenation_token1] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(1314), + [sym__special_character] = ACTIONS(1314), + [anon_sym_DQUOTE] = ACTIONS(1316), + [anon_sym_SQUOTE] = ACTIONS(1316), + [sym_ansi_c_string] = ACTIONS(1316), + [aux_sym_number_token1] = ACTIONS(1314), + [aux_sym_number_token2] = ACTIONS(1314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1316), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1314), + [anon_sym_BQUOTE] = ACTIONS(1314), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1316), + [anon_sym_LT_LPAREN] = ACTIONS(1316), + [anon_sym_GT_LPAREN] = ACTIONS(1316), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1316), + [sym__concat] = ACTIONS(1408), + [sym_test_operator] = ACTIONS(1316), + [sym__bare_dollar] = ACTIONS(1316), + [sym__brace_start] = ACTIONS(1316), }, [501] = { - [aux_sym_concatenation_repeat1] = STATE(497), - [sym_word] = ACTIONS(1251), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_PLUS_EQ] = ACTIONS(1253), - [anon_sym_DASH_EQ] = ACTIONS(1253), - [anon_sym_STAR_EQ] = ACTIONS(1253), - [anon_sym_SLASH_EQ] = ACTIONS(1253), - [anon_sym_PERCENT_EQ] = ACTIONS(1253), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1253), - [anon_sym_LT_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_GT_EQ] = ACTIONS(1376), - [anon_sym_AMP_EQ] = ACTIONS(1376), - [anon_sym_CARET_EQ] = ACTIONS(1253), - [anon_sym_PIPE_EQ] = ACTIONS(1376), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1255), - [anon_sym_AMP_GT] = ACTIONS(1251), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1251), - [anon_sym_GT_AMP] = ACTIONS(1251), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_AMP_DASH] = ACTIONS(1258), - [anon_sym_GT_AMP_DASH] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1253), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1258), - [aux_sym_concatenation_token1] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1251), - [sym__special_character] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1251), - [aux_sym_number_token2] = ACTIONS(1251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1251), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1258), - [sym__concat] = ACTIONS(301), - [sym_test_operator] = ACTIONS(1260), - [sym__bare_dollar] = ACTIONS(1258), - [sym__brace_start] = ACTIONS(1258), + [aux_sym_concatenation_repeat1] = STATE(496), + [sym_word] = ACTIONS(1300), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1302), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_EQ] = ACTIONS(1300), + [anon_sym_DASH_EQ] = ACTIONS(1300), + [anon_sym_STAR_EQ] = ACTIONS(1300), + [anon_sym_SLASH_EQ] = ACTIONS(1300), + [anon_sym_PERCENT_EQ] = ACTIONS(1300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1300), + [anon_sym_LT_LT_EQ] = ACTIONS(1302), + [anon_sym_GT_GT_EQ] = ACTIONS(1302), + [anon_sym_AMP_EQ] = ACTIONS(1302), + [anon_sym_CARET_EQ] = ACTIONS(1300), + [anon_sym_PIPE_EQ] = ACTIONS(1302), + [anon_sym_PIPE_PIPE] = ACTIONS(1302), + [anon_sym_AMP_AMP] = ACTIONS(1302), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_BANG_EQ] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1302), + [anon_sym_GT_EQ] = ACTIONS(1302), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(1300), + [anon_sym_STAR_STAR] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1302), + [anon_sym_RBRACK] = ACTIONS(1302), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1302), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_GT_PIPE] = ACTIONS(1302), + [anon_sym_LT_AMP_DASH] = ACTIONS(1302), + [anon_sym_GT_AMP_DASH] = ACTIONS(1302), + [anon_sym_LT_LT_DASH] = ACTIONS(1302), + [anon_sym_LT_LT_LT] = ACTIONS(1302), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1302), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1302), + [aux_sym_concatenation_token1] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), + [sym_ansi_c_string] = ACTIONS(1302), + [aux_sym_number_token1] = ACTIONS(1300), + [aux_sym_number_token2] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1302), + [anon_sym_LT_LPAREN] = ACTIONS(1302), + [anon_sym_GT_LPAREN] = ACTIONS(1302), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1302), + [sym__concat] = ACTIONS(309), + [sym_test_operator] = ACTIONS(1302), + [sym__bare_dollar] = ACTIONS(1302), + [sym__brace_start] = ACTIONS(1302), }, [502] = { - [aux_sym_concatenation_repeat1] = STATE(497), - [sym_word] = ACTIONS(1251), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_PLUS_EQ] = ACTIONS(1253), - [anon_sym_DASH_EQ] = ACTIONS(1253), - [anon_sym_STAR_EQ] = ACTIONS(1253), - [anon_sym_SLASH_EQ] = ACTIONS(1253), - [anon_sym_PERCENT_EQ] = ACTIONS(1253), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1253), - [anon_sym_LT_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_GT_EQ] = ACTIONS(1376), - [anon_sym_AMP_EQ] = ACTIONS(1376), - [anon_sym_CARET_EQ] = ACTIONS(1253), - [anon_sym_PIPE_EQ] = ACTIONS(1376), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1378), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1255), - [anon_sym_AMP_GT] = ACTIONS(1251), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1251), - [anon_sym_GT_AMP] = ACTIONS(1251), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_AMP_DASH] = ACTIONS(1258), - [anon_sym_GT_AMP_DASH] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1253), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1258), - [aux_sym_concatenation_token1] = ACTIONS(301), - [anon_sym_DOLLAR] = ACTIONS(1251), - [sym__special_character] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1251), - [aux_sym_number_token2] = ACTIONS(1251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1251), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1258), - [sym__concat] = ACTIONS(301), - [sym_test_operator] = ACTIONS(1260), - [sym__bare_dollar] = ACTIONS(1258), - [sym__brace_start] = ACTIONS(1258), + [sym_word] = ACTIONS(1300), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_SEMI] = ACTIONS(1300), + [anon_sym_EQ] = ACTIONS(1300), + [anon_sym_PLUS_PLUS] = ACTIONS(1300), + [anon_sym_DASH_DASH] = ACTIONS(1300), + [anon_sym_PLUS_EQ] = ACTIONS(1300), + [anon_sym_DASH_EQ] = ACTIONS(1300), + [anon_sym_STAR_EQ] = ACTIONS(1300), + [anon_sym_SLASH_EQ] = ACTIONS(1300), + [anon_sym_PERCENT_EQ] = ACTIONS(1300), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1300), + [anon_sym_LT_LT_EQ] = ACTIONS(1300), + [anon_sym_GT_GT_EQ] = ACTIONS(1300), + [anon_sym_AMP_EQ] = ACTIONS(1300), + [anon_sym_CARET_EQ] = ACTIONS(1300), + [anon_sym_PIPE_EQ] = ACTIONS(1300), + [anon_sym_PIPE_PIPE] = ACTIONS(1300), + [anon_sym_AMP_AMP] = ACTIONS(1300), + [anon_sym_PIPE] = ACTIONS(1300), + [anon_sym_CARET] = ACTIONS(1300), + [anon_sym_AMP] = ACTIONS(1300), + [anon_sym_EQ_EQ] = ACTIONS(1300), + [anon_sym_BANG_EQ] = ACTIONS(1300), + [anon_sym_LT] = ACTIONS(1300), + [anon_sym_GT] = ACTIONS(1300), + [anon_sym_LT_EQ] = ACTIONS(1300), + [anon_sym_GT_EQ] = ACTIONS(1300), + [anon_sym_LT_LT] = ACTIONS(1300), + [anon_sym_GT_GT] = ACTIONS(1300), + [anon_sym_PLUS] = ACTIONS(1300), + [anon_sym_DASH] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1300), + [anon_sym_SLASH] = ACTIONS(1300), + [anon_sym_PERCENT] = ACTIONS(1300), + [anon_sym_STAR_STAR] = ACTIONS(1300), + [anon_sym_LPAREN] = ACTIONS(1300), + [anon_sym_RPAREN] = ACTIONS(1300), + [anon_sym_SEMI_SEMI] = ACTIONS(1300), + [anon_sym_PIPE_AMP] = ACTIONS(1300), + [anon_sym_EQ_TILDE] = ACTIONS(1300), + [anon_sym_AMP_GT] = ACTIONS(1300), + [anon_sym_AMP_GT_GT] = ACTIONS(1300), + [anon_sym_LT_AMP] = ACTIONS(1300), + [anon_sym_GT_AMP] = ACTIONS(1300), + [anon_sym_GT_PIPE] = ACTIONS(1300), + [anon_sym_LT_AMP_DASH] = ACTIONS(1300), + [anon_sym_GT_AMP_DASH] = ACTIONS(1300), + [anon_sym_LT_LT_DASH] = ACTIONS(1300), + [aux_sym_heredoc_redirect_token1] = ACTIONS(1302), + [anon_sym_LT_LT_LT] = ACTIONS(1300), + [anon_sym_QMARK] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1300), + [anon_sym_DOLLAR] = ACTIONS(1300), + [sym__special_character] = ACTIONS(1300), + [anon_sym_DQUOTE] = ACTIONS(1300), + [anon_sym_SQUOTE] = ACTIONS(1300), + [sym_ansi_c_string] = ACTIONS(1300), + [aux_sym_number_token1] = ACTIONS(1300), + [aux_sym_number_token2] = ACTIONS(1300), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1300), + [anon_sym_LT_LPAREN] = ACTIONS(1300), + [anon_sym_GT_LPAREN] = ACTIONS(1300), + [sym_comment] = ACTIONS(3), + [sym_file_descriptor] = ACTIONS(1302), + [sym_test_operator] = ACTIONS(1302), + [sym__bare_dollar] = ACTIONS(1302), + [sym__brace_start] = ACTIONS(1302), }, [503] = { - [sym_word] = ACTIONS(1352), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1354), - [anon_sym_EQ] = ACTIONS(1352), - [anon_sym_PLUS_PLUS] = ACTIONS(1352), - [anon_sym_DASH_DASH] = ACTIONS(1352), - [anon_sym_PLUS_EQ] = ACTIONS(1352), - [anon_sym_DASH_EQ] = ACTIONS(1352), - [anon_sym_STAR_EQ] = ACTIONS(1352), - [anon_sym_SLASH_EQ] = ACTIONS(1352), - [anon_sym_PERCENT_EQ] = ACTIONS(1352), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1352), - [anon_sym_LT_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_GT_EQ] = ACTIONS(1354), - [anon_sym_AMP_EQ] = ACTIONS(1354), - [anon_sym_CARET_EQ] = ACTIONS(1352), - [anon_sym_PIPE_EQ] = ACTIONS(1354), - [anon_sym_PIPE_PIPE] = ACTIONS(1354), - [anon_sym_AMP_AMP] = ACTIONS(1354), - [anon_sym_PIPE] = ACTIONS(1352), - [anon_sym_CARET] = ACTIONS(1352), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_EQ_EQ] = ACTIONS(1352), - [anon_sym_BANG_EQ] = ACTIONS(1352), - [anon_sym_LT] = ACTIONS(1352), - [anon_sym_GT] = ACTIONS(1352), - [anon_sym_LT_EQ] = ACTIONS(1354), - [anon_sym_GT_EQ] = ACTIONS(1354), - [anon_sym_LT_LT] = ACTIONS(1352), - [anon_sym_GT_GT] = ACTIONS(1352), - [anon_sym_PLUS] = ACTIONS(1352), - [anon_sym_DASH] = ACTIONS(1352), - [anon_sym_STAR] = ACTIONS(1352), - [anon_sym_SLASH] = ACTIONS(1352), - [anon_sym_PERCENT] = ACTIONS(1352), - [anon_sym_STAR_STAR] = ACTIONS(1352), - [anon_sym_LPAREN] = ACTIONS(1352), - [anon_sym_PIPE_AMP] = ACTIONS(1354), - [anon_sym_RBRACK] = ACTIONS(1354), - [anon_sym_EQ_TILDE] = ACTIONS(1352), - [anon_sym_AMP_GT] = ACTIONS(1352), - [anon_sym_AMP_GT_GT] = ACTIONS(1354), - [anon_sym_LT_AMP] = ACTIONS(1352), - [anon_sym_GT_AMP] = ACTIONS(1352), - [anon_sym_GT_PIPE] = ACTIONS(1354), - [anon_sym_LT_AMP_DASH] = ACTIONS(1354), - [anon_sym_GT_AMP_DASH] = ACTIONS(1354), - [anon_sym_LT_LT_DASH] = ACTIONS(1354), - [anon_sym_LT_LT_LT] = ACTIONS(1354), - [anon_sym_QMARK] = ACTIONS(1352), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1354), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1354), - [aux_sym_concatenation_token1] = ACTIONS(1354), - [anon_sym_DOLLAR] = ACTIONS(1352), - [sym__special_character] = ACTIONS(1352), - [anon_sym_DQUOTE] = ACTIONS(1354), - [sym_raw_string] = ACTIONS(1354), - [sym_ansi_c_string] = ACTIONS(1354), - [aux_sym_number_token1] = ACTIONS(1352), - [aux_sym_number_token2] = ACTIONS(1352), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1354), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1352), - [anon_sym_BQUOTE] = ACTIONS(1352), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1354), - [anon_sym_LT_LPAREN] = ACTIONS(1354), - [anon_sym_GT_LPAREN] = ACTIONS(1354), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1354), - [sym__concat] = ACTIONS(1354), - [sym_test_operator] = ACTIONS(1354), - [sym__bare_dollar] = ACTIONS(1354), - [sym__brace_start] = ACTIONS(1354), + [aux_sym_concatenation_repeat1] = STATE(500), + [sym_word] = ACTIONS(1279), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_PIPE_PIPE] = ACTIONS(1288), + [anon_sym_AMP_AMP] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_EQ_EQ] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_EQ] = ACTIONS(1403), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_SLASH] = ACTIONS(1281), + [anon_sym_PERCENT] = ACTIONS(1281), + [anon_sym_STAR_STAR] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1410), + [anon_sym_PIPE_AMP] = ACTIONS(1286), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_EQ_TILDE] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1279), + [anon_sym_AMP_GT_GT] = ACTIONS(1286), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [anon_sym_GT_PIPE] = ACTIONS(1286), + [anon_sym_LT_AMP_DASH] = ACTIONS(1286), + [anon_sym_GT_AMP_DASH] = ACTIONS(1286), + [anon_sym_LT_LT_DASH] = ACTIONS(1286), + [anon_sym_LT_LT_LT] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1286), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1286), + [aux_sym_concatenation_token1] = ACTIONS(309), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym__special_character] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [sym_ansi_c_string] = ACTIONS(1286), + [aux_sym_number_token1] = ACTIONS(1279), + [aux_sym_number_token2] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1279), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1286), + [anon_sym_LT_LPAREN] = ACTIONS(1286), + [anon_sym_GT_LPAREN] = ACTIONS(1286), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1286), + [sym__concat] = ACTIONS(309), + [sym_test_operator] = ACTIONS(1288), + [sym__bare_dollar] = ACTIONS(1286), + [sym__brace_start] = ACTIONS(1286), }, [504] = { - [sym_word] = ACTIONS(1320), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1322), - [anon_sym_EQ] = ACTIONS(1320), - [anon_sym_PLUS_PLUS] = ACTIONS(1320), - [anon_sym_DASH_DASH] = ACTIONS(1320), - [anon_sym_PLUS_EQ] = ACTIONS(1320), - [anon_sym_DASH_EQ] = ACTIONS(1320), - [anon_sym_STAR_EQ] = ACTIONS(1320), - [anon_sym_SLASH_EQ] = ACTIONS(1320), - [anon_sym_PERCENT_EQ] = ACTIONS(1320), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1320), - [anon_sym_LT_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_GT_EQ] = ACTIONS(1322), - [anon_sym_AMP_EQ] = ACTIONS(1322), - [anon_sym_CARET_EQ] = ACTIONS(1320), - [anon_sym_PIPE_EQ] = ACTIONS(1322), - [anon_sym_PIPE_PIPE] = ACTIONS(1322), - [anon_sym_AMP_AMP] = ACTIONS(1322), - [anon_sym_PIPE] = ACTIONS(1320), - [anon_sym_CARET] = ACTIONS(1320), - [anon_sym_AMP] = ACTIONS(1320), - [anon_sym_EQ_EQ] = ACTIONS(1320), - [anon_sym_BANG_EQ] = ACTIONS(1320), - [anon_sym_LT] = ACTIONS(1320), - [anon_sym_GT] = ACTIONS(1320), - [anon_sym_LT_EQ] = ACTIONS(1322), - [anon_sym_GT_EQ] = ACTIONS(1322), - [anon_sym_LT_LT] = ACTIONS(1320), - [anon_sym_GT_GT] = ACTIONS(1320), - [anon_sym_PLUS] = ACTIONS(1320), - [anon_sym_DASH] = ACTIONS(1320), - [anon_sym_STAR] = ACTIONS(1320), - [anon_sym_SLASH] = ACTIONS(1320), - [anon_sym_PERCENT] = ACTIONS(1320), - [anon_sym_STAR_STAR] = ACTIONS(1320), - [anon_sym_LPAREN] = ACTIONS(1320), - [anon_sym_PIPE_AMP] = ACTIONS(1322), - [anon_sym_RBRACK] = ACTIONS(1322), - [anon_sym_EQ_TILDE] = ACTIONS(1320), - [anon_sym_AMP_GT] = ACTIONS(1320), - [anon_sym_AMP_GT_GT] = ACTIONS(1322), - [anon_sym_LT_AMP] = ACTIONS(1320), - [anon_sym_GT_AMP] = ACTIONS(1320), - [anon_sym_GT_PIPE] = ACTIONS(1322), - [anon_sym_LT_AMP_DASH] = ACTIONS(1322), - [anon_sym_GT_AMP_DASH] = ACTIONS(1322), - [anon_sym_LT_LT_DASH] = ACTIONS(1322), - [anon_sym_LT_LT_LT] = ACTIONS(1322), - [anon_sym_QMARK] = ACTIONS(1320), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1322), - [aux_sym_concatenation_token1] = ACTIONS(1322), - [anon_sym_DOLLAR] = ACTIONS(1320), - [sym__special_character] = ACTIONS(1320), - [anon_sym_DQUOTE] = ACTIONS(1322), - [sym_raw_string] = ACTIONS(1322), - [sym_ansi_c_string] = ACTIONS(1322), - [aux_sym_number_token1] = ACTIONS(1320), - [aux_sym_number_token2] = ACTIONS(1320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1320), - [anon_sym_BQUOTE] = ACTIONS(1320), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), - [anon_sym_LT_LPAREN] = ACTIONS(1322), - [anon_sym_GT_LPAREN] = ACTIONS(1322), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1322), - [sym__concat] = ACTIONS(1322), - [sym_test_operator] = ACTIONS(1322), - [sym__bare_dollar] = ACTIONS(1322), - [sym__brace_start] = ACTIONS(1322), + [sym_word] = ACTIONS(1336), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1338), + [anon_sym_EQ] = ACTIONS(1336), + [anon_sym_PLUS_PLUS] = ACTIONS(1336), + [anon_sym_DASH_DASH] = ACTIONS(1336), + [anon_sym_PLUS_EQ] = ACTIONS(1336), + [anon_sym_DASH_EQ] = ACTIONS(1336), + [anon_sym_STAR_EQ] = ACTIONS(1336), + [anon_sym_SLASH_EQ] = ACTIONS(1336), + [anon_sym_PERCENT_EQ] = ACTIONS(1336), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1336), + [anon_sym_LT_LT_EQ] = ACTIONS(1338), + [anon_sym_GT_GT_EQ] = ACTIONS(1338), + [anon_sym_AMP_EQ] = ACTIONS(1338), + [anon_sym_CARET_EQ] = ACTIONS(1336), + [anon_sym_PIPE_EQ] = ACTIONS(1338), + [anon_sym_PIPE_PIPE] = ACTIONS(1338), + [anon_sym_AMP_AMP] = ACTIONS(1338), + [anon_sym_PIPE] = ACTIONS(1336), + [anon_sym_CARET] = ACTIONS(1336), + [anon_sym_AMP] = ACTIONS(1336), + [anon_sym_EQ_EQ] = ACTIONS(1336), + [anon_sym_BANG_EQ] = ACTIONS(1336), + [anon_sym_LT] = ACTIONS(1336), + [anon_sym_GT] = ACTIONS(1336), + [anon_sym_LT_EQ] = ACTIONS(1338), + [anon_sym_GT_EQ] = ACTIONS(1338), + [anon_sym_LT_LT] = ACTIONS(1336), + [anon_sym_GT_GT] = ACTIONS(1336), + [anon_sym_PLUS] = ACTIONS(1336), + [anon_sym_DASH] = ACTIONS(1336), + [anon_sym_STAR] = ACTIONS(1336), + [anon_sym_SLASH] = ACTIONS(1336), + [anon_sym_PERCENT] = ACTIONS(1336), + [anon_sym_STAR_STAR] = ACTIONS(1336), + [anon_sym_LPAREN] = ACTIONS(1336), + [anon_sym_PIPE_AMP] = ACTIONS(1338), + [anon_sym_RBRACK] = ACTIONS(1338), + [anon_sym_EQ_TILDE] = ACTIONS(1336), + [anon_sym_AMP_GT] = ACTIONS(1336), + [anon_sym_AMP_GT_GT] = ACTIONS(1338), + [anon_sym_LT_AMP] = ACTIONS(1336), + [anon_sym_GT_AMP] = ACTIONS(1336), + [anon_sym_GT_PIPE] = ACTIONS(1338), + [anon_sym_LT_AMP_DASH] = ACTIONS(1338), + [anon_sym_GT_AMP_DASH] = ACTIONS(1338), + [anon_sym_LT_LT_DASH] = ACTIONS(1338), + [anon_sym_LT_LT_LT] = ACTIONS(1338), + [anon_sym_QMARK] = ACTIONS(1336), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1338), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1338), + [aux_sym_concatenation_token1] = ACTIONS(1338), + [anon_sym_DOLLAR] = ACTIONS(1336), + [sym__special_character] = ACTIONS(1336), + [anon_sym_DQUOTE] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1338), + [sym_ansi_c_string] = ACTIONS(1338), + [aux_sym_number_token1] = ACTIONS(1336), + [aux_sym_number_token2] = ACTIONS(1336), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1338), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), + [anon_sym_BQUOTE] = ACTIONS(1336), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1338), + [anon_sym_LT_LPAREN] = ACTIONS(1338), + [anon_sym_GT_LPAREN] = ACTIONS(1338), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1338), + [sym__concat] = ACTIONS(1338), + [sym_test_operator] = ACTIONS(1338), + [sym__bare_dollar] = ACTIONS(1338), + [sym__brace_start] = ACTIONS(1338), }, [505] = { - [sym_word] = ACTIONS(1328), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1330), - [anon_sym_EQ] = ACTIONS(1328), - [anon_sym_PLUS_PLUS] = ACTIONS(1328), - [anon_sym_DASH_DASH] = ACTIONS(1328), - [anon_sym_PLUS_EQ] = ACTIONS(1328), - [anon_sym_DASH_EQ] = ACTIONS(1328), - [anon_sym_STAR_EQ] = ACTIONS(1328), - [anon_sym_SLASH_EQ] = ACTIONS(1328), - [anon_sym_PERCENT_EQ] = ACTIONS(1328), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1328), - [anon_sym_LT_LT_EQ] = ACTIONS(1330), - [anon_sym_GT_GT_EQ] = ACTIONS(1330), - [anon_sym_AMP_EQ] = ACTIONS(1330), - [anon_sym_CARET_EQ] = ACTIONS(1328), - [anon_sym_PIPE_EQ] = ACTIONS(1330), - [anon_sym_PIPE_PIPE] = ACTIONS(1330), - [anon_sym_AMP_AMP] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(1328), - [anon_sym_CARET] = ACTIONS(1328), - [anon_sym_AMP] = ACTIONS(1328), - [anon_sym_EQ_EQ] = ACTIONS(1328), - [anon_sym_BANG_EQ] = ACTIONS(1328), - [anon_sym_LT] = ACTIONS(1328), - [anon_sym_GT] = ACTIONS(1328), - [anon_sym_LT_EQ] = ACTIONS(1330), - [anon_sym_GT_EQ] = ACTIONS(1330), - [anon_sym_LT_LT] = ACTIONS(1328), - [anon_sym_GT_GT] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1328), - [anon_sym_DASH] = ACTIONS(1328), - [anon_sym_STAR] = ACTIONS(1328), - [anon_sym_SLASH] = ACTIONS(1328), - [anon_sym_PERCENT] = ACTIONS(1328), - [anon_sym_STAR_STAR] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_PIPE_AMP] = ACTIONS(1330), - [anon_sym_RBRACK] = ACTIONS(1330), - [anon_sym_EQ_TILDE] = ACTIONS(1328), - [anon_sym_AMP_GT] = ACTIONS(1328), - [anon_sym_AMP_GT_GT] = ACTIONS(1330), - [anon_sym_LT_AMP] = ACTIONS(1328), - [anon_sym_GT_AMP] = ACTIONS(1328), - [anon_sym_GT_PIPE] = ACTIONS(1330), - [anon_sym_LT_AMP_DASH] = ACTIONS(1330), - [anon_sym_GT_AMP_DASH] = ACTIONS(1330), - [anon_sym_LT_LT_DASH] = ACTIONS(1330), - [anon_sym_LT_LT_LT] = ACTIONS(1330), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1330), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1330), - [aux_sym_concatenation_token1] = ACTIONS(1330), - [anon_sym_DOLLAR] = ACTIONS(1328), - [sym__special_character] = ACTIONS(1328), - [anon_sym_DQUOTE] = ACTIONS(1330), - [sym_raw_string] = ACTIONS(1330), - [sym_ansi_c_string] = ACTIONS(1330), - [aux_sym_number_token1] = ACTIONS(1328), - [aux_sym_number_token2] = ACTIONS(1328), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1330), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1328), - [anon_sym_BQUOTE] = ACTIONS(1328), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1330), - [anon_sym_LT_LPAREN] = ACTIONS(1330), - [anon_sym_GT_LPAREN] = ACTIONS(1330), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1330), - [sym__concat] = ACTIONS(1330), - [sym_test_operator] = ACTIONS(1330), - [sym__bare_dollar] = ACTIONS(1330), - [sym__brace_start] = ACTIONS(1330), + [sym_word] = ACTIONS(1376), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1378), + [anon_sym_EQ] = ACTIONS(1376), + [anon_sym_PLUS_PLUS] = ACTIONS(1376), + [anon_sym_DASH_DASH] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(1376), + [anon_sym_DASH_EQ] = ACTIONS(1376), + [anon_sym_STAR_EQ] = ACTIONS(1376), + [anon_sym_SLASH_EQ] = ACTIONS(1376), + [anon_sym_PERCENT_EQ] = ACTIONS(1376), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1376), + [anon_sym_LT_LT_EQ] = ACTIONS(1378), + [anon_sym_GT_GT_EQ] = ACTIONS(1378), + [anon_sym_AMP_EQ] = ACTIONS(1378), + [anon_sym_CARET_EQ] = ACTIONS(1376), + [anon_sym_PIPE_EQ] = ACTIONS(1378), + [anon_sym_PIPE_PIPE] = ACTIONS(1378), + [anon_sym_AMP_AMP] = ACTIONS(1378), + [anon_sym_PIPE] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_EQ_EQ] = ACTIONS(1376), + [anon_sym_BANG_EQ] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_GT] = ACTIONS(1376), + [anon_sym_LT_EQ] = ACTIONS(1378), + [anon_sym_GT_EQ] = ACTIONS(1378), + [anon_sym_LT_LT] = ACTIONS(1376), + [anon_sym_GT_GT] = ACTIONS(1376), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1376), + [anon_sym_PERCENT] = ACTIONS(1376), + [anon_sym_STAR_STAR] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1376), + [anon_sym_PIPE_AMP] = ACTIONS(1378), + [anon_sym_RBRACK] = ACTIONS(1378), + [anon_sym_EQ_TILDE] = ACTIONS(1376), + [anon_sym_AMP_GT] = ACTIONS(1376), + [anon_sym_AMP_GT_GT] = ACTIONS(1378), + [anon_sym_LT_AMP] = ACTIONS(1376), + [anon_sym_GT_AMP] = ACTIONS(1376), + [anon_sym_GT_PIPE] = ACTIONS(1378), + [anon_sym_LT_AMP_DASH] = ACTIONS(1378), + [anon_sym_GT_AMP_DASH] = ACTIONS(1378), + [anon_sym_LT_LT_DASH] = ACTIONS(1378), + [anon_sym_LT_LT_LT] = ACTIONS(1378), + [anon_sym_QMARK] = ACTIONS(1376), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1378), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1378), + [aux_sym_concatenation_token1] = ACTIONS(1378), + [anon_sym_DOLLAR] = ACTIONS(1376), + [sym__special_character] = ACTIONS(1376), + [anon_sym_DQUOTE] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1378), + [sym_ansi_c_string] = ACTIONS(1378), + [aux_sym_number_token1] = ACTIONS(1376), + [aux_sym_number_token2] = ACTIONS(1376), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1378), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1376), + [anon_sym_BQUOTE] = ACTIONS(1376), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1378), + [anon_sym_LT_LPAREN] = ACTIONS(1378), + [anon_sym_GT_LPAREN] = ACTIONS(1378), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1378), + [sym__concat] = ACTIONS(1378), + [sym_test_operator] = ACTIONS(1378), + [sym__bare_dollar] = ACTIONS(1378), + [sym__brace_start] = ACTIONS(1378), }, [506] = { - [sym_word] = ACTIONS(1340), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1342), - [anon_sym_EQ] = ACTIONS(1340), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_PLUS_EQ] = ACTIONS(1340), - [anon_sym_DASH_EQ] = ACTIONS(1340), - [anon_sym_STAR_EQ] = ACTIONS(1340), - [anon_sym_SLASH_EQ] = ACTIONS(1340), - [anon_sym_PERCENT_EQ] = ACTIONS(1340), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1340), - [anon_sym_LT_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_GT_EQ] = ACTIONS(1342), - [anon_sym_AMP_EQ] = ACTIONS(1342), - [anon_sym_CARET_EQ] = ACTIONS(1340), - [anon_sym_PIPE_EQ] = ACTIONS(1342), - [anon_sym_PIPE_PIPE] = ACTIONS(1342), - [anon_sym_AMP_AMP] = ACTIONS(1342), - [anon_sym_PIPE] = ACTIONS(1340), - [anon_sym_CARET] = ACTIONS(1340), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_EQ_EQ] = ACTIONS(1340), - [anon_sym_BANG_EQ] = ACTIONS(1340), - [anon_sym_LT] = ACTIONS(1340), - [anon_sym_GT] = ACTIONS(1340), - [anon_sym_LT_EQ] = ACTIONS(1342), - [anon_sym_GT_EQ] = ACTIONS(1342), - [anon_sym_LT_LT] = ACTIONS(1340), - [anon_sym_GT_GT] = ACTIONS(1340), - [anon_sym_PLUS] = ACTIONS(1340), - [anon_sym_DASH] = ACTIONS(1340), - [anon_sym_STAR] = ACTIONS(1340), - [anon_sym_SLASH] = ACTIONS(1340), - [anon_sym_PERCENT] = ACTIONS(1340), - [anon_sym_STAR_STAR] = ACTIONS(1340), - [anon_sym_LPAREN] = ACTIONS(1340), - [anon_sym_PIPE_AMP] = ACTIONS(1342), - [anon_sym_RBRACK] = ACTIONS(1342), - [anon_sym_EQ_TILDE] = ACTIONS(1340), - [anon_sym_AMP_GT] = ACTIONS(1340), - [anon_sym_AMP_GT_GT] = ACTIONS(1342), - [anon_sym_LT_AMP] = ACTIONS(1340), - [anon_sym_GT_AMP] = ACTIONS(1340), - [anon_sym_GT_PIPE] = ACTIONS(1342), - [anon_sym_LT_AMP_DASH] = ACTIONS(1342), - [anon_sym_GT_AMP_DASH] = ACTIONS(1342), - [anon_sym_LT_LT_DASH] = ACTIONS(1342), - [anon_sym_LT_LT_LT] = ACTIONS(1342), - [anon_sym_QMARK] = ACTIONS(1340), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1342), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1342), - [aux_sym_concatenation_token1] = ACTIONS(1342), - [anon_sym_DOLLAR] = ACTIONS(1340), - [sym__special_character] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(1342), - [sym_raw_string] = ACTIONS(1342), - [sym_ansi_c_string] = ACTIONS(1342), - [aux_sym_number_token1] = ACTIONS(1340), - [aux_sym_number_token2] = ACTIONS(1340), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), - [anon_sym_BQUOTE] = ACTIONS(1340), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1342), - [anon_sym_LT_LPAREN] = ACTIONS(1342), - [anon_sym_GT_LPAREN] = ACTIONS(1342), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1342), - [sym__concat] = ACTIONS(1342), - [sym_test_operator] = ACTIONS(1342), - [sym__bare_dollar] = ACTIONS(1342), - [sym__brace_start] = ACTIONS(1342), + [sym_word] = ACTIONS(1368), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_EQ] = ACTIONS(1368), + [anon_sym_DASH_EQ] = ACTIONS(1368), + [anon_sym_STAR_EQ] = ACTIONS(1368), + [anon_sym_SLASH_EQ] = ACTIONS(1368), + [anon_sym_PERCENT_EQ] = ACTIONS(1368), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1368), + [anon_sym_LT_LT_EQ] = ACTIONS(1370), + [anon_sym_GT_GT_EQ] = ACTIONS(1370), + [anon_sym_AMP_EQ] = ACTIONS(1370), + [anon_sym_CARET_EQ] = ACTIONS(1368), + [anon_sym_PIPE_EQ] = ACTIONS(1370), + [anon_sym_PIPE_PIPE] = ACTIONS(1370), + [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1368), + [anon_sym_BANG_EQ] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_LT_EQ] = ACTIONS(1370), + [anon_sym_GT_EQ] = ACTIONS(1370), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [anon_sym_STAR_STAR] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1370), + [anon_sym_RBRACK] = ACTIONS(1370), + [anon_sym_EQ_TILDE] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1368), + [anon_sym_AMP_GT_GT] = ACTIONS(1370), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [anon_sym_GT_PIPE] = ACTIONS(1370), + [anon_sym_LT_AMP_DASH] = ACTIONS(1370), + [anon_sym_GT_AMP_DASH] = ACTIONS(1370), + [anon_sym_LT_LT_DASH] = ACTIONS(1370), + [anon_sym_LT_LT_LT] = ACTIONS(1370), + [anon_sym_QMARK] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1370), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1370), + [aux_sym_concatenation_token1] = ACTIONS(1370), + [anon_sym_DOLLAR] = ACTIONS(1368), + [sym__special_character] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [sym_ansi_c_string] = ACTIONS(1370), + [aux_sym_number_token1] = ACTIONS(1368), + [aux_sym_number_token2] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1370), + [anon_sym_LT_LPAREN] = ACTIONS(1370), + [anon_sym_GT_LPAREN] = ACTIONS(1370), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1370), + [sym__concat] = ACTIONS(1370), + [sym_test_operator] = ACTIONS(1370), + [sym__bare_dollar] = ACTIONS(1370), + [sym__brace_start] = ACTIONS(1370), }, [507] = { - [sym_word] = ACTIONS(1292), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1294), - [anon_sym_EQ] = ACTIONS(1292), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_PLUS_EQ] = ACTIONS(1292), - [anon_sym_DASH_EQ] = ACTIONS(1292), - [anon_sym_STAR_EQ] = ACTIONS(1292), - [anon_sym_SLASH_EQ] = ACTIONS(1292), - [anon_sym_PERCENT_EQ] = ACTIONS(1292), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1292), - [anon_sym_LT_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_GT_EQ] = ACTIONS(1294), - [anon_sym_AMP_EQ] = ACTIONS(1294), - [anon_sym_CARET_EQ] = ACTIONS(1292), - [anon_sym_PIPE_EQ] = ACTIONS(1294), - [anon_sym_PIPE_PIPE] = ACTIONS(1294), - [anon_sym_AMP_AMP] = ACTIONS(1294), - [anon_sym_PIPE] = ACTIONS(1292), - [anon_sym_CARET] = ACTIONS(1292), - [anon_sym_AMP] = ACTIONS(1292), - [anon_sym_EQ_EQ] = ACTIONS(1292), - [anon_sym_BANG_EQ] = ACTIONS(1292), - [anon_sym_LT] = ACTIONS(1292), - [anon_sym_GT] = ACTIONS(1292), - [anon_sym_LT_EQ] = ACTIONS(1294), - [anon_sym_GT_EQ] = ACTIONS(1294), - [anon_sym_LT_LT] = ACTIONS(1292), - [anon_sym_GT_GT] = ACTIONS(1292), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1292), - [anon_sym_STAR] = ACTIONS(1292), - [anon_sym_SLASH] = ACTIONS(1292), - [anon_sym_PERCENT] = ACTIONS(1292), - [anon_sym_STAR_STAR] = ACTIONS(1292), - [anon_sym_LPAREN] = ACTIONS(1292), - [anon_sym_PIPE_AMP] = ACTIONS(1294), - [anon_sym_RBRACK] = ACTIONS(1294), - [anon_sym_EQ_TILDE] = ACTIONS(1292), - [anon_sym_AMP_GT] = ACTIONS(1292), - [anon_sym_AMP_GT_GT] = ACTIONS(1294), - [anon_sym_LT_AMP] = ACTIONS(1292), - [anon_sym_GT_AMP] = ACTIONS(1292), - [anon_sym_GT_PIPE] = ACTIONS(1294), - [anon_sym_LT_AMP_DASH] = ACTIONS(1294), - [anon_sym_GT_AMP_DASH] = ACTIONS(1294), - [anon_sym_LT_LT_DASH] = ACTIONS(1294), - [anon_sym_LT_LT_LT] = ACTIONS(1294), - [anon_sym_QMARK] = ACTIONS(1292), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1294), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1294), - [aux_sym_concatenation_token1] = ACTIONS(1294), - [anon_sym_DOLLAR] = ACTIONS(1292), - [sym__special_character] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [sym_raw_string] = ACTIONS(1294), - [sym_ansi_c_string] = ACTIONS(1294), - [aux_sym_number_token1] = ACTIONS(1292), - [aux_sym_number_token2] = ACTIONS(1292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1294), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1292), - [anon_sym_BQUOTE] = ACTIONS(1292), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1294), - [anon_sym_LT_LPAREN] = ACTIONS(1294), - [anon_sym_GT_LPAREN] = ACTIONS(1294), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1294), - [sym__concat] = ACTIONS(1294), - [sym_test_operator] = ACTIONS(1294), - [sym__bare_dollar] = ACTIONS(1294), - [sym__brace_start] = ACTIONS(1294), - }, - [508] = { - [sym_word] = ACTIONS(1296), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1298), - [anon_sym_EQ] = ACTIONS(1296), - [anon_sym_PLUS_PLUS] = ACTIONS(1296), - [anon_sym_DASH_DASH] = ACTIONS(1296), - [anon_sym_PLUS_EQ] = ACTIONS(1296), - [anon_sym_DASH_EQ] = ACTIONS(1296), - [anon_sym_STAR_EQ] = ACTIONS(1296), - [anon_sym_SLASH_EQ] = ACTIONS(1296), - [anon_sym_PERCENT_EQ] = ACTIONS(1296), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1296), - [anon_sym_LT_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_GT_EQ] = ACTIONS(1298), - [anon_sym_AMP_EQ] = ACTIONS(1298), - [anon_sym_CARET_EQ] = ACTIONS(1296), - [anon_sym_PIPE_EQ] = ACTIONS(1298), - [anon_sym_PIPE_PIPE] = ACTIONS(1298), - [anon_sym_AMP_AMP] = ACTIONS(1298), - [anon_sym_PIPE] = ACTIONS(1296), - [anon_sym_CARET] = ACTIONS(1296), - [anon_sym_AMP] = ACTIONS(1296), - [anon_sym_EQ_EQ] = ACTIONS(1296), - [anon_sym_BANG_EQ] = ACTIONS(1296), - [anon_sym_LT] = ACTIONS(1296), - [anon_sym_GT] = ACTIONS(1296), - [anon_sym_LT_EQ] = ACTIONS(1298), - [anon_sym_GT_EQ] = ACTIONS(1298), - [anon_sym_LT_LT] = ACTIONS(1296), - [anon_sym_GT_GT] = ACTIONS(1296), - [anon_sym_PLUS] = ACTIONS(1296), - [anon_sym_DASH] = ACTIONS(1296), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_SLASH] = ACTIONS(1296), - [anon_sym_PERCENT] = ACTIONS(1296), - [anon_sym_STAR_STAR] = ACTIONS(1296), - [anon_sym_LPAREN] = ACTIONS(1296), - [anon_sym_PIPE_AMP] = ACTIONS(1298), - [anon_sym_RBRACK] = ACTIONS(1298), - [anon_sym_EQ_TILDE] = ACTIONS(1296), - [anon_sym_AMP_GT] = ACTIONS(1296), - [anon_sym_AMP_GT_GT] = ACTIONS(1298), - [anon_sym_LT_AMP] = ACTIONS(1296), - [anon_sym_GT_AMP] = ACTIONS(1296), - [anon_sym_GT_PIPE] = ACTIONS(1298), - [anon_sym_LT_AMP_DASH] = ACTIONS(1298), - [anon_sym_GT_AMP_DASH] = ACTIONS(1298), - [anon_sym_LT_LT_DASH] = ACTIONS(1298), - [anon_sym_LT_LT_LT] = ACTIONS(1298), - [anon_sym_QMARK] = ACTIONS(1296), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1298), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1298), - [aux_sym_concatenation_token1] = ACTIONS(1298), - [anon_sym_DOLLAR] = ACTIONS(1296), - [sym__special_character] = ACTIONS(1296), - [anon_sym_DQUOTE] = ACTIONS(1298), - [sym_raw_string] = ACTIONS(1298), - [sym_ansi_c_string] = ACTIONS(1298), - [aux_sym_number_token1] = ACTIONS(1296), - [aux_sym_number_token2] = ACTIONS(1296), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1298), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1296), - [anon_sym_BQUOTE] = ACTIONS(1296), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1298), - [anon_sym_LT_LPAREN] = ACTIONS(1298), - [anon_sym_GT_LPAREN] = ACTIONS(1298), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1298), - [sym__concat] = ACTIONS(1298), - [sym_test_operator] = ACTIONS(1298), - [sym__bare_dollar] = ACTIONS(1298), - [sym__brace_start] = ACTIONS(1298), - }, - [509] = { - [sym_word] = ACTIONS(1324), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1326), - [anon_sym_EQ] = ACTIONS(1324), - [anon_sym_PLUS_PLUS] = ACTIONS(1324), - [anon_sym_DASH_DASH] = ACTIONS(1324), - [anon_sym_PLUS_EQ] = ACTIONS(1324), - [anon_sym_DASH_EQ] = ACTIONS(1324), - [anon_sym_STAR_EQ] = ACTIONS(1324), - [anon_sym_SLASH_EQ] = ACTIONS(1324), - [anon_sym_PERCENT_EQ] = ACTIONS(1324), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), - [anon_sym_LT_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_GT_EQ] = ACTIONS(1326), - [anon_sym_AMP_EQ] = ACTIONS(1326), - [anon_sym_CARET_EQ] = ACTIONS(1324), - [anon_sym_PIPE_EQ] = ACTIONS(1326), - [anon_sym_PIPE_PIPE] = ACTIONS(1326), - [anon_sym_AMP_AMP] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1324), - [anon_sym_CARET] = ACTIONS(1324), - [anon_sym_AMP] = ACTIONS(1324), - [anon_sym_EQ_EQ] = ACTIONS(1324), - [anon_sym_BANG_EQ] = ACTIONS(1324), - [anon_sym_LT] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1324), - [anon_sym_LT_EQ] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1326), - [anon_sym_LT_LT] = ACTIONS(1324), - [anon_sym_GT_GT] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1324), - [anon_sym_DASH] = ACTIONS(1324), - [anon_sym_STAR] = ACTIONS(1324), - [anon_sym_SLASH] = ACTIONS(1324), - [anon_sym_PERCENT] = ACTIONS(1324), - [anon_sym_STAR_STAR] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_PIPE_AMP] = ACTIONS(1326), - [anon_sym_RBRACK] = ACTIONS(1326), - [anon_sym_EQ_TILDE] = ACTIONS(1324), - [anon_sym_AMP_GT] = ACTIONS(1324), - [anon_sym_AMP_GT_GT] = ACTIONS(1326), - [anon_sym_LT_AMP] = ACTIONS(1324), - [anon_sym_GT_AMP] = ACTIONS(1324), - [anon_sym_GT_PIPE] = ACTIONS(1326), - [anon_sym_LT_AMP_DASH] = ACTIONS(1326), - [anon_sym_GT_AMP_DASH] = ACTIONS(1326), - [anon_sym_LT_LT_DASH] = ACTIONS(1326), - [anon_sym_LT_LT_LT] = ACTIONS(1326), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1326), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1326), - [aux_sym_concatenation_token1] = ACTIONS(1326), - [anon_sym_DOLLAR] = ACTIONS(1324), - [sym__special_character] = ACTIONS(1324), - [anon_sym_DQUOTE] = ACTIONS(1326), - [sym_raw_string] = ACTIONS(1326), - [sym_ansi_c_string] = ACTIONS(1326), - [aux_sym_number_token1] = ACTIONS(1324), - [aux_sym_number_token2] = ACTIONS(1324), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1326), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1324), - [anon_sym_BQUOTE] = ACTIONS(1324), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1326), - [anon_sym_LT_LPAREN] = ACTIONS(1326), - [anon_sym_GT_LPAREN] = ACTIONS(1326), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1326), - [sym__concat] = ACTIONS(1326), - [sym_test_operator] = ACTIONS(1326), - [sym__bare_dollar] = ACTIONS(1326), - [sym__brace_start] = ACTIONS(1326), - }, - [510] = { - [sym_word] = ACTIONS(1276), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1276), - [anon_sym_PLUS_PLUS] = ACTIONS(1276), - [anon_sym_DASH_DASH] = ACTIONS(1276), - [anon_sym_PLUS_EQ] = ACTIONS(1276), - [anon_sym_DASH_EQ] = ACTIONS(1276), - [anon_sym_STAR_EQ] = ACTIONS(1276), - [anon_sym_SLASH_EQ] = ACTIONS(1276), - [anon_sym_PERCENT_EQ] = ACTIONS(1276), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1276), - [anon_sym_LT_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_GT_EQ] = ACTIONS(1278), - [anon_sym_AMP_EQ] = ACTIONS(1278), - [anon_sym_CARET_EQ] = ACTIONS(1276), - [anon_sym_PIPE_EQ] = ACTIONS(1278), - [anon_sym_PIPE_PIPE] = ACTIONS(1278), - [anon_sym_AMP_AMP] = ACTIONS(1278), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_CARET] = ACTIONS(1276), - [anon_sym_AMP] = ACTIONS(1276), - [anon_sym_EQ_EQ] = ACTIONS(1276), - [anon_sym_BANG_EQ] = ACTIONS(1276), - [anon_sym_LT] = ACTIONS(1276), - [anon_sym_GT] = ACTIONS(1276), - [anon_sym_LT_EQ] = ACTIONS(1278), - [anon_sym_GT_EQ] = ACTIONS(1278), - [anon_sym_LT_LT] = ACTIONS(1276), - [anon_sym_GT_GT] = ACTIONS(1276), - [anon_sym_PLUS] = ACTIONS(1276), - [anon_sym_DASH] = ACTIONS(1276), - [anon_sym_STAR] = ACTIONS(1276), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_PERCENT] = ACTIONS(1276), - [anon_sym_STAR_STAR] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_PIPE_AMP] = ACTIONS(1278), - [anon_sym_RBRACK] = ACTIONS(1278), - [anon_sym_EQ_TILDE] = ACTIONS(1276), - [anon_sym_AMP_GT] = ACTIONS(1276), - [anon_sym_AMP_GT_GT] = ACTIONS(1278), - [anon_sym_LT_AMP] = ACTIONS(1276), - [anon_sym_GT_AMP] = ACTIONS(1276), - [anon_sym_GT_PIPE] = ACTIONS(1278), - [anon_sym_LT_AMP_DASH] = ACTIONS(1278), - [anon_sym_GT_AMP_DASH] = ACTIONS(1278), - [anon_sym_LT_LT_DASH] = ACTIONS(1278), - [anon_sym_LT_LT_LT] = ACTIONS(1278), - [anon_sym_QMARK] = ACTIONS(1276), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1278), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1278), - [aux_sym_concatenation_token1] = ACTIONS(1278), - [anon_sym_DOLLAR] = ACTIONS(1276), - [sym__special_character] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1278), - [sym_raw_string] = ACTIONS(1278), - [sym_ansi_c_string] = ACTIONS(1278), - [aux_sym_number_token1] = ACTIONS(1276), - [aux_sym_number_token2] = ACTIONS(1276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1278), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1276), - [anon_sym_BQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1278), - [anon_sym_LT_LPAREN] = ACTIONS(1278), - [anon_sym_GT_LPAREN] = ACTIONS(1278), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1278), - [sym__concat] = ACTIONS(1278), - [sym_test_operator] = ACTIONS(1278), - [sym__bare_dollar] = ACTIONS(1278), - [sym__brace_start] = ACTIONS(1278), - }, - [511] = { [sym_word] = ACTIONS(1348), [anon_sym_LPAREN_LPAREN] = ACTIONS(1350), [anon_sym_EQ] = ACTIONS(1348), @@ -75656,7 +76274,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1348), [sym__special_character] = ACTIONS(1348), [anon_sym_DQUOTE] = ACTIONS(1350), - [sym_raw_string] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1350), [sym_ansi_c_string] = ACTIONS(1350), [aux_sym_number_token1] = ACTIONS(1348), [aux_sym_number_token2] = ACTIONS(1348), @@ -75666,14 +76284,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1350), [anon_sym_LT_LPAREN] = ACTIONS(1350), [anon_sym_GT_LPAREN] = ACTIONS(1350), - [sym_comment] = ACTIONS(71), + [sym_comment] = ACTIONS(73), [sym_file_descriptor] = ACTIONS(1350), [sym__concat] = ACTIONS(1350), [sym_test_operator] = ACTIONS(1350), [sym__bare_dollar] = ACTIONS(1350), [sym__brace_start] = ACTIONS(1350), }, - [512] = { + [508] = { [sym_word] = ACTIONS(1304), [anon_sym_LPAREN_LPAREN] = ACTIONS(1306), [anon_sym_EQ] = ACTIONS(1304), @@ -75729,7 +76347,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1304), [sym__special_character] = ACTIONS(1304), [anon_sym_DQUOTE] = ACTIONS(1306), - [sym_raw_string] = ACTIONS(1306), + [anon_sym_SQUOTE] = ACTIONS(1306), [sym_ansi_c_string] = ACTIONS(1306), [aux_sym_number_token1] = ACTIONS(1304), [aux_sym_number_token2] = ACTIONS(1304), @@ -75739,160 +76357,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1306), [anon_sym_LT_LPAREN] = ACTIONS(1306), [anon_sym_GT_LPAREN] = ACTIONS(1306), - [sym_comment] = ACTIONS(71), + [sym_comment] = ACTIONS(73), [sym_file_descriptor] = ACTIONS(1306), [sym__concat] = ACTIONS(1306), [sym_test_operator] = ACTIONS(1306), [sym__bare_dollar] = ACTIONS(1306), [sym__brace_start] = ACTIONS(1306), }, - [513] = { - [sym_word] = ACTIONS(1316), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1318), - [anon_sym_EQ] = ACTIONS(1316), - [anon_sym_PLUS_PLUS] = ACTIONS(1316), - [anon_sym_DASH_DASH] = ACTIONS(1316), - [anon_sym_PLUS_EQ] = ACTIONS(1316), - [anon_sym_DASH_EQ] = ACTIONS(1316), - [anon_sym_STAR_EQ] = ACTIONS(1316), - [anon_sym_SLASH_EQ] = ACTIONS(1316), - [anon_sym_PERCENT_EQ] = ACTIONS(1316), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1316), - [anon_sym_LT_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_GT_EQ] = ACTIONS(1318), - [anon_sym_AMP_EQ] = ACTIONS(1318), - [anon_sym_CARET_EQ] = ACTIONS(1316), - [anon_sym_PIPE_EQ] = ACTIONS(1318), - [anon_sym_PIPE_PIPE] = ACTIONS(1318), - [anon_sym_AMP_AMP] = ACTIONS(1318), - [anon_sym_PIPE] = ACTIONS(1316), - [anon_sym_CARET] = ACTIONS(1316), - [anon_sym_AMP] = ACTIONS(1316), - [anon_sym_EQ_EQ] = ACTIONS(1316), - [anon_sym_BANG_EQ] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1316), - [anon_sym_GT] = ACTIONS(1316), - [anon_sym_LT_EQ] = ACTIONS(1318), - [anon_sym_GT_EQ] = ACTIONS(1318), - [anon_sym_LT_LT] = ACTIONS(1316), - [anon_sym_GT_GT] = ACTIONS(1316), - [anon_sym_PLUS] = ACTIONS(1316), - [anon_sym_DASH] = ACTIONS(1316), - [anon_sym_STAR] = ACTIONS(1316), - [anon_sym_SLASH] = ACTIONS(1316), - [anon_sym_PERCENT] = ACTIONS(1316), - [anon_sym_STAR_STAR] = ACTIONS(1316), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_PIPE_AMP] = ACTIONS(1318), - [anon_sym_RBRACK] = ACTIONS(1318), - [anon_sym_EQ_TILDE] = ACTIONS(1316), - [anon_sym_AMP_GT] = ACTIONS(1316), - [anon_sym_AMP_GT_GT] = ACTIONS(1318), - [anon_sym_LT_AMP] = ACTIONS(1316), - [anon_sym_GT_AMP] = ACTIONS(1316), - [anon_sym_GT_PIPE] = ACTIONS(1318), - [anon_sym_LT_AMP_DASH] = ACTIONS(1318), - [anon_sym_GT_AMP_DASH] = ACTIONS(1318), - [anon_sym_LT_LT_DASH] = ACTIONS(1318), - [anon_sym_LT_LT_LT] = ACTIONS(1318), - [anon_sym_QMARK] = ACTIONS(1316), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1318), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1318), - [aux_sym_concatenation_token1] = ACTIONS(1318), - [anon_sym_DOLLAR] = ACTIONS(1316), - [sym__special_character] = ACTIONS(1316), - [anon_sym_DQUOTE] = ACTIONS(1318), - [sym_raw_string] = ACTIONS(1318), - [sym_ansi_c_string] = ACTIONS(1318), - [aux_sym_number_token1] = ACTIONS(1316), - [aux_sym_number_token2] = ACTIONS(1316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1316), - [anon_sym_BQUOTE] = ACTIONS(1316), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1318), - [anon_sym_LT_LPAREN] = ACTIONS(1318), - [anon_sym_GT_LPAREN] = ACTIONS(1318), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1318), - [sym__concat] = ACTIONS(1318), - [sym_test_operator] = ACTIONS(1318), - [sym__bare_dollar] = ACTIONS(1318), - [sym__brace_start] = ACTIONS(1318), - }, - [514] = { - [sym_word] = ACTIONS(1332), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1334), - [anon_sym_EQ] = ACTIONS(1332), - [anon_sym_PLUS_PLUS] = ACTIONS(1332), - [anon_sym_DASH_DASH] = ACTIONS(1332), - [anon_sym_PLUS_EQ] = ACTIONS(1332), - [anon_sym_DASH_EQ] = ACTIONS(1332), - [anon_sym_STAR_EQ] = ACTIONS(1332), - [anon_sym_SLASH_EQ] = ACTIONS(1332), - [anon_sym_PERCENT_EQ] = ACTIONS(1332), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1332), - [anon_sym_LT_LT_EQ] = ACTIONS(1334), - [anon_sym_GT_GT_EQ] = ACTIONS(1334), - [anon_sym_AMP_EQ] = ACTIONS(1334), - [anon_sym_CARET_EQ] = ACTIONS(1332), - [anon_sym_PIPE_EQ] = ACTIONS(1334), - [anon_sym_PIPE_PIPE] = ACTIONS(1334), - [anon_sym_AMP_AMP] = ACTIONS(1334), - [anon_sym_PIPE] = ACTIONS(1332), - [anon_sym_CARET] = ACTIONS(1332), - [anon_sym_AMP] = ACTIONS(1332), - [anon_sym_EQ_EQ] = ACTIONS(1332), - [anon_sym_BANG_EQ] = ACTIONS(1332), - [anon_sym_LT] = ACTIONS(1332), - [anon_sym_GT] = ACTIONS(1332), - [anon_sym_LT_EQ] = ACTIONS(1334), - [anon_sym_GT_EQ] = ACTIONS(1334), - [anon_sym_LT_LT] = ACTIONS(1332), - [anon_sym_GT_GT] = ACTIONS(1332), - [anon_sym_PLUS] = ACTIONS(1332), - [anon_sym_DASH] = ACTIONS(1332), - [anon_sym_STAR] = ACTIONS(1332), - [anon_sym_SLASH] = ACTIONS(1332), - [anon_sym_PERCENT] = ACTIONS(1332), - [anon_sym_STAR_STAR] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1332), - [anon_sym_PIPE_AMP] = ACTIONS(1334), - [anon_sym_RBRACK] = ACTIONS(1334), - [anon_sym_EQ_TILDE] = ACTIONS(1332), - [anon_sym_AMP_GT] = ACTIONS(1332), - [anon_sym_AMP_GT_GT] = ACTIONS(1334), - [anon_sym_LT_AMP] = ACTIONS(1332), - [anon_sym_GT_AMP] = ACTIONS(1332), - [anon_sym_GT_PIPE] = ACTIONS(1334), - [anon_sym_LT_AMP_DASH] = ACTIONS(1334), - [anon_sym_GT_AMP_DASH] = ACTIONS(1334), - [anon_sym_LT_LT_DASH] = ACTIONS(1334), - [anon_sym_LT_LT_LT] = ACTIONS(1334), - [anon_sym_QMARK] = ACTIONS(1332), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1334), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1334), - [aux_sym_concatenation_token1] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1332), - [sym__special_character] = ACTIONS(1332), - [anon_sym_DQUOTE] = ACTIONS(1334), - [sym_raw_string] = ACTIONS(1334), - [sym_ansi_c_string] = ACTIONS(1334), - [aux_sym_number_token1] = ACTIONS(1332), - [aux_sym_number_token2] = ACTIONS(1332), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1334), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1332), - [anon_sym_BQUOTE] = ACTIONS(1332), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1334), - [anon_sym_LT_LPAREN] = ACTIONS(1334), - [anon_sym_GT_LPAREN] = ACTIONS(1334), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1334), - [sym__concat] = ACTIONS(1334), - [sym_test_operator] = ACTIONS(1334), - [sym__bare_dollar] = ACTIONS(1334), - [sym__brace_start] = ACTIONS(1334), - }, - [515] = { + [509] = { [sym_word] = ACTIONS(1356), [anon_sym_LPAREN_LPAREN] = ACTIONS(1358), [anon_sym_EQ] = ACTIONS(1356), @@ -75948,7 +76420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1356), [sym__special_character] = ACTIONS(1356), [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_raw_string] = ACTIONS(1358), + [anon_sym_SQUOTE] = ACTIONS(1358), [sym_ansi_c_string] = ACTIONS(1358), [aux_sym_number_token1] = ACTIONS(1356), [aux_sym_number_token2] = ACTIONS(1356), @@ -75958,14 +76430,598 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1358), [anon_sym_LT_LPAREN] = ACTIONS(1358), [anon_sym_GT_LPAREN] = ACTIONS(1358), - [sym_comment] = ACTIONS(71), + [sym_comment] = ACTIONS(73), [sym_file_descriptor] = ACTIONS(1358), [sym__concat] = ACTIONS(1358), [sym_test_operator] = ACTIONS(1358), [sym__bare_dollar] = ACTIONS(1358), [sym__brace_start] = ACTIONS(1358), }, + [510] = { + [sym_word] = ACTIONS(1352), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1352), + [anon_sym_PLUS_PLUS] = ACTIONS(1352), + [anon_sym_DASH_DASH] = ACTIONS(1352), + [anon_sym_PLUS_EQ] = ACTIONS(1352), + [anon_sym_DASH_EQ] = ACTIONS(1352), + [anon_sym_STAR_EQ] = ACTIONS(1352), + [anon_sym_SLASH_EQ] = ACTIONS(1352), + [anon_sym_PERCENT_EQ] = ACTIONS(1352), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1352), + [anon_sym_LT_LT_EQ] = ACTIONS(1354), + [anon_sym_GT_GT_EQ] = ACTIONS(1354), + [anon_sym_AMP_EQ] = ACTIONS(1354), + [anon_sym_CARET_EQ] = ACTIONS(1352), + [anon_sym_PIPE_EQ] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_CARET] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_EQ_EQ] = ACTIONS(1352), + [anon_sym_BANG_EQ] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_GT] = ACTIONS(1352), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_LT_LT] = ACTIONS(1352), + [anon_sym_GT_GT] = ACTIONS(1352), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_SLASH] = ACTIONS(1352), + [anon_sym_PERCENT] = ACTIONS(1352), + [anon_sym_STAR_STAR] = ACTIONS(1352), + [anon_sym_LPAREN] = ACTIONS(1352), + [anon_sym_PIPE_AMP] = ACTIONS(1354), + [anon_sym_RBRACK] = ACTIONS(1354), + [anon_sym_EQ_TILDE] = ACTIONS(1352), + [anon_sym_AMP_GT] = ACTIONS(1352), + [anon_sym_AMP_GT_GT] = ACTIONS(1354), + [anon_sym_LT_AMP] = ACTIONS(1352), + [anon_sym_GT_AMP] = ACTIONS(1352), + [anon_sym_GT_PIPE] = ACTIONS(1354), + [anon_sym_LT_AMP_DASH] = ACTIONS(1354), + [anon_sym_GT_AMP_DASH] = ACTIONS(1354), + [anon_sym_LT_LT_DASH] = ACTIONS(1354), + [anon_sym_LT_LT_LT] = ACTIONS(1354), + [anon_sym_QMARK] = ACTIONS(1352), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1354), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1354), + [aux_sym_concatenation_token1] = ACTIONS(1354), + [anon_sym_DOLLAR] = ACTIONS(1352), + [sym__special_character] = ACTIONS(1352), + [anon_sym_DQUOTE] = ACTIONS(1354), + [anon_sym_SQUOTE] = ACTIONS(1354), + [sym_ansi_c_string] = ACTIONS(1354), + [aux_sym_number_token1] = ACTIONS(1352), + [aux_sym_number_token2] = ACTIONS(1352), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1354), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1352), + [anon_sym_BQUOTE] = ACTIONS(1352), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1354), + [anon_sym_LT_LPAREN] = ACTIONS(1354), + [anon_sym_GT_LPAREN] = ACTIONS(1354), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1354), + [sym__concat] = ACTIONS(1354), + [sym_test_operator] = ACTIONS(1354), + [sym__bare_dollar] = ACTIONS(1354), + [sym__brace_start] = ACTIONS(1354), + }, + [511] = { + [sym_word] = ACTIONS(1380), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1382), + [anon_sym_EQ] = ACTIONS(1380), + [anon_sym_PLUS_PLUS] = ACTIONS(1380), + [anon_sym_DASH_DASH] = ACTIONS(1380), + [anon_sym_PLUS_EQ] = ACTIONS(1380), + [anon_sym_DASH_EQ] = ACTIONS(1380), + [anon_sym_STAR_EQ] = ACTIONS(1380), + [anon_sym_SLASH_EQ] = ACTIONS(1380), + [anon_sym_PERCENT_EQ] = ACTIONS(1380), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1380), + [anon_sym_LT_LT_EQ] = ACTIONS(1382), + [anon_sym_GT_GT_EQ] = ACTIONS(1382), + [anon_sym_AMP_EQ] = ACTIONS(1382), + [anon_sym_CARET_EQ] = ACTIONS(1380), + [anon_sym_PIPE_EQ] = ACTIONS(1382), + [anon_sym_PIPE_PIPE] = ACTIONS(1382), + [anon_sym_AMP_AMP] = ACTIONS(1382), + [anon_sym_PIPE] = ACTIONS(1380), + [anon_sym_CARET] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_EQ_EQ] = ACTIONS(1380), + [anon_sym_BANG_EQ] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1380), + [anon_sym_GT] = ACTIONS(1380), + [anon_sym_LT_EQ] = ACTIONS(1382), + [anon_sym_GT_EQ] = ACTIONS(1382), + [anon_sym_LT_LT] = ACTIONS(1380), + [anon_sym_GT_GT] = ACTIONS(1380), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(1380), + [anon_sym_PERCENT] = ACTIONS(1380), + [anon_sym_STAR_STAR] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1380), + [anon_sym_PIPE_AMP] = ACTIONS(1382), + [anon_sym_RBRACK] = ACTIONS(1382), + [anon_sym_EQ_TILDE] = ACTIONS(1380), + [anon_sym_AMP_GT] = ACTIONS(1380), + [anon_sym_AMP_GT_GT] = ACTIONS(1382), + [anon_sym_LT_AMP] = ACTIONS(1380), + [anon_sym_GT_AMP] = ACTIONS(1380), + [anon_sym_GT_PIPE] = ACTIONS(1382), + [anon_sym_LT_AMP_DASH] = ACTIONS(1382), + [anon_sym_GT_AMP_DASH] = ACTIONS(1382), + [anon_sym_LT_LT_DASH] = ACTIONS(1382), + [anon_sym_LT_LT_LT] = ACTIONS(1382), + [anon_sym_QMARK] = ACTIONS(1380), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1382), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1382), + [aux_sym_concatenation_token1] = ACTIONS(1382), + [anon_sym_DOLLAR] = ACTIONS(1380), + [sym__special_character] = ACTIONS(1380), + [anon_sym_DQUOTE] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1382), + [sym_ansi_c_string] = ACTIONS(1382), + [aux_sym_number_token1] = ACTIONS(1380), + [aux_sym_number_token2] = ACTIONS(1380), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1382), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1380), + [anon_sym_BQUOTE] = ACTIONS(1380), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1382), + [anon_sym_LT_LPAREN] = ACTIONS(1382), + [anon_sym_GT_LPAREN] = ACTIONS(1382), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1382), + [sym__concat] = ACTIONS(1382), + [sym_test_operator] = ACTIONS(1382), + [sym__bare_dollar] = ACTIONS(1382), + [sym__brace_start] = ACTIONS(1382), + }, + [512] = { + [sym_word] = ACTIONS(1384), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1386), + [anon_sym_EQ] = ACTIONS(1384), + [anon_sym_PLUS_PLUS] = ACTIONS(1384), + [anon_sym_DASH_DASH] = ACTIONS(1384), + [anon_sym_PLUS_EQ] = ACTIONS(1384), + [anon_sym_DASH_EQ] = ACTIONS(1384), + [anon_sym_STAR_EQ] = ACTIONS(1384), + [anon_sym_SLASH_EQ] = ACTIONS(1384), + [anon_sym_PERCENT_EQ] = ACTIONS(1384), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1384), + [anon_sym_LT_LT_EQ] = ACTIONS(1386), + [anon_sym_GT_GT_EQ] = ACTIONS(1386), + [anon_sym_AMP_EQ] = ACTIONS(1386), + [anon_sym_CARET_EQ] = ACTIONS(1384), + [anon_sym_PIPE_EQ] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_EQ_EQ] = ACTIONS(1384), + [anon_sym_BANG_EQ] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT_EQ] = ACTIONS(1386), + [anon_sym_GT_EQ] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1384), + [anon_sym_GT_GT] = ACTIONS(1384), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_STAR_STAR] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1384), + [anon_sym_PIPE_AMP] = ACTIONS(1386), + [anon_sym_RBRACK] = ACTIONS(1386), + [anon_sym_EQ_TILDE] = ACTIONS(1384), + [anon_sym_AMP_GT] = ACTIONS(1384), + [anon_sym_AMP_GT_GT] = ACTIONS(1386), + [anon_sym_LT_AMP] = ACTIONS(1384), + [anon_sym_GT_AMP] = ACTIONS(1384), + [anon_sym_GT_PIPE] = ACTIONS(1386), + [anon_sym_LT_AMP_DASH] = ACTIONS(1386), + [anon_sym_GT_AMP_DASH] = ACTIONS(1386), + [anon_sym_LT_LT_DASH] = ACTIONS(1386), + [anon_sym_LT_LT_LT] = ACTIONS(1386), + [anon_sym_QMARK] = ACTIONS(1384), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1386), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1386), + [aux_sym_concatenation_token1] = ACTIONS(1386), + [anon_sym_DOLLAR] = ACTIONS(1384), + [sym__special_character] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1386), + [sym_ansi_c_string] = ACTIONS(1386), + [aux_sym_number_token1] = ACTIONS(1384), + [aux_sym_number_token2] = ACTIONS(1384), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1384), + [anon_sym_BQUOTE] = ACTIONS(1384), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1386), + [anon_sym_LT_LPAREN] = ACTIONS(1386), + [anon_sym_GT_LPAREN] = ACTIONS(1386), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1386), + [sym__concat] = ACTIONS(1386), + [sym_test_operator] = ACTIONS(1386), + [sym__bare_dollar] = ACTIONS(1386), + [sym__brace_start] = ACTIONS(1386), + }, + [513] = { + [sym_word] = ACTIONS(1368), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1368), + [anon_sym_PLUS_PLUS] = ACTIONS(1368), + [anon_sym_DASH_DASH] = ACTIONS(1368), + [anon_sym_PLUS_EQ] = ACTIONS(1368), + [anon_sym_DASH_EQ] = ACTIONS(1368), + [anon_sym_STAR_EQ] = ACTIONS(1368), + [anon_sym_SLASH_EQ] = ACTIONS(1368), + [anon_sym_PERCENT_EQ] = ACTIONS(1368), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1368), + [anon_sym_LT_LT_EQ] = ACTIONS(1370), + [anon_sym_GT_GT_EQ] = ACTIONS(1370), + [anon_sym_AMP_EQ] = ACTIONS(1370), + [anon_sym_CARET_EQ] = ACTIONS(1368), + [anon_sym_PIPE_EQ] = ACTIONS(1370), + [anon_sym_PIPE_PIPE] = ACTIONS(1370), + [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1368), + [anon_sym_BANG_EQ] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_LT_EQ] = ACTIONS(1370), + [anon_sym_GT_EQ] = ACTIONS(1370), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [anon_sym_STAR_STAR] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1368), + [anon_sym_PIPE_AMP] = ACTIONS(1370), + [anon_sym_RBRACK] = ACTIONS(1370), + [anon_sym_EQ_TILDE] = ACTIONS(1368), + [anon_sym_AMP_GT] = ACTIONS(1368), + [anon_sym_AMP_GT_GT] = ACTIONS(1370), + [anon_sym_LT_AMP] = ACTIONS(1368), + [anon_sym_GT_AMP] = ACTIONS(1368), + [anon_sym_GT_PIPE] = ACTIONS(1370), + [anon_sym_LT_AMP_DASH] = ACTIONS(1370), + [anon_sym_GT_AMP_DASH] = ACTIONS(1370), + [anon_sym_LT_LT_DASH] = ACTIONS(1370), + [anon_sym_LT_LT_LT] = ACTIONS(1370), + [anon_sym_QMARK] = ACTIONS(1368), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1370), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1370), + [aux_sym_concatenation_token1] = ACTIONS(1370), + [anon_sym_DOLLAR] = ACTIONS(1368), + [sym__special_character] = ACTIONS(1368), + [anon_sym_DQUOTE] = ACTIONS(1370), + [anon_sym_SQUOTE] = ACTIONS(1370), + [sym_ansi_c_string] = ACTIONS(1370), + [aux_sym_number_token1] = ACTIONS(1368), + [aux_sym_number_token2] = ACTIONS(1368), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1370), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1368), + [anon_sym_BQUOTE] = ACTIONS(1368), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1370), + [anon_sym_LT_LPAREN] = ACTIONS(1370), + [anon_sym_GT_LPAREN] = ACTIONS(1370), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1370), + [sym__concat] = ACTIONS(1370), + [sym_test_operator] = ACTIONS(1370), + [sym__bare_dollar] = ACTIONS(1370), + [sym__brace_start] = ACTIONS(1370), + }, + [514] = { + [sym_word] = ACTIONS(1360), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1362), + [anon_sym_EQ] = ACTIONS(1360), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_PLUS_EQ] = ACTIONS(1360), + [anon_sym_DASH_EQ] = ACTIONS(1360), + [anon_sym_STAR_EQ] = ACTIONS(1360), + [anon_sym_SLASH_EQ] = ACTIONS(1360), + [anon_sym_PERCENT_EQ] = ACTIONS(1360), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1360), + [anon_sym_LT_LT_EQ] = ACTIONS(1362), + [anon_sym_GT_GT_EQ] = ACTIONS(1362), + [anon_sym_AMP_EQ] = ACTIONS(1362), + [anon_sym_CARET_EQ] = ACTIONS(1360), + [anon_sym_PIPE_EQ] = ACTIONS(1362), + [anon_sym_PIPE_PIPE] = ACTIONS(1362), + [anon_sym_AMP_AMP] = ACTIONS(1362), + [anon_sym_PIPE] = ACTIONS(1360), + [anon_sym_CARET] = ACTIONS(1360), + [anon_sym_AMP] = ACTIONS(1360), + [anon_sym_EQ_EQ] = ACTIONS(1360), + [anon_sym_BANG_EQ] = ACTIONS(1360), + [anon_sym_LT] = ACTIONS(1360), + [anon_sym_GT] = ACTIONS(1360), + [anon_sym_LT_EQ] = ACTIONS(1362), + [anon_sym_GT_EQ] = ACTIONS(1362), + [anon_sym_LT_LT] = ACTIONS(1360), + [anon_sym_GT_GT] = ACTIONS(1360), + [anon_sym_PLUS] = ACTIONS(1360), + [anon_sym_DASH] = ACTIONS(1360), + [anon_sym_STAR] = ACTIONS(1360), + [anon_sym_SLASH] = ACTIONS(1360), + [anon_sym_PERCENT] = ACTIONS(1360), + [anon_sym_STAR_STAR] = ACTIONS(1360), + [anon_sym_LPAREN] = ACTIONS(1360), + [anon_sym_PIPE_AMP] = ACTIONS(1362), + [anon_sym_RBRACK] = ACTIONS(1362), + [anon_sym_EQ_TILDE] = ACTIONS(1360), + [anon_sym_AMP_GT] = ACTIONS(1360), + [anon_sym_AMP_GT_GT] = ACTIONS(1362), + [anon_sym_LT_AMP] = ACTIONS(1360), + [anon_sym_GT_AMP] = ACTIONS(1360), + [anon_sym_GT_PIPE] = ACTIONS(1362), + [anon_sym_LT_AMP_DASH] = ACTIONS(1362), + [anon_sym_GT_AMP_DASH] = ACTIONS(1362), + [anon_sym_LT_LT_DASH] = ACTIONS(1362), + [anon_sym_LT_LT_LT] = ACTIONS(1362), + [anon_sym_QMARK] = ACTIONS(1360), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1362), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1362), + [aux_sym_concatenation_token1] = ACTIONS(1362), + [anon_sym_DOLLAR] = ACTIONS(1360), + [sym__special_character] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(1362), + [anon_sym_SQUOTE] = ACTIONS(1362), + [sym_ansi_c_string] = ACTIONS(1362), + [aux_sym_number_token1] = ACTIONS(1360), + [aux_sym_number_token2] = ACTIONS(1360), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1360), + [anon_sym_BQUOTE] = ACTIONS(1360), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1362), + [anon_sym_LT_LPAREN] = ACTIONS(1362), + [anon_sym_GT_LPAREN] = ACTIONS(1362), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1362), + [sym__concat] = ACTIONS(1362), + [sym_test_operator] = ACTIONS(1362), + [sym__bare_dollar] = ACTIONS(1362), + [sym__brace_start] = ACTIONS(1362), + }, + [515] = { + [sym_word] = ACTIONS(1372), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1374), + [anon_sym_EQ] = ACTIONS(1372), + [anon_sym_PLUS_PLUS] = ACTIONS(1372), + [anon_sym_DASH_DASH] = ACTIONS(1372), + [anon_sym_PLUS_EQ] = ACTIONS(1372), + [anon_sym_DASH_EQ] = ACTIONS(1372), + [anon_sym_STAR_EQ] = ACTIONS(1372), + [anon_sym_SLASH_EQ] = ACTIONS(1372), + [anon_sym_PERCENT_EQ] = ACTIONS(1372), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1372), + [anon_sym_LT_LT_EQ] = ACTIONS(1374), + [anon_sym_GT_GT_EQ] = ACTIONS(1374), + [anon_sym_AMP_EQ] = ACTIONS(1374), + [anon_sym_CARET_EQ] = ACTIONS(1372), + [anon_sym_PIPE_EQ] = ACTIONS(1374), + [anon_sym_PIPE_PIPE] = ACTIONS(1374), + [anon_sym_AMP_AMP] = ACTIONS(1374), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_EQ_EQ] = ACTIONS(1372), + [anon_sym_BANG_EQ] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_GT] = ACTIONS(1372), + [anon_sym_LT_EQ] = ACTIONS(1374), + [anon_sym_GT_EQ] = ACTIONS(1374), + [anon_sym_LT_LT] = ACTIONS(1372), + [anon_sym_GT_GT] = ACTIONS(1372), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(1372), + [anon_sym_PERCENT] = ACTIONS(1372), + [anon_sym_STAR_STAR] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1372), + [anon_sym_PIPE_AMP] = ACTIONS(1374), + [anon_sym_RBRACK] = ACTIONS(1374), + [anon_sym_EQ_TILDE] = ACTIONS(1372), + [anon_sym_AMP_GT] = ACTIONS(1372), + [anon_sym_AMP_GT_GT] = ACTIONS(1374), + [anon_sym_LT_AMP] = ACTIONS(1372), + [anon_sym_GT_AMP] = ACTIONS(1372), + [anon_sym_GT_PIPE] = ACTIONS(1374), + [anon_sym_LT_AMP_DASH] = ACTIONS(1374), + [anon_sym_GT_AMP_DASH] = ACTIONS(1374), + [anon_sym_LT_LT_DASH] = ACTIONS(1374), + [anon_sym_LT_LT_LT] = ACTIONS(1374), + [anon_sym_QMARK] = ACTIONS(1372), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1374), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1374), + [aux_sym_concatenation_token1] = ACTIONS(1374), + [anon_sym_DOLLAR] = ACTIONS(1372), + [sym__special_character] = ACTIONS(1372), + [anon_sym_DQUOTE] = ACTIONS(1374), + [anon_sym_SQUOTE] = ACTIONS(1374), + [sym_ansi_c_string] = ACTIONS(1374), + [aux_sym_number_token1] = ACTIONS(1372), + [aux_sym_number_token2] = ACTIONS(1372), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1374), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1372), + [anon_sym_BQUOTE] = ACTIONS(1372), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1374), + [anon_sym_LT_LPAREN] = ACTIONS(1374), + [anon_sym_GT_LPAREN] = ACTIONS(1374), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1374), + [sym__concat] = ACTIONS(1374), + [sym_test_operator] = ACTIONS(1374), + [sym__bare_dollar] = ACTIONS(1374), + [sym__brace_start] = ACTIONS(1374), + }, [516] = { + [sym_word] = ACTIONS(1332), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1334), + [anon_sym_EQ] = ACTIONS(1332), + [anon_sym_PLUS_PLUS] = ACTIONS(1332), + [anon_sym_DASH_DASH] = ACTIONS(1332), + [anon_sym_PLUS_EQ] = ACTIONS(1332), + [anon_sym_DASH_EQ] = ACTIONS(1332), + [anon_sym_STAR_EQ] = ACTIONS(1332), + [anon_sym_SLASH_EQ] = ACTIONS(1332), + [anon_sym_PERCENT_EQ] = ACTIONS(1332), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1332), + [anon_sym_LT_LT_EQ] = ACTIONS(1334), + [anon_sym_GT_GT_EQ] = ACTIONS(1334), + [anon_sym_AMP_EQ] = ACTIONS(1334), + [anon_sym_CARET_EQ] = ACTIONS(1332), + [anon_sym_PIPE_EQ] = ACTIONS(1334), + [anon_sym_PIPE_PIPE] = ACTIONS(1334), + [anon_sym_AMP_AMP] = ACTIONS(1334), + [anon_sym_PIPE] = ACTIONS(1332), + [anon_sym_CARET] = ACTIONS(1332), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_EQ_EQ] = ACTIONS(1332), + [anon_sym_BANG_EQ] = ACTIONS(1332), + [anon_sym_LT] = ACTIONS(1332), + [anon_sym_GT] = ACTIONS(1332), + [anon_sym_LT_EQ] = ACTIONS(1334), + [anon_sym_GT_EQ] = ACTIONS(1334), + [anon_sym_LT_LT] = ACTIONS(1332), + [anon_sym_GT_GT] = ACTIONS(1332), + [anon_sym_PLUS] = ACTIONS(1332), + [anon_sym_DASH] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1332), + [anon_sym_SLASH] = ACTIONS(1332), + [anon_sym_PERCENT] = ACTIONS(1332), + [anon_sym_STAR_STAR] = ACTIONS(1332), + [anon_sym_LPAREN] = ACTIONS(1332), + [anon_sym_PIPE_AMP] = ACTIONS(1334), + [anon_sym_RBRACK] = ACTIONS(1334), + [anon_sym_EQ_TILDE] = ACTIONS(1332), + [anon_sym_AMP_GT] = ACTIONS(1332), + [anon_sym_AMP_GT_GT] = ACTIONS(1334), + [anon_sym_LT_AMP] = ACTIONS(1332), + [anon_sym_GT_AMP] = ACTIONS(1332), + [anon_sym_GT_PIPE] = ACTIONS(1334), + [anon_sym_LT_AMP_DASH] = ACTIONS(1334), + [anon_sym_GT_AMP_DASH] = ACTIONS(1334), + [anon_sym_LT_LT_DASH] = ACTIONS(1334), + [anon_sym_LT_LT_LT] = ACTIONS(1334), + [anon_sym_QMARK] = ACTIONS(1332), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1334), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1334), + [aux_sym_concatenation_token1] = ACTIONS(1334), + [anon_sym_DOLLAR] = ACTIONS(1332), + [sym__special_character] = ACTIONS(1332), + [anon_sym_DQUOTE] = ACTIONS(1334), + [anon_sym_SQUOTE] = ACTIONS(1334), + [sym_ansi_c_string] = ACTIONS(1334), + [aux_sym_number_token1] = ACTIONS(1332), + [aux_sym_number_token2] = ACTIONS(1332), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1332), + [anon_sym_BQUOTE] = ACTIONS(1332), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1334), + [anon_sym_LT_LPAREN] = ACTIONS(1334), + [anon_sym_GT_LPAREN] = ACTIONS(1334), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1334), + [sym__concat] = ACTIONS(1334), + [sym_test_operator] = ACTIONS(1334), + [sym__bare_dollar] = ACTIONS(1334), + [sym__brace_start] = ACTIONS(1334), + }, + [517] = { + [sym_word] = ACTIONS(1364), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(1364), + [anon_sym_PLUS_PLUS] = ACTIONS(1364), + [anon_sym_DASH_DASH] = ACTIONS(1364), + [anon_sym_PLUS_EQ] = ACTIONS(1364), + [anon_sym_DASH_EQ] = ACTIONS(1364), + [anon_sym_STAR_EQ] = ACTIONS(1364), + [anon_sym_SLASH_EQ] = ACTIONS(1364), + [anon_sym_PERCENT_EQ] = ACTIONS(1364), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1364), + [anon_sym_LT_LT_EQ] = ACTIONS(1366), + [anon_sym_GT_GT_EQ] = ACTIONS(1366), + [anon_sym_AMP_EQ] = ACTIONS(1366), + [anon_sym_CARET_EQ] = ACTIONS(1364), + [anon_sym_PIPE_EQ] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_PIPE] = ACTIONS(1364), + [anon_sym_CARET] = ACTIONS(1364), + [anon_sym_AMP] = ACTIONS(1364), + [anon_sym_EQ_EQ] = ACTIONS(1364), + [anon_sym_BANG_EQ] = ACTIONS(1364), + [anon_sym_LT] = ACTIONS(1364), + [anon_sym_GT] = ACTIONS(1364), + [anon_sym_LT_EQ] = ACTIONS(1366), + [anon_sym_GT_EQ] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1364), + [anon_sym_GT_GT] = ACTIONS(1364), + [anon_sym_PLUS] = ACTIONS(1364), + [anon_sym_DASH] = ACTIONS(1364), + [anon_sym_STAR] = ACTIONS(1364), + [anon_sym_SLASH] = ACTIONS(1364), + [anon_sym_PERCENT] = ACTIONS(1364), + [anon_sym_STAR_STAR] = ACTIONS(1364), + [anon_sym_LPAREN] = ACTIONS(1364), + [anon_sym_PIPE_AMP] = ACTIONS(1366), + [anon_sym_RBRACK] = ACTIONS(1366), + [anon_sym_EQ_TILDE] = ACTIONS(1364), + [anon_sym_AMP_GT] = ACTIONS(1364), + [anon_sym_AMP_GT_GT] = ACTIONS(1366), + [anon_sym_LT_AMP] = ACTIONS(1364), + [anon_sym_GT_AMP] = ACTIONS(1364), + [anon_sym_GT_PIPE] = ACTIONS(1366), + [anon_sym_LT_AMP_DASH] = ACTIONS(1366), + [anon_sym_GT_AMP_DASH] = ACTIONS(1366), + [anon_sym_LT_LT_DASH] = ACTIONS(1366), + [anon_sym_LT_LT_LT] = ACTIONS(1366), + [anon_sym_QMARK] = ACTIONS(1364), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1366), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1366), + [aux_sym_concatenation_token1] = ACTIONS(1366), + [anon_sym_DOLLAR] = ACTIONS(1364), + [sym__special_character] = ACTIONS(1364), + [anon_sym_DQUOTE] = ACTIONS(1366), + [anon_sym_SQUOTE] = ACTIONS(1366), + [sym_ansi_c_string] = ACTIONS(1366), + [aux_sym_number_token1] = ACTIONS(1364), + [aux_sym_number_token2] = ACTIONS(1364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1366), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1364), + [anon_sym_BQUOTE] = ACTIONS(1364), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1366), + [anon_sym_LT_LPAREN] = ACTIONS(1366), + [anon_sym_GT_LPAREN] = ACTIONS(1366), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1366), + [sym__concat] = ACTIONS(1366), + [sym_test_operator] = ACTIONS(1366), + [sym__bare_dollar] = ACTIONS(1366), + [sym__brace_start] = ACTIONS(1366), + }, + [518] = { [sym_word] = ACTIONS(1344), [anon_sym_LPAREN_LPAREN] = ACTIONS(1346), [anon_sym_EQ] = ACTIONS(1344), @@ -76021,7 +77077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(1344), [sym__special_character] = ACTIONS(1344), [anon_sym_DQUOTE] = ACTIONS(1346), - [sym_raw_string] = ACTIONS(1346), + [anon_sym_SQUOTE] = ACTIONS(1346), [sym_ansi_c_string] = ACTIONS(1346), [aux_sym_number_token1] = ACTIONS(1344), [aux_sym_number_token2] = ACTIONS(1344), @@ -76031,160 +77087,736 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1346), [anon_sym_LT_LPAREN] = ACTIONS(1346), [anon_sym_GT_LPAREN] = ACTIONS(1346), - [sym_comment] = ACTIONS(71), + [sym_comment] = ACTIONS(73), [sym_file_descriptor] = ACTIONS(1346), [sym__concat] = ACTIONS(1346), [sym_test_operator] = ACTIONS(1346), [sym__bare_dollar] = ACTIONS(1346), [sym__brace_start] = ACTIONS(1346), }, - [517] = { - [sym_word] = ACTIONS(1356), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1356), - [anon_sym_PLUS_PLUS] = ACTIONS(1356), - [anon_sym_DASH_DASH] = ACTIONS(1356), - [anon_sym_PLUS_EQ] = ACTIONS(1356), - [anon_sym_DASH_EQ] = ACTIONS(1356), - [anon_sym_STAR_EQ] = ACTIONS(1356), - [anon_sym_SLASH_EQ] = ACTIONS(1356), - [anon_sym_PERCENT_EQ] = ACTIONS(1356), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1356), - [anon_sym_LT_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_GT_EQ] = ACTIONS(1358), - [anon_sym_AMP_EQ] = ACTIONS(1358), - [anon_sym_CARET_EQ] = ACTIONS(1356), - [anon_sym_PIPE_EQ] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1358), - [anon_sym_AMP_AMP] = ACTIONS(1358), - [anon_sym_PIPE] = ACTIONS(1356), - [anon_sym_CARET] = ACTIONS(1356), - [anon_sym_AMP] = ACTIONS(1356), - [anon_sym_EQ_EQ] = ACTIONS(1356), - [anon_sym_BANG_EQ] = ACTIONS(1356), - [anon_sym_LT] = ACTIONS(1356), - [anon_sym_GT] = ACTIONS(1356), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_LT_LT] = ACTIONS(1356), - [anon_sym_GT_GT] = ACTIONS(1356), - [anon_sym_PLUS] = ACTIONS(1356), - [anon_sym_DASH] = ACTIONS(1356), - [anon_sym_STAR] = ACTIONS(1356), - [anon_sym_SLASH] = ACTIONS(1356), - [anon_sym_PERCENT] = ACTIONS(1356), - [anon_sym_STAR_STAR] = ACTIONS(1356), - [anon_sym_LPAREN] = ACTIONS(1356), - [anon_sym_PIPE_AMP] = ACTIONS(1358), - [anon_sym_RBRACK] = ACTIONS(1358), - [anon_sym_EQ_TILDE] = ACTIONS(1356), - [anon_sym_AMP_GT] = ACTIONS(1356), - [anon_sym_AMP_GT_GT] = ACTIONS(1358), - [anon_sym_LT_AMP] = ACTIONS(1356), - [anon_sym_GT_AMP] = ACTIONS(1356), - [anon_sym_GT_PIPE] = ACTIONS(1358), - [anon_sym_LT_AMP_DASH] = ACTIONS(1358), - [anon_sym_GT_AMP_DASH] = ACTIONS(1358), - [anon_sym_LT_LT_DASH] = ACTIONS(1358), - [anon_sym_LT_LT_LT] = ACTIONS(1358), - [anon_sym_QMARK] = ACTIONS(1356), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1358), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1358), - [aux_sym_concatenation_token1] = ACTIONS(1358), - [anon_sym_DOLLAR] = ACTIONS(1356), - [sym__special_character] = ACTIONS(1356), - [anon_sym_DQUOTE] = ACTIONS(1358), - [sym_raw_string] = ACTIONS(1358), - [sym_ansi_c_string] = ACTIONS(1358), - [aux_sym_number_token1] = ACTIONS(1356), - [aux_sym_number_token2] = ACTIONS(1356), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1358), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1356), - [anon_sym_BQUOTE] = ACTIONS(1356), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1358), - [anon_sym_LT_LPAREN] = ACTIONS(1358), - [anon_sym_GT_LPAREN] = ACTIONS(1358), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1358), - [sym__concat] = ACTIONS(1358), - [sym_test_operator] = ACTIONS(1358), - [sym__bare_dollar] = ACTIONS(1358), - [sym__brace_start] = ACTIONS(1358), + [519] = { + [sym_word] = ACTIONS(1388), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1390), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [anon_sym_PLUS_EQ] = ACTIONS(1388), + [anon_sym_DASH_EQ] = ACTIONS(1388), + [anon_sym_STAR_EQ] = ACTIONS(1388), + [anon_sym_SLASH_EQ] = ACTIONS(1388), + [anon_sym_PERCENT_EQ] = ACTIONS(1388), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1388), + [anon_sym_LT_LT_EQ] = ACTIONS(1390), + [anon_sym_GT_GT_EQ] = ACTIONS(1390), + [anon_sym_AMP_EQ] = ACTIONS(1390), + [anon_sym_CARET_EQ] = ACTIONS(1388), + [anon_sym_PIPE_EQ] = ACTIONS(1390), + [anon_sym_PIPE_PIPE] = ACTIONS(1390), + [anon_sym_AMP_AMP] = ACTIONS(1390), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_EQ_EQ] = ACTIONS(1388), + [anon_sym_BANG_EQ] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_LT_EQ] = ACTIONS(1390), + [anon_sym_GT_EQ] = ACTIONS(1390), + [anon_sym_LT_LT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_STAR_STAR] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1388), + [anon_sym_PIPE_AMP] = ACTIONS(1390), + [anon_sym_RBRACK] = ACTIONS(1390), + [anon_sym_EQ_TILDE] = ACTIONS(1388), + [anon_sym_AMP_GT] = ACTIONS(1388), + [anon_sym_AMP_GT_GT] = ACTIONS(1390), + [anon_sym_LT_AMP] = ACTIONS(1388), + [anon_sym_GT_AMP] = ACTIONS(1388), + [anon_sym_GT_PIPE] = ACTIONS(1390), + [anon_sym_LT_AMP_DASH] = ACTIONS(1390), + [anon_sym_GT_AMP_DASH] = ACTIONS(1390), + [anon_sym_LT_LT_DASH] = ACTIONS(1390), + [anon_sym_LT_LT_LT] = ACTIONS(1390), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1390), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1390), + [aux_sym_concatenation_token1] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1388), + [sym__special_character] = ACTIONS(1388), + [anon_sym_DQUOTE] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1390), + [sym_ansi_c_string] = ACTIONS(1390), + [aux_sym_number_token1] = ACTIONS(1388), + [aux_sym_number_token2] = ACTIONS(1388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1390), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1388), + [anon_sym_BQUOTE] = ACTIONS(1388), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1390), + [anon_sym_LT_LPAREN] = ACTIONS(1390), + [anon_sym_GT_LPAREN] = ACTIONS(1390), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1390), + [sym__concat] = ACTIONS(1390), + [sym_test_operator] = ACTIONS(1390), + [sym__bare_dollar] = ACTIONS(1390), + [sym__brace_start] = ACTIONS(1390), }, - [518] = { - [sym_word] = ACTIONS(1308), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1310), - [anon_sym_EQ] = ACTIONS(1308), - [anon_sym_PLUS_PLUS] = ACTIONS(1308), - [anon_sym_DASH_DASH] = ACTIONS(1308), - [anon_sym_PLUS_EQ] = ACTIONS(1308), - [anon_sym_DASH_EQ] = ACTIONS(1308), - [anon_sym_STAR_EQ] = ACTIONS(1308), - [anon_sym_SLASH_EQ] = ACTIONS(1308), - [anon_sym_PERCENT_EQ] = ACTIONS(1308), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1308), - [anon_sym_LT_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_GT_EQ] = ACTIONS(1310), - [anon_sym_AMP_EQ] = ACTIONS(1310), - [anon_sym_CARET_EQ] = ACTIONS(1308), - [anon_sym_PIPE_EQ] = ACTIONS(1310), - [anon_sym_PIPE_PIPE] = ACTIONS(1310), - [anon_sym_AMP_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1308), - [anon_sym_CARET] = ACTIONS(1308), - [anon_sym_AMP] = ACTIONS(1308), - [anon_sym_EQ_EQ] = ACTIONS(1308), - [anon_sym_BANG_EQ] = ACTIONS(1308), - [anon_sym_LT] = ACTIONS(1308), - [anon_sym_GT] = ACTIONS(1308), - [anon_sym_LT_EQ] = ACTIONS(1310), - [anon_sym_GT_EQ] = ACTIONS(1310), - [anon_sym_LT_LT] = ACTIONS(1308), - [anon_sym_GT_GT] = ACTIONS(1308), - [anon_sym_PLUS] = ACTIONS(1308), - [anon_sym_DASH] = ACTIONS(1308), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_SLASH] = ACTIONS(1308), - [anon_sym_PERCENT] = ACTIONS(1308), - [anon_sym_STAR_STAR] = ACTIONS(1308), - [anon_sym_LPAREN] = ACTIONS(1308), - [anon_sym_PIPE_AMP] = ACTIONS(1310), - [anon_sym_RBRACK] = ACTIONS(1310), - [anon_sym_EQ_TILDE] = ACTIONS(1308), - [anon_sym_AMP_GT] = ACTIONS(1308), - [anon_sym_AMP_GT_GT] = ACTIONS(1310), - [anon_sym_LT_AMP] = ACTIONS(1308), - [anon_sym_GT_AMP] = ACTIONS(1308), - [anon_sym_GT_PIPE] = ACTIONS(1310), - [anon_sym_LT_AMP_DASH] = ACTIONS(1310), - [anon_sym_GT_AMP_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_DASH] = ACTIONS(1310), - [anon_sym_LT_LT_LT] = ACTIONS(1310), - [anon_sym_QMARK] = ACTIONS(1308), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1310), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1310), - [aux_sym_concatenation_token1] = ACTIONS(1310), - [anon_sym_DOLLAR] = ACTIONS(1308), - [sym__special_character] = ACTIONS(1308), - [anon_sym_DQUOTE] = ACTIONS(1310), - [sym_raw_string] = ACTIONS(1310), - [sym_ansi_c_string] = ACTIONS(1310), - [aux_sym_number_token1] = ACTIONS(1308), - [aux_sym_number_token2] = ACTIONS(1308), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1308), - [anon_sym_BQUOTE] = ACTIONS(1308), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1310), - [anon_sym_LT_LPAREN] = ACTIONS(1310), - [anon_sym_GT_LPAREN] = ACTIONS(1310), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1310), - [sym__concat] = ACTIONS(1310), - [sym_test_operator] = ACTIONS(1310), - [sym__bare_dollar] = ACTIONS(1310), - [sym__brace_start] = ACTIONS(1310), + [520] = { + [sym_word] = ACTIONS(1340), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1342), + [anon_sym_EQ] = ACTIONS(1340), + [anon_sym_PLUS_PLUS] = ACTIONS(1340), + [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS_EQ] = ACTIONS(1340), + [anon_sym_DASH_EQ] = ACTIONS(1340), + [anon_sym_STAR_EQ] = ACTIONS(1340), + [anon_sym_SLASH_EQ] = ACTIONS(1340), + [anon_sym_PERCENT_EQ] = ACTIONS(1340), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1340), + [anon_sym_LT_LT_EQ] = ACTIONS(1342), + [anon_sym_GT_GT_EQ] = ACTIONS(1342), + [anon_sym_AMP_EQ] = ACTIONS(1342), + [anon_sym_CARET_EQ] = ACTIONS(1340), + [anon_sym_PIPE_EQ] = ACTIONS(1342), + [anon_sym_PIPE_PIPE] = ACTIONS(1342), + [anon_sym_AMP_AMP] = ACTIONS(1342), + [anon_sym_PIPE] = ACTIONS(1340), + [anon_sym_CARET] = ACTIONS(1340), + [anon_sym_AMP] = ACTIONS(1340), + [anon_sym_EQ_EQ] = ACTIONS(1340), + [anon_sym_BANG_EQ] = ACTIONS(1340), + [anon_sym_LT] = ACTIONS(1340), + [anon_sym_GT] = ACTIONS(1340), + [anon_sym_LT_EQ] = ACTIONS(1342), + [anon_sym_GT_EQ] = ACTIONS(1342), + [anon_sym_LT_LT] = ACTIONS(1340), + [anon_sym_GT_GT] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1340), + [anon_sym_DASH] = ACTIONS(1340), + [anon_sym_STAR] = ACTIONS(1340), + [anon_sym_SLASH] = ACTIONS(1340), + [anon_sym_PERCENT] = ACTIONS(1340), + [anon_sym_STAR_STAR] = ACTIONS(1340), + [anon_sym_LPAREN] = ACTIONS(1340), + [anon_sym_PIPE_AMP] = ACTIONS(1342), + [anon_sym_RBRACK] = ACTIONS(1342), + [anon_sym_EQ_TILDE] = ACTIONS(1340), + [anon_sym_AMP_GT] = ACTIONS(1340), + [anon_sym_AMP_GT_GT] = ACTIONS(1342), + [anon_sym_LT_AMP] = ACTIONS(1340), + [anon_sym_GT_AMP] = ACTIONS(1340), + [anon_sym_GT_PIPE] = ACTIONS(1342), + [anon_sym_LT_AMP_DASH] = ACTIONS(1342), + [anon_sym_GT_AMP_DASH] = ACTIONS(1342), + [anon_sym_LT_LT_DASH] = ACTIONS(1342), + [anon_sym_LT_LT_LT] = ACTIONS(1342), + [anon_sym_QMARK] = ACTIONS(1340), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1342), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1342), + [aux_sym_concatenation_token1] = ACTIONS(1342), + [anon_sym_DOLLAR] = ACTIONS(1340), + [sym__special_character] = ACTIONS(1340), + [anon_sym_DQUOTE] = ACTIONS(1342), + [anon_sym_SQUOTE] = ACTIONS(1342), + [sym_ansi_c_string] = ACTIONS(1342), + [aux_sym_number_token1] = ACTIONS(1340), + [aux_sym_number_token2] = ACTIONS(1340), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1342), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1340), + [anon_sym_BQUOTE] = ACTIONS(1340), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1342), + [anon_sym_LT_LPAREN] = ACTIONS(1342), + [anon_sym_GT_LPAREN] = ACTIONS(1342), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1342), + [sym__concat] = ACTIONS(1342), + [sym_test_operator] = ACTIONS(1342), + [sym__bare_dollar] = ACTIONS(1342), + [sym__brace_start] = ACTIONS(1342), }, - [519] = { + [521] = { + [sym_word] = ACTIONS(1320), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1322), + [anon_sym_EQ] = ACTIONS(1320), + [anon_sym_PLUS_PLUS] = ACTIONS(1320), + [anon_sym_DASH_DASH] = ACTIONS(1320), + [anon_sym_PLUS_EQ] = ACTIONS(1320), + [anon_sym_DASH_EQ] = ACTIONS(1320), + [anon_sym_STAR_EQ] = ACTIONS(1320), + [anon_sym_SLASH_EQ] = ACTIONS(1320), + [anon_sym_PERCENT_EQ] = ACTIONS(1320), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1320), + [anon_sym_LT_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_GT_EQ] = ACTIONS(1322), + [anon_sym_AMP_EQ] = ACTIONS(1322), + [anon_sym_CARET_EQ] = ACTIONS(1320), + [anon_sym_PIPE_EQ] = ACTIONS(1322), + [anon_sym_PIPE_PIPE] = ACTIONS(1322), + [anon_sym_AMP_AMP] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1320), + [anon_sym_CARET] = ACTIONS(1320), + [anon_sym_AMP] = ACTIONS(1320), + [anon_sym_EQ_EQ] = ACTIONS(1320), + [anon_sym_BANG_EQ] = ACTIONS(1320), + [anon_sym_LT] = ACTIONS(1320), + [anon_sym_GT] = ACTIONS(1320), + [anon_sym_LT_EQ] = ACTIONS(1322), + [anon_sym_GT_EQ] = ACTIONS(1322), + [anon_sym_LT_LT] = ACTIONS(1320), + [anon_sym_GT_GT] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1320), + [anon_sym_DASH] = ACTIONS(1320), + [anon_sym_STAR] = ACTIONS(1320), + [anon_sym_SLASH] = ACTIONS(1320), + [anon_sym_PERCENT] = ACTIONS(1320), + [anon_sym_STAR_STAR] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_PIPE_AMP] = ACTIONS(1322), + [anon_sym_RBRACK] = ACTIONS(1322), + [anon_sym_EQ_TILDE] = ACTIONS(1320), + [anon_sym_AMP_GT] = ACTIONS(1320), + [anon_sym_AMP_GT_GT] = ACTIONS(1322), + [anon_sym_LT_AMP] = ACTIONS(1320), + [anon_sym_GT_AMP] = ACTIONS(1320), + [anon_sym_GT_PIPE] = ACTIONS(1322), + [anon_sym_LT_AMP_DASH] = ACTIONS(1322), + [anon_sym_GT_AMP_DASH] = ACTIONS(1322), + [anon_sym_LT_LT_DASH] = ACTIONS(1322), + [anon_sym_LT_LT_LT] = ACTIONS(1322), + [anon_sym_QMARK] = ACTIONS(1320), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1322), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1322), + [aux_sym_concatenation_token1] = ACTIONS(1322), + [anon_sym_DOLLAR] = ACTIONS(1320), + [sym__special_character] = ACTIONS(1320), + [anon_sym_DQUOTE] = ACTIONS(1322), + [anon_sym_SQUOTE] = ACTIONS(1322), + [sym_ansi_c_string] = ACTIONS(1322), + [aux_sym_number_token1] = ACTIONS(1320), + [aux_sym_number_token2] = ACTIONS(1320), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1322), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1320), + [anon_sym_BQUOTE] = ACTIONS(1320), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1322), + [anon_sym_LT_LPAREN] = ACTIONS(1322), + [anon_sym_GT_LPAREN] = ACTIONS(1322), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1322), + [sym__concat] = ACTIONS(1322), + [sym_test_operator] = ACTIONS(1322), + [sym__bare_dollar] = ACTIONS(1322), + [sym__brace_start] = ACTIONS(1322), + }, + [522] = { + [sym_word] = ACTIONS(1324), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1326), + [anon_sym_EQ] = ACTIONS(1324), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_PLUS_EQ] = ACTIONS(1324), + [anon_sym_DASH_EQ] = ACTIONS(1324), + [anon_sym_STAR_EQ] = ACTIONS(1324), + [anon_sym_SLASH_EQ] = ACTIONS(1324), + [anon_sym_PERCENT_EQ] = ACTIONS(1324), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1324), + [anon_sym_LT_LT_EQ] = ACTIONS(1326), + [anon_sym_GT_GT_EQ] = ACTIONS(1326), + [anon_sym_AMP_EQ] = ACTIONS(1326), + [anon_sym_CARET_EQ] = ACTIONS(1324), + [anon_sym_PIPE_EQ] = ACTIONS(1326), + [anon_sym_PIPE_PIPE] = ACTIONS(1326), + [anon_sym_AMP_AMP] = ACTIONS(1326), + [anon_sym_PIPE] = ACTIONS(1324), + [anon_sym_CARET] = ACTIONS(1324), + [anon_sym_AMP] = ACTIONS(1324), + [anon_sym_EQ_EQ] = ACTIONS(1324), + [anon_sym_BANG_EQ] = ACTIONS(1324), + [anon_sym_LT] = ACTIONS(1324), + [anon_sym_GT] = ACTIONS(1324), + [anon_sym_LT_EQ] = ACTIONS(1326), + [anon_sym_GT_EQ] = ACTIONS(1326), + [anon_sym_LT_LT] = ACTIONS(1324), + [anon_sym_GT_GT] = ACTIONS(1324), + [anon_sym_PLUS] = ACTIONS(1324), + [anon_sym_DASH] = ACTIONS(1324), + [anon_sym_STAR] = ACTIONS(1324), + [anon_sym_SLASH] = ACTIONS(1324), + [anon_sym_PERCENT] = ACTIONS(1324), + [anon_sym_STAR_STAR] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1324), + [anon_sym_PIPE_AMP] = ACTIONS(1326), + [anon_sym_RBRACK] = ACTIONS(1326), + [anon_sym_EQ_TILDE] = ACTIONS(1324), + [anon_sym_AMP_GT] = ACTIONS(1324), + [anon_sym_AMP_GT_GT] = ACTIONS(1326), + [anon_sym_LT_AMP] = ACTIONS(1324), + [anon_sym_GT_AMP] = ACTIONS(1324), + [anon_sym_GT_PIPE] = ACTIONS(1326), + [anon_sym_LT_AMP_DASH] = ACTIONS(1326), + [anon_sym_GT_AMP_DASH] = ACTIONS(1326), + [anon_sym_LT_LT_DASH] = ACTIONS(1326), + [anon_sym_LT_LT_LT] = ACTIONS(1326), + [anon_sym_QMARK] = ACTIONS(1324), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1326), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1326), + [aux_sym_concatenation_token1] = ACTIONS(1326), + [anon_sym_DOLLAR] = ACTIONS(1324), + [sym__special_character] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(1326), + [anon_sym_SQUOTE] = ACTIONS(1326), + [sym_ansi_c_string] = ACTIONS(1326), + [aux_sym_number_token1] = ACTIONS(1324), + [aux_sym_number_token2] = ACTIONS(1324), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1326), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1324), + [anon_sym_BQUOTE] = ACTIONS(1324), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1326), + [anon_sym_LT_LPAREN] = ACTIONS(1326), + [anon_sym_GT_LPAREN] = ACTIONS(1326), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1326), + [sym__concat] = ACTIONS(1326), + [sym_test_operator] = ACTIONS(1326), + [sym__bare_dollar] = ACTIONS(1326), + [sym__brace_start] = ACTIONS(1326), + }, + [523] = { + [sym_word] = ACTIONS(1328), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1330), + [anon_sym_EQ] = ACTIONS(1328), + [anon_sym_PLUS_PLUS] = ACTIONS(1328), + [anon_sym_DASH_DASH] = ACTIONS(1328), + [anon_sym_PLUS_EQ] = ACTIONS(1328), + [anon_sym_DASH_EQ] = ACTIONS(1328), + [anon_sym_STAR_EQ] = ACTIONS(1328), + [anon_sym_SLASH_EQ] = ACTIONS(1328), + [anon_sym_PERCENT_EQ] = ACTIONS(1328), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1328), + [anon_sym_LT_LT_EQ] = ACTIONS(1330), + [anon_sym_GT_GT_EQ] = ACTIONS(1330), + [anon_sym_AMP_EQ] = ACTIONS(1330), + [anon_sym_CARET_EQ] = ACTIONS(1328), + [anon_sym_PIPE_EQ] = ACTIONS(1330), + [anon_sym_PIPE_PIPE] = ACTIONS(1330), + [anon_sym_AMP_AMP] = ACTIONS(1330), + [anon_sym_PIPE] = ACTIONS(1328), + [anon_sym_CARET] = ACTIONS(1328), + [anon_sym_AMP] = ACTIONS(1328), + [anon_sym_EQ_EQ] = ACTIONS(1328), + [anon_sym_BANG_EQ] = ACTIONS(1328), + [anon_sym_LT] = ACTIONS(1328), + [anon_sym_GT] = ACTIONS(1328), + [anon_sym_LT_EQ] = ACTIONS(1330), + [anon_sym_GT_EQ] = ACTIONS(1330), + [anon_sym_LT_LT] = ACTIONS(1328), + [anon_sym_GT_GT] = ACTIONS(1328), + [anon_sym_PLUS] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1328), + [anon_sym_STAR] = ACTIONS(1328), + [anon_sym_SLASH] = ACTIONS(1328), + [anon_sym_PERCENT] = ACTIONS(1328), + [anon_sym_STAR_STAR] = ACTIONS(1328), + [anon_sym_LPAREN] = ACTIONS(1328), + [anon_sym_PIPE_AMP] = ACTIONS(1330), + [anon_sym_RBRACK] = ACTIONS(1330), + [anon_sym_EQ_TILDE] = ACTIONS(1328), + [anon_sym_AMP_GT] = ACTIONS(1328), + [anon_sym_AMP_GT_GT] = ACTIONS(1330), + [anon_sym_LT_AMP] = ACTIONS(1328), + [anon_sym_GT_AMP] = ACTIONS(1328), + [anon_sym_GT_PIPE] = ACTIONS(1330), + [anon_sym_LT_AMP_DASH] = ACTIONS(1330), + [anon_sym_GT_AMP_DASH] = ACTIONS(1330), + [anon_sym_LT_LT_DASH] = ACTIONS(1330), + [anon_sym_LT_LT_LT] = ACTIONS(1330), + [anon_sym_QMARK] = ACTIONS(1328), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1330), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1330), + [aux_sym_concatenation_token1] = ACTIONS(1330), + [anon_sym_DOLLAR] = ACTIONS(1328), + [sym__special_character] = ACTIONS(1328), + [anon_sym_DQUOTE] = ACTIONS(1330), + [anon_sym_SQUOTE] = ACTIONS(1330), + [sym_ansi_c_string] = ACTIONS(1330), + [aux_sym_number_token1] = ACTIONS(1328), + [aux_sym_number_token2] = ACTIONS(1328), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1330), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1328), + [anon_sym_BQUOTE] = ACTIONS(1328), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1330), + [anon_sym_LT_LPAREN] = ACTIONS(1330), + [anon_sym_GT_LPAREN] = ACTIONS(1330), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1330), + [sym__concat] = ACTIONS(1330), + [sym_test_operator] = ACTIONS(1330), + [sym__bare_dollar] = ACTIONS(1330), + [sym__brace_start] = ACTIONS(1330), + }, + [524] = { + [aux_sym__literal_repeat1] = STATE(524), + [sym_word] = ACTIONS(1394), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1396), + [anon_sym_EQ] = ACTIONS(1394), + [anon_sym_PLUS_PLUS] = ACTIONS(1394), + [anon_sym_DASH_DASH] = ACTIONS(1394), + [anon_sym_PLUS_EQ] = ACTIONS(1394), + [anon_sym_DASH_EQ] = ACTIONS(1394), + [anon_sym_STAR_EQ] = ACTIONS(1394), + [anon_sym_SLASH_EQ] = ACTIONS(1394), + [anon_sym_PERCENT_EQ] = ACTIONS(1394), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1394), + [anon_sym_LT_LT_EQ] = ACTIONS(1396), + [anon_sym_GT_GT_EQ] = ACTIONS(1396), + [anon_sym_AMP_EQ] = ACTIONS(1396), + [anon_sym_CARET_EQ] = ACTIONS(1394), + [anon_sym_PIPE_EQ] = ACTIONS(1396), + [anon_sym_PIPE_PIPE] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_CARET] = ACTIONS(1394), + [anon_sym_AMP] = ACTIONS(1394), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1396), + [anon_sym_GT_EQ] = ACTIONS(1396), + [anon_sym_LT_LT] = ACTIONS(1394), + [anon_sym_GT_GT] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1394), + [anon_sym_DASH] = ACTIONS(1394), + [anon_sym_STAR] = ACTIONS(1394), + [anon_sym_SLASH] = ACTIONS(1394), + [anon_sym_PERCENT] = ACTIONS(1394), + [anon_sym_STAR_STAR] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_PIPE_AMP] = ACTIONS(1396), + [anon_sym_RBRACK] = ACTIONS(1396), + [anon_sym_EQ_TILDE] = ACTIONS(1394), + [anon_sym_AMP_GT] = ACTIONS(1394), + [anon_sym_AMP_GT_GT] = ACTIONS(1396), + [anon_sym_LT_AMP] = ACTIONS(1394), + [anon_sym_GT_AMP] = ACTIONS(1394), + [anon_sym_GT_PIPE] = ACTIONS(1396), + [anon_sym_LT_AMP_DASH] = ACTIONS(1396), + [anon_sym_GT_AMP_DASH] = ACTIONS(1396), + [anon_sym_LT_LT_DASH] = ACTIONS(1396), + [anon_sym_LT_LT_LT] = ACTIONS(1396), + [anon_sym_QMARK] = ACTIONS(1394), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1396), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1396), + [anon_sym_DOLLAR] = ACTIONS(1394), + [sym__special_character] = ACTIONS(1413), + [anon_sym_DQUOTE] = ACTIONS(1396), + [anon_sym_SQUOTE] = ACTIONS(1396), + [sym_ansi_c_string] = ACTIONS(1396), + [aux_sym_number_token1] = ACTIONS(1394), + [aux_sym_number_token2] = ACTIONS(1394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1396), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1394), + [anon_sym_BQUOTE] = ACTIONS(1396), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1396), + [anon_sym_LT_LPAREN] = ACTIONS(1396), + [anon_sym_GT_LPAREN] = ACTIONS(1396), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1396), + [sym_test_operator] = ACTIONS(1396), + [sym__bare_dollar] = ACTIONS(1396), + [sym__brace_start] = ACTIONS(1396), + }, + [525] = { + [aux_sym__literal_repeat1] = STATE(524), + [sym_word] = ACTIONS(247), + [anon_sym_LPAREN_LPAREN] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(249), + [anon_sym_PLUS_PLUS] = ACTIONS(249), + [anon_sym_DASH_DASH] = ACTIONS(249), + [anon_sym_PLUS_EQ] = ACTIONS(249), + [anon_sym_DASH_EQ] = ACTIONS(249), + [anon_sym_STAR_EQ] = ACTIONS(249), + [anon_sym_SLASH_EQ] = ACTIONS(249), + [anon_sym_PERCENT_EQ] = ACTIONS(249), + [anon_sym_STAR_STAR_EQ] = ACTIONS(249), + [anon_sym_LT_LT_EQ] = ACTIONS(298), + [anon_sym_GT_GT_EQ] = ACTIONS(298), + [anon_sym_AMP_EQ] = ACTIONS(298), + [anon_sym_CARET_EQ] = ACTIONS(249), + [anon_sym_PIPE_EQ] = ACTIONS(298), + [anon_sym_PIPE_PIPE] = ACTIONS(300), + [anon_sym_AMP_AMP] = ACTIONS(300), + [anon_sym_PIPE] = ACTIONS(251), + [anon_sym_CARET] = ACTIONS(249), + [anon_sym_AMP] = ACTIONS(249), + [anon_sym_EQ_EQ] = ACTIONS(251), + [anon_sym_BANG_EQ] = ACTIONS(249), + [anon_sym_LT] = ACTIONS(251), + [anon_sym_GT] = ACTIONS(251), + [anon_sym_LT_EQ] = ACTIONS(298), + [anon_sym_GT_EQ] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(251), + [anon_sym_GT_GT] = ACTIONS(251), + [anon_sym_PLUS] = ACTIONS(249), + [anon_sym_DASH] = ACTIONS(249), + [anon_sym_STAR] = ACTIONS(249), + [anon_sym_SLASH] = ACTIONS(249), + [anon_sym_PERCENT] = ACTIONS(249), + [anon_sym_STAR_STAR] = ACTIONS(249), + [anon_sym_LPAREN] = ACTIONS(247), + [anon_sym_PIPE_AMP] = ACTIONS(286), + [anon_sym_RBRACK] = ACTIONS(298), + [anon_sym_EQ_TILDE] = ACTIONS(251), + [anon_sym_AMP_GT] = ACTIONS(247), + [anon_sym_AMP_GT_GT] = ACTIONS(286), + [anon_sym_LT_AMP] = ACTIONS(247), + [anon_sym_GT_AMP] = ACTIONS(247), + [anon_sym_GT_PIPE] = ACTIONS(286), + [anon_sym_LT_AMP_DASH] = ACTIONS(286), + [anon_sym_GT_AMP_DASH] = ACTIONS(286), + [anon_sym_LT_LT_DASH] = ACTIONS(286), + [anon_sym_LT_LT_LT] = ACTIONS(286), + [anon_sym_QMARK] = ACTIONS(249), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(286), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(286), + [anon_sym_DOLLAR] = ACTIONS(247), + [sym__special_character] = ACTIONS(1416), + [anon_sym_DQUOTE] = ACTIONS(286), + [anon_sym_SQUOTE] = ACTIONS(286), + [sym_ansi_c_string] = ACTIONS(286), + [aux_sym_number_token1] = ACTIONS(247), + [aux_sym_number_token2] = ACTIONS(247), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(247), + [anon_sym_BQUOTE] = ACTIONS(286), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(286), + [anon_sym_LT_LPAREN] = ACTIONS(286), + [anon_sym_GT_LPAREN] = ACTIONS(286), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(286), + [sym_test_operator] = ACTIONS(300), + [sym__bare_dollar] = ACTIONS(286), + [sym__brace_start] = ACTIONS(286), + }, + [526] = { + [sym_subshell] = STATE(4996), + [sym_test_command] = STATE(4996), + [sym_command] = STATE(4998), + [sym_command_name] = STATE(538), + [sym_variable_assignment] = STATE(2097), + [sym_subscript] = STATE(6812), + [sym_file_redirect] = STATE(3643), + [sym_herestring_redirect] = STATE(3643), + [sym__expression] = STATE(3003), + [sym_binary_expression] = STATE(3167), + [sym_ternary_expression] = STATE(3167), + [sym_unary_expression] = STATE(3167), + [sym_postfix_expression] = STATE(3167), + [sym_parenthesized_expression] = STATE(3167), + [sym_arithmetic_expansion] = STATE(468), + [sym_brace_expression] = STATE(468), + [sym_concatenation] = STATE(498), + [sym_string] = STATE(468), + [sym_translated_string] = STATE(468), + [sym_raw_string] = STATE(468), + [sym_number] = STATE(468), + [sym_simple_expansion] = STATE(468), + [sym_expansion] = STATE(468), + [sym_command_substitution] = STATE(468), + [sym_process_substitution] = STATE(468), + [aux_sym_command_repeat1] = STATE(895), + [aux_sym__literal_repeat1] = STATE(494), + [sym_word] = ACTIONS(1418), + [anon_sym_LPAREN_LPAREN] = ACTIONS(85), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(91), + [anon_sym_BANG] = ACTIONS(256), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LBRACK_LBRACK] = ACTIONS(35), + [anon_sym_AMP_GT] = ACTIONS(1420), + [anon_sym_AMP_GT_GT] = ACTIONS(1422), + [anon_sym_LT_AMP] = ACTIONS(1420), + [anon_sym_GT_AMP] = ACTIONS(1420), + [anon_sym_GT_PIPE] = ACTIONS(1422), + [anon_sym_LT_AMP_DASH] = ACTIONS(1424), + [anon_sym_GT_AMP_DASH] = ACTIONS(1424), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_PLUS_PLUS2] = ACTIONS(105), + [anon_sym_DASH_DASH2] = ACTIONS(105), + [anon_sym_DASH2] = ACTIONS(107), + [anon_sym_PLUS2] = ACTIONS(107), + [anon_sym_TILDE] = ACTIONS(109), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(111), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(113), + [anon_sym_DOLLAR] = ACTIONS(115), + [sym__special_character] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(121), + [sym_ansi_c_string] = ACTIONS(123), + [aux_sym_number_token1] = ACTIONS(125), + [aux_sym_number_token2] = ACTIONS(127), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(129), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(131), + [anon_sym_BQUOTE] = ACTIONS(133), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(135), + [anon_sym_LT_LPAREN] = ACTIONS(137), + [anon_sym_GT_LPAREN] = ACTIONS(137), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1428), + [sym_variable_name] = ACTIONS(141), + [sym_test_operator] = ACTIONS(143), + [sym__brace_start] = ACTIONS(145), + }, + [527] = { + [sym_word] = ACTIONS(1279), + [anon_sym_LPAREN_LPAREN] = ACTIONS(1286), + [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_PLUS_PLUS] = ACTIONS(1281), + [anon_sym_DASH_DASH] = ACTIONS(1281), + [anon_sym_PLUS_EQ] = ACTIONS(1281), + [anon_sym_DASH_EQ] = ACTIONS(1281), + [anon_sym_STAR_EQ] = ACTIONS(1281), + [anon_sym_SLASH_EQ] = ACTIONS(1281), + [anon_sym_PERCENT_EQ] = ACTIONS(1281), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1281), + [anon_sym_LT_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_GT_EQ] = ACTIONS(1403), + [anon_sym_AMP_EQ] = ACTIONS(1403), + [anon_sym_CARET_EQ] = ACTIONS(1281), + [anon_sym_PIPE_EQ] = ACTIONS(1403), + [anon_sym_PIPE_PIPE] = ACTIONS(1288), + [anon_sym_AMP_AMP] = ACTIONS(1288), + [anon_sym_PIPE] = ACTIONS(1283), + [anon_sym_CARET] = ACTIONS(1281), + [anon_sym_AMP] = ACTIONS(1281), + [anon_sym_EQ_EQ] = ACTIONS(1283), + [anon_sym_BANG_EQ] = ACTIONS(1281), + [anon_sym_LT] = ACTIONS(1283), + [anon_sym_GT] = ACTIONS(1283), + [anon_sym_LT_EQ] = ACTIONS(1403), + [anon_sym_GT_EQ] = ACTIONS(1403), + [anon_sym_LT_LT] = ACTIONS(1283), + [anon_sym_GT_GT] = ACTIONS(1283), + [anon_sym_PLUS] = ACTIONS(1281), + [anon_sym_DASH] = ACTIONS(1281), + [anon_sym_STAR] = ACTIONS(1281), + [anon_sym_SLASH] = ACTIONS(1281), + [anon_sym_PERCENT] = ACTIONS(1281), + [anon_sym_STAR_STAR] = ACTIONS(1281), + [anon_sym_LPAREN] = ACTIONS(1279), + [anon_sym_PIPE_AMP] = ACTIONS(1286), + [anon_sym_RBRACK] = ACTIONS(1403), + [anon_sym_EQ_TILDE] = ACTIONS(1283), + [anon_sym_AMP_GT] = ACTIONS(1279), + [anon_sym_AMP_GT_GT] = ACTIONS(1286), + [anon_sym_LT_AMP] = ACTIONS(1279), + [anon_sym_GT_AMP] = ACTIONS(1279), + [anon_sym_GT_PIPE] = ACTIONS(1286), + [anon_sym_LT_AMP_DASH] = ACTIONS(1286), + [anon_sym_GT_AMP_DASH] = ACTIONS(1286), + [anon_sym_LT_LT_DASH] = ACTIONS(1286), + [anon_sym_LT_LT_LT] = ACTIONS(1286), + [anon_sym_QMARK] = ACTIONS(1281), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1286), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(1286), + [anon_sym_DOLLAR] = ACTIONS(1279), + [sym__special_character] = ACTIONS(1279), + [anon_sym_DQUOTE] = ACTIONS(1286), + [anon_sym_SQUOTE] = ACTIONS(1286), + [sym_ansi_c_string] = ACTIONS(1286), + [aux_sym_number_token1] = ACTIONS(1279), + [aux_sym_number_token2] = ACTIONS(1279), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1279), + [anon_sym_BQUOTE] = ACTIONS(1286), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1286), + [anon_sym_LT_LPAREN] = ACTIONS(1286), + [anon_sym_GT_LPAREN] = ACTIONS(1286), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1286), + [sym_test_operator] = ACTIONS(1288), + [sym__bare_dollar] = ACTIONS(1286), + [sym__brace_start] = ACTIONS(1286), + }, + [528] = { + [sym_subshell] = STATE(5756), + [sym_test_command] = STATE(5756), + [sym_command] = STATE(5696), + [sym_command_name] = STATE(644), + [sym_variable_assignment] = STATE(2968), + [sym_subscript] = STATE(6803), + [sym_file_redirect] = STATE(3643), + [sym_herestring_redirect] = STATE(3643), + [sym__expression] = STATE(3173), + [sym_binary_expression] = STATE(3140), + [sym_ternary_expression] = STATE(3140), + [sym_unary_expression] = STATE(3140), + [sym_postfix_expression] = STATE(3140), + [sym_parenthesized_expression] = STATE(3140), + [sym_arithmetic_expansion] = STATE(497), + [sym_brace_expression] = STATE(497), + [sym_concatenation] = STATE(527), + [sym_string] = STATE(497), + [sym_translated_string] = STATE(497), + [sym_raw_string] = STATE(497), + [sym_number] = STATE(497), + [sym_simple_expansion] = STATE(497), + [sym_expansion] = STATE(497), + [sym_command_substitution] = STATE(497), + [sym_process_substitution] = STATE(497), + [aux_sym_command_repeat1] = STATE(855), + [aux_sym__literal_repeat1] = STATE(525), + [sym_word] = ACTIONS(1430), + [anon_sym_LPAREN_LPAREN] = ACTIONS(153), + [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1420), + [anon_sym_GT_GT] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(159), + [anon_sym_BANG] = ACTIONS(305), + [anon_sym_LBRACK] = ACTIONS(173), + [anon_sym_LBRACK_LBRACK] = ACTIONS(177), + [anon_sym_AMP_GT] = ACTIONS(1420), + [anon_sym_AMP_GT_GT] = ACTIONS(1422), + [anon_sym_LT_AMP] = ACTIONS(1420), + [anon_sym_GT_AMP] = ACTIONS(1420), + [anon_sym_GT_PIPE] = ACTIONS(1422), + [anon_sym_LT_AMP_DASH] = ACTIONS(1424), + [anon_sym_GT_AMP_DASH] = ACTIONS(1424), + [anon_sym_LT_LT_LT] = ACTIONS(1426), + [anon_sym_PLUS_PLUS2] = ACTIONS(187), + [anon_sym_DASH_DASH2] = ACTIONS(187), + [anon_sym_DASH2] = ACTIONS(189), + [anon_sym_PLUS2] = ACTIONS(189), + [anon_sym_TILDE] = ACTIONS(191), + [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(193), + [anon_sym_DOLLAR_LBRACK] = ACTIONS(195), + [anon_sym_DOLLAR] = ACTIONS(197), + [sym__special_character] = ACTIONS(199), + [anon_sym_DQUOTE] = ACTIONS(201), + [anon_sym_SQUOTE] = ACTIONS(203), + [sym_ansi_c_string] = ACTIONS(205), + [aux_sym_number_token1] = ACTIONS(207), + [aux_sym_number_token2] = ACTIONS(209), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(211), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(213), + [anon_sym_BQUOTE] = ACTIONS(215), + [anon_sym_DOLLAR_BQUOTE] = ACTIONS(217), + [anon_sym_LT_LPAREN] = ACTIONS(219), + [anon_sym_GT_LPAREN] = ACTIONS(219), + [sym_comment] = ACTIONS(73), + [sym_file_descriptor] = ACTIONS(1428), + [sym_variable_name] = ACTIONS(223), + [sym_test_operator] = ACTIONS(225), + [sym__brace_start] = ACTIONS(227), + }, + [529] = { [sym_word] = ACTIONS(1300), [anon_sym_LPAREN_LPAREN] = ACTIONS(1302), [anon_sym_EQ] = ACTIONS(1300), @@ -76236,672 +77868,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_QMARK] = ACTIONS(1300), [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1302), [anon_sym_DOLLAR_LBRACK] = ACTIONS(1302), - [aux_sym_concatenation_token1] = ACTIONS(1302), [anon_sym_DOLLAR] = ACTIONS(1300), [sym__special_character] = ACTIONS(1300), [anon_sym_DQUOTE] = ACTIONS(1302), - [sym_raw_string] = ACTIONS(1302), + [anon_sym_SQUOTE] = ACTIONS(1302), [sym_ansi_c_string] = ACTIONS(1302), [aux_sym_number_token1] = ACTIONS(1300), [aux_sym_number_token2] = ACTIONS(1300), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1302), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1300), - [anon_sym_BQUOTE] = ACTIONS(1300), + [anon_sym_BQUOTE] = ACTIONS(1302), [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1302), [anon_sym_LT_LPAREN] = ACTIONS(1302), [anon_sym_GT_LPAREN] = ACTIONS(1302), - [sym_comment] = ACTIONS(71), + [sym_comment] = ACTIONS(73), [sym_file_descriptor] = ACTIONS(1302), - [sym__concat] = ACTIONS(1302), [sym_test_operator] = ACTIONS(1302), [sym__bare_dollar] = ACTIONS(1302), [sym__brace_start] = ACTIONS(1302), }, - [520] = { - [sym_word] = ACTIONS(1336), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1338), - [anon_sym_EQ] = ACTIONS(1336), - [anon_sym_PLUS_PLUS] = ACTIONS(1336), - [anon_sym_DASH_DASH] = ACTIONS(1336), - [anon_sym_PLUS_EQ] = ACTIONS(1336), - [anon_sym_DASH_EQ] = ACTIONS(1336), - [anon_sym_STAR_EQ] = ACTIONS(1336), - [anon_sym_SLASH_EQ] = ACTIONS(1336), - [anon_sym_PERCENT_EQ] = ACTIONS(1336), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1336), - [anon_sym_LT_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_GT_EQ] = ACTIONS(1338), - [anon_sym_AMP_EQ] = ACTIONS(1338), - [anon_sym_CARET_EQ] = ACTIONS(1336), - [anon_sym_PIPE_EQ] = ACTIONS(1338), - [anon_sym_PIPE_PIPE] = ACTIONS(1338), - [anon_sym_AMP_AMP] = ACTIONS(1338), - [anon_sym_PIPE] = ACTIONS(1336), - [anon_sym_CARET] = ACTIONS(1336), - [anon_sym_AMP] = ACTIONS(1336), - [anon_sym_EQ_EQ] = ACTIONS(1336), - [anon_sym_BANG_EQ] = ACTIONS(1336), - [anon_sym_LT] = ACTIONS(1336), - [anon_sym_GT] = ACTIONS(1336), - [anon_sym_LT_EQ] = ACTIONS(1338), - [anon_sym_GT_EQ] = ACTIONS(1338), - [anon_sym_LT_LT] = ACTIONS(1336), - [anon_sym_GT_GT] = ACTIONS(1336), - [anon_sym_PLUS] = ACTIONS(1336), - [anon_sym_DASH] = ACTIONS(1336), - [anon_sym_STAR] = ACTIONS(1336), - [anon_sym_SLASH] = ACTIONS(1336), - [anon_sym_PERCENT] = ACTIONS(1336), - [anon_sym_STAR_STAR] = ACTIONS(1336), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_PIPE_AMP] = ACTIONS(1338), - [anon_sym_RBRACK] = ACTIONS(1338), - [anon_sym_EQ_TILDE] = ACTIONS(1336), - [anon_sym_AMP_GT] = ACTIONS(1336), - [anon_sym_AMP_GT_GT] = ACTIONS(1338), - [anon_sym_LT_AMP] = ACTIONS(1336), - [anon_sym_GT_AMP] = ACTIONS(1336), - [anon_sym_GT_PIPE] = ACTIONS(1338), - [anon_sym_LT_AMP_DASH] = ACTIONS(1338), - [anon_sym_GT_AMP_DASH] = ACTIONS(1338), - [anon_sym_LT_LT_DASH] = ACTIONS(1338), - [anon_sym_LT_LT_LT] = ACTIONS(1338), - [anon_sym_QMARK] = ACTIONS(1336), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1338), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1338), - [aux_sym_concatenation_token1] = ACTIONS(1338), - [anon_sym_DOLLAR] = ACTIONS(1336), - [sym__special_character] = ACTIONS(1336), - [anon_sym_DQUOTE] = ACTIONS(1338), - [sym_raw_string] = ACTIONS(1338), - [sym_ansi_c_string] = ACTIONS(1338), - [aux_sym_number_token1] = ACTIONS(1336), - [aux_sym_number_token2] = ACTIONS(1336), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1338), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1336), - [anon_sym_BQUOTE] = ACTIONS(1336), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1338), - [anon_sym_LT_LPAREN] = ACTIONS(1338), - [anon_sym_GT_LPAREN] = ACTIONS(1338), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1338), - [sym__concat] = ACTIONS(1338), - [sym_test_operator] = ACTIONS(1338), - [sym__bare_dollar] = ACTIONS(1338), - [sym__brace_start] = ACTIONS(1338), - }, - [521] = { - [sym_word] = ACTIONS(1312), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1314), - [anon_sym_EQ] = ACTIONS(1312), - [anon_sym_PLUS_PLUS] = ACTIONS(1312), - [anon_sym_DASH_DASH] = ACTIONS(1312), - [anon_sym_PLUS_EQ] = ACTIONS(1312), - [anon_sym_DASH_EQ] = ACTIONS(1312), - [anon_sym_STAR_EQ] = ACTIONS(1312), - [anon_sym_SLASH_EQ] = ACTIONS(1312), - [anon_sym_PERCENT_EQ] = ACTIONS(1312), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1312), - [anon_sym_LT_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_GT_EQ] = ACTIONS(1314), - [anon_sym_AMP_EQ] = ACTIONS(1314), - [anon_sym_CARET_EQ] = ACTIONS(1312), - [anon_sym_PIPE_EQ] = ACTIONS(1314), - [anon_sym_PIPE_PIPE] = ACTIONS(1314), - [anon_sym_AMP_AMP] = ACTIONS(1314), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_CARET] = ACTIONS(1312), - [anon_sym_AMP] = ACTIONS(1312), - [anon_sym_EQ_EQ] = ACTIONS(1312), - [anon_sym_BANG_EQ] = ACTIONS(1312), - [anon_sym_LT] = ACTIONS(1312), - [anon_sym_GT] = ACTIONS(1312), - [anon_sym_LT_EQ] = ACTIONS(1314), - [anon_sym_GT_EQ] = ACTIONS(1314), - [anon_sym_LT_LT] = ACTIONS(1312), - [anon_sym_GT_GT] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_STAR] = ACTIONS(1312), - [anon_sym_SLASH] = ACTIONS(1312), - [anon_sym_PERCENT] = ACTIONS(1312), - [anon_sym_STAR_STAR] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1312), - [anon_sym_PIPE_AMP] = ACTIONS(1314), - [anon_sym_RBRACK] = ACTIONS(1314), - [anon_sym_EQ_TILDE] = ACTIONS(1312), - [anon_sym_AMP_GT] = ACTIONS(1312), - [anon_sym_AMP_GT_GT] = ACTIONS(1314), - [anon_sym_LT_AMP] = ACTIONS(1312), - [anon_sym_GT_AMP] = ACTIONS(1312), - [anon_sym_GT_PIPE] = ACTIONS(1314), - [anon_sym_LT_AMP_DASH] = ACTIONS(1314), - [anon_sym_GT_AMP_DASH] = ACTIONS(1314), - [anon_sym_LT_LT_DASH] = ACTIONS(1314), - [anon_sym_LT_LT_LT] = ACTIONS(1314), - [anon_sym_QMARK] = ACTIONS(1312), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1314), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1314), - [aux_sym_concatenation_token1] = ACTIONS(1314), - [anon_sym_DOLLAR] = ACTIONS(1312), - [sym__special_character] = ACTIONS(1312), - [anon_sym_DQUOTE] = ACTIONS(1314), - [sym_raw_string] = ACTIONS(1314), - [sym_ansi_c_string] = ACTIONS(1314), - [aux_sym_number_token1] = ACTIONS(1312), - [aux_sym_number_token2] = ACTIONS(1312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1314), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1312), - [anon_sym_BQUOTE] = ACTIONS(1312), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1314), - [anon_sym_LT_LPAREN] = ACTIONS(1314), - [anon_sym_GT_LPAREN] = ACTIONS(1314), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1314), - [sym__concat] = ACTIONS(1314), - [sym_test_operator] = ACTIONS(1314), - [sym__bare_dollar] = ACTIONS(1314), - [sym__brace_start] = ACTIONS(1314), - }, - [522] = { - [aux_sym__literal_repeat1] = STATE(522), - [sym_word] = ACTIONS(1360), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1362), - [anon_sym_EQ] = ACTIONS(1360), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_PLUS_EQ] = ACTIONS(1360), - [anon_sym_DASH_EQ] = ACTIONS(1360), - [anon_sym_STAR_EQ] = ACTIONS(1360), - [anon_sym_SLASH_EQ] = ACTIONS(1360), - [anon_sym_PERCENT_EQ] = ACTIONS(1360), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1360), - [anon_sym_LT_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_GT_EQ] = ACTIONS(1362), - [anon_sym_AMP_EQ] = ACTIONS(1362), - [anon_sym_CARET_EQ] = ACTIONS(1360), - [anon_sym_PIPE_EQ] = ACTIONS(1362), - [anon_sym_PIPE_PIPE] = ACTIONS(1362), - [anon_sym_AMP_AMP] = ACTIONS(1362), - [anon_sym_PIPE] = ACTIONS(1360), - [anon_sym_CARET] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_EQ_EQ] = ACTIONS(1360), - [anon_sym_BANG_EQ] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1360), - [anon_sym_GT] = ACTIONS(1360), - [anon_sym_LT_EQ] = ACTIONS(1362), - [anon_sym_GT_EQ] = ACTIONS(1362), - [anon_sym_LT_LT] = ACTIONS(1360), - [anon_sym_GT_GT] = ACTIONS(1360), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_SLASH] = ACTIONS(1360), - [anon_sym_PERCENT] = ACTIONS(1360), - [anon_sym_STAR_STAR] = ACTIONS(1360), - [anon_sym_LPAREN] = ACTIONS(1360), - [anon_sym_PIPE_AMP] = ACTIONS(1362), - [anon_sym_RBRACK] = ACTIONS(1362), - [anon_sym_EQ_TILDE] = ACTIONS(1360), - [anon_sym_AMP_GT] = ACTIONS(1360), - [anon_sym_AMP_GT_GT] = ACTIONS(1362), - [anon_sym_LT_AMP] = ACTIONS(1360), - [anon_sym_GT_AMP] = ACTIONS(1360), - [anon_sym_GT_PIPE] = ACTIONS(1362), - [anon_sym_LT_AMP_DASH] = ACTIONS(1362), - [anon_sym_GT_AMP_DASH] = ACTIONS(1362), - [anon_sym_LT_LT_DASH] = ACTIONS(1362), - [anon_sym_LT_LT_LT] = ACTIONS(1362), - [anon_sym_QMARK] = ACTIONS(1360), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1362), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1362), - [anon_sym_DOLLAR] = ACTIONS(1360), - [sym__special_character] = ACTIONS(1381), - [anon_sym_DQUOTE] = ACTIONS(1362), - [sym_raw_string] = ACTIONS(1362), - [sym_ansi_c_string] = ACTIONS(1362), - [aux_sym_number_token1] = ACTIONS(1360), - [aux_sym_number_token2] = ACTIONS(1360), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1362), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1360), - [anon_sym_BQUOTE] = ACTIONS(1362), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1362), - [anon_sym_LT_LPAREN] = ACTIONS(1362), - [anon_sym_GT_LPAREN] = ACTIONS(1362), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1362), - [sym_test_operator] = ACTIONS(1362), - [sym__bare_dollar] = ACTIONS(1362), - [sym__brace_start] = ACTIONS(1362), - }, - [523] = { - [aux_sym__literal_repeat1] = STATE(522), - [sym_word] = ACTIONS(241), - [anon_sym_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_EQ] = ACTIONS(243), - [anon_sym_PLUS_PLUS] = ACTIONS(243), - [anon_sym_DASH_DASH] = ACTIONS(243), - [anon_sym_PLUS_EQ] = ACTIONS(243), - [anon_sym_DASH_EQ] = ACTIONS(243), - [anon_sym_STAR_EQ] = ACTIONS(243), - [anon_sym_SLASH_EQ] = ACTIONS(243), - [anon_sym_PERCENT_EQ] = ACTIONS(243), - [anon_sym_STAR_STAR_EQ] = ACTIONS(243), - [anon_sym_LT_LT_EQ] = ACTIONS(290), - [anon_sym_GT_GT_EQ] = ACTIONS(290), - [anon_sym_AMP_EQ] = ACTIONS(290), - [anon_sym_CARET_EQ] = ACTIONS(243), - [anon_sym_PIPE_EQ] = ACTIONS(290), - [anon_sym_PIPE_PIPE] = ACTIONS(292), - [anon_sym_AMP_AMP] = ACTIONS(292), - [anon_sym_PIPE] = ACTIONS(245), - [anon_sym_CARET] = ACTIONS(243), - [anon_sym_AMP] = ACTIONS(243), - [anon_sym_EQ_EQ] = ACTIONS(245), - [anon_sym_BANG_EQ] = ACTIONS(243), - [anon_sym_LT] = ACTIONS(245), - [anon_sym_GT] = ACTIONS(245), - [anon_sym_LT_EQ] = ACTIONS(290), - [anon_sym_GT_EQ] = ACTIONS(290), - [anon_sym_LT_LT] = ACTIONS(245), - [anon_sym_GT_GT] = ACTIONS(245), - [anon_sym_PLUS] = ACTIONS(243), - [anon_sym_DASH] = ACTIONS(243), - [anon_sym_STAR] = ACTIONS(243), - [anon_sym_SLASH] = ACTIONS(243), - [anon_sym_PERCENT] = ACTIONS(243), - [anon_sym_STAR_STAR] = ACTIONS(243), - [anon_sym_LPAREN] = ACTIONS(241), - [anon_sym_PIPE_AMP] = ACTIONS(278), - [anon_sym_RBRACK] = ACTIONS(290), - [anon_sym_EQ_TILDE] = ACTIONS(245), - [anon_sym_AMP_GT] = ACTIONS(241), - [anon_sym_AMP_GT_GT] = ACTIONS(278), - [anon_sym_LT_AMP] = ACTIONS(241), - [anon_sym_GT_AMP] = ACTIONS(241), - [anon_sym_GT_PIPE] = ACTIONS(278), - [anon_sym_LT_AMP_DASH] = ACTIONS(278), - [anon_sym_GT_AMP_DASH] = ACTIONS(278), - [anon_sym_LT_LT_DASH] = ACTIONS(278), - [anon_sym_LT_LT_LT] = ACTIONS(278), - [anon_sym_QMARK] = ACTIONS(243), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(278), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(278), - [anon_sym_DOLLAR] = ACTIONS(241), - [sym__special_character] = ACTIONS(1384), - [anon_sym_DQUOTE] = ACTIONS(278), - [sym_raw_string] = ACTIONS(278), - [sym_ansi_c_string] = ACTIONS(278), - [aux_sym_number_token1] = ACTIONS(241), - [aux_sym_number_token2] = ACTIONS(241), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(278), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(241), - [anon_sym_BQUOTE] = ACTIONS(278), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(278), - [anon_sym_LT_LPAREN] = ACTIONS(278), - [anon_sym_GT_LPAREN] = ACTIONS(278), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(278), - [sym_test_operator] = ACTIONS(292), - [sym__bare_dollar] = ACTIONS(278), - [sym__brace_start] = ACTIONS(278), - }, - [524] = { - [sym_word] = ACTIONS(1272), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1274), - [anon_sym_EQ] = ACTIONS(1272), - [anon_sym_PLUS_PLUS] = ACTIONS(1272), - [anon_sym_DASH_DASH] = ACTIONS(1272), - [anon_sym_PLUS_EQ] = ACTIONS(1272), - [anon_sym_DASH_EQ] = ACTIONS(1272), - [anon_sym_STAR_EQ] = ACTIONS(1272), - [anon_sym_SLASH_EQ] = ACTIONS(1272), - [anon_sym_PERCENT_EQ] = ACTIONS(1272), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1272), - [anon_sym_LT_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_GT_EQ] = ACTIONS(1274), - [anon_sym_AMP_EQ] = ACTIONS(1274), - [anon_sym_CARET_EQ] = ACTIONS(1272), - [anon_sym_PIPE_EQ] = ACTIONS(1274), - [anon_sym_PIPE_PIPE] = ACTIONS(1274), - [anon_sym_AMP_AMP] = ACTIONS(1274), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_CARET] = ACTIONS(1272), - [anon_sym_AMP] = ACTIONS(1272), - [anon_sym_EQ_EQ] = ACTIONS(1272), - [anon_sym_BANG_EQ] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1272), - [anon_sym_LT_EQ] = ACTIONS(1274), - [anon_sym_GT_EQ] = ACTIONS(1274), - [anon_sym_LT_LT] = ACTIONS(1272), - [anon_sym_GT_GT] = ACTIONS(1272), - [anon_sym_PLUS] = ACTIONS(1272), - [anon_sym_DASH] = ACTIONS(1272), - [anon_sym_STAR] = ACTIONS(1272), - [anon_sym_SLASH] = ACTIONS(1272), - [anon_sym_PERCENT] = ACTIONS(1272), - [anon_sym_STAR_STAR] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_PIPE_AMP] = ACTIONS(1274), - [anon_sym_RBRACK] = ACTIONS(1274), - [anon_sym_EQ_TILDE] = ACTIONS(1272), - [anon_sym_AMP_GT] = ACTIONS(1272), - [anon_sym_AMP_GT_GT] = ACTIONS(1274), - [anon_sym_LT_AMP] = ACTIONS(1272), - [anon_sym_GT_AMP] = ACTIONS(1272), - [anon_sym_GT_PIPE] = ACTIONS(1274), - [anon_sym_LT_AMP_DASH] = ACTIONS(1274), - [anon_sym_GT_AMP_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_DASH] = ACTIONS(1274), - [anon_sym_LT_LT_LT] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(1272), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1274), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1274), - [anon_sym_DOLLAR] = ACTIONS(1272), - [sym__special_character] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1274), - [sym_raw_string] = ACTIONS(1274), - [sym_ansi_c_string] = ACTIONS(1274), - [aux_sym_number_token1] = ACTIONS(1272), - [aux_sym_number_token2] = ACTIONS(1272), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1272), - [anon_sym_BQUOTE] = ACTIONS(1274), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1274), - [anon_sym_LT_LPAREN] = ACTIONS(1274), - [anon_sym_GT_LPAREN] = ACTIONS(1274), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1274), - [sym_test_operator] = ACTIONS(1274), - [sym__bare_dollar] = ACTIONS(1274), - [sym__brace_start] = ACTIONS(1274), - }, - [525] = { - [sym_word] = ACTIONS(1251), - [anon_sym_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_EQ] = ACTIONS(1253), - [anon_sym_PLUS_PLUS] = ACTIONS(1253), - [anon_sym_DASH_DASH] = ACTIONS(1253), - [anon_sym_PLUS_EQ] = ACTIONS(1253), - [anon_sym_DASH_EQ] = ACTIONS(1253), - [anon_sym_STAR_EQ] = ACTIONS(1253), - [anon_sym_SLASH_EQ] = ACTIONS(1253), - [anon_sym_PERCENT_EQ] = ACTIONS(1253), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1253), - [anon_sym_LT_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_GT_EQ] = ACTIONS(1376), - [anon_sym_AMP_EQ] = ACTIONS(1376), - [anon_sym_CARET_EQ] = ACTIONS(1253), - [anon_sym_PIPE_EQ] = ACTIONS(1376), - [anon_sym_PIPE_PIPE] = ACTIONS(1260), - [anon_sym_AMP_AMP] = ACTIONS(1260), - [anon_sym_PIPE] = ACTIONS(1255), - [anon_sym_CARET] = ACTIONS(1253), - [anon_sym_AMP] = ACTIONS(1253), - [anon_sym_EQ_EQ] = ACTIONS(1255), - [anon_sym_BANG_EQ] = ACTIONS(1253), - [anon_sym_LT] = ACTIONS(1255), - [anon_sym_GT] = ACTIONS(1255), - [anon_sym_LT_EQ] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1376), - [anon_sym_LT_LT] = ACTIONS(1255), - [anon_sym_GT_GT] = ACTIONS(1255), - [anon_sym_PLUS] = ACTIONS(1253), - [anon_sym_DASH] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_SLASH] = ACTIONS(1253), - [anon_sym_PERCENT] = ACTIONS(1253), - [anon_sym_STAR_STAR] = ACTIONS(1253), - [anon_sym_LPAREN] = ACTIONS(1251), - [anon_sym_PIPE_AMP] = ACTIONS(1258), - [anon_sym_RBRACK] = ACTIONS(1376), - [anon_sym_EQ_TILDE] = ACTIONS(1255), - [anon_sym_AMP_GT] = ACTIONS(1251), - [anon_sym_AMP_GT_GT] = ACTIONS(1258), - [anon_sym_LT_AMP] = ACTIONS(1251), - [anon_sym_GT_AMP] = ACTIONS(1251), - [anon_sym_GT_PIPE] = ACTIONS(1258), - [anon_sym_LT_AMP_DASH] = ACTIONS(1258), - [anon_sym_GT_AMP_DASH] = ACTIONS(1258), - [anon_sym_LT_LT_DASH] = ACTIONS(1258), - [anon_sym_LT_LT_LT] = ACTIONS(1258), - [anon_sym_QMARK] = ACTIONS(1253), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(1258), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(1258), - [anon_sym_DOLLAR] = ACTIONS(1251), - [sym__special_character] = ACTIONS(1251), - [anon_sym_DQUOTE] = ACTIONS(1258), - [sym_raw_string] = ACTIONS(1258), - [sym_ansi_c_string] = ACTIONS(1258), - [aux_sym_number_token1] = ACTIONS(1251), - [aux_sym_number_token2] = ACTIONS(1251), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1258), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1251), - [anon_sym_BQUOTE] = ACTIONS(1258), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(1258), - [anon_sym_LT_LPAREN] = ACTIONS(1258), - [anon_sym_GT_LPAREN] = ACTIONS(1258), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1258), - [sym_test_operator] = ACTIONS(1260), - [sym__bare_dollar] = ACTIONS(1258), - [sym__brace_start] = ACTIONS(1258), - }, - [526] = { - [sym_subshell] = STATE(5682), - [sym_test_command] = STATE(5682), - [sym_command] = STATE(5685), - [sym_command_name] = STATE(634), - [sym_variable_assignment] = STATE(2929), - [sym_subscript] = STATE(6766), - [sym_file_redirect] = STATE(3591), - [sym_herestring_redirect] = STATE(3591), - [sym__expression] = STATE(3112), - [sym_binary_expression] = STATE(2952), - [sym_ternary_expression] = STATE(2952), - [sym_unary_expression] = STATE(2952), - [sym_postfix_expression] = STATE(2952), - [sym_parenthesized_expression] = STATE(2952), - [sym_arithmetic_expansion] = STATE(501), - [sym_brace_expression] = STATE(501), - [sym_concatenation] = STATE(525), - [sym_string] = STATE(501), - [sym_translated_string] = STATE(501), - [sym_number] = STATE(501), - [sym_simple_expansion] = STATE(501), - [sym_expansion] = STATE(501), - [sym_command_substitution] = STATE(501), - [sym_process_substitution] = STATE(501), - [aux_sym_command_repeat1] = STATE(950), - [aux_sym__literal_repeat1] = STATE(523), - [sym_word] = ACTIONS(1386), - [anon_sym_LPAREN_LPAREN] = ACTIONS(149), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(155), - [anon_sym_BANG] = ACTIONS(297), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LBRACK_LBRACK] = ACTIONS(173), - [anon_sym_AMP_GT] = ACTIONS(1388), - [anon_sym_AMP_GT_GT] = ACTIONS(1390), - [anon_sym_LT_AMP] = ACTIONS(1388), - [anon_sym_GT_AMP] = ACTIONS(1388), - [anon_sym_GT_PIPE] = ACTIONS(1390), - [anon_sym_LT_AMP_DASH] = ACTIONS(1392), - [anon_sym_GT_AMP_DASH] = ACTIONS(1392), - [anon_sym_LT_LT_LT] = ACTIONS(1394), - [anon_sym_PLUS_PLUS2] = ACTIONS(183), - [anon_sym_DASH_DASH2] = ACTIONS(183), - [anon_sym_DASH2] = ACTIONS(185), - [anon_sym_PLUS2] = ACTIONS(185), - [anon_sym_TILDE] = ACTIONS(187), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(189), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(191), - [anon_sym_DOLLAR] = ACTIONS(193), - [sym__special_character] = ACTIONS(195), - [anon_sym_DQUOTE] = ACTIONS(197), - [sym_raw_string] = ACTIONS(199), - [sym_ansi_c_string] = ACTIONS(199), - [aux_sym_number_token1] = ACTIONS(201), - [aux_sym_number_token2] = ACTIONS(203), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(205), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(207), - [anon_sym_BQUOTE] = ACTIONS(209), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(211), - [anon_sym_LT_LPAREN] = ACTIONS(213), - [anon_sym_GT_LPAREN] = ACTIONS(213), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1396), - [sym_variable_name] = ACTIONS(217), - [sym_test_operator] = ACTIONS(219), - [sym__brace_start] = ACTIONS(221), - }, - [527] = { - [sym_subshell] = STATE(5028), - [sym_test_command] = STATE(5028), - [sym_command] = STATE(5029), - [sym_command_name] = STATE(539), - [sym_variable_assignment] = STATE(2207), - [sym_subscript] = STATE(6758), - [sym_file_redirect] = STATE(3591), - [sym_herestring_redirect] = STATE(3591), - [sym__expression] = STATE(3059), - [sym_binary_expression] = STATE(2976), - [sym_ternary_expression] = STATE(2976), - [sym_unary_expression] = STATE(2976), - [sym_postfix_expression] = STATE(2976), - [sym_parenthesized_expression] = STATE(2976), - [sym_arithmetic_expansion] = STATE(468), - [sym_brace_expression] = STATE(468), - [sym_concatenation] = STATE(495), - [sym_string] = STATE(468), - [sym_translated_string] = STATE(468), - [sym_number] = STATE(468), - [sym_simple_expansion] = STATE(468), - [sym_expansion] = STATE(468), - [sym_command_substitution] = STATE(468), - [sym_process_substitution] = STATE(468), - [aux_sym_command_repeat1] = STATE(984), - [aux_sym__literal_repeat1] = STATE(494), - [sym_word] = ACTIONS(1398), - [anon_sym_LPAREN_LPAREN] = ACTIONS(83), - [anon_sym_LT] = ACTIONS(1388), - [anon_sym_GT] = ACTIONS(1388), - [anon_sym_GT_GT] = ACTIONS(1390), - [anon_sym_LPAREN] = ACTIONS(89), - [anon_sym_BANG] = ACTIONS(250), - [anon_sym_LBRACK] = ACTIONS(33), - [anon_sym_LBRACK_LBRACK] = ACTIONS(35), - [anon_sym_AMP_GT] = ACTIONS(1388), - [anon_sym_AMP_GT_GT] = ACTIONS(1390), - [anon_sym_LT_AMP] = ACTIONS(1388), - [anon_sym_GT_AMP] = ACTIONS(1388), - [anon_sym_GT_PIPE] = ACTIONS(1390), - [anon_sym_LT_AMP_DASH] = ACTIONS(1392), - [anon_sym_GT_AMP_DASH] = ACTIONS(1392), - [anon_sym_LT_LT_LT] = ACTIONS(1394), - [anon_sym_PLUS_PLUS2] = ACTIONS(103), - [anon_sym_DASH_DASH2] = ACTIONS(103), - [anon_sym_DASH2] = ACTIONS(105), - [anon_sym_PLUS2] = ACTIONS(105), - [anon_sym_TILDE] = ACTIONS(107), - [anon_sym_DOLLAR_LPAREN_LPAREN] = ACTIONS(109), - [anon_sym_DOLLAR_LBRACK] = ACTIONS(111), - [anon_sym_DOLLAR] = ACTIONS(113), - [sym__special_character] = ACTIONS(115), - [anon_sym_DQUOTE] = ACTIONS(117), - [sym_raw_string] = ACTIONS(119), - [sym_ansi_c_string] = ACTIONS(119), - [aux_sym_number_token1] = ACTIONS(121), - [aux_sym_number_token2] = ACTIONS(123), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(125), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(127), - [anon_sym_BQUOTE] = ACTIONS(129), - [anon_sym_DOLLAR_BQUOTE] = ACTIONS(131), - [anon_sym_LT_LPAREN] = ACTIONS(133), - [anon_sym_GT_LPAREN] = ACTIONS(133), - [sym_comment] = ACTIONS(71), - [sym_file_descriptor] = ACTIONS(1396), - [sym_variable_name] = ACTIONS(137), - [sym_test_operator] = ACTIONS(139), - [sym__brace_start] = ACTIONS(141), - }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 28, + [0] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(427), 1, anon_sym_LPAREN, - ACTIONS(1410), 1, + ACTIONS(1442), 1, anon_sym_LT_LT_LT, - ACTIONS(1412), 1, + ACTIONS(1444), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1446), 1, anon_sym_DOLLAR, - ACTIONS(1416), 1, + ACTIONS(1448), 1, sym__special_character, - ACTIONS(1418), 1, + ACTIONS(1450), 1, anon_sym_DQUOTE, - ACTIONS(1420), 1, + ACTIONS(1452), 1, + anon_sym_SQUOTE, + ACTIONS(1454), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1456), 1, aux_sym_number_token2, - ACTIONS(1424), 1, + ACTIONS(1458), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, + ACTIONS(1460), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, + ACTIONS(1462), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + ACTIONS(1468), 1, sym_test_operator, - ACTIONS(1436), 1, + ACTIONS(1470), 1, sym__bare_dollar, - ACTIONS(1438), 1, + ACTIONS(1472), 1, sym__brace_start, - STATE(536), 1, + STATE(537), 1, aux_sym_command_repeat2, - STATE(1097), 1, + STATE(1105), 1, aux_sym__literal_repeat1, - STATE(1171), 1, + STATE(1277), 1, sym_concatenation, - STATE(1174), 1, + STATE(1279), 1, sym_herestring_redirect, - STATE(4975), 1, + STATE(4951), 1, sym_subshell, - ACTIONS(1402), 2, + ACTIONS(1432), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1434), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, + ACTIONS(1438), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1408), 2, + ACTIONS(1440), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1432), 2, + ACTIONS(1466), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1400), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(879), 9, + STATE(913), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1404), 22, + ACTIONS(1436), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -76924,76 +77984,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [120] = 28, + [123] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(415), 1, + ACTIONS(427), 1, anon_sym_LPAREN, - ACTIONS(1410), 1, + ACTIONS(1442), 1, anon_sym_LT_LT_LT, - ACTIONS(1412), 1, + ACTIONS(1444), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1446), 1, anon_sym_DOLLAR, - ACTIONS(1416), 1, + ACTIONS(1448), 1, sym__special_character, - ACTIONS(1418), 1, + ACTIONS(1450), 1, anon_sym_DQUOTE, - ACTIONS(1420), 1, + ACTIONS(1452), 1, + anon_sym_SQUOTE, + ACTIONS(1454), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1456), 1, aux_sym_number_token2, - ACTIONS(1424), 1, + ACTIONS(1458), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, + ACTIONS(1460), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, + ACTIONS(1462), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + ACTIONS(1468), 1, sym_test_operator, - ACTIONS(1436), 1, + ACTIONS(1470), 1, sym__bare_dollar, - ACTIONS(1438), 1, + ACTIONS(1472), 1, sym__brace_start, - STATE(532), 1, + STATE(536), 1, aux_sym_command_repeat2, - STATE(1097), 1, + STATE(1105), 1, aux_sym__literal_repeat1, - STATE(1171), 1, + STATE(1277), 1, sym_concatenation, - STATE(1174), 1, + STATE(1279), 1, sym_herestring_redirect, - STATE(4985), 1, + STATE(5007), 1, sym_subshell, - ACTIONS(1402), 2, + ACTIONS(1432), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1434), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, + ACTIONS(1438), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1432), 2, + ACTIONS(1466), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1442), 2, + ACTIONS(1476), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1400), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(879), 9, + STATE(913), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 22, + ACTIONS(1474), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77016,76 +78078,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240] = 28, + [246] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(1450), 1, + ACTIONS(1484), 1, anon_sym_LT_LT_LT, - ACTIONS(1452), 1, + ACTIONS(1486), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, + ACTIONS(1488), 1, anon_sym_DOLLAR, - ACTIONS(1456), 1, + ACTIONS(1490), 1, sym__special_character, - ACTIONS(1458), 1, + ACTIONS(1492), 1, anon_sym_DQUOTE, - ACTIONS(1460), 1, + ACTIONS(1494), 1, + anon_sym_SQUOTE, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(1464), 1, + ACTIONS(1500), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1504), 1, anon_sym_BQUOTE, - ACTIONS(1470), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, + ACTIONS(1510), 1, sym_test_operator, - ACTIONS(1476), 1, + ACTIONS(1512), 1, sym__bare_dollar, - ACTIONS(1478), 1, + ACTIONS(1514), 1, sym__brace_start, - STATE(543), 1, + STATE(551), 1, aux_sym_command_repeat2, - STATE(1261), 1, + STATE(1317), 1, aux_sym__literal_repeat1, - STATE(1444), 1, + STATE(1493), 1, sym_concatenation, - STATE(1446), 1, + STATE(1495), 1, sym_herestring_redirect, - STATE(5118), 1, + STATE(5171), 1, sym_subshell, - ACTIONS(1442), 2, + ACTIONS(1440), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1446), 2, + ACTIONS(1478), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1480), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1448), 2, + ACTIONS(1482), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1472), 2, + ACTIONS(1508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1444), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(994), 9, + STATE(953), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 21, + ACTIONS(1436), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77107,76 +78171,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [359] = 28, + [368] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(677), 1, + ACTIONS(694), 1, anon_sym_LPAREN, - ACTIONS(1450), 1, + ACTIONS(1484), 1, anon_sym_LT_LT_LT, - ACTIONS(1452), 1, + ACTIONS(1486), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, + ACTIONS(1488), 1, anon_sym_DOLLAR, - ACTIONS(1456), 1, + ACTIONS(1490), 1, sym__special_character, - ACTIONS(1458), 1, + ACTIONS(1492), 1, anon_sym_DQUOTE, - ACTIONS(1460), 1, + ACTIONS(1494), 1, + anon_sym_SQUOTE, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(1464), 1, + ACTIONS(1500), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1504), 1, anon_sym_BQUOTE, - ACTIONS(1470), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, + ACTIONS(1510), 1, sym_test_operator, - ACTIONS(1476), 1, + ACTIONS(1512), 1, sym__bare_dollar, - ACTIONS(1478), 1, + ACTIONS(1514), 1, sym__brace_start, - STATE(547), 1, + STATE(552), 1, aux_sym_command_repeat2, - STATE(1261), 1, + STATE(1317), 1, aux_sym__literal_repeat1, - STATE(1444), 1, + STATE(1493), 1, sym_concatenation, - STATE(1446), 1, + STATE(1495), 1, sym_herestring_redirect, - STATE(5081), 1, + STATE(5090), 1, sym_subshell, - ACTIONS(1408), 2, + ACTIONS(1476), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1446), 2, + ACTIONS(1478), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1480), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1448), 2, + ACTIONS(1482), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1472), 2, + ACTIONS(1508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1444), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(994), 9, + STATE(953), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1404), 21, + ACTIONS(1474), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77198,72 +78264,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [478] = 26, + [490] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 1, + ACTIONS(1527), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1529), 1, anon_sym_LT_LT_LT, - ACTIONS(1412), 1, + ACTIONS(1532), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1535), 1, anon_sym_DOLLAR, - ACTIONS(1416), 1, + ACTIONS(1538), 1, sym__special_character, - ACTIONS(1418), 1, + ACTIONS(1541), 1, anon_sym_DQUOTE, - ACTIONS(1420), 1, + ACTIONS(1544), 1, + anon_sym_SQUOTE, + ACTIONS(1547), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1550), 1, aux_sym_number_token2, - ACTIONS(1424), 1, + ACTIONS(1553), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, + ACTIONS(1556), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, + ACTIONS(1559), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, + ACTIONS(1562), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + ACTIONS(1568), 1, + sym_file_descriptor, + ACTIONS(1571), 1, sym_test_operator, - ACTIONS(1436), 1, + ACTIONS(1574), 1, sym__bare_dollar, - ACTIONS(1438), 1, + ACTIONS(1577), 1, sym__brace_start, - STATE(535), 1, + STATE(534), 1, aux_sym_command_repeat2, - STATE(1097), 1, + STATE(1105), 1, aux_sym__literal_repeat1, - STATE(1171), 1, + STATE(1277), 1, sym_concatenation, - STATE(1174), 1, + STATE(1279), 1, sym_herestring_redirect, - ACTIONS(1402), 2, + ACTIONS(1516), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1519), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, + ACTIONS(1524), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1432), 2, + ACTIONS(1565), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1482), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1400), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(879), 9, + STATE(913), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1480), 22, + ACTIONS(1522), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77286,76 +78355,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [592] = 28, + [609] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1490), 1, + ACTIONS(1586), 1, anon_sym_LT_LT_LT, - ACTIONS(1492), 1, + ACTIONS(1588), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(1590), 1, anon_sym_DOLLAR, - ACTIONS(1496), 1, + ACTIONS(1592), 1, sym__special_character, - ACTIONS(1498), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(1598), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1600), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(1604), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1508), 1, + ACTIONS(1606), 1, anon_sym_BQUOTE, - ACTIONS(1510), 1, + ACTIONS(1608), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1514), 1, + ACTIONS(1612), 1, sym_test_operator, - ACTIONS(1516), 1, + ACTIONS(1614), 1, sym__bare_dollar, - ACTIONS(1518), 1, + ACTIONS(1616), 1, sym__brace_start, - STATE(563), 1, + STATE(565), 1, aux_sym_command_repeat2, - STATE(1457), 1, + STATE(1419), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(1655), 1, sym_concatenation, - STATE(1633), 1, + STATE(1662), 1, sym_herestring_redirect, - STATE(4930), 1, + STATE(5010), 1, sym_subshell, - ACTIONS(1442), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1486), 2, + ACTIONS(1580), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1582), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1488), 2, + ACTIONS(1584), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1512), 2, + ACTIONS(1610), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1484), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1135), 9, + ACTIONS(1476), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1115), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 20, + ACTIONS(1474), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77365,7 +78437,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -77376,77 +78447,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [710] = 28, + [730] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1526), 1, + ACTIONS(1442), 1, anon_sym_LT_LT_LT, - ACTIONS(1528), 1, + ACTIONS(1444), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1530), 1, + ACTIONS(1446), 1, anon_sym_DOLLAR, - ACTIONS(1532), 1, + ACTIONS(1448), 1, sym__special_character, - ACTIONS(1534), 1, + ACTIONS(1450), 1, anon_sym_DQUOTE, - ACTIONS(1536), 1, + ACTIONS(1452), 1, + anon_sym_SQUOTE, + ACTIONS(1454), 1, aux_sym_number_token1, - ACTIONS(1538), 1, + ACTIONS(1456), 1, aux_sym_number_token2, - ACTIONS(1540), 1, + ACTIONS(1458), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1542), 1, + ACTIONS(1460), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1544), 1, + ACTIONS(1462), 1, anon_sym_BQUOTE, - ACTIONS(1546), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1550), 1, + ACTIONS(1468), 1, sym_test_operator, - ACTIONS(1552), 1, + ACTIONS(1470), 1, sym__bare_dollar, - ACTIONS(1554), 1, + ACTIONS(1472), 1, sym__brace_start, - STATE(564), 1, + STATE(534), 1, aux_sym_command_repeat2, - STATE(1410), 1, + STATE(1105), 1, aux_sym__literal_repeat1, - STATE(1534), 1, - sym_herestring_redirect, - STATE(1682), 1, + STATE(1277), 1, sym_concatenation, - STATE(4893), 1, - sym_subshell, - ACTIONS(1522), 2, + STATE(1279), 1, + sym_herestring_redirect, + ACTIONS(1432), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1434), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1524), 2, + ACTIONS(1438), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1548), 2, + ACTIONS(1466), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1408), 3, + ACTIONS(1620), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1520), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1157), 9, + STATE(913), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1404), 19, + ACTIONS(1618), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77456,7 +78524,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77466,73 +78537,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [828] = 27, + [847] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1567), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1569), 1, + ACTIONS(1442), 1, anon_sym_LT_LT_LT, - ACTIONS(1572), 1, + ACTIONS(1444), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1575), 1, + ACTIONS(1446), 1, anon_sym_DOLLAR, - ACTIONS(1578), 1, + ACTIONS(1448), 1, sym__special_character, - ACTIONS(1581), 1, + ACTIONS(1450), 1, anon_sym_DQUOTE, - ACTIONS(1584), 1, + ACTIONS(1452), 1, + anon_sym_SQUOTE, + ACTIONS(1454), 1, aux_sym_number_token1, - ACTIONS(1587), 1, + ACTIONS(1456), 1, aux_sym_number_token2, - ACTIONS(1590), 1, + ACTIONS(1458), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1593), 1, + ACTIONS(1460), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1596), 1, + ACTIONS(1462), 1, anon_sym_BQUOTE, - ACTIONS(1599), 1, + ACTIONS(1464), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1605), 1, - sym_file_descriptor, - ACTIONS(1608), 1, + ACTIONS(1468), 1, sym_test_operator, - ACTIONS(1611), 1, + ACTIONS(1470), 1, sym__bare_dollar, - ACTIONS(1614), 1, + ACTIONS(1472), 1, sym__brace_start, - STATE(535), 1, + STATE(534), 1, aux_sym_command_repeat2, - STATE(1097), 1, + STATE(1105), 1, aux_sym__literal_repeat1, - STATE(1171), 1, + STATE(1277), 1, sym_concatenation, - STATE(1174), 1, + STATE(1279), 1, sym_herestring_redirect, - ACTIONS(1559), 2, + ACTIONS(1432), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1434), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1564), 2, + ACTIONS(1438), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1602), 2, + ACTIONS(1466), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1556), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(879), 9, + ACTIONS(1624), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(913), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1562), 22, + ACTIONS(1622), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77555,72 +78627,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [944] = 26, + [964] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(1410), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1632), 1, anon_sym_LT_LT_LT, - ACTIONS(1412), 1, + ACTIONS(1634), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1414), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(1416), 1, + ACTIONS(1638), 1, sym__special_character, - ACTIONS(1418), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(1420), 1, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(1424), 1, + ACTIONS(1648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1426), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1428), 1, + ACTIONS(1652), 1, anon_sym_BQUOTE, - ACTIONS(1430), 1, + ACTIONS(1654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1434), 1, + ACTIONS(1658), 1, sym_test_operator, - ACTIONS(1436), 1, + ACTIONS(1660), 1, sym__bare_dollar, - ACTIONS(1438), 1, + ACTIONS(1662), 1, sym__brace_start, - STATE(535), 1, + STATE(554), 1, aux_sym_command_repeat2, - STATE(1097), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1171), 1, + STATE(1705), 1, sym_concatenation, - STATE(1174), 1, + STATE(1706), 1, sym_herestring_redirect, - ACTIONS(1402), 2, + STATE(5033), 1, + sym_subshell, + ACTIONS(1440), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1626), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1628), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1406), 2, + ACTIONS(1630), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1432), 2, + ACTIONS(1656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1619), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1400), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(879), 9, + STATE(1078), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1617), 22, + ACTIONS(1436), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77630,10 +78708,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77643,122 +78719,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1058] = 8, + [1085] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(1623), 1, - anon_sym_DQUOTE, - ACTIONS(1627), 1, - sym_variable_name, - STATE(838), 1, - sym_string, - ACTIONS(1625), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1621), 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(1227), 42, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(19), 1, anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + ACTIONS(1586), 1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1588), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1590), 1, + anon_sym_DOLLAR, + ACTIONS(1592), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(1598), 1, aux_sym_number_token1, + ACTIONS(1600), 1, aux_sym_number_token2, + ACTIONS(1602), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1604), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1606), 1, anon_sym_BQUOTE, + ACTIONS(1608), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [1136] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1623), 1, - anon_sym_DQUOTE, - ACTIONS(1627), 1, - sym_variable_name, - STATE(838), 1, - sym_string, - ACTIONS(1625), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, - sym_file_descriptor, + ACTIONS(1612), 1, sym_test_operator, + ACTIONS(1614), 1, sym__bare_dollar, + ACTIONS(1616), 1, sym__brace_start, - ACTIONS(1621), 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(1239), 42, + STATE(563), 1, + aux_sym_command_repeat2, + STATE(1419), 1, + aux_sym__literal_repeat1, + STATE(1655), 1, + sym_concatenation, + STATE(1662), 1, + sym_herestring_redirect, + STATE(5033), 1, + sym_subshell, + ACTIONS(1580), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1582), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1584), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1610), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1440), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1115), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1436), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -77767,92 +78811,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [1214] = 28, + [1206] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1490), 1, + ACTIONS(1632), 1, anon_sym_LT_LT_LT, - ACTIONS(1492), 1, + ACTIONS(1634), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(1496), 1, + ACTIONS(1638), 1, sym__special_character, - ACTIONS(1498), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(1648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1508), 1, + ACTIONS(1652), 1, anon_sym_BQUOTE, - ACTIONS(1510), 1, + ACTIONS(1654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1514), 1, + ACTIONS(1658), 1, sym_test_operator, - ACTIONS(1516), 1, + ACTIONS(1660), 1, sym__bare_dollar, - ACTIONS(1518), 1, + ACTIONS(1662), 1, sym__brace_start, - STATE(569), 1, + STATE(557), 1, aux_sym_command_repeat2, - STATE(1457), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(1705), 1, sym_concatenation, - STATE(1633), 1, + STATE(1706), 1, sym_herestring_redirect, - STATE(4893), 1, + STATE(5010), 1, sym_subshell, - ACTIONS(1408), 2, + ACTIONS(1476), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1486), 2, + ACTIONS(1626), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1628), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1488), 2, + ACTIONS(1630), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1512), 2, + ACTIONS(1656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1484), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1135), 9, + STATE(1078), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1404), 20, + ACTIONS(1474), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77873,77 +78903,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1332] = 28, + [1327] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1526), 1, - anon_sym_LT_LT_LT, - ACTIONS(1528), 1, + ACTIONS(1672), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1530), 1, + ACTIONS(1674), 1, anon_sym_DOLLAR, - ACTIONS(1532), 1, + ACTIONS(1676), 1, sym__special_character, - ACTIONS(1534), 1, + ACTIONS(1678), 1, anon_sym_DQUOTE, - ACTIONS(1536), 1, + ACTIONS(1680), 1, + anon_sym_SQUOTE, + ACTIONS(1682), 1, aux_sym_number_token1, - ACTIONS(1538), 1, + ACTIONS(1684), 1, aux_sym_number_token2, - ACTIONS(1540), 1, + ACTIONS(1686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1542), 1, + ACTIONS(1688), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1544), 1, + ACTIONS(1690), 1, anon_sym_BQUOTE, - ACTIONS(1546), 1, + ACTIONS(1692), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1550), 1, + ACTIONS(1696), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1698), 1, + sym_variable_name, + ACTIONS(1700), 1, sym_test_operator, - ACTIONS(1552), 1, - sym__bare_dollar, - ACTIONS(1554), 1, + ACTIONS(1702), 1, sym__brace_start, - STATE(561), 1, - aux_sym_command_repeat2, - STATE(1410), 1, + STATE(1409), 1, aux_sym__literal_repeat1, - STATE(1534), 1, - sym_herestring_redirect, - STATE(1682), 1, - sym_concatenation, - STATE(4930), 1, - sym_subshell, - ACTIONS(1522), 2, + STATE(6823), 1, + sym_subscript, + ACTIONS(1664), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1666), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1524), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1548), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1442), 3, + ACTIONS(1670), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1520), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1157), 9, + ACTIONS(1694), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(542), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1077), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 19, + ACTIONS(1668), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -77953,7 +78977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -77963,69 +78990,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1450] = 24, + [1439] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1639), 1, + ACTIONS(1714), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1642), 1, + ACTIONS(1717), 1, anon_sym_DOLLAR, - ACTIONS(1645), 1, + ACTIONS(1720), 1, sym__special_character, - ACTIONS(1648), 1, + ACTIONS(1723), 1, anon_sym_DQUOTE, - ACTIONS(1651), 1, + ACTIONS(1726), 1, + anon_sym_SQUOTE, + ACTIONS(1729), 1, aux_sym_number_token1, - ACTIONS(1654), 1, + ACTIONS(1732), 1, aux_sym_number_token2, - ACTIONS(1657), 1, + ACTIONS(1735), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1660), 1, + ACTIONS(1738), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1663), 1, + ACTIONS(1741), 1, anon_sym_BQUOTE, - ACTIONS(1666), 1, + ACTIONS(1744), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1672), 1, + ACTIONS(1750), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1675), 1, + ACTIONS(1753), 1, sym_variable_name, - ACTIONS(1678), 1, + ACTIONS(1756), 1, sym_test_operator, - ACTIONS(1681), 1, + ACTIONS(1759), 1, sym__brace_start, - STATE(1384), 1, + STATE(1409), 1, aux_sym__literal_repeat1, - STATE(6737), 1, + STATE(6823), 1, sym_subscript, - ACTIONS(1632), 2, + ACTIONS(1704), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1707), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1637), 2, + ACTIONS(1712), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1669), 2, + ACTIONS(1747), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1629), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(541), 3, + STATE(542), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1085), 9, + STATE(1077), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1635), 22, + ACTIONS(1710), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78048,69 +79077,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1559] = 24, + [1551] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1692), 1, + ACTIONS(1672), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1694), 1, + ACTIONS(1674), 1, anon_sym_DOLLAR, - ACTIONS(1696), 1, + ACTIONS(1676), 1, sym__special_character, - ACTIONS(1698), 1, + ACTIONS(1678), 1, anon_sym_DQUOTE, - ACTIONS(1700), 1, + ACTIONS(1680), 1, + anon_sym_SQUOTE, + ACTIONS(1682), 1, aux_sym_number_token1, - ACTIONS(1702), 1, + ACTIONS(1684), 1, aux_sym_number_token2, - ACTIONS(1704), 1, + ACTIONS(1686), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1706), 1, + ACTIONS(1688), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1708), 1, + ACTIONS(1690), 1, anon_sym_BQUOTE, - ACTIONS(1710), 1, + ACTIONS(1692), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1714), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1716), 1, + ACTIONS(1698), 1, sym_variable_name, - ACTIONS(1718), 1, + ACTIONS(1700), 1, sym_test_operator, - ACTIONS(1720), 1, + ACTIONS(1702), 1, sym__brace_start, - STATE(1384), 1, + ACTIONS(1766), 1, + aux_sym__simple_variable_name_token1, + STATE(1409), 1, aux_sym__literal_repeat1, - STATE(6737), 1, + STATE(6823), 1, sym_subscript, - ACTIONS(1686), 2, + ACTIONS(1664), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1666), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1690), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1712), 2, + ACTIONS(1694), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1684), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(544), 3, + ACTIONS(1764), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(541), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1085), 9, + STATE(1077), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1688), 22, + ACTIONS(1762), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78133,72 +79164,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1668] = 26, + [1663] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 1, + ACTIONS(1527), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1777), 1, anon_sym_LT_LT_LT, - ACTIONS(1452), 1, + ACTIONS(1780), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, + ACTIONS(1783), 1, anon_sym_DOLLAR, - ACTIONS(1456), 1, + ACTIONS(1786), 1, sym__special_character, - ACTIONS(1458), 1, + ACTIONS(1789), 1, anon_sym_DQUOTE, - ACTIONS(1460), 1, + ACTIONS(1792), 1, + anon_sym_SQUOTE, + ACTIONS(1795), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1798), 1, aux_sym_number_token2, - ACTIONS(1464), 1, + ACTIONS(1801), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, + ACTIONS(1804), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, + ACTIONS(1807), 1, anon_sym_BQUOTE, - ACTIONS(1470), 1, + ACTIONS(1810), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, + ACTIONS(1816), 1, + sym_file_descriptor, + ACTIONS(1819), 1, sym_test_operator, - ACTIONS(1476), 1, + ACTIONS(1822), 1, sym__bare_dollar, - ACTIONS(1478), 1, + ACTIONS(1825), 1, sym__brace_start, - STATE(554), 1, + STATE(544), 1, aux_sym_command_repeat2, - STATE(1261), 1, + STATE(1317), 1, aux_sym__literal_repeat1, - STATE(1444), 1, + STATE(1493), 1, sym_concatenation, - STATE(1446), 1, + STATE(1495), 1, sym_herestring_redirect, - ACTIONS(1446), 2, + ACTIONS(1768), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1771), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1448), 2, + ACTIONS(1774), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1472), 2, + ACTIONS(1813), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1482), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1444), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(994), 9, + STATE(953), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1480), 21, + ACTIONS(1522), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78220,83 +79254,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1781] = 24, + [1781] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1692), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1694), 1, - anon_sym_DOLLAR, - ACTIONS(1696), 1, - sym__special_character, - ACTIONS(1698), 1, + ACTIONS(1830), 1, anon_sym_DQUOTE, - ACTIONS(1700), 1, - aux_sym_number_token1, - ACTIONS(1702), 1, - aux_sym_number_token2, - ACTIONS(1704), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1706), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1708), 1, - anon_sym_BQUOTE, - ACTIONS(1710), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1716), 1, + ACTIONS(1834), 1, sym_variable_name, - ACTIONS(1718), 1, + STATE(861), 1, + sym_string, + ACTIONS(1832), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(1720), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1726), 1, - aux_sym__simple_variable_name_token1, - STATE(1384), 1, - aux_sym__literal_repeat1, - STATE(6737), 1, - sym_subscript, - ACTIONS(1686), 2, + ACTIONS(1828), 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(1267), 42, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1712), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1724), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1684), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(541), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1085), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1722), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -78305,74 +79308,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [1890] = 27, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [1859] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1492), 1, + ACTIONS(1634), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(1498), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(1648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1510), 1, + ACTIONS(1652), 1, + anon_sym_BQUOTE, + ACTIONS(1654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1516), 1, + ACTIONS(1660), 1, sym__bare_dollar, - ACTIONS(1518), 1, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(1732), 1, + ACTIONS(1840), 1, anon_sym_LT_LT_LT, - ACTIONS(1734), 1, + ACTIONS(1842), 1, sym__special_character, - ACTIONS(1736), 1, + ACTIONS(1844), 1, sym_test_operator, - STATE(571), 1, + STATE(582), 1, aux_sym_command_repeat2, - STATE(1457), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(1705), 1, sym_concatenation, - STATE(1633), 1, + STATE(1706), 1, sym_herestring_redirect, - STATE(4930), 1, + STATE(5033), 1, sym_subshell, - ACTIONS(1442), 2, + ACTIONS(1440), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1486), 2, + ACTIONS(1628), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1512), 2, + ACTIONS(1656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1730), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1728), 3, - sym_raw_string, + ACTIONS(1836), 2, sym_ansi_c_string, sym_word, - STATE(1263), 9, + ACTIONS(1838), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(1314), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 20, + ACTIONS(1436), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78392,75 +79415,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [2005] = 27, + [1979] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1492), 1, + ACTIONS(1634), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(1498), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(1648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1510), 1, + ACTIONS(1652), 1, + anon_sym_BQUOTE, + ACTIONS(1654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1516), 1, + ACTIONS(1660), 1, sym__bare_dollar, - ACTIONS(1518), 1, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(1732), 1, + ACTIONS(1840), 1, anon_sym_LT_LT_LT, - ACTIONS(1734), 1, + ACTIONS(1842), 1, sym__special_character, - ACTIONS(1736), 1, + ACTIONS(1844), 1, sym_test_operator, - STATE(572), 1, + STATE(584), 1, aux_sym_command_repeat2, - STATE(1457), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(1705), 1, sym_concatenation, - STATE(1633), 1, + STATE(1706), 1, sym_herestring_redirect, - STATE(4893), 1, + STATE(5010), 1, sym_subshell, - ACTIONS(1408), 2, + ACTIONS(1476), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1486), 2, + ACTIONS(1628), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1512), 2, + ACTIONS(1656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1730), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1728), 3, - sym_raw_string, + ACTIONS(1836), 2, sym_ansi_c_string, sym_word, - STATE(1263), 9, + ACTIONS(1838), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(1314), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1404), 20, + ACTIONS(1474), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78480,73 +79506,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [2120] = 26, + [2099] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1450), 1, - anon_sym_LT_LT_LT, - ACTIONS(1452), 1, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1634), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1454), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(1456), 1, - sym__special_character, - ACTIONS(1458), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(1460), 1, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(1464), 1, + ACTIONS(1648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1466), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1468), 1, - anon_sym_BQUOTE, - ACTIONS(1470), 1, + ACTIONS(1654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1474), 1, - sym_test_operator, - ACTIONS(1476), 1, + ACTIONS(1660), 1, sym__bare_dollar, - ACTIONS(1478), 1, + ACTIONS(1662), 1, sym__brace_start, - STATE(554), 1, + ACTIONS(1840), 1, + anon_sym_LT_LT_LT, + ACTIONS(1842), 1, + sym__special_character, + ACTIONS(1844), 1, + sym_test_operator, + STATE(575), 1, aux_sym_command_repeat2, - STATE(1261), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1444), 1, + STATE(1705), 1, sym_concatenation, - STATE(1446), 1, + STATE(1706), 1, sym_herestring_redirect, - ACTIONS(1446), 2, + STATE(5010), 1, + sym_subshell, + ACTIONS(1476), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1628), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1448), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1472), 2, + ACTIONS(1656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1619), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1444), 3, - sym_raw_string, + ACTIONS(1836), 2, sym_ansi_c_string, sym_word, - STATE(994), 9, + ACTIONS(1838), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(1314), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1617), 21, + ACTIONS(1474), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78557,8 +79586,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78568,24 +79595,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2233] = 8, + anon_sym_BQUOTE, + [2217] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(1830), 1, anon_sym_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(1834), 1, sym_variable_name, - STATE(1000), 1, + STATE(861), 1, sym_string, - ACTIONS(1740), 2, + ACTIONS(1832), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1738), 9, + ACTIONS(1828), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -78595,7 +79623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 41, + ACTIONS(1255), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -78607,6 +79635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -78626,7 +79655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -78637,120 +79666,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [2310] = 8, + [2295] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, - anon_sym_DQUOTE, - ACTIONS(1742), 1, - sym_variable_name, - STATE(1000), 1, - sym_string, - ACTIONS(1740), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1738), 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(1227), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1634), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1636), 1, + anon_sym_DOLLAR, + ACTIONS(1640), 1, + anon_sym_DQUOTE, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, aux_sym_number_token1, + ACTIONS(1646), 1, aux_sym_number_token2, + ACTIONS(1648), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1654), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1660), 1, + sym__bare_dollar, + ACTIONS(1662), 1, + sym__brace_start, + ACTIONS(1840), 1, + anon_sym_LT_LT_LT, + ACTIONS(1842), 1, + sym__special_character, + ACTIONS(1844), 1, + sym_test_operator, + STATE(571), 1, + aux_sym_command_repeat2, + STATE(1461), 1, + aux_sym__literal_repeat1, + STATE(1705), 1, + sym_concatenation, + STATE(1706), 1, + sym_herestring_redirect, + STATE(5033), 1, + sym_subshell, + ACTIONS(1440), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1628), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1836), 2, + sym_ansi_c_string, sym_word, - [2387] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, - anon_sym_DQUOTE, - ACTIONS(1750), 1, - sym_variable_name, - STATE(904), 1, + ACTIONS(1838), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(1314), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(1748), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1744), 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(1227), 41, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1436), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -78759,67 +79755,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_BQUOTE, + [2413] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1484), 1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1486), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1488), 1, + anon_sym_DOLLAR, + ACTIONS(1490), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1492), 1, + anon_sym_DQUOTE, + ACTIONS(1494), 1, + anon_sym_SQUOTE, + ACTIONS(1496), 1, aux_sym_number_token1, + ACTIONS(1498), 1, aux_sym_number_token2, + ACTIONS(1500), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1504), 1, anon_sym_BQUOTE, + ACTIONS(1506), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [2464] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1746), 1, - anon_sym_DQUOTE, - ACTIONS(1750), 1, - sym_variable_name, - STATE(904), 1, - sym_string, - ACTIONS(1748), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, - sym_file_descriptor, + ACTIONS(1510), 1, sym_test_operator, + ACTIONS(1512), 1, sym__bare_dollar, + ACTIONS(1514), 1, sym__brace_start, - ACTIONS(1744), 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(1239), 41, + STATE(544), 1, + aux_sym_command_repeat2, + STATE(1317), 1, + aux_sym__literal_repeat1, + STATE(1493), 1, + sym_concatenation, + STATE(1495), 1, + sym_herestring_redirect, + ACTIONS(1478), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1480), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1482), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1508), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1624), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(953), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1622), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -78828,92 +79845,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [2541] = 28, + [2529] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1492), 1, + ACTIONS(1484), 1, + anon_sym_LT_LT_LT, + ACTIONS(1486), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(1488), 1, anon_sym_DOLLAR, - ACTIONS(1498), 1, + ACTIONS(1490), 1, + sym__special_character, + ACTIONS(1492), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(1494), 1, + anon_sym_SQUOTE, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(1500), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1508), 1, + ACTIONS(1504), 1, anon_sym_BQUOTE, - ACTIONS(1510), 1, + ACTIONS(1506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1516), 1, + ACTIONS(1510), 1, + sym_test_operator, + ACTIONS(1512), 1, sym__bare_dollar, - ACTIONS(1518), 1, + ACTIONS(1514), 1, sym__brace_start, - ACTIONS(1732), 1, - anon_sym_LT_LT_LT, - ACTIONS(1734), 1, - sym__special_character, - ACTIONS(1736), 1, - sym_test_operator, - STATE(587), 1, + STATE(544), 1, aux_sym_command_repeat2, - STATE(1457), 1, + STATE(1317), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(1493), 1, sym_concatenation, - STATE(1633), 1, + STATE(1495), 1, sym_herestring_redirect, - STATE(4893), 1, - sym_subshell, - ACTIONS(1408), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1486), 2, + ACTIONS(1478), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1480), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1512), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1730), 2, + ACTIONS(1482), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1728), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1263), 9, + ACTIONS(1508), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1620), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(953), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1404), 19, + ACTIONS(1618), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -78924,6 +79923,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -78933,76 +79934,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2658] = 28, + [2645] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1492), 1, + ACTIONS(1850), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(1852), 1, anon_sym_DOLLAR, - ACTIONS(1498), 1, + ACTIONS(1854), 1, + sym__special_character, + ACTIONS(1856), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(1858), 1, + anon_sym_SQUOTE, + ACTIONS(1860), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1862), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(1864), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(1866), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1508), 1, + ACTIONS(1868), 1, anon_sym_BQUOTE, - ACTIONS(1510), 1, + ACTIONS(1870), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1516), 1, - sym__bare_dollar, - ACTIONS(1518), 1, - sym__brace_start, - ACTIONS(1732), 1, - anon_sym_LT_LT_LT, - ACTIONS(1734), 1, - sym__special_character, - ACTIONS(1736), 1, + ACTIONS(1874), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(1876), 1, + sym_variable_name, + ACTIONS(1878), 1, sym_test_operator, - STATE(589), 1, - aux_sym_command_repeat2, - STATE(1457), 1, + ACTIONS(1880), 1, + sym__brace_start, + STATE(1731), 1, aux_sym__literal_repeat1, - STATE(1626), 1, - sym_concatenation, - STATE(1633), 1, - sym_herestring_redirect, - STATE(4930), 1, - sym_subshell, - ACTIONS(1442), 2, + STATE(6851), 1, + sym_subscript, + ACTIONS(1764), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1486), 2, + ACTIONS(1846), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1848), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1512), 2, + ACTIONS(1872), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1730), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1728), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1263), 9, + STATE(555), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1312), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 19, + ACTIONS(1762), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79013,6 +80009,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -79022,73 +80020,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2775] = 27, + [2756] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1567), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1761), 1, + ACTIONS(1632), 1, anon_sym_LT_LT_LT, - ACTIONS(1764), 1, + ACTIONS(1634), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1767), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(1770), 1, + ACTIONS(1638), 1, sym__special_character, - ACTIONS(1773), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(1776), 1, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(1779), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(1782), 1, + ACTIONS(1648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1785), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1788), 1, + ACTIONS(1652), 1, anon_sym_BQUOTE, - ACTIONS(1791), 1, + ACTIONS(1654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1797), 1, - sym_file_descriptor, - ACTIONS(1800), 1, + ACTIONS(1658), 1, sym_test_operator, - ACTIONS(1803), 1, + ACTIONS(1660), 1, sym__bare_dollar, - ACTIONS(1806), 1, + ACTIONS(1662), 1, sym__brace_start, - STATE(554), 1, + STATE(556), 1, aux_sym_command_repeat2, - STATE(1261), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1444), 1, + STATE(1705), 1, sym_concatenation, - STATE(1446), 1, + STATE(1706), 1, sym_herestring_redirect, - ACTIONS(1755), 2, + ACTIONS(1624), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1626), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1628), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1758), 2, + ACTIONS(1630), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1794), 2, + ACTIONS(1656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1752), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(994), 9, + STATE(1078), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1562), 21, + ACTIONS(1622), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79098,9 +80097,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -79110,41 +80108,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [2890] = 8, + [2871] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, + ACTIONS(1850), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1852), 1, + anon_sym_DOLLAR, + ACTIONS(1854), 1, + sym__special_character, + ACTIONS(1856), 1, anon_sym_DQUOTE, - ACTIONS(1813), 1, + ACTIONS(1858), 1, + anon_sym_SQUOTE, + ACTIONS(1860), 1, + aux_sym_number_token1, + ACTIONS(1862), 1, + aux_sym_number_token2, + ACTIONS(1864), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1866), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1868), 1, + anon_sym_BQUOTE, + ACTIONS(1870), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1876), 1, sym_variable_name, - STATE(1026), 1, - sym_string, - ACTIONS(1811), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, - sym_file_descriptor, + ACTIONS(1878), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(1880), 1, sym__brace_start, - ACTIONS(1809), 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(1239), 40, + ACTIONS(1882), 1, + aux_sym__simple_variable_name_token1, + STATE(1731), 1, + aux_sym__literal_repeat1, + STATE(6851), 1, + sym_subscript, + ACTIONS(1670), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1846), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1848), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1872), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(564), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1312), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1668), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -79153,7 +80186,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79162,89 +80194,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [2966] = 27, + [2982] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1567), 1, + ACTIONS(1527), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1824), 1, + ACTIONS(1893), 1, anon_sym_LT_LT_LT, - ACTIONS(1827), 1, + ACTIONS(1896), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1899), 1, anon_sym_DOLLAR, - ACTIONS(1833), 1, + ACTIONS(1902), 1, sym__special_character, - ACTIONS(1836), 1, + ACTIONS(1905), 1, anon_sym_DQUOTE, - ACTIONS(1839), 1, + ACTIONS(1908), 1, + anon_sym_SQUOTE, + ACTIONS(1911), 1, aux_sym_number_token1, - ACTIONS(1842), 1, + ACTIONS(1914), 1, aux_sym_number_token2, - ACTIONS(1845), 1, + ACTIONS(1917), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1848), 1, + ACTIONS(1920), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1851), 1, + ACTIONS(1923), 1, anon_sym_BQUOTE, - ACTIONS(1854), 1, + ACTIONS(1926), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1860), 1, + ACTIONS(1932), 1, sym_file_descriptor, - ACTIONS(1863), 1, + ACTIONS(1935), 1, sym_test_operator, - ACTIONS(1866), 1, + ACTIONS(1938), 1, sym__bare_dollar, - ACTIONS(1869), 1, + ACTIONS(1941), 1, sym__brace_start, STATE(556), 1, aux_sym_command_repeat2, - STATE(1457), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(1705), 1, sym_concatenation, - STATE(1633), 1, + STATE(1706), 1, sym_herestring_redirect, - ACTIONS(1818), 2, + ACTIONS(1884), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1887), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1821), 2, + ACTIONS(1890), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1857), 2, + ACTIONS(1929), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1815), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1135), 9, + STATE(1078), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1562), 20, + ACTIONS(1522), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79265,69 +80283,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3080] = 24, + [3099] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1876), 1, + ACTIONS(1632), 1, + anon_sym_LT_LT_LT, + ACTIONS(1634), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1878), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(1880), 1, + ACTIONS(1638), 1, sym__special_character, - ACTIONS(1882), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(1884), 1, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(1886), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(1888), 1, + ACTIONS(1648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1890), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1892), 1, + ACTIONS(1652), 1, anon_sym_BQUOTE, - ACTIONS(1894), 1, + ACTIONS(1654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1898), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(1900), 1, - sym_variable_name, - ACTIONS(1902), 1, + ACTIONS(1658), 1, sym_test_operator, - ACTIONS(1904), 1, + ACTIONS(1660), 1, + sym__bare_dollar, + ACTIONS(1662), 1, sym__brace_start, - STATE(1622), 1, + STATE(556), 1, + aux_sym_command_repeat2, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(6756), 1, - sym_subscript, - ACTIONS(1690), 2, + STATE(1705), 1, + sym_concatenation, + STATE(1706), 1, + sym_herestring_redirect, + ACTIONS(1620), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1874), 2, + ACTIONS(1626), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1628), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1896), 2, + ACTIONS(1630), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(1656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1872), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(562), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1306), 9, + STATE(1078), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1688), 21, + ACTIONS(1618), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79337,9 +80360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -79349,25 +80371,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3188] = 8, + [3214] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1908), 1, + ACTIONS(1450), 1, anon_sym_DQUOTE, - ACTIONS(1912), 1, + ACTIONS(1948), 1, sym_variable_name, - STATE(1129), 1, + STATE(970), 1, sym_string, - ACTIONS(1910), 2, + ACTIONS(1946), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 5, + ACTIONS(1269), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(1906), 9, + ACTIONS(1944), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79377,7 +80398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 39, + ACTIONS(1267), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -79389,8 +80410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -79406,7 +80429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -79417,24 +80440,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3264] = 8, + [3291] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(1450), 1, anon_sym_DQUOTE, - ACTIONS(1920), 1, + ACTIONS(1948), 1, sym_variable_name, - STATE(1090), 1, + STATE(970), 1, sym_string, - ACTIONS(1918), 2, + ACTIONS(1946), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1914), 9, + ACTIONS(1944), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79444,7 +80467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 40, + ACTIONS(1255), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -79456,9 +80479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -79474,7 +80498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -79485,24 +80509,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3340] = 8, + [3368] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(1952), 1, anon_sym_DQUOTE, - ACTIONS(1920), 1, + ACTIONS(1956), 1, sym_variable_name, - STATE(1090), 1, + STATE(981), 1, sym_string, - ACTIONS(1918), 2, + ACTIONS(1954), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1269), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(1914), 9, + ACTIONS(1950), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -79512,7 +80536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 40, + ACTIONS(1267), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -79525,8 +80549,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -79542,7 +80567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -79553,84 +80578,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [3416] = 26, + [3445] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1526), 1, - anon_sym_LT_LT_LT, - ACTIONS(1528), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1530), 1, - anon_sym_DOLLAR, - ACTIONS(1532), 1, - sym__special_character, - ACTIONS(1534), 1, + ACTIONS(1952), 1, anon_sym_DQUOTE, - ACTIONS(1536), 1, - aux_sym_number_token1, - ACTIONS(1538), 1, - aux_sym_number_token2, - ACTIONS(1540), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1542), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1544), 1, - anon_sym_BQUOTE, - ACTIONS(1546), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1550), 1, - sym_test_operator, - ACTIONS(1552), 1, - sym__bare_dollar, - ACTIONS(1554), 1, - sym__brace_start, - STATE(567), 1, - aux_sym_command_repeat2, - STATE(1410), 1, - aux_sym__literal_repeat1, - STATE(1534), 1, - sym_herestring_redirect, - STATE(1682), 1, - sym_concatenation, - ACTIONS(1522), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1524), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1548), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1482), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1520), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1157), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(1956), 1, + sym_variable_name, + STATE(981), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1480), 19, + ACTIONS(1954), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(1950), 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(1255), 41, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79639,156 +80631,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3528] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1876), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1878), 1, - anon_sym_DOLLAR, - ACTIONS(1880), 1, sym__special_character, - ACTIONS(1882), 1, - anon_sym_DQUOTE, - ACTIONS(1884), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1886), 1, aux_sym_number_token2, - ACTIONS(1888), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1890), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1892), 1, anon_sym_BQUOTE, - ACTIONS(1894), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1900), 1, - sym_variable_name, - ACTIONS(1902), 1, - sym_test_operator, - ACTIONS(1904), 1, - sym__brace_start, - ACTIONS(1922), 1, - aux_sym__simple_variable_name_token1, - STATE(1622), 1, - aux_sym__literal_repeat1, - STATE(6756), 1, - sym_subscript, - ACTIONS(1724), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1874), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1896), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1872), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(566), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1306), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1722), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [3636] = 26, + [3522] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, + ACTIONS(1967), 1, anon_sym_LT_LT_LT, - ACTIONS(1492), 1, + ACTIONS(1970), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(1973), 1, anon_sym_DOLLAR, - ACTIONS(1496), 1, + ACTIONS(1976), 1, sym__special_character, - ACTIONS(1498), 1, + ACTIONS(1979), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(1982), 1, + anon_sym_SQUOTE, + ACTIONS(1985), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1988), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(1991), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(1994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1508), 1, + ACTIONS(1997), 1, anon_sym_BQUOTE, - ACTIONS(1510), 1, + ACTIONS(2000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1514), 1, + ACTIONS(2006), 1, + sym_file_descriptor, + ACTIONS(2009), 1, sym_test_operator, - ACTIONS(1516), 1, + ACTIONS(2012), 1, sym__bare_dollar, - ACTIONS(1518), 1, + ACTIONS(2015), 1, sym__brace_start, - STATE(556), 1, + STATE(562), 1, aux_sym_command_repeat2, - STATE(1457), 1, + STATE(1419), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(1655), 1, sym_concatenation, - STATE(1633), 1, + STATE(1662), 1, sym_herestring_redirect, - ACTIONS(1482), 2, - sym_file_descriptor, + ACTIONS(1527), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1486), 2, + ACTIONS(1958), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1961), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1488), 2, + ACTIONS(1964), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1512), 2, + ACTIONS(2003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1484), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1135), 9, + STATE(1115), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1480), 20, + ACTIONS(1522), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -79798,7 +80726,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -79809,136 +80736,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [3748] = 26, + [3639] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1526), 1, + ACTIONS(1586), 1, anon_sym_LT_LT_LT, - ACTIONS(1528), 1, + ACTIONS(1588), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1530), 1, + ACTIONS(1590), 1, anon_sym_DOLLAR, - ACTIONS(1532), 1, + ACTIONS(1592), 1, sym__special_character, - ACTIONS(1534), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1536), 1, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(1598), 1, aux_sym_number_token1, - ACTIONS(1538), 1, + ACTIONS(1600), 1, aux_sym_number_token2, - ACTIONS(1540), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1542), 1, + ACTIONS(1604), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1544), 1, + ACTIONS(1606), 1, anon_sym_BQUOTE, - ACTIONS(1546), 1, + ACTIONS(1608), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1550), 1, + ACTIONS(1612), 1, sym_test_operator, - ACTIONS(1552), 1, + ACTIONS(1614), 1, sym__bare_dollar, - ACTIONS(1554), 1, + ACTIONS(1616), 1, sym__brace_start, - STATE(567), 1, + STATE(562), 1, aux_sym_command_repeat2, - STATE(1410), 1, + STATE(1419), 1, aux_sym__literal_repeat1, - STATE(1534), 1, - sym_herestring_redirect, - STATE(1682), 1, + STATE(1655), 1, sym_concatenation, - ACTIONS(1522), 2, + STATE(1662), 1, + sym_herestring_redirect, + ACTIONS(1580), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1582), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1524), 2, + ACTIONS(1584), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(1548), 2, + ACTIONS(1610), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1520), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(1619), 3, + ACTIONS(1624), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1157), 9, + STATE(1115), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1617), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [3860] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1458), 1, - anon_sym_DQUOTE, - ACTIONS(1813), 1, - sym_variable_name, - STATE(1026), 1, - sym_string, - ACTIONS(1811), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1809), 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(1227), 40, - anon_sym_LPAREN_LPAREN, + ACTIONS(1622), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -79947,85 +80824,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [3936] = 24, + [3754] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1930), 1, + ACTIONS(2024), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1933), 1, + ACTIONS(2027), 1, anon_sym_DOLLAR, - ACTIONS(1936), 1, + ACTIONS(2030), 1, sym__special_character, - ACTIONS(1939), 1, + ACTIONS(2033), 1, anon_sym_DQUOTE, - ACTIONS(1942), 1, + ACTIONS(2036), 1, + anon_sym_SQUOTE, + ACTIONS(2039), 1, aux_sym_number_token1, - ACTIONS(1945), 1, + ACTIONS(2042), 1, aux_sym_number_token2, - ACTIONS(1948), 1, + ACTIONS(2045), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1951), 1, + ACTIONS(2048), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1954), 1, + ACTIONS(2051), 1, anon_sym_BQUOTE, - ACTIONS(1957), 1, + ACTIONS(2054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1963), 1, + ACTIONS(2060), 1, aux_sym__simple_variable_name_token1, - ACTIONS(1966), 1, + ACTIONS(2063), 1, sym_variable_name, - ACTIONS(1969), 1, + ACTIONS(2066), 1, sym_test_operator, - ACTIONS(1972), 1, + ACTIONS(2069), 1, sym__brace_start, - STATE(1622), 1, + STATE(1731), 1, aux_sym__literal_repeat1, - STATE(6756), 1, + STATE(6851), 1, sym_subscript, - ACTIONS(1637), 2, + ACTIONS(1712), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1927), 2, + ACTIONS(2018), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2021), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1960), 2, + ACTIONS(2057), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1924), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(566), 3, + STATE(564), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1306), 9, + STATE(1312), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1635), 21, + ACTIONS(1710), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80047,74 +80910,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4044] = 27, + [3865] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 1, + ACTIONS(1586), 1, anon_sym_LT_LT_LT, - ACTIONS(1987), 1, + ACTIONS(1588), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1990), 1, + ACTIONS(1590), 1, anon_sym_DOLLAR, - ACTIONS(1993), 1, + ACTIONS(1592), 1, sym__special_character, - ACTIONS(1996), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(1999), 1, + ACTIONS(1596), 1, + anon_sym_SQUOTE, + ACTIONS(1598), 1, aux_sym_number_token1, - ACTIONS(2002), 1, + ACTIONS(1600), 1, aux_sym_number_token2, - ACTIONS(2005), 1, + ACTIONS(1602), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2008), 1, + ACTIONS(1604), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2011), 1, + ACTIONS(1606), 1, anon_sym_BQUOTE, - ACTIONS(2014), 1, + ACTIONS(1608), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2020), 1, - sym_file_descriptor, - ACTIONS(2023), 1, + ACTIONS(1612), 1, sym_test_operator, - ACTIONS(2026), 1, + ACTIONS(1614), 1, sym__bare_dollar, - ACTIONS(2029), 1, + ACTIONS(1616), 1, sym__brace_start, - STATE(567), 1, + STATE(562), 1, aux_sym_command_repeat2, - STATE(1410), 1, + STATE(1419), 1, aux_sym__literal_repeat1, - STATE(1534), 1, - sym_herestring_redirect, - STATE(1682), 1, + STATE(1655), 1, sym_concatenation, - ACTIONS(1567), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1978), 2, + STATE(1662), 1, + sym_herestring_redirect, + ACTIONS(1580), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1582), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1981), 2, + ACTIONS(1584), 2, anon_sym_EQ_EQ, anon_sym_EQ_TILDE, - ACTIONS(2017), 2, + ACTIONS(1610), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1975), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1157), 9, + ACTIONS(1620), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1115), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1562), 19, + ACTIONS(1618), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80134,25 +80998,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4158] = 8, + [3980] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1908), 1, + ACTIONS(2074), 1, anon_sym_DQUOTE, - ACTIONS(1912), 1, + ACTIONS(2078), 1, sym_variable_name, - STATE(1129), 1, + STATE(1158), 1, sym_string, - ACTIONS(1910), 2, + ACTIONS(2076), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 5, + ACTIONS(1269), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, - ACTIONS(1906), 9, + ACTIONS(2072), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -80162,7 +81026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 39, + ACTIONS(1267), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -80191,7 +81055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -80202,72 +81066,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [4234] = 26, + [4056] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1490), 1, - anon_sym_LT_LT_LT, - ACTIONS(1492), 1, + ACTIONS(2084), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(2086), 1, anon_sym_DOLLAR, - ACTIONS(1496), 1, + ACTIONS(2088), 1, sym__special_character, - ACTIONS(1498), 1, + ACTIONS(2090), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(2092), 1, + anon_sym_SQUOTE, + ACTIONS(2094), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(2096), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(2098), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(2100), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1508), 1, + ACTIONS(2102), 1, anon_sym_BQUOTE, - ACTIONS(1510), 1, + ACTIONS(2104), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1514), 1, + ACTIONS(2108), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2110), 1, + sym_variable_name, + ACTIONS(2112), 1, sym_test_operator, - ACTIONS(1516), 1, - sym__bare_dollar, - ACTIONS(1518), 1, + ACTIONS(2114), 1, sym__brace_start, - STATE(556), 1, - aux_sym_command_repeat2, - STATE(1457), 1, + STATE(1979), 1, aux_sym__literal_repeat1, - STATE(1626), 1, - sym_concatenation, - STATE(1633), 1, - sym_herestring_redirect, - ACTIONS(1486), 2, + STATE(6811), 1, + sym_subscript, + ACTIONS(2080), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2082), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1488), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1512), 2, + ACTIONS(2106), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1619), 2, + ACTIONS(1764), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1484), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1135), 9, + STATE(568), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1451), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1617), 20, + ACTIONS(1762), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80277,7 +81141,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -80288,69 +81151,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4346] = 24, + [4166] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 1, + ACTIONS(2084), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2038), 1, + ACTIONS(2086), 1, anon_sym_DOLLAR, - ACTIONS(2040), 1, + ACTIONS(2088), 1, sym__special_character, - ACTIONS(2042), 1, + ACTIONS(2090), 1, anon_sym_DQUOTE, - ACTIONS(2044), 1, + ACTIONS(2092), 1, + anon_sym_SQUOTE, + ACTIONS(2094), 1, aux_sym_number_token1, - ACTIONS(2046), 1, + ACTIONS(2096), 1, aux_sym_number_token2, - ACTIONS(2048), 1, + ACTIONS(2098), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2050), 1, + ACTIONS(2100), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2052), 1, + ACTIONS(2102), 1, anon_sym_BQUOTE, - ACTIONS(2054), 1, + ACTIONS(2104), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2058), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2060), 1, + ACTIONS(2110), 1, sym_variable_name, - ACTIONS(2062), 1, + ACTIONS(2112), 1, sym_test_operator, - ACTIONS(2064), 1, + ACTIONS(2114), 1, sym__brace_start, - STATE(1786), 1, + ACTIONS(2116), 1, + aux_sym__simple_variable_name_token1, + STATE(1979), 1, aux_sym__literal_repeat1, - STATE(6736), 1, + STATE(6811), 1, sym_subscript, - ACTIONS(1690), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2034), 2, + ACTIONS(2080), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2082), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2056), 2, + ACTIONS(2106), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2032), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(574), 3, + ACTIONS(1670), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(580), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1431), 9, + STATE(1451), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1688), 20, + ACTIONS(1668), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80360,7 +81226,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -80371,70 +81236,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4453] = 25, + [4276] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1492), 1, + ACTIONS(2122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(2124), 1, anon_sym_DOLLAR, - ACTIONS(1498), 1, + ACTIONS(2126), 1, + sym__special_character, + ACTIONS(2128), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(2130), 1, + anon_sym_SQUOTE, + ACTIONS(2132), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(2134), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(2136), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1510), 1, + ACTIONS(2140), 1, + anon_sym_BQUOTE, + ACTIONS(2142), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1516), 1, - sym__bare_dollar, - ACTIONS(1518), 1, - sym__brace_start, - ACTIONS(1732), 1, - anon_sym_LT_LT_LT, - ACTIONS(1734), 1, - sym__special_character, - ACTIONS(1736), 1, + ACTIONS(2146), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2148), 1, + sym_variable_name, + ACTIONS(2150), 1, sym_test_operator, - STATE(588), 1, - aux_sym_command_repeat2, - STATE(1457), 1, + ACTIONS(2152), 1, + sym__brace_start, + STATE(1911), 1, aux_sym__literal_repeat1, - STATE(1626), 1, - sym_concatenation, - STATE(1633), 1, - sym_herestring_redirect, - ACTIONS(1482), 2, + STATE(6813), 1, + sym_subscript, + ACTIONS(1764), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1486), 2, + ACTIONS(2118), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2120), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1512), 2, + ACTIONS(2144), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1730), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1728), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1263), 9, + STATE(581), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1422), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1480), 20, + ACTIONS(1762), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80444,6 +81310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -80454,82 +81321,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [4562] = 25, + [4386] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1492), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, - anon_sym_DOLLAR, - ACTIONS(1498), 1, + ACTIONS(2074), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, - aux_sym_number_token1, - ACTIONS(1502), 1, - aux_sym_number_token2, - ACTIONS(1504), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1510), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1516), 1, + ACTIONS(2078), 1, + sym_variable_name, + STATE(1158), 1, + sym_string, + ACTIONS(2076), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 5, + sym_file_descriptor, + sym_test_operator, sym__bare_dollar, - ACTIONS(1518), 1, sym__brace_start, - ACTIONS(1732), 1, - anon_sym_LT_LT_LT, - ACTIONS(1734), 1, - sym__special_character, - ACTIONS(1736), 1, - sym_test_operator, - STATE(588), 1, - aux_sym_command_repeat2, - STATE(1457), 1, - aux_sym__literal_repeat1, - STATE(1626), 1, - sym_concatenation, - STATE(1633), 1, - sym_herestring_redirect, - ACTIONS(1486), 2, + ts_builtin_sym_end, + ACTIONS(2072), 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(1255), 39, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1512), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1619), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1730), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1728), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1263), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1617), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80538,70 +81373,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [4671] = 24, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [4462] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2072), 1, + ACTIONS(1634), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2075), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(2078), 1, - sym__special_character, - ACTIONS(2081), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(2084), 1, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(2087), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(2090), 1, + ACTIONS(1648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2093), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2096), 1, - anon_sym_BQUOTE, - ACTIONS(2099), 1, + ACTIONS(1654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2105), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2108), 1, - sym_variable_name, - ACTIONS(2111), 1, - sym_test_operator, - ACTIONS(2114), 1, + ACTIONS(1660), 1, + sym__bare_dollar, + ACTIONS(1662), 1, sym__brace_start, - STATE(1786), 1, + ACTIONS(1840), 1, + anon_sym_LT_LT_LT, + ACTIONS(1842), 1, + sym__special_character, + ACTIONS(1844), 1, + sym_test_operator, + STATE(583), 1, + aux_sym_command_repeat2, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(6736), 1, - sym_subscript, - ACTIONS(1637), 2, + STATE(1705), 1, + sym_concatenation, + STATE(1706), 1, + sym_herestring_redirect, + ACTIONS(1624), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2069), 2, + ACTIONS(1628), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2102), 2, + ACTIONS(1656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2066), 3, - sym_raw_string, + ACTIONS(1836), 2, sym_ansi_c_string, sym_word, - STATE(573), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1431), 9, + ACTIONS(1838), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(1314), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1635), 20, + ACTIONS(1622), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80611,7 +81464,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -80622,69 +81474,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4778] = 24, + anon_sym_BQUOTE, + [4574] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2038), 1, - anon_sym_DOLLAR, - ACTIONS(2040), 1, - sym__special_character, - ACTIONS(2042), 1, - anon_sym_DQUOTE, - ACTIONS(2044), 1, - aux_sym_number_token1, - ACTIONS(2046), 1, - aux_sym_number_token2, - ACTIONS(2048), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2050), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2052), 1, - anon_sym_BQUOTE, - ACTIONS(2054), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2060), 1, + STATE(1435), 1, + aux_sym__literal_repeat1, + STATE(574), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2156), 5, + sym_file_descriptor, sym_variable_name, - ACTIONS(2062), 1, sym_test_operator, - ACTIONS(2064), 1, sym__brace_start, - ACTIONS(2117), 1, - aux_sym__simple_variable_name_token1, - STATE(1786), 1, - aux_sym__literal_repeat1, - STATE(6736), 1, - sym_subscript, - ACTIONS(1724), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2034), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2056), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2032), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(573), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1431), 9, + STATE(1097), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1722), 20, + ACTIONS(2154), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80694,8 +81511,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -80705,132 +81524,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [4885] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2123), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2125), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, sym__special_character, - ACTIONS(2129), 1, anon_sym_DQUOTE, - ACTIONS(2131), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2133), 1, aux_sym_number_token2, - ACTIONS(2135), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2137), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2139), 1, anon_sym_BQUOTE, - ACTIONS(2141), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2145), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2147), 1, - sym_variable_name, - ACTIONS(2149), 1, - sym_test_operator, - ACTIONS(2151), 1, - sym__brace_start, - STATE(1893), 1, - aux_sym__literal_repeat1, - STATE(6733), 1, - sym_subscript, - ACTIONS(2121), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2143), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1690), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(2119), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(577), 3, - sym_variable_assignment, + [4646] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1435), 1, + aux_sym__literal_repeat1, + STATE(574), 2, sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1346), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2160), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1097), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1688), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [4992] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1916), 1, - anon_sym_DQUOTE, - ACTIONS(1920), 1, - sym_variable_name, - STATE(1090), 1, - sym_string, - ACTIONS(1918), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(1914), 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(1239), 39, + ACTIONS(2158), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80839,12 +81590,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -80855,70 +81607,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5067] = 24, + [4718] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2123), 1, + ACTIONS(2172), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2125), 1, + ACTIONS(2175), 1, anon_sym_DOLLAR, - ACTIONS(2127), 1, + ACTIONS(2178), 1, sym__special_character, - ACTIONS(2129), 1, + ACTIONS(2181), 1, anon_sym_DQUOTE, - ACTIONS(2131), 1, + ACTIONS(2184), 1, + anon_sym_SQUOTE, + ACTIONS(2187), 1, aux_sym_number_token1, - ACTIONS(2133), 1, + ACTIONS(2190), 1, aux_sym_number_token2, - ACTIONS(2135), 1, + ACTIONS(2193), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2137), 1, + ACTIONS(2196), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2139), 1, + ACTIONS(2199), 1, anon_sym_BQUOTE, - ACTIONS(2141), 1, + ACTIONS(2202), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2147), 1, - sym_variable_name, - ACTIONS(2149), 1, + ACTIONS(2208), 1, sym_test_operator, - ACTIONS(2151), 1, + ACTIONS(2211), 1, sym__brace_start, - ACTIONS(2153), 1, - aux_sym__simple_variable_name_token1, - STATE(1893), 1, + STATE(1435), 1, aux_sym__literal_repeat1, - STATE(6733), 1, - sym_subscript, - ACTIONS(2121), 2, + ACTIONS(2162), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2143), 2, + ACTIONS(2205), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1724), 3, + STATE(574), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2170), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2119), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(586), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1346), 9, + STATE(1097), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1722), 19, + ACTIONS(2168), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -80928,7 +81675,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -80938,49 +81688,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5174] = 8, + anon_sym_LT_LT_LT, + [4822] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(1634), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1636), 1, + anon_sym_DOLLAR, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(2159), 1, - sym_variable_name, - STATE(1202), 1, - sym_string, - ACTIONS(2157), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 5, - sym_file_descriptor, - sym_test_operator, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, + aux_sym_number_token1, + ACTIONS(1646), 1, + aux_sym_number_token2, + ACTIONS(1648), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1650), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1654), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1660), 1, sym__bare_dollar, + ACTIONS(1662), 1, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2155), 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(1227), 38, + ACTIONS(1840), 1, + anon_sym_LT_LT_LT, + ACTIONS(1842), 1, + sym__special_character, + ACTIONS(1844), 1, + sym_test_operator, + STATE(583), 1, + aux_sym_command_repeat2, + STATE(1461), 1, + aux_sym__literal_repeat1, + STATE(1705), 1, + sym_concatenation, + STATE(1706), 1, + sym_herestring_redirect, + ACTIONS(1620), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1628), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1656), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1836), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(1838), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(1314), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1618), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -80989,41 +81774,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [5249] = 8, + [4934] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(2216), 1, anon_sym_DQUOTE, - ACTIONS(2159), 1, + ACTIONS(2220), 1, sym_variable_name, - STATE(1202), 1, + STATE(1093), 1, sym_string, - ACTIONS(2157), 2, + ACTIONS(2218), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 5, + ACTIONS(1269), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(2155), 9, + ACTIONS(2214), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -81033,7 +81802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 38, + ACTIONS(1267), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -81045,6 +81814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -81061,7 +81832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -81072,49 +81843,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5324] = 8, + [5010] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(2228), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2231), 1, + anon_sym_DOLLAR, + ACTIONS(2234), 1, + sym__special_character, + ACTIONS(2237), 1, anon_sym_DQUOTE, - ACTIONS(1920), 1, - sym_variable_name, - STATE(1090), 1, - sym_string, - ACTIONS(1918), 2, + ACTIONS(2240), 1, + anon_sym_SQUOTE, + ACTIONS(2243), 1, + aux_sym_number_token1, + ACTIONS(2246), 1, + aux_sym_number_token2, + ACTIONS(2249), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2252), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2255), 1, + anon_sym_BQUOTE, + ACTIONS(2258), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2264), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, + ACTIONS(2267), 1, + sym_variable_name, + ACTIONS(2270), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(2273), 1, sym__brace_start, - ACTIONS(1914), 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(1227), 39, + STATE(1911), 1, + aux_sym__literal_repeat1, + STATE(6813), 1, + sym_subscript, + ACTIONS(1712), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2222), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2225), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2261), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(577), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1422), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1710), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81123,40 +81928,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [5399] = 8, + [5120] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 1, + ACTIONS(1492), 1, anon_sym_DQUOTE, - ACTIONS(2165), 1, + ACTIONS(2280), 1, sym_variable_name, - STATE(1215), 1, + STATE(1107), 1, sym_string, - ACTIONS(2163), 2, + ACTIONS(2278), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1269), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2161), 9, + ACTIONS(2276), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -81166,7 +81955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 39, + ACTIONS(1267), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -81178,8 +81967,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -81195,7 +81985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -81206,24 +81996,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5474] = 8, + [5196] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 1, + ACTIONS(1492), 1, anon_sym_DQUOTE, - ACTIONS(2165), 1, + ACTIONS(2280), 1, sym_variable_name, - STATE(1215), 1, + STATE(1107), 1, sym_string, - ACTIONS(2163), 2, + ACTIONS(2278), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2161), 9, + ACTIONS(2276), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -81233,7 +82023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 39, + ACTIONS(1255), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -81245,8 +82035,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -81262,7 +82053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -81273,193 +82064,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [5549] = 6, + [5272] = 25, ACTIONS(3), 1, sym_comment, - STATE(1381), 1, - aux_sym__literal_repeat1, - STATE(585), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1082), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2288), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2291), 1, anon_sym_DOLLAR, + ACTIONS(2294), 1, sym__special_character, + ACTIONS(2297), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2300), 1, + anon_sym_SQUOTE, + ACTIONS(2303), 1, aux_sym_number_token1, + ACTIONS(2306), 1, aux_sym_number_token2, + ACTIONS(2309), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2312), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2315), 1, anon_sym_BQUOTE, + ACTIONS(2318), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [5620] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1381), 1, - aux_sym__literal_repeat1, - STATE(585), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2173), 5, - sym_file_descriptor, + ACTIONS(2324), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2327), 1, sym_variable_name, + ACTIONS(2330), 1, sym_test_operator, + ACTIONS(2333), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1082), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2171), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + STATE(1979), 1, + aux_sym__literal_repeat1, + STATE(6811), 1, + sym_subscript, + ACTIONS(2282), 2, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [5691] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2185), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2188), 1, - anon_sym_DOLLAR, - ACTIONS(2191), 1, - sym__special_character, - ACTIONS(2194), 1, - anon_sym_DQUOTE, - ACTIONS(2197), 1, - aux_sym_number_token1, - ACTIONS(2200), 1, - aux_sym_number_token2, - ACTIONS(2203), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2206), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2209), 1, - anon_sym_BQUOTE, - ACTIONS(2212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2218), 1, - sym_test_operator, - ACTIONS(2221), 1, - sym__brace_start, - STATE(1381), 1, - aux_sym__literal_repeat1, - ACTIONS(2178), 2, + ACTIONS(2285), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2215), 2, + ACTIONS(2321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(585), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2175), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(2183), 3, + ACTIONS(1712), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1082), 9, + STATE(580), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1451), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 23, + ACTIONS(1710), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81469,10 +82139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -81482,71 +82149,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [5792] = 24, + [5382] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2230), 1, + ACTIONS(2122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2233), 1, + ACTIONS(2124), 1, anon_sym_DOLLAR, - ACTIONS(2236), 1, + ACTIONS(2126), 1, sym__special_character, - ACTIONS(2239), 1, + ACTIONS(2128), 1, anon_sym_DQUOTE, - ACTIONS(2242), 1, + ACTIONS(2130), 1, + anon_sym_SQUOTE, + ACTIONS(2132), 1, aux_sym_number_token1, - ACTIONS(2245), 1, + ACTIONS(2134), 1, aux_sym_number_token2, - ACTIONS(2248), 1, + ACTIONS(2136), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2251), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2254), 1, + ACTIONS(2140), 1, anon_sym_BQUOTE, - ACTIONS(2257), 1, + ACTIONS(2142), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2263), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2266), 1, + ACTIONS(2148), 1, sym_variable_name, - ACTIONS(2269), 1, + ACTIONS(2150), 1, sym_test_operator, - ACTIONS(2272), 1, + ACTIONS(2152), 1, sym__brace_start, - STATE(1893), 1, + ACTIONS(2336), 1, + aux_sym__simple_variable_name_token1, + STATE(1911), 1, aux_sym__literal_repeat1, - STATE(6733), 1, + STATE(6813), 1, sym_subscript, - ACTIONS(2227), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2260), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1637), 3, + ACTIONS(1670), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2224), 3, - sym_raw_string, + ACTIONS(2118), 2, sym_ansi_c_string, sym_word, - STATE(586), 3, + ACTIONS(2120), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2144), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(577), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1346), 9, + STATE(1422), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1635), 19, + ACTIONS(1668), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81556,6 +82223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -81566,72 +82234,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [5899] = 26, + [5492] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1492), 1, + ACTIONS(1634), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(1498), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(1648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1508), 1, + ACTIONS(1652), 1, anon_sym_BQUOTE, - ACTIONS(1510), 1, + ACTIONS(1654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1516), 1, + ACTIONS(1660), 1, sym__bare_dollar, - ACTIONS(1518), 1, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(1732), 1, + ACTIONS(1840), 1, anon_sym_LT_LT_LT, - ACTIONS(1734), 1, + ACTIONS(1842), 1, sym__special_character, - ACTIONS(1736), 1, + ACTIONS(1844), 1, sym_test_operator, - STATE(588), 1, + STATE(583), 1, aux_sym_command_repeat2, - STATE(1457), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(1705), 1, sym_concatenation, - STATE(1633), 1, + STATE(1706), 1, sym_herestring_redirect, - ACTIONS(1486), 2, + ACTIONS(1624), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1628), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1512), 2, + ACTIONS(1656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1619), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1730), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1728), 3, - sym_raw_string, + ACTIONS(1836), 2, sym_ansi_c_string, sym_word, - STATE(1263), 9, + ACTIONS(1838), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(1314), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1617), 19, + ACTIONS(1622), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81651,73 +82321,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [6010] = 27, + [5606] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1567), 1, + ACTIONS(1527), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1827), 1, + ACTIONS(1896), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1830), 1, + ACTIONS(1899), 1, anon_sym_DOLLAR, - ACTIONS(1836), 1, + ACTIONS(1905), 1, anon_sym_DQUOTE, - ACTIONS(1839), 1, + ACTIONS(1908), 1, + anon_sym_SQUOTE, + ACTIONS(1911), 1, aux_sym_number_token1, - ACTIONS(1842), 1, + ACTIONS(1914), 1, aux_sym_number_token2, - ACTIONS(1845), 1, + ACTIONS(1917), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1848), 1, + ACTIONS(1920), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1851), 1, + ACTIONS(1923), 1, anon_sym_BQUOTE, - ACTIONS(1854), 1, + ACTIONS(1926), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1866), 1, + ACTIONS(1938), 1, sym__bare_dollar, - ACTIONS(1869), 1, + ACTIONS(1941), 1, sym__brace_start, - ACTIONS(2281), 1, + ACTIONS(2344), 1, anon_sym_LT_LT_LT, - ACTIONS(2284), 1, + ACTIONS(2347), 1, sym__special_character, - ACTIONS(2287), 1, + ACTIONS(2350), 1, sym_file_descriptor, - ACTIONS(2290), 1, + ACTIONS(2353), 1, sym_test_operator, - STATE(588), 1, + STATE(583), 1, aux_sym_command_repeat2, - STATE(1457), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(1705), 1, sym_concatenation, - STATE(1633), 1, + STATE(1706), 1, sym_herestring_redirect, - ACTIONS(1818), 2, + ACTIONS(1887), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1857), 2, + ACTIONS(1929), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2278), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2275), 3, - sym_raw_string, + ACTIONS(2338), 2, sym_ansi_c_string, sym_word, - STATE(1263), 9, + ACTIONS(2341), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(1314), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1562), 19, + ACTIONS(1522), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81737,72 +82409,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [6123] = 26, + [5722] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1492), 1, + ACTIONS(1634), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(1498), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(1648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1508), 1, + ACTIONS(1652), 1, anon_sym_BQUOTE, - ACTIONS(1510), 1, + ACTIONS(1654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1516), 1, + ACTIONS(1660), 1, sym__bare_dollar, - ACTIONS(1518), 1, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(1732), 1, + ACTIONS(1840), 1, anon_sym_LT_LT_LT, - ACTIONS(1734), 1, + ACTIONS(1842), 1, sym__special_character, - ACTIONS(1736), 1, + ACTIONS(1844), 1, sym_test_operator, - STATE(588), 1, + STATE(583), 1, aux_sym_command_repeat2, - STATE(1457), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(1705), 1, sym_concatenation, - STATE(1633), 1, + STATE(1706), 1, sym_herestring_redirect, - ACTIONS(1482), 2, + ACTIONS(1620), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1486), 2, + ACTIONS(1628), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1512), 2, + ACTIONS(1656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1730), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(1728), 3, - sym_raw_string, + ACTIONS(1836), 2, sym_ansi_c_string, sym_word, - STATE(1263), 9, + ACTIONS(1838), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(1314), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1480), 19, + ACTIONS(1618), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -81822,23 +82496,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [6234] = 8, + [5836] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 1, + ACTIONS(2216), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(2220), 1, sym_variable_name, - STATE(1266), 1, + STATE(1093), 1, sym_string, - ACTIONS(2297), 2, + ACTIONS(2218), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2293), 9, + ACTIONS(2214), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -81848,22 +82523,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 39, + ACTIONS(1255), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -81877,7 +82553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -81888,24 +82564,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6308] = 8, + [5912] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(2165), 1, + ACTIONS(2360), 1, sym_variable_name, - STATE(1215), 1, + STATE(1236), 1, sym_string, - ACTIONS(2163), 2, + ACTIONS(2358), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1263), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ACTIONS(2161), 9, + ts_builtin_sym_end, + ACTIONS(2356), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -81915,7 +82592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 38, + ACTIONS(1255), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -81943,7 +82620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -81954,30 +82631,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6382] = 6, + [5987] = 6, ACTIONS(3), 1, sym_comment, - STATE(1339), 1, + STATE(1709), 1, aux_sym__literal_repeat1, - STATE(1658), 1, + STATE(594), 2, sym_concatenation, - ACTIONS(2303), 5, + aux_sym_for_statement_repeat1, + ACTIONS(2160), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1062), 9, + STATE(1300), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 40, + ACTIONS(2158), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -81988,7 +82667,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -82007,7 +82685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -82018,31 +82696,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6452] = 6, + [6058] = 23, ACTIONS(3), 1, sym_comment, - STATE(1343), 1, - aux_sym__literal_repeat1, - STATE(1696), 1, - sym_concatenation, - ACTIONS(2307), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2370), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2372), 1, + anon_sym_DOLLAR, + ACTIONS(2374), 1, + sym__special_character, + ACTIONS(2376), 1, + anon_sym_DQUOTE, + ACTIONS(2378), 1, + anon_sym_SQUOTE, + ACTIONS(2380), 1, + aux_sym_number_token1, + ACTIONS(2382), 1, + aux_sym_number_token2, + ACTIONS(2384), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2386), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2388), 1, + anon_sym_BQUOTE, + ACTIONS(2390), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2394), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2396), 1, sym_test_operator, + ACTIONS(2398), 1, sym__brace_start, + STATE(1657), 1, + aux_sym__literal_repeat1, + ACTIONS(2362), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2364), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2368), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(1064), 9, + ACTIONS(2392), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(596), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + STATE(1268), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 40, - anon_sym_LPAREN_LPAREN, + ACTIONS(2366), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82065,40 +82778,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6522] = 8, + [6163] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(2315), 1, + ACTIONS(2404), 1, sym_variable_name, - STATE(1411), 1, + STATE(1269), 1, sym_string, - ACTIONS(2313), 2, + ACTIONS(2402), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1269), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2309), 9, + ACTIONS(2400), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -82108,22 +82805,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 39, + ACTIONS(1267), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82137,7 +82834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -82148,23 +82845,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6596] = 8, + [6238] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(2315), 1, + ACTIONS(2404), 1, sym_variable_name, - STATE(1411), 1, + STATE(1269), 1, sym_string, - ACTIONS(2313), 2, + ACTIONS(2402), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2309), 9, + ACTIONS(2400), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -82174,7 +82872,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 39, + ACTIONS(1255), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6313] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1392), 1, + aux_sym__literal_repeat1, + STATE(1615), 1, + sym_concatenation, + ACTIONS(2408), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1121), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2406), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -82198,12 +82960,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -82214,62 +82977,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [6670] = 21, + [6384] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 1, - anon_sym_DQUOTE, - ACTIONS(2321), 1, + ACTIONS(2414), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2323), 1, + ACTIONS(2416), 1, anon_sym_DOLLAR, - ACTIONS(2325), 1, + ACTIONS(2418), 1, sym__special_character, - ACTIONS(2327), 1, + ACTIONS(2420), 1, + anon_sym_DQUOTE, + ACTIONS(2422), 1, + anon_sym_SQUOTE, + ACTIONS(2424), 1, aux_sym_number_token1, - ACTIONS(2329), 1, + ACTIONS(2426), 1, aux_sym_number_token2, - ACTIONS(2331), 1, + ACTIONS(2428), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2333), 1, + ACTIONS(2430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2335), 1, + ACTIONS(2432), 1, anon_sym_BQUOTE, - ACTIONS(2337), 1, + ACTIONS(2434), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2341), 1, + ACTIONS(2438), 1, sym_test_operator, - ACTIONS(2343), 1, + ACTIONS(2440), 1, sym__brace_start, - STATE(1522), 1, + STATE(1703), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2319), 2, + ACTIONS(2410), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2412), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2339), 2, + ACTIONS(2436), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(602), 2, + STATE(595), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2317), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1178), 9, + STATE(1292), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 23, + ACTIONS(2154), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82293,62 +83058,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [6770] = 21, + [6487] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 1, - anon_sym_DQUOTE, - ACTIONS(2321), 1, + ACTIONS(2414), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2323), 1, + ACTIONS(2416), 1, anon_sym_DOLLAR, - ACTIONS(2325), 1, + ACTIONS(2418), 1, sym__special_character, - ACTIONS(2327), 1, + ACTIONS(2420), 1, + anon_sym_DQUOTE, + ACTIONS(2422), 1, + anon_sym_SQUOTE, + ACTIONS(2424), 1, aux_sym_number_token1, - ACTIONS(2329), 1, + ACTIONS(2426), 1, aux_sym_number_token2, - ACTIONS(2331), 1, + ACTIONS(2428), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2333), 1, + ACTIONS(2430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2335), 1, + ACTIONS(2432), 1, anon_sym_BQUOTE, - ACTIONS(2337), 1, + ACTIONS(2434), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2341), 1, + ACTIONS(2438), 1, sym_test_operator, - ACTIONS(2343), 1, + ACTIONS(2440), 1, sym__brace_start, - STATE(1522), 1, + STATE(1703), 1, aux_sym__literal_repeat1, - ACTIONS(2173), 2, + ACTIONS(2160), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2319), 2, + ACTIONS(2410), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2412), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2339), 2, + ACTIONS(2436), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(602), 2, + STATE(595), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2317), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1178), 9, + STATE(1292), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 23, + ACTIONS(2158), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82372,32 +83139,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [6870] = 6, + [6590] = 22, ACTIONS(3), 1, sym_comment, - STATE(1539), 1, + ACTIONS(2448), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2451), 1, + anon_sym_DOLLAR, + ACTIONS(2454), 1, + sym__special_character, + ACTIONS(2457), 1, + anon_sym_DQUOTE, + ACTIONS(2460), 1, + anon_sym_SQUOTE, + ACTIONS(2463), 1, + aux_sym_number_token1, + ACTIONS(2466), 1, + aux_sym_number_token2, + ACTIONS(2469), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2472), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2475), 1, + anon_sym_BQUOTE, + ACTIONS(2478), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2484), 1, + sym_test_operator, + ACTIONS(2487), 1, + sym__brace_start, + STATE(1709), 1, aux_sym__literal_repeat1, - STATE(614), 2, + ACTIONS(2442), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2445), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2481), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(594), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2169), 5, + ACTIONS(2170), 3, sym_file_descriptor, sym_variable_name, - sym_test_operator, - sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(1191), 9, + STATE(1300), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(2168), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82420,64 +83220,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [6693] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2496), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2499), 1, anon_sym_DOLLAR, + ACTIONS(2502), 1, sym__special_character, + ACTIONS(2505), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2508), 1, + anon_sym_SQUOTE, + ACTIONS(2511), 1, aux_sym_number_token1, + ACTIONS(2514), 1, aux_sym_number_token2, + ACTIONS(2517), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2520), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2523), 1, anon_sym_BQUOTE, + ACTIONS(2526), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [6940] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1498), 1, - anon_sym_DQUOTE, - ACTIONS(2165), 1, - sym_variable_name, - STATE(1215), 1, - sym_string, - ACTIONS(2163), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, - sym_file_descriptor, + ACTIONS(2532), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(2535), 1, sym__brace_start, - ACTIONS(2161), 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(1239), 38, + STATE(1703), 1, + aux_sym__literal_repeat1, + ACTIONS(2170), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2490), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2493), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2529), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(595), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1292), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2168), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -82486,80 +83300,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [7014] = 22, + [6796] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2355), 1, + ACTIONS(2370), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2358), 1, + ACTIONS(2372), 1, anon_sym_DOLLAR, - ACTIONS(2361), 1, + ACTIONS(2374), 1, sym__special_character, - ACTIONS(2364), 1, + ACTIONS(2376), 1, anon_sym_DQUOTE, - ACTIONS(2367), 1, + ACTIONS(2378), 1, + anon_sym_SQUOTE, + ACTIONS(2380), 1, aux_sym_number_token1, - ACTIONS(2370), 1, + ACTIONS(2382), 1, aux_sym_number_token2, - ACTIONS(2373), 1, + ACTIONS(2384), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2376), 1, + ACTIONS(2386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2379), 1, + ACTIONS(2388), 1, anon_sym_BQUOTE, - ACTIONS(2382), 1, + ACTIONS(2390), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2388), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(2391), 1, + ACTIONS(2396), 1, sym_test_operator, - ACTIONS(2394), 1, + ACTIONS(2398), 1, sym__brace_start, - STATE(1491), 1, + ACTIONS(2542), 1, + aux_sym__simple_variable_name_token1, + STATE(1657), 1, aux_sym__literal_repeat1, - ACTIONS(2348), 2, + ACTIONS(2362), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2364), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2353), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2385), 2, + ACTIONS(2392), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(600), 2, + ACTIONS(2540), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(604), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2345), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1276), 9, + STATE(1268), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2351), 22, + ACTIONS(2538), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82582,69 +83383,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7116] = 24, + [6901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 1, + STATE(1394), 1, + aux_sym__literal_repeat1, + STATE(1620), 1, + sym_concatenation, + ACTIONS(2546), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1128), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2544), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2038), 1, anon_sym_DOLLAR, - ACTIONS(2042), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(2044), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(2048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2052), 1, anon_sym_BQUOTE, - ACTIONS(2054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2064), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [6972] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2122), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2124), 1, + anon_sym_DOLLAR, + ACTIONS(2128), 1, + anon_sym_DQUOTE, + ACTIONS(2130), 1, + anon_sym_SQUOTE, + ACTIONS(2132), 1, + aux_sym_number_token1, + ACTIONS(2134), 1, + aux_sym_number_token2, + ACTIONS(2136), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2138), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2142), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2152), 1, sym__brace_start, - ACTIONS(2399), 1, + ACTIONS(2550), 1, sym__special_character, - ACTIONS(2401), 1, + ACTIONS(2552), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2403), 1, + ACTIONS(2554), 1, sym_variable_name, - ACTIONS(2405), 1, + ACTIONS(2556), 1, sym_test_operator, - STATE(1786), 1, + STATE(1911), 1, aux_sym__literal_repeat1, - STATE(6752), 1, + STATE(6839), 1, sym_subscript, - ACTIONS(1690), 2, + ACTIONS(1670), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2034), 2, + ACTIONS(2120), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2056), 2, + ACTIONS(2144), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2397), 3, - sym_raw_string, + ACTIONS(2548), 2, sym_ansi_c_string, sym_word, STATE(603), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1649), 9, + STATE(1747), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1688), 19, + ACTIONS(1668), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82664,62 +83530,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7222] = 21, + anon_sym_BQUOTE, + [7079] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2413), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2416), 1, - anon_sym_DOLLAR, - ACTIONS(2419), 1, - sym__special_character, - ACTIONS(2422), 1, - anon_sym_DQUOTE, - ACTIONS(2425), 1, - aux_sym_number_token1, - ACTIONS(2428), 1, - aux_sym_number_token2, - ACTIONS(2431), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2434), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2437), 1, - anon_sym_BQUOTE, - ACTIONS(2440), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2446), 1, - sym_test_operator, - ACTIONS(2449), 1, - sym__brace_start, - STATE(1522), 1, + STATE(1709), 1, aux_sym__literal_repeat1, - ACTIONS(2183), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2410), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2443), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(602), 2, + STATE(594), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2407), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1178), 9, + ACTIONS(2156), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1300), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 23, + ACTIONS(2154), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82729,7 +83567,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -82743,69 +83580,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [7322] = 24, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7150] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 1, + ACTIONS(2122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2038), 1, + ACTIONS(2124), 1, anon_sym_DOLLAR, - ACTIONS(2042), 1, + ACTIONS(2128), 1, anon_sym_DQUOTE, - ACTIONS(2044), 1, + ACTIONS(2130), 1, + anon_sym_SQUOTE, + ACTIONS(2132), 1, aux_sym_number_token1, - ACTIONS(2046), 1, + ACTIONS(2134), 1, aux_sym_number_token2, - ACTIONS(2048), 1, + ACTIONS(2136), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2050), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2052), 1, + ACTIONS(2140), 1, anon_sym_BQUOTE, - ACTIONS(2054), 1, + ACTIONS(2142), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2064), 1, + ACTIONS(2152), 1, sym__brace_start, - ACTIONS(2399), 1, + ACTIONS(2550), 1, sym__special_character, - ACTIONS(2403), 1, + ACTIONS(2554), 1, sym_variable_name, - ACTIONS(2405), 1, + ACTIONS(2556), 1, sym_test_operator, - ACTIONS(2452), 1, + ACTIONS(2558), 1, aux_sym__simple_variable_name_token1, - STATE(1786), 1, + STATE(1911), 1, aux_sym__literal_repeat1, - STATE(6752), 1, + STATE(6839), 1, sym_subscript, - ACTIONS(1724), 2, + ACTIONS(1764), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2034), 2, + ACTIONS(2120), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2056), 2, + ACTIONS(2144), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2397), 3, - sym_raw_string, + ACTIONS(2548), 2, sym_ansi_c_string, sym_word, - STATE(606), 3, + STATE(601), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1649), 9, + STATE(1747), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1722), 19, + ACTIONS(1762), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82825,64 +83680,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7428] = 22, + [7259] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, + ACTIONS(2122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2464), 1, + ACTIONS(2124), 1, anon_sym_DOLLAR, - ACTIONS(2466), 1, - sym__special_character, - ACTIONS(2468), 1, + ACTIONS(2128), 1, anon_sym_DQUOTE, - ACTIONS(2470), 1, + ACTIONS(2130), 1, + anon_sym_SQUOTE, + ACTIONS(2132), 1, aux_sym_number_token1, - ACTIONS(2472), 1, + ACTIONS(2134), 1, aux_sym_number_token2, - ACTIONS(2474), 1, + ACTIONS(2136), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2476), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2478), 1, + ACTIONS(2140), 1, anon_sym_BQUOTE, - ACTIONS(2480), 1, + ACTIONS(2142), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2484), 1, + ACTIONS(2152), 1, + sym__brace_start, + ACTIONS(2550), 1, + sym__special_character, + ACTIONS(2552), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2486), 1, + ACTIONS(2554), 1, + sym_variable_name, + ACTIONS(2556), 1, sym_test_operator, - ACTIONS(2488), 1, - sym__brace_start, - STATE(1491), 1, + STATE(1911), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2460), 2, + STATE(6839), 1, + sym_subscript, + ACTIONS(1670), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2482), 2, + ACTIONS(2120), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2144), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(600), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2454), 3, - sym_raw_string, + ACTIONS(2548), 2, sym_ansi_c_string, sym_word, - STATE(1276), 9, + STATE(603), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1747), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2458), 22, + ACTIONS(1668), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -82892,10 +83754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -82905,130 +83764,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7530] = 3, - ACTIONS(71), 1, + [7368] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(819), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2122), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2124), 1, + anon_sym_DOLLAR, + ACTIONS(2128), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2130), 1, + anon_sym_SQUOTE, + ACTIONS(2132), 1, + aux_sym_number_token1, + ACTIONS(2134), 1, + aux_sym_number_token2, + ACTIONS(2136), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(2138), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2142), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2152), 1, + sym__brace_start, + ACTIONS(2550), 1, + sym__special_character, + ACTIONS(2554), 1, + sym_variable_name, + ACTIONS(2556), 1, + sym_test_operator, + ACTIONS(2560), 1, + aux_sym__simple_variable_name_token1, + STATE(1911), 1, + aux_sym__literal_repeat1, + STATE(6839), 1, + sym_subscript, + ACTIONS(1764), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2120), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2144), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(579), 33, - anon_sym_for, - anon_sym_select, + ACTIONS(2548), 2, + sym_ansi_c_string, + sym_word, + STATE(598), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(1747), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1762), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_do, - anon_sym_if, - anon_sym_then, - anon_sym_fi, - anon_sym_elif, - anon_sym_else, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [7594] = 24, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [7475] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(2072), 1, + ACTIONS(2228), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2075), 1, + ACTIONS(2231), 1, anon_sym_DOLLAR, - ACTIONS(2081), 1, + ACTIONS(2237), 1, anon_sym_DQUOTE, - ACTIONS(2084), 1, + ACTIONS(2240), 1, + anon_sym_SQUOTE, + ACTIONS(2243), 1, aux_sym_number_token1, - ACTIONS(2087), 1, + ACTIONS(2246), 1, aux_sym_number_token2, - ACTIONS(2090), 1, + ACTIONS(2249), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2093), 1, + ACTIONS(2252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2096), 1, + ACTIONS(2255), 1, anon_sym_BQUOTE, - ACTIONS(2099), 1, + ACTIONS(2258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2114), 1, + ACTIONS(2273), 1, sym__brace_start, - ACTIONS(2493), 1, + ACTIONS(2565), 1, sym__special_character, - ACTIONS(2496), 1, + ACTIONS(2568), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2499), 1, + ACTIONS(2571), 1, sym_variable_name, - ACTIONS(2502), 1, + ACTIONS(2574), 1, sym_test_operator, - STATE(1786), 1, + STATE(1911), 1, aux_sym__literal_repeat1, - STATE(6752), 1, + STATE(6839), 1, sym_subscript, - ACTIONS(1637), 2, + ACTIONS(1712), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2069), 2, + ACTIONS(2225), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2102), 2, + ACTIONS(2261), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2490), 3, - sym_raw_string, + ACTIONS(2562), 2, sym_ansi_c_string, sym_word, - STATE(606), 3, + STATE(603), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(1649), 9, + STATE(1747), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1635), 19, + ACTIONS(1710), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83048,64 +83931,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7700] = 22, + [7584] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2462), 1, + ACTIONS(2587), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2464), 1, + ACTIONS(2590), 1, anon_sym_DOLLAR, - ACTIONS(2466), 1, + ACTIONS(2593), 1, sym__special_character, - ACTIONS(2468), 1, + ACTIONS(2596), 1, anon_sym_DQUOTE, - ACTIONS(2470), 1, + ACTIONS(2599), 1, + anon_sym_SQUOTE, + ACTIONS(2602), 1, aux_sym_number_token1, - ACTIONS(2472), 1, + ACTIONS(2605), 1, aux_sym_number_token2, - ACTIONS(2474), 1, + ACTIONS(2608), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2476), 1, + ACTIONS(2611), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2478), 1, + ACTIONS(2614), 1, anon_sym_BQUOTE, - ACTIONS(2480), 1, + ACTIONS(2617), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2486), 1, + ACTIONS(2623), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(2626), 1, sym_test_operator, - ACTIONS(2488), 1, + ACTIONS(2629), 1, sym__brace_start, - ACTIONS(2509), 1, - aux_sym__simple_variable_name_token1, - STATE(1491), 1, + STATE(1657), 1, aux_sym__literal_repeat1, - ACTIONS(2456), 2, + ACTIONS(2577), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2580), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2482), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2507), 2, + ACTIONS(2585), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, + ACTIONS(2620), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, STATE(604), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2454), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1276), 9, + STATE(1268), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2505), 22, + ACTIONS(2583), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83128,77 +84013,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [7802] = 23, + [7689] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 1, + ACTIONS(1594), 1, + anon_sym_DQUOTE, + ACTIONS(2360), 1, + sym_variable_name, + STATE(1236), 1, + sym_string, + ACTIONS(2358), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(2356), 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(1267), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [7764] = 29, + ACTIONS(3), 1, + sym_comment, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(1634), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2038), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(2042), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(2044), 1, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(2046), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(2048), 1, + ACTIONS(1648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2050), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2054), 1, + ACTIONS(1652), 1, + anon_sym_BQUOTE, + ACTIONS(1654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2064), 1, + ACTIONS(1660), 1, + sym__bare_dollar, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(2399), 1, + ACTIONS(2636), 1, + anon_sym_LT_LT_LT, + ACTIONS(2638), 1, sym__special_character, - ACTIONS(2403), 1, - sym_variable_name, - ACTIONS(2405), 1, + ACTIONS(2640), 1, sym_test_operator, - ACTIONS(2452), 1, - aux_sym__simple_variable_name_token1, - STATE(1786), 1, + STATE(693), 1, + aux_sym_command_repeat2, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(6752), 1, - sym_subscript, - ACTIONS(1724), 2, + STATE(1705), 1, + sym_concatenation, + STATE(1706), 1, + sym_herestring_redirect, + STATE(5033), 1, + sym_subshell, + ACTIONS(1440), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2034), 2, + ACTIONS(1628), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2056), 2, + ACTIONS(1656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2397), 3, - sym_raw_string, + ACTIONS(2632), 2, sym_ansi_c_string, sym_word, - STATE(606), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1649), 9, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(2078), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1722), 20, - anon_sym_SEMI, + ACTIONS(1436), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83208,24 +84168,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [7906] = 8, + [7881] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 1, + ACTIONS(2216), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(2220), 1, sym_variable_name, - STATE(1266), 1, + STATE(1093), 1, sym_string, - ACTIONS(2297), 2, + ACTIONS(2218), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1269), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2293), 9, + ACTIONS(2214), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -83235,22 +84195,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 39, + ACTIONS(1267), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83264,7 +84224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -83275,45 +84235,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [7980] = 6, + [7956] = 8, ACTIONS(3), 1, sym_comment, - STATE(1539), 1, - aux_sym__literal_repeat1, - STATE(614), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2173), 5, - sym_file_descriptor, + ACTIONS(2216), 1, + anon_sym_DQUOTE, + ACTIONS(2220), 1, sym_variable_name, + STATE(1093), 1, + sym_string, + ACTIONS(2218), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 4, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1191), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2171), 39, + ACTIONS(2214), 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(1255), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -83322,13 +84286,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -83339,76 +84302,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [8050] = 28, + [8031] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(19), 1, anon_sym_LPAREN, - ACTIONS(1492), 1, + ACTIONS(1634), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(1498), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(1648), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1508), 1, + ACTIONS(1652), 1, anon_sym_BQUOTE, - ACTIONS(1510), 1, + ACTIONS(1654), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1516), 1, + ACTIONS(1660), 1, sym__bare_dollar, - ACTIONS(1518), 1, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(2515), 1, + ACTIONS(2636), 1, anon_sym_LT_LT_LT, - ACTIONS(2517), 1, + ACTIONS(2638), 1, sym__special_character, - ACTIONS(2519), 1, + ACTIONS(2640), 1, sym_test_operator, - STATE(706), 1, + STATE(670), 1, aux_sym_command_repeat2, - STATE(1457), 1, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(1705), 1, sym_concatenation, - STATE(1633), 1, + STATE(1706), 1, sym_herestring_redirect, - STATE(4893), 1, + STATE(5010), 1, sym_subshell, - ACTIONS(1408), 2, + ACTIONS(1476), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1486), 2, + ACTIONS(1628), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1512), 2, + ACTIONS(1656), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2513), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2511), 3, - sym_raw_string, + ACTIONS(2632), 2, sym_ansi_c_string, sym_word, - STATE(1921), 9, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(2078), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1404), 16, + ACTIONS(1474), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -83425,67 +84390,159 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8164] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2036), 1, + [8148] = 38, + ACTIONS(13), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(45), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2038), 1, + ACTIONS(49), 1, anon_sym_DOLLAR, - ACTIONS(2042), 1, + ACTIONS(51), 1, + sym__special_character, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(2044), 1, + ACTIONS(55), 1, + anon_sym_SQUOTE, + ACTIONS(57), 1, + sym_ansi_c_string, + ACTIONS(59), 1, aux_sym_number_token1, - ACTIONS(2046), 1, + ACTIONS(61), 1, aux_sym_number_token2, - ACTIONS(2048), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2050), 1, + ACTIONS(65), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2054), 1, + ACTIONS(67), 1, + anon_sym_BQUOTE, + ACTIONS(69), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2064), 1, - sym__brace_start, - ACTIONS(2399), 1, - sym__special_character, - ACTIONS(2403), 1, + ACTIONS(73), 1, + sym_comment, + ACTIONS(77), 1, sym_variable_name, - ACTIONS(2405), 1, + ACTIONS(79), 1, sym_test_operator, - ACTIONS(2521), 1, - aux_sym__simple_variable_name_token1, - STATE(1786), 1, + ACTIONS(81), 1, + sym__brace_start, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, + sym_file_descriptor, + ACTIONS(2642), 1, + sym_word, + STATE(539), 1, + sym_command_name, + STATE(903), 1, + aux_sym_command_repeat1, + STATE(1290), 1, aux_sym__literal_repeat1, - STATE(6752), 1, + STATE(1383), 1, + sym_concatenation, + STATE(2232), 1, + sym_variable_assignment, + STATE(4998), 1, + sym_command, + STATE(6814), 1, sym_subscript, - ACTIONS(1690), 2, + ACTIONS(71), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(4996), 2, + sym_subshell, + sym_test_command, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(926), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [8282] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2648), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2650), 1, + anon_sym_DOLLAR, + ACTIONS(2652), 1, + sym__special_character, + ACTIONS(2654), 1, + anon_sym_DQUOTE, + ACTIONS(2656), 1, + anon_sym_SQUOTE, + ACTIONS(2658), 1, + aux_sym_number_token1, + ACTIONS(2660), 1, + aux_sym_number_token2, + ACTIONS(2662), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2664), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2666), 1, + anon_sym_BQUOTE, + ACTIONS(2668), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2672), 1, + sym_test_operator, + ACTIONS(2674), 1, + sym__brace_start, + STATE(4450), 1, + aux_sym__literal_repeat1, + STATE(4863), 1, + sym_concatenation, + ACTIONS(2408), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2034), 2, + ACTIONS(2644), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2646), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2056), 2, + ACTIONS(2670), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2397), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(608), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(1649), 9, + STATE(4304), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1688), 20, + ACTIONS(2406), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83495,7 +84552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83505,84 +84565,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [8268] = 28, + anon_sym_LT_LT_LT, + [8384] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(1492), 1, + ACTIONS(2648), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(2650), 1, anon_sym_DOLLAR, - ACTIONS(1498), 1, + ACTIONS(2652), 1, + sym__special_character, + ACTIONS(2654), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(2656), 1, + anon_sym_SQUOTE, + ACTIONS(2658), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(2660), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(2662), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(2664), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1508), 1, + ACTIONS(2666), 1, anon_sym_BQUOTE, - ACTIONS(1510), 1, + ACTIONS(2668), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1516), 1, - sym__bare_dollar, - ACTIONS(1518), 1, + ACTIONS(2674), 1, sym__brace_start, - ACTIONS(2515), 1, - anon_sym_LT_LT_LT, - ACTIONS(2517), 1, - sym__special_character, - ACTIONS(2519), 1, + ACTIONS(2678), 1, sym_test_operator, - STATE(708), 1, - aux_sym_command_repeat2, - STATE(1457), 1, + STATE(4459), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(4889), 1, sym_concatenation, - STATE(1633), 1, - sym_herestring_redirect, - STATE(4930), 1, - sym_subshell, - ACTIONS(1442), 2, + ACTIONS(2546), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1486), 2, + ACTIONS(2646), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1512), 2, + ACTIONS(2670), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2513), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2511), 3, - sym_raw_string, + ACTIONS(2676), 2, sym_ansi_c_string, sym_word, - STATE(1921), 9, + STATE(4275), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1440), 16, + ACTIONS(2544), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83592,63 +84645,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8382] = 21, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [8486] = 30, + ACTIONS(73), 1, sym_comment, - ACTIONS(2529), 1, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(2680), 1, + sym_word, + ACTIONS(2686), 1, + anon_sym_LT_LT_LT, + ACTIONS(2688), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2532), 1, + ACTIONS(2690), 1, anon_sym_DOLLAR, - ACTIONS(2535), 1, + ACTIONS(2692), 1, sym__special_character, - ACTIONS(2538), 1, + ACTIONS(2694), 1, anon_sym_DQUOTE, - ACTIONS(2541), 1, + ACTIONS(2696), 1, + anon_sym_SQUOTE, + ACTIONS(2698), 1, + sym_ansi_c_string, + ACTIONS(2700), 1, aux_sym_number_token1, - ACTIONS(2544), 1, + ACTIONS(2702), 1, aux_sym_number_token2, - ACTIONS(2547), 1, + ACTIONS(2704), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2550), 1, + ACTIONS(2706), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2553), 1, + ACTIONS(2708), 1, anon_sym_BQUOTE, - ACTIONS(2556), 1, + ACTIONS(2710), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2562), 1, + ACTIONS(2714), 1, sym_test_operator, - ACTIONS(2565), 1, + ACTIONS(2716), 1, + sym__bare_dollar, + ACTIONS(2718), 1, sym__brace_start, - STATE(1539), 1, + STATE(729), 1, + aux_sym_command_repeat2, + STATE(2460), 1, aux_sym__literal_repeat1, - ACTIONS(2526), 2, + STATE(2601), 1, + sym_concatenation, + STATE(2604), 1, + sym_herestring_redirect, + STATE(5750), 1, + sym_subshell, + ACTIONS(2682), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2559), 2, + ACTIONS(2684), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2712), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(614), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2183), 3, + ACTIONS(1474), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1476), 10, sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(2523), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1191), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(2251), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 22, + [8604] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2722), 1, + anon_sym_DQUOTE, + ACTIONS(2726), 1, + sym_variable_name, + STATE(1178), 1, + sym_string, + ACTIONS(2724), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2720), 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(1255), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83658,6 +84771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -83670,63 +84784,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [8482] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2574), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2577), 1, - anon_sym_DOLLAR, - ACTIONS(2580), 1, sym__special_character, - ACTIONS(2583), 1, - anon_sym_DQUOTE, - ACTIONS(2586), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2589), 1, aux_sym_number_token2, - ACTIONS(2592), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2595), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2598), 1, anon_sym_BQUOTE, - ACTIONS(2601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2607), 1, - sym_test_operator, - ACTIONS(2610), 1, - sym__brace_start, - STATE(1902), 1, - aux_sym__literal_repeat1, - ACTIONS(2183), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2571), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2604), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(615), 2, + sym_word, + [8678] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1789), 1, + aux_sym__literal_repeat1, + STATE(626), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2568), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1388), 9, + ACTIONS(2156), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1372), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 22, + ACTIONS(2154), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83736,10 +84837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -83749,64 +84847,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8581] = 22, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [8748] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, + ACTIONS(2732), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2619), 1, + ACTIONS(2734), 1, anon_sym_DOLLAR, - ACTIONS(2621), 1, + ACTIONS(2736), 1, sym__special_character, - ACTIONS(2623), 1, + ACTIONS(2738), 1, anon_sym_DQUOTE, - ACTIONS(2625), 1, + ACTIONS(2740), 1, + anon_sym_SQUOTE, + ACTIONS(2742), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(2744), 1, aux_sym_number_token2, - ACTIONS(2629), 1, + ACTIONS(2746), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2631), 1, + ACTIONS(2748), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2633), 1, + ACTIONS(2750), 1, anon_sym_BQUOTE, - ACTIONS(2635), 1, + ACTIONS(2752), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2639), 1, + ACTIONS(2756), 1, aux_sym__simple_variable_name_token1, - ACTIONS(2641), 1, + ACTIONS(2758), 1, sym_test_operator, - ACTIONS(2643), 1, + ACTIONS(2760), 1, sym__brace_start, - STATE(1784), 1, + STATE(2032), 1, aux_sym__literal_repeat1, - ACTIONS(2460), 2, + ACTIONS(2540), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2615), 2, + ACTIONS(2728), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2730), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2637), 2, + ACTIONS(2754), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(652), 2, + STATE(629), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(2613), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1442), 9, + STATE(1491), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2458), 21, + ACTIONS(2538), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -83828,242 +84945,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8682] = 29, - ACTIONS(71), 1, + [8852] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2651), 1, - anon_sym_LT_LT_LT, - ACTIONS(2653), 1, + ACTIONS(2768), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2655), 1, + ACTIONS(2771), 1, anon_sym_DOLLAR, - ACTIONS(2657), 1, + ACTIONS(2774), 1, sym__special_character, - ACTIONS(2659), 1, + ACTIONS(2777), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(2780), 1, + anon_sym_SQUOTE, + ACTIONS(2783), 1, aux_sym_number_token1, - ACTIONS(2665), 1, + ACTIONS(2786), 1, aux_sym_number_token2, - ACTIONS(2667), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2669), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2671), 1, + ACTIONS(2795), 1, anon_sym_BQUOTE, - ACTIONS(2673), 1, + ACTIONS(2798), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2677), 1, + ACTIONS(2804), 1, sym_test_operator, - ACTIONS(2679), 1, - sym__bare_dollar, - ACTIONS(2681), 1, + ACTIONS(2807), 1, sym__brace_start, - STATE(755), 1, - aux_sym_command_repeat2, - STATE(2425), 1, + STATE(1873), 1, aux_sym__literal_repeat1, - STATE(2523), 1, - sym_concatenation, - STATE(2525), 1, - sym_herestring_redirect, - STATE(5659), 1, - sym_subshell, - ACTIONS(2647), 2, + ACTIONS(2762), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2765), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2649), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2661), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2675), 2, + ACTIONS(2801), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1440), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2159), 9, + STATE(617), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2170), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + STATE(1391), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1442), 10, - sym_file_descriptor, + ACTIONS(2168), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [8797] = 37, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [8954] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(409), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(415), 1, - anon_sym_LPAREN, - ACTIONS(435), 1, - anon_sym_LBRACK, - ACTIONS(437), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(447), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(449), 1, + STATE(1665), 1, + aux_sym__literal_repeat1, + STATE(1901), 1, + sym_concatenation, + ACTIONS(2408), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1275), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2406), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(451), 1, anon_sym_DOLLAR, - ACTIONS(453), 1, sym__special_character, - ACTIONS(455), 1, anon_sym_DQUOTE, - ACTIONS(459), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(461), 1, aux_sym_number_token2, - ACTIONS(463), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(465), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(467), 1, anon_sym_BQUOTE, - ACTIONS(469), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(475), 1, - sym_variable_name, - ACTIONS(477), 1, - sym_test_operator, - ACTIONS(479), 1, - sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2683), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - STATE(528), 1, - sym_command_name, - STATE(977), 1, - aux_sym_command_repeat1, - STATE(978), 1, + [9024] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1873), 1, aux_sym__literal_repeat1, - STATE(1073), 1, + STATE(617), 2, sym_concatenation, - STATE(1614), 1, - sym_variable_assignment, - STATE(4898), 1, - sym_command, - STATE(6784), 1, - sym_subscript, - ACTIONS(457), 2, + aux_sym_for_statement_repeat1, + ACTIONS(2156), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1391), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, - sym_ansi_c_string, - ACTIONS(471), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(4897), 2, - sym_subshell, - sym_test_command, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2154), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(813), 9, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [9094] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1676), 1, + aux_sym__literal_repeat1, + STATE(1908), 1, + sym_concatenation, + ACTIONS(2546), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1276), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [8928] = 21, + ACTIONS(2544), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [9164] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2689), 1, + ACTIONS(2816), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2819), 1, anon_sym_DOLLAR, - ACTIONS(2693), 1, + ACTIONS(2822), 1, sym__special_character, - ACTIONS(2695), 1, + ACTIONS(2825), 1, anon_sym_DQUOTE, - ACTIONS(2697), 1, + ACTIONS(2828), 1, + anon_sym_SQUOTE, + ACTIONS(2831), 1, aux_sym_number_token1, - ACTIONS(2699), 1, + ACTIONS(2834), 1, aux_sym_number_token2, - ACTIONS(2701), 1, + ACTIONS(2837), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2703), 1, + ACTIONS(2840), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2705), 1, + ACTIONS(2843), 1, anon_sym_BQUOTE, - ACTIONS(2707), 1, + ACTIONS(2846), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2711), 1, + ACTIONS(2852), 1, sym_test_operator, - ACTIONS(2713), 1, + ACTIONS(2855), 1, sym__brace_start, - STATE(1902), 1, + STATE(2008), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(2170), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2687), 2, + ACTIONS(2810), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2813), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2709), 2, + ACTIONS(2849), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(615), 2, + STATE(621), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2685), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1388), 9, + STATE(1322), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 22, + ACTIONS(2168), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [9266] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2420), 1, + anon_sym_DQUOTE, + ACTIONS(2862), 1, + sym_variable_name, + STATE(1438), 1, + sym_string, + ACTIONS(2860), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(2858), 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(1267), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84086,62 +85347,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [9027] = 21, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [9340] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2689), 1, + ACTIONS(2868), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2691), 1, + ACTIONS(2870), 1, anon_sym_DOLLAR, - ACTIONS(2693), 1, + ACTIONS(2872), 1, sym__special_character, - ACTIONS(2695), 1, + ACTIONS(2874), 1, anon_sym_DQUOTE, - ACTIONS(2697), 1, + ACTIONS(2876), 1, + anon_sym_SQUOTE, + ACTIONS(2878), 1, aux_sym_number_token1, - ACTIONS(2699), 1, + ACTIONS(2880), 1, aux_sym_number_token2, - ACTIONS(2701), 1, + ACTIONS(2882), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2703), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2705), 1, + ACTIONS(2886), 1, anon_sym_BQUOTE, - ACTIONS(2707), 1, + ACTIONS(2888), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2711), 1, + ACTIONS(2892), 1, sym_test_operator, - ACTIONS(2713), 1, + ACTIONS(2894), 1, sym__brace_start, - STATE(1902), 1, + STATE(2008), 1, aux_sym__literal_repeat1, - ACTIONS(2173), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2687), 2, + ACTIONS(2864), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2866), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2709), 2, + ACTIONS(2890), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(615), 2, + STATE(621), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2685), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1388), 9, + STATE(1322), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 22, + ACTIONS(2154), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84151,7 +85430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -84164,155 +85442,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [9126] = 37, - ACTIONS(13), 1, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + [9442] = 38, ACTIONS(19), 1, anon_sym_LPAREN, ACTIONS(33), 1, anon_sym_LBRACK, ACTIONS(35), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(45), 1, + ACTIONS(73), 1, + sym_comment, + ACTIONS(341), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(365), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(47), 1, + ACTIONS(367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, + ACTIONS(369), 1, anon_sym_DOLLAR, - ACTIONS(51), 1, + ACTIONS(371), 1, sym__special_character, - ACTIONS(53), 1, + ACTIONS(373), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(377), 1, + sym_ansi_c_string, + ACTIONS(379), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(381), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(383), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(387), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(389), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(75), 1, + ACTIONS(395), 1, sym_variable_name, - ACTIONS(77), 1, + ACTIONS(397), 1, sym_test_operator, - ACTIONS(79), 1, + ACTIONS(399), 1, sym__brace_start, - ACTIONS(1394), 1, + ACTIONS(1426), 1, anon_sym_LT_LT_LT, - ACTIONS(1396), 1, + ACTIONS(1428), 1, sym_file_descriptor, - ACTIONS(2715), 1, + ACTIONS(2896), 1, sym_word, - STATE(534), 1, + STATE(546), 1, sym_command_name, - STATE(972), 1, + STATE(894), 1, aux_sym_command_repeat1, - STATE(1257), 1, + STATE(1252), 1, aux_sym__literal_repeat1, - STATE(1432), 1, + STATE(1375), 1, sym_concatenation, - STATE(2229), 1, + STATE(2097), 1, sym_variable_assignment, - STATE(5029), 1, + STATE(4998), 1, sym_command, - STATE(6771), 1, + STATE(6835), 1, sym_subscript, - ACTIONS(55), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(69), 2, + ACTIONS(391), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1392), 2, + ACTIONS(1424), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3591), 2, + STATE(3643), 2, sym_file_redirect, sym_herestring_redirect, - STATE(5028), 2, + STATE(4996), 2, sym_subshell, sym_test_command, - ACTIONS(1390), 3, + ACTIONS(1422), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(1388), 5, + ACTIONS(1420), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(954), 9, + STATE(1117), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [9257] = 21, + [9576] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 1, + ACTIONS(2902), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2904), 1, anon_sym_DOLLAR, - ACTIONS(2725), 1, + ACTIONS(2906), 1, sym__special_character, - ACTIONS(2727), 1, + ACTIONS(2908), 1, anon_sym_DQUOTE, - ACTIONS(2729), 1, + ACTIONS(2910), 1, + anon_sym_SQUOTE, + ACTIONS(2912), 1, aux_sym_number_token1, - ACTIONS(2731), 1, + ACTIONS(2914), 1, aux_sym_number_token2, - ACTIONS(2733), 1, + ACTIONS(2916), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2735), 1, + ACTIONS(2918), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2737), 1, + ACTIONS(2920), 1, anon_sym_BQUOTE, - ACTIONS(2739), 1, + ACTIONS(2922), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2743), 1, + ACTIONS(2926), 1, sym_test_operator, - ACTIONS(2745), 1, + ACTIONS(2928), 1, sym__brace_start, - STATE(4292), 1, + STATE(1942), 1, aux_sym__literal_repeat1, - STATE(4715), 1, - sym_concatenation, - ACTIONS(2303), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2719), 2, + ACTIONS(2898), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2900), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2741), 2, + ACTIONS(2924), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2717), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4239), 9, + STATE(639), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1441), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 23, + ACTIONS(2154), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84335,62 +85619,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [9356] = 21, + [9678] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2721), 1, + ACTIONS(2936), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2723), 1, + ACTIONS(2939), 1, anon_sym_DOLLAR, - ACTIONS(2725), 1, + ACTIONS(2942), 1, sym__special_character, - ACTIONS(2727), 1, + ACTIONS(2945), 1, anon_sym_DQUOTE, - ACTIONS(2729), 1, + ACTIONS(2948), 1, + anon_sym_SQUOTE, + ACTIONS(2951), 1, aux_sym_number_token1, - ACTIONS(2731), 1, + ACTIONS(2954), 1, aux_sym_number_token2, - ACTIONS(2733), 1, + ACTIONS(2957), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2735), 1, + ACTIONS(2960), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2737), 1, + ACTIONS(2963), 1, anon_sym_BQUOTE, - ACTIONS(2739), 1, + ACTIONS(2966), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2745), 1, - sym__brace_start, - ACTIONS(2749), 1, + ACTIONS(2972), 1, sym_test_operator, - STATE(4317), 1, + ACTIONS(2975), 1, + sym__brace_start, + STATE(1789), 1, aux_sym__literal_repeat1, - STATE(4613), 1, - sym_concatenation, - ACTIONS(2307), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2719), 2, + ACTIONS(2930), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2933), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2741), 2, + ACTIONS(2969), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2747), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4242), 9, + STATE(626), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2170), 4, + sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1372), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 23, + ACTIONS(2168), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84400,10 +85688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -84414,171 +85699,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [9455] = 5, - ACTIONS(71), 1, + [9780] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(2757), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2753), 23, - sym_file_descriptor, + ACTIONS(2420), 1, + anon_sym_DQUOTE, + ACTIONS(2862), 1, sym_variable_name, + STATE(1438), 1, + sym_string, + ACTIONS(2860), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ACTIONS(2858), 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(1255), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, + sym__special_character, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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(2751), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [9522] = 21, + [9854] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2765), 1, + ACTIONS(2868), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2768), 1, + ACTIONS(2870), 1, anon_sym_DOLLAR, - ACTIONS(2771), 1, + ACTIONS(2872), 1, sym__special_character, - ACTIONS(2774), 1, + ACTIONS(2874), 1, anon_sym_DQUOTE, - ACTIONS(2777), 1, + ACTIONS(2876), 1, + anon_sym_SQUOTE, + ACTIONS(2878), 1, aux_sym_number_token1, - ACTIONS(2780), 1, + ACTIONS(2880), 1, aux_sym_number_token2, - ACTIONS(2783), 1, + ACTIONS(2882), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2786), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2789), 1, + ACTIONS(2886), 1, anon_sym_BQUOTE, - ACTIONS(2792), 1, + ACTIONS(2888), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2798), 1, + ACTIONS(2892), 1, sym_test_operator, - ACTIONS(2801), 1, + ACTIONS(2894), 1, sym__brace_start, - STATE(1775), 1, + STATE(2008), 1, aux_sym__literal_repeat1, - ACTIONS(2762), 2, + ACTIONS(2160), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2864), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2866), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2795), 2, + ACTIONS(2890), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(625), 2, + STATE(621), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2759), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(2183), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(1329), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2181), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [9621] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1617), 1, - aux_sym__literal_repeat1, - STATE(1889), 1, - sym_concatenation, - ACTIONS(2303), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1235), 9, + STATE(1322), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(2158), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84601,47 +85845,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [9956] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2984), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2987), 1, anon_sym_DOLLAR, + ACTIONS(2990), 1, sym__special_character, + ACTIONS(2993), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2996), 1, + anon_sym_SQUOTE, + ACTIONS(2999), 1, aux_sym_number_token1, + ACTIONS(3002), 1, aux_sym_number_token2, + ACTIONS(3005), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3008), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3011), 1, anon_sym_BQUOTE, + ACTIONS(3014), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [9690] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1661), 1, - aux_sym__literal_repeat1, - STATE(1894), 1, - sym_concatenation, - ACTIONS(2307), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3020), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3023), 1, sym_test_operator, + ACTIONS(3026), 1, sym__brace_start, + STATE(2032), 1, + aux_sym__literal_repeat1, + ACTIONS(2585), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(1241), 9, + ACTIONS(2978), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2981), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3017), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(629), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + STATE(1491), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 39, - anon_sym_LPAREN_LPAREN, + ACTIONS(2583), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84663,173 +85926,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [10060] = 38, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(73), 1, + sym_comment, + ACTIONS(341), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(365), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(367), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(369), 1, anon_sym_DOLLAR, + ACTIONS(371), 1, sym__special_character, + ACTIONS(373), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(377), 1, sym_ansi_c_string, + ACTIONS(379), 1, aux_sym_number_token1, + ACTIONS(381), 1, aux_sym_number_token2, + ACTIONS(383), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(385), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(387), 1, anon_sym_BQUOTE, + ACTIONS(389), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(395), 1, + sym_variable_name, + ACTIONS(397), 1, + sym_test_operator, + ACTIONS(399), 1, + sym__brace_start, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, + sym_file_descriptor, + ACTIONS(2896), 1, + sym_word, + STATE(550), 1, + sym_command_name, + STATE(924), 1, + aux_sym_command_repeat1, + STATE(1252), 1, + aux_sym__literal_repeat1, + STATE(1375), 1, + sym_concatenation, + STATE(2311), 1, + sym_variable_assignment, + STATE(4998), 1, + sym_command, + STATE(6835), 1, + sym_subscript, + ACTIONS(391), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [9759] = 37, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(4996), 2, + sym_subshell, + sym_test_command, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1117), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [10194] = 38, + ACTIONS(73), 1, + sym_comment, + ACTIONS(173), 1, anon_sym_LBRACK, - ACTIONS(35), 1, + ACTIONS(177), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(331), 1, + ACTIONS(223), 1, + sym_variable_name, + ACTIONS(1049), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(355), 1, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(1063), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(357), 1, + ACTIONS(1065), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(359), 1, + ACTIONS(1067), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, + ACTIONS(1069), 1, sym__special_character, - ACTIONS(363), 1, + ACTIONS(1071), 1, anon_sym_DQUOTE, - ACTIONS(367), 1, + ACTIONS(1073), 1, + anon_sym_SQUOTE, + ACTIONS(1075), 1, + sym_ansi_c_string, + ACTIONS(1077), 1, aux_sym_number_token1, - ACTIONS(369), 1, + ACTIONS(1079), 1, aux_sym_number_token2, - ACTIONS(371), 1, + ACTIONS(1081), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, + ACTIONS(1083), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(1085), 1, anon_sym_BQUOTE, - ACTIONS(377), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(383), 1, - sym_variable_name, - ACTIONS(385), 1, + ACTIONS(1093), 1, sym_test_operator, - ACTIONS(387), 1, + ACTIONS(1095), 1, sym__brace_start, - ACTIONS(1394), 1, + ACTIONS(1426), 1, anon_sym_LT_LT_LT, - ACTIONS(1396), 1, + ACTIONS(1428), 1, sym_file_descriptor, - ACTIONS(2804), 1, + ACTIONS(3029), 1, sym_word, - STATE(546), 1, + STATE(644), 1, sym_command_name, - STATE(1009), 1, + STATE(855), 1, aux_sym_command_repeat1, - STATE(1179), 1, + STATE(2378), 1, aux_sym__literal_repeat1, - STATE(1398), 1, + STATE(2443), 1, sym_concatenation, - STATE(2306), 1, + STATE(2968), 1, sym_variable_assignment, - STATE(5029), 1, + STATE(5696), 1, sym_command, - STATE(6785), 1, + STATE(6803), 1, sym_subscript, - ACTIONS(365), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(379), 2, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1392), 2, + ACTIONS(1424), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(3591), 2, + STATE(3643), 2, sym_file_redirect, sym_herestring_redirect, - STATE(5028), 2, + STATE(5756), 2, sym_subshell, sym_test_command, - ACTIONS(1390), 3, + ACTIONS(1422), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(1388), 5, + ACTIONS(1420), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(1010), 9, + STATE(1918), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [9890] = 21, + [10328] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2810), 1, + ACTIONS(2902), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2812), 1, + ACTIONS(2904), 1, anon_sym_DOLLAR, - ACTIONS(2814), 1, + ACTIONS(2906), 1, sym__special_character, - ACTIONS(2816), 1, + ACTIONS(2908), 1, anon_sym_DQUOTE, - ACTIONS(2818), 1, + ACTIONS(2910), 1, + anon_sym_SQUOTE, + ACTIONS(2912), 1, aux_sym_number_token1, - ACTIONS(2820), 1, + ACTIONS(2914), 1, aux_sym_number_token2, - ACTIONS(2822), 1, + ACTIONS(2916), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2824), 1, + ACTIONS(2918), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2826), 1, + ACTIONS(2920), 1, anon_sym_BQUOTE, - ACTIONS(2828), 1, + ACTIONS(2922), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2832), 1, + ACTIONS(2926), 1, sym_test_operator, - ACTIONS(2834), 1, + ACTIONS(2928), 1, sym__brace_start, - STATE(1918), 1, + STATE(1942), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(2160), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2808), 2, + ACTIONS(2898), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2900), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2830), 2, + ACTIONS(2924), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(633), 2, + STATE(639), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2806), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1421), 9, + STATE(1441), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 22, + ACTIONS(2158), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -84839,6 +86185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -84851,79 +86198,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [9989] = 5, - ACTIONS(71), 1, + [10430] = 38, + ACTIONS(73), 1, sym_comment, - ACTIONS(2836), 2, - anon_sym_esac, - anon_sym_SEMI_SEMI, - ACTIONS(2838), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2753), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(688), 1, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, + ACTIONS(694), 1, + anon_sym_LPAREN, + ACTIONS(710), 1, + anon_sym_LBRACK, + ACTIONS(712), 1, anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + ACTIONS(722), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(724), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(726), 1, + anon_sym_DOLLAR, + ACTIONS(728), 1, + sym__special_character, + ACTIONS(730), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(732), 1, + anon_sym_SQUOTE, + ACTIONS(734), 1, sym_ansi_c_string, + ACTIONS(736), 1, + aux_sym_number_token1, + ACTIONS(738), 1, + aux_sym_number_token2, + ACTIONS(740), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(742), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(744), 1, anon_sym_BQUOTE, + ACTIONS(746), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(752), 1, + sym_variable_name, + ACTIONS(754), 1, + sym_test_operator, + ACTIONS(756), 1, + sym__brace_start, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, + sym_file_descriptor, + ACTIONS(3031), 1, + sym_word, + STATE(532), 1, + sym_command_name, + STATE(914), 1, + aux_sym_command_repeat1, + STATE(1026), 1, + aux_sym__literal_repeat1, + STATE(1308), 1, + sym_concatenation, + STATE(1933), 1, + sym_variable_assignment, + STATE(5135), 1, + sym_command, + STATE(6821), 1, + sym_subscript, + ACTIONS(748), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2751), 28, - anon_sym_for, - anon_sym_select, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(5159), 2, + sym_subshell, + sym_test_command, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [10056] = 5, - ACTIONS(71), 1, + STATE(896), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [10564] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(2755), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2757), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2753), 23, + ACTIONS(832), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -84940,14 +86314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2751), 28, + ACTIONS(593), 33, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -84955,7 +86329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_while, anon_sym_until, + anon_sym_do, anon_sym_if, + anon_sym_then, + anon_sym_fi, + anon_sym_elif, + anon_sym_else, anon_sym_case, anon_sym_function, anon_sym_BANG, @@ -84976,75 +86355,48 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [10123] = 21, + [10628] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2810), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2812), 1, - anon_sym_DOLLAR, - ACTIONS(2814), 1, - sym__special_character, - ACTIONS(2816), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(2818), 1, - aux_sym_number_token1, - ACTIONS(2820), 1, - aux_sym_number_token2, - ACTIONS(2822), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2824), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2826), 1, - anon_sym_BQUOTE, - ACTIONS(2828), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2832), 1, + ACTIONS(2404), 1, + sym_variable_name, + STATE(1269), 1, + sym_string, + ACTIONS(2402), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(2834), 1, + sym__bare_dollar, sym__brace_start, - STATE(1918), 1, - aux_sym__literal_repeat1, - ACTIONS(2173), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2808), 2, + ACTIONS(2400), 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(1267), 38, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2830), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(633), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2806), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1421), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2171), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85053,63 +86405,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [10222] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2846), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2849), 1, - anon_sym_DOLLAR, - ACTIONS(2852), 1, sym__special_character, - ACTIONS(2855), 1, - anon_sym_DQUOTE, - ACTIONS(2858), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2861), 1, aux_sym_number_token2, - ACTIONS(2864), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2867), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2870), 1, anon_sym_BQUOTE, - ACTIONS(2873), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2879), 1, - sym_test_operator, - ACTIONS(2882), 1, - sym__brace_start, - STATE(1918), 1, - aux_sym__literal_repeat1, - ACTIONS(2183), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2843), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2876), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(633), 2, + sym_word, + [10702] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1873), 1, + aux_sym__literal_repeat1, + STATE(617), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2840), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1421), 9, + ACTIONS(2160), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1391), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 22, + ACTIONS(2158), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85119,9 +86457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85132,119 +86469,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [10321] = 29, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2651), 1, - anon_sym_LT_LT_LT, - ACTIONS(2653), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2655), 1, anon_sym_DOLLAR, - ACTIONS(2657), 1, sym__special_character, - ACTIONS(2659), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2665), 1, aux_sym_number_token2, - ACTIONS(2667), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2669), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2671), 1, anon_sym_BQUOTE, - ACTIONS(2673), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2677), 1, - sym_test_operator, - ACTIONS(2679), 1, - sym__bare_dollar, - ACTIONS(2681), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [10772] = 38, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(73), 1, + sym_comment, + ACTIONS(341), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(365), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(367), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(369), 1, + anon_sym_DOLLAR, + ACTIONS(373), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(379), 1, + aux_sym_number_token1, + ACTIONS(381), 1, + aux_sym_number_token2, + ACTIONS(383), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(385), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(387), 1, + anon_sym_BQUOTE, + ACTIONS(389), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(399), 1, sym__brace_start, - STATE(731), 1, - aux_sym_command_repeat2, - STATE(2425), 1, + ACTIONS(1037), 1, + sym__special_character, + ACTIONS(1039), 1, + sym_ansi_c_string, + ACTIONS(1043), 1, + sym_variable_name, + ACTIONS(1045), 1, + sym_test_operator, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, + sym_file_descriptor, + ACTIONS(3033), 1, + sym_word, + STATE(606), 1, + sym_command_name, + STATE(907), 1, + aux_sym_command_repeat1, + STATE(1252), 1, aux_sym__literal_repeat1, - STATE(2523), 1, + STATE(1375), 1, sym_concatenation, - STATE(2525), 1, + STATE(2097), 1, + sym_variable_assignment, + STATE(4998), 1, + sym_command, + STATE(6795), 1, + sym_subscript, + ACTIONS(391), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3643), 2, + sym_file_redirect, sym_herestring_redirect, - STATE(5628), 1, + STATE(4996), 2, sym_subshell, - ACTIONS(2647), 2, + sym_test_command, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1765), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [10906] = 38, + ACTIONS(19), 1, + anon_sym_LPAREN, + ACTIONS(33), 1, + anon_sym_LBRACK, + ACTIONS(35), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(73), 1, + sym_comment, + ACTIONS(141), 1, + sym_variable_name, + ACTIONS(341), 1, anon_sym_LPAREN_LPAREN, + ACTIONS(365), 1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2649), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2661), 2, - sym_raw_string, + ACTIONS(367), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(369), 1, + anon_sym_DOLLAR, + ACTIONS(373), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(379), 1, + aux_sym_number_token1, + ACTIONS(381), 1, + aux_sym_number_token2, + ACTIONS(383), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(385), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(387), 1, + anon_sym_BQUOTE, + ACTIONS(389), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(399), 1, + sym__brace_start, + ACTIONS(796), 1, + sym__special_character, + ACTIONS(798), 1, sym_ansi_c_string, - ACTIONS(2675), 2, + ACTIONS(800), 1, + sym_test_operator, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, + sym_file_descriptor, + ACTIONS(3035), 1, + sym_word, + STATE(538), 1, + sym_command_name, + STATE(895), 1, + aux_sym_command_repeat1, + STATE(1252), 1, + aux_sym__literal_repeat1, + STATE(1375), 1, + sym_concatenation, + STATE(2097), 1, + sym_variable_assignment, + STATE(4998), 1, + sym_command, + STATE(6812), 1, + sym_subscript, + ACTIONS(391), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1404), 7, - anon_sym_PIPE, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(4996), 2, + sym_subshell, + sym_test_command, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2159), 9, + STATE(944), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1408), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [10436] = 6, + [11040] = 22, ACTIONS(3), 1, sym_comment, - STATE(1775), 1, - aux_sym__literal_repeat1, - STATE(625), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2173), 6, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3043), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3046), 1, + anon_sym_DOLLAR, + ACTIONS(3049), 1, + sym__special_character, + ACTIONS(3052), 1, + anon_sym_DQUOTE, + ACTIONS(3055), 1, + anon_sym_SQUOTE, + ACTIONS(3058), 1, + aux_sym_number_token1, + ACTIONS(3061), 1, + aux_sym_number_token2, + ACTIONS(3064), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3067), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3070), 1, + anon_sym_BQUOTE, + ACTIONS(3073), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3079), 1, sym_test_operator, + ACTIONS(3082), 1, sym__brace_start, - ts_builtin_sym_end, + STATE(1942), 1, + aux_sym__literal_repeat1, + ACTIONS(2170), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(1329), 9, + ACTIONS(3037), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3040), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3076), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(639), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1441), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(2168), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85254,7 +86744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85264,105 +86757,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [11142] = 38, + ACTIONS(73), 1, + sym_comment, + ACTIONS(421), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(427), 1, + anon_sym_LPAREN, + ACTIONS(447), 1, + anon_sym_LBRACK, + ACTIONS(449), 1, + anon_sym_LBRACK_LBRACK, + ACTIONS(459), 1, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(461), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(463), 1, anon_sym_DOLLAR, + ACTIONS(465), 1, sym__special_character, + ACTIONS(467), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(469), 1, + anon_sym_SQUOTE, + ACTIONS(471), 1, sym_ansi_c_string, + ACTIONS(473), 1, aux_sym_number_token1, + ACTIONS(475), 1, aux_sym_number_token2, + ACTIONS(477), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(479), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(481), 1, anon_sym_BQUOTE, + ACTIONS(483), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10505] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1698), 1, - anon_sym_DQUOTE, - ACTIONS(2889), 1, + ACTIONS(489), 1, sym_variable_name, - STATE(1284), 1, - sym_string, - ACTIONS(2887), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, + ACTIONS(491), 1, sym_test_operator, + ACTIONS(493), 1, sym__brace_start, - ACTIONS(2885), 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(1227), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, + sym_file_descriptor, + ACTIONS(3085), 1, + sym_word, + STATE(530), 1, + sym_command_name, + STATE(853), 1, + aux_sym_command_repeat1, + STATE(940), 1, + aux_sym__literal_repeat1, + STATE(1061), 1, + sym_concatenation, + STATE(1728), 1, + sym_variable_assignment, + STATE(4943), 1, + sym_command, + STATE(6820), 1, + sym_subscript, + ACTIONS(485), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + STATE(4942), 2, + sym_subshell, + sym_test_command, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + STATE(845), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10578] = 8, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [11276] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1698), 1, + ACTIONS(2722), 1, anon_sym_DQUOTE, - ACTIONS(2889), 1, + ACTIONS(2726), 1, sym_variable_name, - STATE(1284), 1, + STATE(1178), 1, sym_string, - ACTIONS(2887), 2, + ACTIONS(2724), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2885), 9, + ACTIONS(2720), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -85372,7 +86879,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 38, + ACTIONS(1267), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85397,10 +86904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -85411,23 +86919,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [10651] = 8, + [11350] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(2895), 1, + ACTIONS(2404), 1, sym_variable_name, - STATE(1470), 1, + STATE(1269), 1, sym_string, - ACTIONS(2893), 2, + ACTIONS(2402), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(2891), 9, + ACTIONS(2400), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -85437,22 +86946,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 38, + ACTIONS(1255), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -85462,10 +86970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -85476,97 +86985,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [10724] = 8, + [11424] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 1, - anon_sym_DQUOTE, - ACTIONS(2895), 1, - sym_variable_name, - STATE(1470), 1, - sym_string, - ACTIONS(2893), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(2891), 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(1239), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2732), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2734), 1, + anon_sym_DOLLAR, + ACTIONS(2736), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2738), 1, + anon_sym_DQUOTE, + ACTIONS(2740), 1, + anon_sym_SQUOTE, + ACTIONS(2742), 1, aux_sym_number_token1, + ACTIONS(2744), 1, aux_sym_number_token2, + ACTIONS(2746), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2748), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2750), 1, anon_sym_BQUOTE, + ACTIONS(2752), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10797] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1777), 1, - aux_sym__literal_repeat1, - STATE(643), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2173), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(2758), 1, sym_test_operator, + ACTIONS(2760), 1, sym__brace_start, + ACTIONS(3087), 1, + aux_sym__simple_variable_name_token1, + STATE(2032), 1, + aux_sym__literal_repeat1, + ACTIONS(2368), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(1415), 9, + ACTIONS(2728), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2730), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2754), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(616), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + STATE(1491), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(2366), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85576,8 +87054,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85587,115 +87066,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [11528] = 30, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1055), 1, + anon_sym_LPAREN, + ACTIONS(2680), 1, + sym_word, + ACTIONS(2686), 1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2688), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2690), 1, anon_sym_DOLLAR, + ACTIONS(2692), 1, sym__special_character, + ACTIONS(2694), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(2696), 1, + anon_sym_SQUOTE, + ACTIONS(2698), 1, sym_ansi_c_string, + ACTIONS(2700), 1, aux_sym_number_token1, + ACTIONS(2702), 1, aux_sym_number_token2, + ACTIONS(2704), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2706), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2708), 1, anon_sym_BQUOTE, + ACTIONS(2710), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10866] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2695), 1, - anon_sym_DQUOTE, - ACTIONS(2901), 1, - sym_variable_name, - STATE(1555), 1, - sym_string, - ACTIONS(2899), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, + ACTIONS(2714), 1, sym_test_operator, + ACTIONS(2716), 1, + sym__bare_dollar, + ACTIONS(2718), 1, sym__brace_start, - ACTIONS(2897), 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(1227), 38, + STATE(725), 1, + aux_sym_command_repeat2, + STATE(2460), 1, + aux_sym__literal_repeat1, + STATE(2601), 1, + sym_concatenation, + STATE(2604), 1, + sym_herestring_redirect, + STATE(5714), 1, + sym_subshell, + ACTIONS(2682), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2684), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2712), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1436), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1440), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + STATE(2251), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [10939] = 8, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [11646] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2695), 1, - anon_sym_DQUOTE, - ACTIONS(2901), 1, - sym_variable_name, - STATE(1555), 1, - sym_string, - ACTIONS(2899), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + STATE(1789), 1, + aux_sym__literal_repeat1, + STATE(626), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2160), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(2897), 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(1239), 38, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1372), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2158), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85706,10 +87191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -85719,11 +87201,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -85734,63 +87218,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11012] = 21, + [11716] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2912), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(2915), 1, + ACTIONS(3097), 1, sym__special_character, - ACTIONS(2918), 1, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(2921), 1, + ACTIONS(3101), 1, + anon_sym_SQUOTE, + ACTIONS(3103), 1, aux_sym_number_token1, - ACTIONS(2924), 1, + ACTIONS(3105), 1, aux_sym_number_token2, - ACTIONS(2927), 1, + ACTIONS(3107), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2930), 1, + ACTIONS(3109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2933), 1, + ACTIONS(3111), 1, anon_sym_BQUOTE, - ACTIONS(2936), 1, + ACTIONS(3113), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2942), 1, + ACTIONS(3117), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3119), 1, sym_test_operator, - ACTIONS(2945), 1, + ACTIONS(3121), 1, sym__brace_start, - STATE(1777), 1, + STATE(2124), 1, aux_sym__literal_repeat1, - ACTIONS(2906), 2, + ACTIONS(3089), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3091), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2939), 2, + ACTIONS(3115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(643), 2, + STATE(667), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2183), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2368), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2903), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1415), 9, + STATE(1584), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 21, + ACTIONS(2366), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -85800,7 +87288,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -85811,33 +87298,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [11111] = 6, + [11819] = 6, ACTIONS(3), 1, sym_comment, - STATE(1775), 1, + STATE(1806), 1, aux_sym__literal_repeat1, - STATE(625), 2, + STATE(2115), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 6, + ACTIONS(2408), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1329), 9, + STATE(1353), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 37, + ACTIONS(2406), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85864,7 +87350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -85875,23 +87361,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11180] = 8, + [11888] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2950), 1, + ACTIONS(1678), 1, anon_sym_DQUOTE, - ACTIONS(2954), 1, + ACTIONS(3127), 1, sym_variable_name, - STATE(1459), 1, + STATE(1184), 1, sym_string, - ACTIONS(2952), 2, + ACTIONS(3125), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2948), 9, + ACTIONS(3123), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -85901,7 +87387,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 38, + ACTIONS(1267), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85912,6 +87398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -85925,11 +87412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -85940,23 +87426,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11253] = 8, + [11961] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2950), 1, + ACTIONS(1678), 1, anon_sym_DQUOTE, - ACTIONS(2954), 1, + ACTIONS(3127), 1, sym_variable_name, - STATE(1459), 1, + STATE(1184), 1, sym_string, - ACTIONS(2952), 2, + ACTIONS(3125), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2948), 9, + ACTIONS(3123), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -85966,7 +87452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 38, + ACTIONS(1255), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -85977,6 +87463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -85990,11 +87477,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -86005,23 +87491,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11326] = 8, + [12034] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 1, + ACTIONS(2376), 1, anon_sym_DQUOTE, - ACTIONS(2960), 1, + ACTIONS(3133), 1, sym_variable_name, - STATE(1690), 1, + STATE(1395), 1, sym_string, - ACTIONS(2958), 2, + ACTIONS(3131), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2956), 9, + ACTIONS(3129), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -86031,7 +87517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 38, + ACTIONS(1267), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -86042,6 +87528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -86055,11 +87542,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -86070,23 +87556,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11399] = 8, + [12107] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 1, + ACTIONS(2376), 1, anon_sym_DQUOTE, - ACTIONS(2960), 1, + ACTIONS(3133), 1, sym_variable_name, - STATE(1690), 1, + STATE(1395), 1, sym_string, - ACTIONS(2958), 2, + ACTIONS(3131), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(2956), 9, + ACTIONS(3129), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -86096,7 +87582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 38, + ACTIONS(1255), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -86107,6 +87593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -86120,11 +87607,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -86135,219 +87621,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11472] = 37, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, + [12180] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(331), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(355), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(357), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(359), 1, - anon_sym_DOLLAR, - ACTIONS(361), 1, - sym__special_character, - ACTIONS(363), 1, + ACTIONS(2908), 1, anon_sym_DQUOTE, - ACTIONS(367), 1, - aux_sym_number_token1, - ACTIONS(369), 1, - aux_sym_number_token2, - ACTIONS(371), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_BQUOTE, - ACTIONS(377), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(383), 1, - sym_variable_name, - ACTIONS(385), 1, - sym_test_operator, - ACTIONS(387), 1, - sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2804), 1, - sym_word, - STATE(552), 1, - sym_command_name, - STATE(1001), 1, - aux_sym_command_repeat1, - STATE(1179), 1, - aux_sym__literal_repeat1, - STATE(1398), 1, - sym_concatenation, - STATE(2207), 1, - sym_variable_assignment, - STATE(5029), 1, - sym_command, - STATE(6785), 1, - sym_subscript, - ACTIONS(365), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(379), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(5028), 2, - sym_subshell, - sym_test_command, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1010), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [11603] = 37, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(137), 1, + ACTIONS(3139), 1, sym_variable_name, - ACTIONS(331), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(355), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(357), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(359), 1, - anon_sym_DOLLAR, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(367), 1, - aux_sym_number_token1, - ACTIONS(369), 1, - aux_sym_number_token2, - ACTIONS(371), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_BQUOTE, - ACTIONS(377), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(387), 1, - sym__brace_start, - ACTIONS(777), 1, - sym__special_character, - ACTIONS(781), 1, - sym_test_operator, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2962), 1, - sym_word, - STATE(539), 1, - sym_command_name, - STATE(984), 1, - aux_sym_command_repeat1, - STATE(1179), 1, - aux_sym__literal_repeat1, - STATE(1398), 1, - sym_concatenation, - STATE(2207), 1, - sym_variable_assignment, - STATE(5029), 1, - sym_command, - STATE(6758), 1, - sym_subscript, - ACTIONS(379), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(779), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(5028), 2, - sym_subshell, - sym_test_command, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(980), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(1591), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [11734] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1777), 1, - aux_sym__literal_repeat1, - STATE(643), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 5, + ACTIONS(3137), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1415), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 38, + ACTIONS(3135), 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(1267), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -86358,8 +87658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86369,13 +87671,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -86386,64 +87686,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [11803] = 22, + [12253] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2973), 1, - anon_sym_DOLLAR, - ACTIONS(2976), 1, - sym__special_character, - ACTIONS(2979), 1, + ACTIONS(2908), 1, anon_sym_DQUOTE, - ACTIONS(2982), 1, - aux_sym_number_token1, - ACTIONS(2985), 1, - aux_sym_number_token2, - ACTIONS(2988), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2991), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2994), 1, - anon_sym_BQUOTE, - ACTIONS(2997), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3003), 1, + ACTIONS(3139), 1, + sym_variable_name, + STATE(1591), 1, + sym_string, + ACTIONS(3137), 2, aux_sym__simple_variable_name_token1, - ACTIONS(3006), 1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(3009), 1, sym__brace_start, - STATE(1784), 1, - aux_sym__literal_repeat1, - ACTIONS(2353), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2967), 2, + ACTIONS(3135), 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(1255), 38, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3000), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(652), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2964), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1442), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2351), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86453,6 +87723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -86465,314 +87736,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [11904] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2836), 1, - anon_sym_SEMI_SEMI, - ACTIONS(2838), 3, - anon_sym_RPAREN, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(2753), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2751), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [11971] = 37, - ACTIONS(19), 1, - anon_sym_LPAREN, - ACTIONS(33), 1, - anon_sym_LBRACK, - ACTIONS(35), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(71), 1, - sym_comment, - ACTIONS(331), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(355), 1, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(357), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(359), 1, - anon_sym_DOLLAR, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(367), 1, - aux_sym_number_token1, - ACTIONS(369), 1, - aux_sym_number_token2, - ACTIONS(371), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_BQUOTE, - ACTIONS(377), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(387), 1, - sym__brace_start, - ACTIONS(1015), 1, sym__special_character, - ACTIONS(1021), 1, - sym_variable_name, - ACTIONS(1023), 1, - sym_test_operator, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(3012), 1, - sym_word, - STATE(611), 1, - sym_command_name, - STATE(1004), 1, - aux_sym_command_repeat1, - STATE(1179), 1, - aux_sym__literal_repeat1, - STATE(1398), 1, - sym_concatenation, - STATE(2207), 1, - sym_variable_assignment, - STATE(5029), 1, - sym_command, - STATE(6779), 1, - sym_subscript, - ACTIONS(379), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(5028), 2, - sym_subshell, - sym_test_command, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1693), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [12102] = 37, - ACTIONS(71), 1, - sym_comment, - ACTIONS(169), 1, - anon_sym_LBRACK, - ACTIONS(173), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(217), 1, - sym_variable_name, - ACTIONS(1027), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(1033), 1, - anon_sym_LPAREN, - ACTIONS(1041), 1, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1043), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1045), 1, - anon_sym_DOLLAR, - ACTIONS(1047), 1, - sym__special_character, - ACTIONS(1049), 1, - anon_sym_DQUOTE, - ACTIONS(1053), 1, aux_sym_number_token1, - ACTIONS(1055), 1, aux_sym_number_token2, - ACTIONS(1057), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1061), 1, anon_sym_BQUOTE, - ACTIONS(1063), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym_test_operator, - ACTIONS(1071), 1, - sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(3014), 1, - sym_word, - STATE(634), 1, - sym_command_name, - STATE(950), 1, - aux_sym_command_repeat1, - STATE(2277), 1, - aux_sym__literal_repeat1, - STATE(2352), 1, - sym_concatenation, - STATE(2929), 1, - sym_variable_assignment, - STATE(5685), 1, - sym_command, - STATE(6766), 1, - sym_subscript, - ACTIONS(1051), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1065), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(5682), 2, - sym_subshell, - sym_test_command, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [12233] = 22, + sym_word, + [12326] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2617), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2619), 1, - anon_sym_DOLLAR, - ACTIONS(2621), 1, - sym__special_character, - ACTIONS(2623), 1, + ACTIONS(3143), 1, anon_sym_DQUOTE, - ACTIONS(2625), 1, - aux_sym_number_token1, - ACTIONS(2627), 1, - aux_sym_number_token2, - ACTIONS(2629), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2633), 1, - anon_sym_BQUOTE, - ACTIONS(2635), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2641), 1, - sym_test_operator, - ACTIONS(2643), 1, - sym__brace_start, - ACTIONS(3016), 1, + ACTIONS(3147), 1, + sym_variable_name, + STATE(1373), 1, + sym_string, + ACTIONS(3145), 2, aux_sym__simple_variable_name_token1, - STATE(1784), 1, - aux_sym__literal_repeat1, - ACTIONS(2507), 2, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2615), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(3141), 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(1267), 38, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2637), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(616), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2613), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1442), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2505), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -86794,117 +87800,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [12334] = 37, - ACTIONS(71), 1, - sym_comment, - ACTIONS(671), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(677), 1, - anon_sym_LPAREN, - ACTIONS(693), 1, - anon_sym_LBRACK, - ACTIONS(695), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(705), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(707), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(709), 1, - anon_sym_DOLLAR, - ACTIONS(711), 1, sym__special_character, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, 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(733), 1, - sym_variable_name, - ACTIONS(735), 1, - sym_test_operator, - ACTIONS(737), 1, - sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(3018), 1, - sym_word, - STATE(531), 1, - sym_command_name, - STATE(992), 1, - aux_sym_command_repeat1, - STATE(1127), 1, - aux_sym__literal_repeat1, - STATE(1231), 1, - sym_concatenation, - STATE(1794), 1, - sym_variable_assignment, - STATE(5073), 1, - sym_command, - STATE(6746), 1, - sym_subscript, - ACTIONS(715), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(729), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - STATE(5072), 2, - sym_subshell, - sym_test_command, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(859), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [12465] = 8, + sym_word, + [12399] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(3143), 1, anon_sym_DQUOTE, - ACTIONS(3026), 1, + ACTIONS(3147), 1, sym_variable_name, - STATE(1747), 1, + STATE(1373), 1, sym_string, - ACTIONS(3024), 2, + ACTIONS(3145), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3020), 9, + ACTIONS(3141), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -86914,7 +87842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 37, + ACTIONS(1255), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -86925,8 +87853,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -86941,7 +87870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -86952,216 +87881,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12537] = 21, + [12472] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - ACTIONS(3032), 1, + ACTIONS(3155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3034), 1, + ACTIONS(3158), 1, anon_sym_DOLLAR, - ACTIONS(3036), 1, + ACTIONS(3161), 1, sym__special_character, - ACTIONS(3038), 1, + ACTIONS(3164), 1, + anon_sym_DQUOTE, + ACTIONS(3167), 1, + anon_sym_SQUOTE, + ACTIONS(3170), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(3173), 1, aux_sym_number_token2, - ACTIONS(3042), 1, + ACTIONS(3176), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3044), 1, + ACTIONS(3179), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3046), 1, + ACTIONS(3182), 1, anon_sym_BQUOTE, - ACTIONS(3048), 1, + ACTIONS(3185), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3052), 1, + ACTIONS(3191), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3194), 1, sym_test_operator, - ACTIONS(3054), 1, + ACTIONS(3197), 1, sym__brace_start, - STATE(2006), 1, + STATE(2124), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3030), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3050), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(661), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3028), 3, - sym_raw_string, + ACTIONS(3149), 2, sym_ansi_c_string, sym_word, - STATE(1578), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [12635] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - ACTIONS(3032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3034), 1, - anon_sym_DOLLAR, - ACTIONS(3036), 1, - sym__special_character, - ACTIONS(3038), 1, - aux_sym_number_token1, - ACTIONS(3040), 1, - aux_sym_number_token2, - ACTIONS(3042), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3044), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3046), 1, - anon_sym_BQUOTE, - ACTIONS(3048), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3052), 1, - sym_test_operator, - ACTIONS(3054), 1, - sym__brace_start, - STATE(2006), 1, - aux_sym__literal_repeat1, - ACTIONS(2173), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3030), 2, + ACTIONS(3152), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3050), 2, + ACTIONS(3188), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(661), 2, + STATE(656), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3028), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1578), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2171), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [12733] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3062), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3065), 1, - anon_sym_DOLLAR, - ACTIONS(3068), 1, - sym__special_character, - ACTIONS(3071), 1, - anon_sym_DQUOTE, - ACTIONS(3074), 1, - aux_sym_number_token1, - ACTIONS(3077), 1, - aux_sym_number_token2, - ACTIONS(3080), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3083), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3086), 1, - anon_sym_BQUOTE, - ACTIONS(3089), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3095), 1, - sym_test_operator, - ACTIONS(3098), 1, - sym__brace_start, - STATE(2006), 1, - aux_sym__literal_repeat1, - ACTIONS(2183), 2, + aux_sym_unset_command_repeat1, + ACTIONS(2585), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3092), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(661), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3056), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1578), 9, + STATE(1584), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 21, + ACTIONS(2583), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87171,7 +87951,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -87182,24 +87961,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [12831] = 8, + [12575] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, + ACTIONS(2874), 1, anon_sym_DQUOTE, - ACTIONS(3107), 1, + ACTIONS(3204), 1, sym_variable_name, - STATE(1501), 1, + STATE(1696), 1, sym_string, - ACTIONS(3105), 2, + ACTIONS(3202), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3101), 9, + ACTIONS(3200), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -87209,7 +87987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 37, + ACTIONS(1267), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -87220,8 +87998,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87236,7 +88015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -87247,23 +88026,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12903] = 8, + [12648] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, + ACTIONS(2874), 1, anon_sym_DQUOTE, - ACTIONS(3107), 1, + ACTIONS(3204), 1, sym_variable_name, - STATE(1501), 1, + STATE(1696), 1, sym_string, - ACTIONS(3105), 2, + ACTIONS(3202), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3101), 9, + ACTIONS(3200), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -87273,7 +88052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 37, + ACTIONS(1255), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -87284,8 +88063,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87300,7 +88080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -87311,153 +88091,410 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [12975] = 36, - ACTIONS(71), 1, + [12721] = 37, + ACTIONS(73), 1, sym_comment, ACTIONS(231), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1171), 1, + ACTIONS(1223), 1, sym_word, - ACTIONS(1181), 1, + ACTIONS(1233), 1, sym__special_character, - ACTIONS(1185), 1, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, sym_test_operator, - ACTIONS(3109), 1, + ACTIONS(3206), 1, anon_sym_LPAREN, - ACTIONS(3111), 1, + ACTIONS(3208), 1, anon_sym_BANG, - ACTIONS(3117), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3119), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(3121), 1, + ACTIONS(3218), 1, aux_sym__simple_variable_name_token1, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - STATE(2369), 1, + STATE(2442), 1, sym_command_substitution, - STATE(2548), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - STATE(2997), 1, + STATE(2980), 1, + sym__arithmetic_unary_expression, + STATE(3203), 1, sym__expression, - ACTIONS(1099), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1183), 2, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3212), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2438), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2855), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2492), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, sym_raw_string, + sym_process_substitution, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [12852] = 37, + ACTIONS(73), 1, + sym_comment, + ACTIONS(237), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, sym_ansi_c_string, - ACTIONS(3113), 2, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3206), 1, + anon_sym_LPAREN, + ACTIONS(3208), 1, + anon_sym_BANG, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(3222), 1, + aux_sym__simple_variable_name_token1, + STATE(2442), 1, + sym_command_substitution, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + STATE(3039), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(3115), 2, + ACTIONS(3212), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2427), 4, + STATE(2438), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2530), 4, + STATE(2900), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2492), 5, sym_arithmetic_expansion, sym_brace_expression, sym_translated_string, + sym_raw_string, sym_process_substitution, - STATE(2779), 4, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [12983] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(3228), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(3230), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(3226), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3224), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [13050] = 37, + ACTIONS(73), 1, + sym_comment, + ACTIONS(239), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3206), 1, + anon_sym_LPAREN, + ACTIONS(3208), 1, + anon_sym_BANG, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(3232), 1, + aux_sym__simple_variable_name_token1, + STATE(2442), 1, + sym_command_substitution, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + STATE(3134), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3212), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2438), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2919), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2674), 6, + STATE(2492), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_raw_string, + sym_process_substitution, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [13103] = 21, + [13181] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, + ACTIONS(3238), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3131), 1, + ACTIONS(3240), 1, anon_sym_DOLLAR, - ACTIONS(3133), 1, + ACTIONS(3242), 1, sym__special_character, - ACTIONS(3135), 1, + ACTIONS(3244), 1, anon_sym_DQUOTE, - ACTIONS(3137), 1, + ACTIONS(3246), 1, + anon_sym_SQUOTE, + ACTIONS(3248), 1, aux_sym_number_token1, - ACTIONS(3139), 1, + ACTIONS(3250), 1, aux_sym_number_token2, - ACTIONS(3141), 1, + ACTIONS(3252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3143), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, + ACTIONS(3256), 1, anon_sym_BQUOTE, - ACTIONS(3147), 1, + ACTIONS(3258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3151), 1, + ACTIONS(3262), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3264), 1, sym_test_operator, - ACTIONS(3153), 1, + ACTIONS(3266), 1, sym__brace_start, - STATE(4422), 1, + STATE(2182), 1, aux_sym__literal_repeat1, - STATE(4874), 1, - sym_concatenation, - ACTIONS(2303), 2, + ACTIONS(2368), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3127), 2, + ACTIONS(3234), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3236), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3149), 2, + ACTIONS(3260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3125), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4358), 9, + STATE(671), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + STATE(1684), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 22, + ACTIONS(2366), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87467,10 +88504,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87480,61 +88515,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [13201] = 21, + [13284] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3129), 1, + STATE(1938), 1, + aux_sym__literal_repeat1, + STATE(2240), 1, + sym_concatenation, + ACTIONS(2408), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + STATE(1434), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2406), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3131), 1, anon_sym_DOLLAR, - ACTIONS(3133), 1, sym__special_character, - ACTIONS(3135), 1, anon_sym_DQUOTE, - ACTIONS(3137), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3139), 1, aux_sym_number_token2, - ACTIONS(3141), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3143), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3145), 1, anon_sym_BQUOTE, - ACTIONS(3147), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3153), 1, - sym__brace_start, - ACTIONS(3157), 1, - sym_test_operator, - STATE(4429), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [13353] = 6, + ACTIONS(3), 1, + sym_comment, + STATE(1991), 1, aux_sym__literal_repeat1, - STATE(4991), 1, + STATE(2237), 1, sym_concatenation, - ACTIONS(2307), 2, + ACTIONS(2546), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3127), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3149), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3155), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4372), 9, + STATE(1466), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 22, + ACTIONS(2544), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87544,10 +88613,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87557,63 +88624,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [13299] = 21, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [13422] = 37, + ACTIONS(73), 1, + sym_comment, + ACTIONS(175), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3206), 1, + anon_sym_LPAREN, + ACTIONS(3208), 1, + anon_sym_BANG, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(3268), 1, + aux_sym__simple_variable_name_token1, + STATE(2442), 1, + sym_command_substitution, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + STATE(3193), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3212), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2438), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2830), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2492), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_raw_string, + sym_process_substitution, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [13553] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(3093), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3165), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(3167), 1, + ACTIONS(3097), 1, sym__special_character, - ACTIONS(3169), 1, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(3171), 1, + ACTIONS(3101), 1, + anon_sym_SQUOTE, + ACTIONS(3103), 1, aux_sym_number_token1, - ACTIONS(3173), 1, + ACTIONS(3105), 1, aux_sym_number_token2, - ACTIONS(3175), 1, + ACTIONS(3107), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3177), 1, + ACTIONS(3109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3179), 1, + ACTIONS(3111), 1, anon_sym_BQUOTE, - ACTIONS(3181), 1, + ACTIONS(3113), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3185), 1, + ACTIONS(3119), 1, sym_test_operator, - ACTIONS(3187), 1, + ACTIONS(3121), 1, sym__brace_start, - STATE(1945), 1, + ACTIONS(3270), 1, + aux_sym__simple_variable_name_token1, + STATE(2124), 1, aux_sym__literal_repeat1, - ACTIONS(3161), 2, + ACTIONS(3089), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3091), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3183), 2, + ACTIONS(3115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(688), 2, + STATE(656), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, + aux_sym_unset_command_repeat1, + ACTIONS(2540), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3159), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1574), 9, + STATE(1584), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(2538), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87633,76 +88815,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [13397] = 22, - ACTIONS(3), 1, + [13656] = 37, + ACTIONS(73), 1, sym_comment, - ACTIONS(3195), 1, + ACTIONS(231), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3198), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(3201), 1, - sym__special_character, - ACTIONS(3204), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(3207), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(3210), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(3213), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3216), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3219), 1, - anon_sym_BQUOTE, - ACTIONS(3222), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3228), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3231), 1, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, sym_test_operator, - ACTIONS(3234), 1, + ACTIONS(3206), 1, + anon_sym_LPAREN, + ACTIONS(3208), 1, + anon_sym_BANG, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(3272), 1, + aux_sym__simple_variable_name_token1, + STATE(2442), 1, + sym_command_substitution, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + STATE(3203), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3212), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2438), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2877), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2492), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_raw_string, + sym_process_substitution, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [13787] = 37, + ACTIONS(73), 1, + sym_comment, + ACTIONS(175), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, sym__brace_start, - STATE(2241), 1, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3206), 1, + anon_sym_LPAREN, + ACTIONS(3208), 1, + anon_sym_BANG, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(3274), 1, + aux_sym__simple_variable_name_token1, + STATE(2442), 1, + sym_command_substitution, + STATE(2546), 1, aux_sym__literal_repeat1, - ACTIONS(3192), 2, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + STATE(3193), 1, + sym__expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3225), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(668), 2, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3212), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2438), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2872), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2492), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_raw_string, + sym_process_substitution, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2353), 3, + [13918] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1634), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1636), 1, + anon_sym_DOLLAR, + ACTIONS(1640), 1, + anon_sym_DQUOTE, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, + aux_sym_number_token1, + ACTIONS(1646), 1, + aux_sym_number_token2, + ACTIONS(1648), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1650), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1652), 1, + anon_sym_BQUOTE, + ACTIONS(1654), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1660), 1, + sym__bare_dollar, + ACTIONS(1662), 1, + sym__brace_start, + ACTIONS(2636), 1, + anon_sym_LT_LT_LT, + ACTIONS(2638), 1, + sym__special_character, + ACTIONS(2640), 1, + sym_test_operator, + STATE(694), 1, + aux_sym_command_repeat2, + STATE(1461), 1, + aux_sym__literal_repeat1, + STATE(1705), 1, + sym_concatenation, + STATE(1706), 1, + sym_herestring_redirect, + ACTIONS(1620), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3189), 3, - sym_raw_string, + ACTIONS(1628), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1656), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2632), 2, sym_ansi_c_string, sym_word, - STATE(1695), 9, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(2078), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2351), 19, - anon_sym_SEMI, + ACTIONS(1618), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87712,31 +89087,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [13497] = 6, + [14029] = 23, ACTIONS(3), 1, sym_comment, - STATE(1787), 1, - aux_sym__literal_repeat1, - STATE(2251), 1, - sym_concatenation, - ACTIONS(2303), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3238), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3240), 1, + anon_sym_DOLLAR, + ACTIONS(3242), 1, + sym__special_character, + ACTIONS(3244), 1, + anon_sym_DQUOTE, + ACTIONS(3246), 1, + anon_sym_SQUOTE, + ACTIONS(3248), 1, + aux_sym_number_token1, + ACTIONS(3250), 1, + aux_sym_number_token2, + ACTIONS(3252), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3256), 1, + anon_sym_BQUOTE, + ACTIONS(3258), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3264), 1, sym_test_operator, + ACTIONS(3266), 1, sym__brace_start, + ACTIONS(3276), 1, + aux_sym__simple_variable_name_token1, + STATE(2182), 1, + aux_sym__literal_repeat1, + ACTIONS(2540), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(1435), 9, + ACTIONS(3234), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(674), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + STATE(1684), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(2538), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87757,48 +89167,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [14132] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(3280), 1, + anon_sym_SEMI_SEMI, + ACTIONS(3278), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(3226), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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(3224), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - [13565] = 6, + [14199] = 22, ACTIONS(3), 1, sym_comment, - STATE(1792), 1, + ACTIONS(3286), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3288), 1, + anon_sym_DOLLAR, + ACTIONS(3290), 1, + sym__special_character, + ACTIONS(3292), 1, + anon_sym_DQUOTE, + ACTIONS(3294), 1, + anon_sym_SQUOTE, + ACTIONS(3296), 1, + aux_sym_number_token1, + ACTIONS(3298), 1, + aux_sym_number_token2, + ACTIONS(3300), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3302), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3304), 1, + anon_sym_BQUOTE, + ACTIONS(3306), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3310), 1, + sym_test_operator, + ACTIONS(3312), 1, + sym__brace_start, + STATE(2192), 1, aux_sym__literal_repeat1, - STATE(1944), 1, + ACTIONS(3282), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3284), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3308), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(675), 2, sym_concatenation, - ACTIONS(2307), 5, + aux_sym_for_statement_repeat1, + ACTIONS(2160), 3, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1399), 9, + STATE(1559), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(2158), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87808,7 +89297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -87820,80 +89308,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [13633] = 22, + [14300] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3320), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3243), 1, + ACTIONS(3323), 1, anon_sym_DOLLAR, - ACTIONS(3245), 1, + ACTIONS(3326), 1, sym__special_character, - ACTIONS(3247), 1, + ACTIONS(3329), 1, anon_sym_DQUOTE, - ACTIONS(3249), 1, + ACTIONS(3332), 1, + anon_sym_SQUOTE, + ACTIONS(3335), 1, aux_sym_number_token1, - ACTIONS(3251), 1, + ACTIONS(3338), 1, aux_sym_number_token2, - ACTIONS(3253), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3255), 1, + ACTIONS(3344), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, + ACTIONS(3347), 1, anon_sym_BQUOTE, - ACTIONS(3259), 1, + ACTIONS(3350), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3263), 1, + ACTIONS(3356), 1, aux_sym__simple_variable_name_token1, - ACTIONS(3265), 1, + ACTIONS(3359), 1, sym_test_operator, - ACTIONS(3267), 1, + ACTIONS(3362), 1, sym__brace_start, - STATE(2250), 1, + STATE(2182), 1, aux_sym__literal_repeat1, - ACTIONS(2460), 2, + ACTIONS(2585), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3239), 2, + ACTIONS(3314), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3317), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3261), 2, + ACTIONS(3353), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(697), 2, + STATE(674), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(3237), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1593), 9, + STATE(1684), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2458), 20, + ACTIONS(2583), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87914,62 +89388,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [13733] = 21, + [14403] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3273), 1, + ACTIONS(3371), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3275), 1, + ACTIONS(3374), 1, anon_sym_DOLLAR, - ACTIONS(3277), 1, + ACTIONS(3377), 1, sym__special_character, - ACTIONS(3279), 1, + ACTIONS(3380), 1, anon_sym_DQUOTE, - ACTIONS(3281), 1, + ACTIONS(3383), 1, + anon_sym_SQUOTE, + ACTIONS(3386), 1, aux_sym_number_token1, - ACTIONS(3283), 1, + ACTIONS(3389), 1, aux_sym_number_token2, - ACTIONS(3285), 1, + ACTIONS(3392), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3287), 1, + ACTIONS(3395), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3289), 1, + ACTIONS(3398), 1, anon_sym_BQUOTE, - ACTIONS(3291), 1, + ACTIONS(3401), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3295), 1, + ACTIONS(3407), 1, sym_test_operator, - ACTIONS(3297), 1, + ACTIONS(3410), 1, sym__brace_start, - STATE(2234), 1, + STATE(2192), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3271), 2, + ACTIONS(3365), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3368), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3293), 2, + ACTIONS(3404), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(674), 2, + STATE(675), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3269), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1559), 9, + ACTIONS(2170), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1559), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 21, + ACTIONS(2168), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -87980,8 +89457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -87991,62 +89466,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [13831] = 21, + anon_sym_LT_LT_LT, + [14504] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(3228), 1, + anon_sym_SEMI_SEMI, + ACTIONS(3230), 3, + anon_sym_RPAREN, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(3226), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3224), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [14571] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3273), 1, + ACTIONS(3417), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3275), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(3277), 1, + ACTIONS(3421), 1, sym__special_character, - ACTIONS(3279), 1, + ACTIONS(3423), 1, anon_sym_DQUOTE, - ACTIONS(3281), 1, + ACTIONS(3425), 1, + anon_sym_SQUOTE, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(3283), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(3285), 1, + ACTIONS(3431), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3287), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3289), 1, + ACTIONS(3435), 1, anon_sym_BQUOTE, - ACTIONS(3291), 1, + ACTIONS(3437), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3295), 1, + ACTIONS(3441), 1, sym_test_operator, - ACTIONS(3297), 1, + ACTIONS(3443), 1, sym__brace_start, - STATE(2234), 1, + STATE(2246), 1, aux_sym__literal_repeat1, - ACTIONS(2173), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3271), 2, + ACTIONS(3413), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3415), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3293), 2, + ACTIONS(3439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(674), 2, + STATE(679), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3269), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1559), 9, + STATE(1569), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 21, + ACTIONS(2154), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88056,9 +89596,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88068,62 +89607,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [13929] = 21, + anon_sym_LT_LT_LT, + [14672] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3305), 1, + ACTIONS(3417), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3308), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(3311), 1, + ACTIONS(3421), 1, sym__special_character, - ACTIONS(3314), 1, + ACTIONS(3423), 1, anon_sym_DQUOTE, - ACTIONS(3317), 1, + ACTIONS(3425), 1, + anon_sym_SQUOTE, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(3320), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(3323), 1, + ACTIONS(3431), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3326), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3329), 1, + ACTIONS(3435), 1, anon_sym_BQUOTE, - ACTIONS(3332), 1, + ACTIONS(3437), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3338), 1, + ACTIONS(3441), 1, sym_test_operator, - ACTIONS(3341), 1, + ACTIONS(3443), 1, sym__brace_start, - STATE(2234), 1, + STATE(2246), 1, aux_sym__literal_repeat1, - ACTIONS(2183), 2, + ACTIONS(2160), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3302), 2, + ACTIONS(3413), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3415), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3335), 2, + ACTIONS(3439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(674), 2, + STATE(679), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(3299), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1559), 9, + STATE(1569), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 21, + ACTIONS(2158), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88133,9 +89675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88145,61 +89686,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [14027] = 21, + anon_sym_LT_LT_LT, + [14773] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3348), 1, + ACTIONS(3451), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3454), 1, anon_sym_DOLLAR, - ACTIONS(3352), 1, + ACTIONS(3457), 1, sym__special_character, - ACTIONS(3354), 1, + ACTIONS(3460), 1, anon_sym_DQUOTE, - ACTIONS(3356), 1, + ACTIONS(3463), 1, + anon_sym_SQUOTE, + ACTIONS(3466), 1, aux_sym_number_token1, - ACTIONS(3358), 1, + ACTIONS(3469), 1, aux_sym_number_token2, - ACTIONS(3360), 1, + ACTIONS(3472), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3362), 1, + ACTIONS(3475), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3364), 1, + ACTIONS(3478), 1, anon_sym_BQUOTE, - ACTIONS(3366), 1, + ACTIONS(3481), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3370), 1, + ACTIONS(3487), 1, sym_test_operator, - ACTIONS(3372), 1, + ACTIONS(3490), 1, sym__brace_start, - STATE(4547), 1, + STATE(2246), 1, aux_sym__literal_repeat1, - STATE(4929), 1, - sym_concatenation, - ACTIONS(2303), 2, + ACTIONS(2170), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3346), 2, + ACTIONS(3445), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3448), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3368), 2, + ACTIONS(3484), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3344), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4286), 9, + STATE(679), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1569), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 22, + ACTIONS(2168), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88209,9 +89754,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88222,61 +89766,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [14125] = 21, + [14874] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3348), 1, + ACTIONS(3497), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3350), 1, + ACTIONS(3499), 1, anon_sym_DOLLAR, - ACTIONS(3352), 1, + ACTIONS(3501), 1, sym__special_character, - ACTIONS(3354), 1, + ACTIONS(3503), 1, anon_sym_DQUOTE, - ACTIONS(3356), 1, + ACTIONS(3505), 1, + anon_sym_SQUOTE, + ACTIONS(3507), 1, aux_sym_number_token1, - ACTIONS(3358), 1, + ACTIONS(3509), 1, aux_sym_number_token2, - ACTIONS(3360), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3362), 1, + ACTIONS(3513), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3364), 1, + ACTIONS(3515), 1, anon_sym_BQUOTE, - ACTIONS(3366), 1, + ACTIONS(3517), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3372), 1, - sym__brace_start, - ACTIONS(3376), 1, + ACTIONS(3521), 1, sym_test_operator, - STATE(4549), 1, + ACTIONS(3523), 1, + sym__brace_start, + STATE(4618), 1, aux_sym__literal_repeat1, - STATE(4939), 1, + STATE(5016), 1, sym_concatenation, - ACTIONS(2307), 2, + ACTIONS(2408), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3346), 2, + ACTIONS(3493), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3495), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3368), 2, + ACTIONS(3519), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3374), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4295), 9, + STATE(4440), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 22, + ACTIONS(2406), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88286,6 +89832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -88298,158 +89845,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [14223] = 36, - ACTIONS(71), 1, + [14975] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(225), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1111), 1, + ACTIONS(3497), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(3499), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(3501), 1, + sym__special_character, + ACTIONS(3503), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(3505), 1, + anon_sym_SQUOTE, + ACTIONS(3507), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(3509), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(3511), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(3513), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(3515), 1, + anon_sym_BQUOTE, + ACTIONS(3517), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(3523), 1, sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + ACTIONS(3527), 1, sym_test_operator, - ACTIONS(3109), 1, - anon_sym_LPAREN, - ACTIONS(3111), 1, - anon_sym_BANG, - ACTIONS(3117), 1, - anon_sym_TILDE, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(3378), 1, - aux_sym__simple_variable_name_token1, - STATE(2369), 1, - sym_command_substitution, - STATE(2548), 1, + STATE(4620), 1, aux_sym__literal_repeat1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - STATE(3039), 1, - sym__expression, - ACTIONS(1099), 2, + STATE(5021), 1, + sym_concatenation, + ACTIONS(2546), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3495), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(3519), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1183), 2, - sym_raw_string, + ACTIONS(3525), 2, sym_ansi_c_string, - ACTIONS(3113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2427), 4, + sym_word, + STATE(4444), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2530), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, + sym_command_substitution, sym_process_substitution, - STATE(2919), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [14351] = 22, + ACTIONS(2544), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [15076] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3384), 1, + ACTIONS(3533), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3386), 1, + ACTIONS(3535), 1, anon_sym_DOLLAR, - ACTIONS(3388), 1, + ACTIONS(3537), 1, sym__special_character, - ACTIONS(3390), 1, + ACTIONS(3539), 1, anon_sym_DQUOTE, - ACTIONS(3392), 1, + ACTIONS(3541), 1, + anon_sym_SQUOTE, + ACTIONS(3543), 1, aux_sym_number_token1, - ACTIONS(3394), 1, + ACTIONS(3545), 1, aux_sym_number_token2, - ACTIONS(3396), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3398), 1, + ACTIONS(3549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3400), 1, + ACTIONS(3551), 1, anon_sym_BQUOTE, - ACTIONS(3402), 1, + ACTIONS(3553), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3406), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3408), 1, + ACTIONS(3557), 1, sym_test_operator, - ACTIONS(3410), 1, + ACTIONS(3559), 1, sym__brace_start, - STATE(2241), 1, + STATE(2270), 1, aux_sym__literal_repeat1, - ACTIONS(3382), 2, + ACTIONS(2156), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3529), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3531), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3404), 2, + ACTIONS(3555), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(668), 2, + STATE(684), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2460), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3380), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1695), 9, + aux_sym_for_statement_repeat1, + STATE(1718), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2458), 19, + ACTIONS(2154), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88460,6 +89992,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88469,127 +90003,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [14451] = 36, - ACTIONS(71), 1, + [15177] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(171), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1111), 1, + ACTIONS(3533), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(3535), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(3537), 1, + sym__special_character, + ACTIONS(3539), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(3541), 1, + anon_sym_SQUOTE, + ACTIONS(3543), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(3545), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(3547), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(3549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(3551), 1, + anon_sym_BQUOTE, + ACTIONS(3553), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + ACTIONS(3557), 1, sym_test_operator, - ACTIONS(3109), 1, - anon_sym_LPAREN, - ACTIONS(3111), 1, - anon_sym_BANG, - ACTIONS(3117), 1, - anon_sym_TILDE, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(3412), 1, - aux_sym__simple_variable_name_token1, - STATE(2369), 1, - sym_command_substitution, - STATE(2548), 1, + ACTIONS(3559), 1, + sym__brace_start, + STATE(2270), 1, aux_sym__literal_repeat1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - STATE(3038), 1, - sym__expression, - ACTIONS(1099), 2, + ACTIONS(2160), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3529), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3531), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(3555), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2427), 4, + STATE(684), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1718), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2530), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, + sym_command_substitution, sym_process_substitution, - STATE(2897), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [14579] = 8, + ACTIONS(2158), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [15278] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3416), 1, + ACTIONS(3567), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3570), 1, + anon_sym_DOLLAR, + ACTIONS(3573), 1, + sym__special_character, + ACTIONS(3576), 1, anon_sym_DQUOTE, - ACTIONS(3420), 1, - sym_variable_name, - STATE(1573), 1, - sym_string, - ACTIONS(3418), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, - sym_file_descriptor, + ACTIONS(3579), 1, + anon_sym_SQUOTE, + ACTIONS(3582), 1, + aux_sym_number_token1, + ACTIONS(3585), 1, + aux_sym_number_token2, + ACTIONS(3588), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3591), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3594), 1, + anon_sym_BQUOTE, + ACTIONS(3597), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3603), 1, sym_test_operator, + ACTIONS(3606), 1, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3414), 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(1239), 36, + STATE(2270), 1, + aux_sym__literal_repeat1, + ACTIONS(2170), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3561), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3564), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3600), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(684), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1718), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2168), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88600,6 +90150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88609,51 +90161,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [15379] = 37, + ACTIONS(73), 1, + sym_comment, + ACTIONS(175), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3206), 1, + anon_sym_LPAREN, + ACTIONS(3208), 1, + anon_sym_BANG, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(3609), 1, + aux_sym__simple_variable_name_token1, + STATE(2442), 1, + sym_command_substitution, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + STATE(3193), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [14651] = 8, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3212), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2438), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(2859), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2492), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_raw_string, + sym_process_substitution, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [15510] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 1, + ACTIONS(3615), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3617), 1, + anon_sym_DOLLAR, + ACTIONS(3619), 1, + sym__special_character, + ACTIONS(3621), 1, anon_sym_DQUOTE, - ACTIONS(3426), 1, - sym_variable_name, - STATE(1731), 1, - sym_string, - ACTIONS(3424), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, + ACTIONS(3623), 1, + anon_sym_SQUOTE, + ACTIONS(3625), 1, + aux_sym_number_token1, + ACTIONS(3627), 1, + aux_sym_number_token2, + ACTIONS(3629), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3631), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3633), 1, + anon_sym_BQUOTE, + ACTIONS(3635), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3639), 1, sym_test_operator, + ACTIONS(3641), 1, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3422), 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(1227), 36, + STATE(4516), 1, + aux_sym__literal_repeat1, + STATE(5079), 1, + sym_concatenation, + ACTIONS(2408), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3611), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3613), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3637), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4449), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2406), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88664,6 +90322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88673,51 +90333,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [15611] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3615), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3617), 1, + anon_sym_DOLLAR, + ACTIONS(3619), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3621), 1, + anon_sym_DQUOTE, + ACTIONS(3623), 1, + anon_sym_SQUOTE, + ACTIONS(3625), 1, aux_sym_number_token1, + ACTIONS(3627), 1, aux_sym_number_token2, + ACTIONS(3629), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3631), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3633), 1, anon_sym_BQUOTE, + ACTIONS(3635), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3641), 1, + sym__brace_start, + ACTIONS(3645), 1, + sym_test_operator, + STATE(4549), 1, + aux_sym__literal_repeat1, + STATE(5029), 1, + sym_concatenation, + ACTIONS(2546), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3613), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3637), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3643), 2, + sym_ansi_c_string, sym_word, - [14723] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3416), 1, - anon_sym_DQUOTE, - ACTIONS(3420), 1, - sym_variable_name, - STATE(1573), 1, + STATE(4308), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3418), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3414), 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(1227), 36, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2544), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -88728,6 +90401,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -88737,62 +90412,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [15712] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(3278), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(3280), 2, + anon_sym_esac, + anon_sym_SEMI_SEMI, + ACTIONS(3226), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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(3224), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - [14795] = 8, + [15779] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, - anon_sym_DQUOTE, - ACTIONS(1920), 1, - sym_variable_name, - STATE(1090), 1, - sym_string, - ACTIONS(1918), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + STATE(1982), 1, + aux_sym__literal_repeat1, + STATE(2210), 1, + sym_concatenation, + ACTIONS(2546), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(1914), 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(1227), 36, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(1462), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2544), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88801,12 +90521,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -88817,46 +90538,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14867] = 8, + [15848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, - anon_sym_DQUOTE, - ACTIONS(1920), 1, - sym_variable_name, - STATE(1090), 1, - sym_string, - ACTIONS(1918), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + STATE(1873), 1, + aux_sym__literal_repeat1, + STATE(692), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2156), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(1914), 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(1239), 36, + aux_sym_heredoc_redirect_token1, + STATE(1745), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2154), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -88865,12 +90584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -88881,33 +90601,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [14939] = 8, + [15917] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - ACTIONS(3026), 1, - sym_variable_name, - STATE(1747), 1, - sym_string, - ACTIONS(3024), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + STATE(1873), 1, + aux_sym__literal_repeat1, + STATE(692), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2160), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(3020), 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(1239), 37, + aux_sym_heredoc_redirect_token1, + STATE(1745), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2158), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -88918,7 +90637,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -88929,12 +90647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -88945,63 +90664,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [15011] = 21, + [15986] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3163), 1, + ACTIONS(2768), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3165), 1, + ACTIONS(2771), 1, anon_sym_DOLLAR, - ACTIONS(3167), 1, - sym__special_character, - ACTIONS(3169), 1, + ACTIONS(2777), 1, anon_sym_DQUOTE, - ACTIONS(3171), 1, + ACTIONS(2780), 1, + anon_sym_SQUOTE, + ACTIONS(2783), 1, aux_sym_number_token1, - ACTIONS(3173), 1, + ACTIONS(2786), 1, aux_sym_number_token2, - ACTIONS(3175), 1, + ACTIONS(2789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3177), 1, + ACTIONS(2792), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3179), 1, + ACTIONS(2795), 1, anon_sym_BQUOTE, - ACTIONS(3181), 1, + ACTIONS(2798), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3185), 1, - sym_test_operator, - ACTIONS(3187), 1, + ACTIONS(2807), 1, sym__brace_start, - STATE(1945), 1, + ACTIONS(3650), 1, + sym__special_character, + ACTIONS(3653), 1, + sym_test_operator, + STATE(1873), 1, aux_sym__literal_repeat1, - ACTIONS(3161), 2, + ACTIONS(2765), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3183), 2, + ACTIONS(2801), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(688), 2, + ACTIONS(3647), 2, + sym_ansi_c_string, + sym_word, + STATE(692), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2173), 3, + ACTIONS(2170), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(3159), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1574), 9, + STATE(1745), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 20, + ACTIONS(2168), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89022,42 +90743,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [15109] = 6, + [16087] = 27, ACTIONS(3), 1, sym_comment, - STATE(1892), 1, + ACTIONS(1634), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1636), 1, + anon_sym_DOLLAR, + ACTIONS(1640), 1, + anon_sym_DQUOTE, + ACTIONS(1642), 1, + anon_sym_SQUOTE, + ACTIONS(1644), 1, + aux_sym_number_token1, + ACTIONS(1646), 1, + aux_sym_number_token2, + ACTIONS(1648), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1650), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1652), 1, + anon_sym_BQUOTE, + ACTIONS(1654), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1660), 1, + sym__bare_dollar, + ACTIONS(1662), 1, + sym__brace_start, + ACTIONS(2636), 1, + anon_sym_LT_LT_LT, + ACTIONS(2638), 1, + sym__special_character, + ACTIONS(2640), 1, + sym_test_operator, + STATE(694), 1, + aux_sym_command_repeat2, + STATE(1461), 1, aux_sym__literal_repeat1, - STATE(2192), 1, + STATE(1705), 1, sym_concatenation, - ACTIONS(2307), 6, + STATE(1706), 1, + sym_herestring_redirect, + ACTIONS(1624), 2, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1447), 9, + ACTIONS(1628), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1656), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2632), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2634), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(2078), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + ACTIONS(1622), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89067,80 +90827,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [16198] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1527), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1896), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1899), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1905), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1908), 1, + anon_sym_SQUOTE, + ACTIONS(1911), 1, aux_sym_number_token1, + ACTIONS(1914), 1, aux_sym_number_token2, + ACTIONS(1917), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1920), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1923), 1, anon_sym_BQUOTE, + ACTIONS(1926), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1938), 1, + sym__bare_dollar, + ACTIONS(1941), 1, + sym__brace_start, + ACTIONS(3662), 1, + anon_sym_LT_LT_LT, + ACTIONS(3665), 1, + sym__special_character, + ACTIONS(3668), 1, + sym_file_descriptor, + ACTIONS(3671), 1, + sym_test_operator, + STATE(694), 1, + aux_sym_command_repeat2, + STATE(1461), 1, + aux_sym__literal_repeat1, + STATE(1705), 1, + sym_concatenation, + STATE(1706), 1, + sym_herestring_redirect, + ACTIONS(1887), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1929), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3656), 2, + sym_ansi_c_string, sym_word, - [15177] = 21, + ACTIONS(3659), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + STATE(2078), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(1522), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [16311] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 1, + ACTIONS(3286), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3437), 1, + ACTIONS(3288), 1, anon_sym_DOLLAR, - ACTIONS(3440), 1, + ACTIONS(3290), 1, sym__special_character, - ACTIONS(3443), 1, + ACTIONS(3292), 1, anon_sym_DQUOTE, - ACTIONS(3446), 1, + ACTIONS(3294), 1, + anon_sym_SQUOTE, + ACTIONS(3296), 1, aux_sym_number_token1, - ACTIONS(3449), 1, + ACTIONS(3298), 1, aux_sym_number_token2, - ACTIONS(3452), 1, + ACTIONS(3300), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3455), 1, + ACTIONS(3302), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3458), 1, + ACTIONS(3304), 1, anon_sym_BQUOTE, - ACTIONS(3461), 1, + ACTIONS(3306), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3467), 1, + ACTIONS(3310), 1, sym_test_operator, - ACTIONS(3470), 1, + ACTIONS(3312), 1, sym__brace_start, - STATE(1945), 1, + STATE(2192), 1, aux_sym__literal_repeat1, - ACTIONS(3431), 2, + ACTIONS(3282), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3284), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3464), 2, + ACTIONS(3308), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(688), 2, + STATE(675), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2183), 3, + ACTIONS(2156), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3428), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1574), 9, + STATE(1559), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 20, + ACTIONS(2154), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89161,23 +90991,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [15275] = 8, + [16412] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1882), 1, + ACTIONS(2738), 1, anon_sym_DQUOTE, - ACTIONS(3477), 1, + ACTIONS(3678), 1, sym_variable_name, - STATE(1334), 1, + STATE(1589), 1, sym_string, - ACTIONS(3475), 2, + ACTIONS(3676), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3473), 9, + ACTIONS(3674), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -89187,7 +91017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 37, + ACTIONS(1267), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -89214,7 +91044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -89225,98 +91055,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [15347] = 8, + [16484] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1882), 1, - anon_sym_DQUOTE, - ACTIONS(3477), 1, - sym_variable_name, - STATE(1334), 1, - sym_string, - ACTIONS(3475), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3473), 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(1239), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3417), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3419), 1, + anon_sym_DOLLAR, + ACTIONS(3423), 1, + anon_sym_DQUOTE, + ACTIONS(3425), 1, + anon_sym_SQUOTE, + ACTIONS(3427), 1, aux_sym_number_token1, + ACTIONS(3429), 1, aux_sym_number_token2, + ACTIONS(3431), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3435), 1, anon_sym_BQUOTE, + ACTIONS(3437), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3443), 1, + sym__brace_start, + ACTIONS(3682), 1, + sym__special_character, + ACTIONS(3684), 1, + sym_test_operator, + STATE(2246), 1, + aux_sym__literal_repeat1, + ACTIONS(2156), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3680), 2, + sym_ansi_c_string, sym_word, - [15419] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2623), 1, - anon_sym_DQUOTE, - ACTIONS(3483), 1, - sym_variable_name, - STATE(1605), 1, + STATE(699), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1796), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3481), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3479), 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(1227), 37, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2154), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89327,8 +91123,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89338,49 +91132,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + [16584] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3417), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3419), 1, + anon_sym_DOLLAR, + ACTIONS(3423), 1, + anon_sym_DQUOTE, + ACTIONS(3425), 1, + anon_sym_SQUOTE, + ACTIONS(3427), 1, aux_sym_number_token1, + ACTIONS(3429), 1, aux_sym_number_token2, + ACTIONS(3431), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3435), 1, anon_sym_BQUOTE, + ACTIONS(3437), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3443), 1, + sym__brace_start, + ACTIONS(3682), 1, + sym__special_character, + ACTIONS(3684), 1, + sym_test_operator, + STATE(2246), 1, + aux_sym__literal_repeat1, + ACTIONS(2160), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3415), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(3680), 2, + sym_ansi_c_string, sym_word, - [15491] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2623), 1, - anon_sym_DQUOTE, - ACTIONS(3483), 1, - sym_variable_name, - STATE(1605), 1, + STATE(699), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1796), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(3481), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3479), 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(1239), 37, - anon_sym_LPAREN_LPAREN, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2158), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89391,8 +91201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89402,141 +91210,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [15563] = 36, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [16684] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(233), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1111), 1, + ACTIONS(3451), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(3454), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(3460), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(3463), 1, + anon_sym_SQUOTE, + ACTIONS(3466), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(3469), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(3472), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(3475), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(3478), 1, + anon_sym_BQUOTE, + ACTIONS(3481), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(3490), 1, sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1181), 1, + ACTIONS(3689), 1, sym__special_character, - ACTIONS(1185), 1, + ACTIONS(3692), 1, sym_test_operator, - ACTIONS(3109), 1, - anon_sym_LPAREN, - ACTIONS(3111), 1, - anon_sym_BANG, - ACTIONS(3117), 1, - anon_sym_TILDE, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(3485), 1, - aux_sym__simple_variable_name_token1, - STATE(2369), 1, - sym_command_substitution, - STATE(2548), 1, + STATE(2246), 1, aux_sym__literal_repeat1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - STATE(3034), 1, - sym__expression, - ACTIONS(1099), 2, + ACTIONS(2170), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3448), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(3484), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1183), 2, - sym_raw_string, + ACTIONS(3686), 2, sym_ansi_c_string, - ACTIONS(3113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2427), 4, + sym_word, + STATE(699), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1796), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2530), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, + sym_command_substitution, sym_process_substitution, - STATE(2817), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [15691] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3279), 1, - anon_sym_DQUOTE, - ACTIONS(3491), 1, - sym_variable_name, - STATE(1800), 1, - sym_string, - ACTIONS(3489), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3487), 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(1227), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(2168), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89547,8 +91279,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89558,38 +91288,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [15763] = 8, + anon_sym_LT_LT_LT, + [16784] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 1, + ACTIONS(3423), 1, anon_sym_DQUOTE, - ACTIONS(3491), 1, + ACTIONS(3699), 1, sym_variable_name, - STATE(1800), 1, + STATE(2070), 1, sym_string, - ACTIONS(3489), 2, + ACTIONS(3697), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3487), 9, + ACTIONS(3695), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -89599,7 +91315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 37, + ACTIONS(1255), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -89610,9 +91326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89623,10 +91338,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -89637,32 +91353,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [15835] = 6, + [16856] = 22, ACTIONS(3), 1, sym_comment, - STATE(1925), 1, + ACTIONS(3705), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(3709), 1, + sym__special_character, + ACTIONS(3711), 1, + anon_sym_DQUOTE, + ACTIONS(3713), 1, + anon_sym_SQUOTE, + ACTIONS(3715), 1, + aux_sym_number_token1, + ACTIONS(3717), 1, + aux_sym_number_token2, + ACTIONS(3719), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3723), 1, + anon_sym_BQUOTE, + ACTIONS(3725), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3729), 1, + sym_test_operator, + ACTIONS(3731), 1, + sym__brace_start, + STATE(4370), 1, aux_sym__literal_repeat1, - STATE(2253), 1, + STATE(4786), 1, sym_concatenation, - ACTIONS(2303), 6, + ACTIONS(3701), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3703), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3727), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2546), 3, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1407), 9, + STATE(4529), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(2544), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -89683,125 +91431,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [16956] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3745), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(3747), 1, + anon_sym_LT_LT_LT, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, anon_sym_DOLLAR, + ACTIONS(3753), 1, sym__special_character, + ACTIONS(3755), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, aux_sym_number_token1, + ACTIONS(3761), 1, aux_sym_number_token2, + ACTIONS(3763), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, anon_sym_BQUOTE, + ACTIONS(3769), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3773), 1, + sym_file_descriptor, + ACTIONS(3775), 1, + sym_test_operator, + ACTIONS(3777), 1, + sym__brace_start, + STATE(3580), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, + sym_concatenation, + STATE(7434), 1, + sym__heredoc_pipeline, + STATE(7436), 1, + sym__heredoc_expression, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3737), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3739), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3743), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [15903] = 22, + STATE(5603), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [17074] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(3747), 1, + anon_sym_LT_LT_LT, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3502), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(3505), 1, + ACTIONS(3753), 1, sym__special_character, - ACTIONS(3508), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(3511), 1, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(3514), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(3517), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3523), 1, + ACTIONS(3767), 1, anon_sym_BQUOTE, - ACTIONS(3526), 1, + ACTIONS(3769), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3532), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3535), 1, + ACTIONS(3773), 1, + sym_file_descriptor, + ACTIONS(3775), 1, sym_test_operator, - ACTIONS(3538), 1, + ACTIONS(3777), 1, sym__brace_start, - STATE(2250), 1, - aux_sym__literal_repeat1, - ACTIONS(2353), 2, - sym_file_descriptor, + ACTIONS(3779), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(3496), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3529), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(697), 2, + STATE(3581), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3493), 3, - sym_raw_string, + STATE(7449), 1, + sym__heredoc_pipeline, + STATE(7450), 1, + sym__heredoc_expression, + ACTIONS(3733), 2, sym_ansi_c_string, sym_word, - STATE(1593), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2351), 20, - anon_sym_SEMI, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3737), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3739), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3743), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5583), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [16003] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1777), 1, - aux_sym__literal_repeat1, - STATE(701), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1646), 9, + STATE(5161), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 37, + [17192] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2738), 1, + anon_sym_DQUOTE, + ACTIONS(3678), 1, + sym_variable_name, + STATE(1589), 1, + sym_string, + ACTIONS(3676), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3674), 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(1255), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -89813,6 +91643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -89822,13 +91654,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -89839,388 +91669,653 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [16071] = 36, - ACTIONS(71), 1, + [17264] = 36, + ACTIONS(73), 1, sym_comment, - ACTIONS(225), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(243), 1, + sym_word, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(290), 1, + sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1181), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3109), 1, - anon_sym_LPAREN, - ACTIONS(3111), 1, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3781), 1, + anon_sym_LPAREN, + ACTIONS(3783), 1, anon_sym_BANG, - ACTIONS(3117), 1, + ACTIONS(3789), 1, anon_sym_TILDE, - ACTIONS(3119), 1, + ACTIONS(3791), 1, anon_sym_BQUOTE, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(3541), 1, + ACTIONS(3793), 1, aux_sym__simple_variable_name_token1, - STATE(2369), 1, + ACTIONS(3795), 1, + sym_variable_name, + STATE(2522), 1, sym_command_substitution, - STATE(2548), 1, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3216), 1, + sym__expression, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - STATE(3039), 1, - sym__expression, - ACTIONS(1099), 2, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3113), 2, + ACTIONS(3785), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(3115), 2, + ACTIONS(3787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2427), 4, + STATE(2518), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2530), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2927), 4, + STATE(3476), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2674), 6, + STATE(2507), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_raw_string, + sym_process_substitution, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [16199] = 6, + [17392] = 31, ACTIONS(3), 1, sym_comment, - STATE(1777), 1, - aux_sym__literal_repeat1, - STATE(701), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2173), 5, + ACTIONS(3747), 1, + anon_sym_LT_LT_LT, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3753), 1, + sym__special_character, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, + aux_sym_number_token1, + ACTIONS(3761), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, + anon_sym_BQUOTE, + ACTIONS(3769), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3773), 1, sym_file_descriptor, - sym_variable_name, + ACTIONS(3775), 1, sym_test_operator, + ACTIONS(3777), 1, sym__brace_start, + ACTIONS(3797), 1, aux_sym_heredoc_redirect_token1, - STATE(1646), 9, + STATE(3576), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, + sym_concatenation, + STATE(7649), 1, + sym__heredoc_pipeline, + STATE(7650), 1, + sym__heredoc_expression, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3737), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3739), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3743), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5576), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5161), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 37, + [17510] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3747), 1, + anon_sym_LT_LT_LT, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3753), 1, + sym__special_character, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, + aux_sym_number_token1, + ACTIONS(3761), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, + anon_sym_BQUOTE, + ACTIONS(3769), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3773), 1, + sym_file_descriptor, + ACTIONS(3775), 1, + sym_test_operator, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(3799), 1, + aux_sym_heredoc_redirect_token1, + STATE(3630), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, + sym_concatenation, + STATE(7663), 1, + sym__heredoc_pipeline, + STATE(7664), 1, + sym__heredoc_expression, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3737), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3739), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3743), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5578), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [17628] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3747), 1, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, anon_sym_DOLLAR, + ACTIONS(3753), 1, sym__special_character, + ACTIONS(3755), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, aux_sym_number_token1, + ACTIONS(3761), 1, aux_sym_number_token2, + ACTIONS(3763), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, anon_sym_BQUOTE, + ACTIONS(3769), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3773), 1, + sym_file_descriptor, + ACTIONS(3775), 1, + sym_test_operator, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(3801), 1, + aux_sym_heredoc_redirect_token1, + STATE(3585), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, + sym_concatenation, + STATE(7050), 1, + sym__heredoc_pipeline, + STATE(7051), 1, + sym__heredoc_expression, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3737), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3739), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3743), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [16267] = 21, + STATE(5580), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [17746] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 1, + ACTIONS(3747), 1, + anon_sym_LT_LT_LT, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2912), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(2918), 1, + ACTIONS(3753), 1, + sym__special_character, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(2921), 1, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(2924), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(2927), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2930), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2933), 1, + ACTIONS(3767), 1, anon_sym_BQUOTE, - ACTIONS(2936), 1, + ACTIONS(3769), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2945), 1, - sym__brace_start, - ACTIONS(3546), 1, - sym__special_character, - ACTIONS(3549), 1, + ACTIONS(3773), 1, + sym_file_descriptor, + ACTIONS(3775), 1, sym_test_operator, - STATE(1777), 1, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(3803), 1, + aux_sym_heredoc_redirect_token1, + STATE(3618), 1, + aux_sym__heredoc_command, + STATE(5336), 1, aux_sym__literal_repeat1, - ACTIONS(2906), 2, + STATE(5504), 1, + sym_concatenation, + STATE(6860), 1, + sym__heredoc_pipeline, + STATE(6861), 1, + sym__heredoc_expression, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2939), 2, + ACTIONS(3737), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3739), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3743), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(701), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2183), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(3543), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1646), 9, + STATE(5596), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + STATE(5161), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 20, - anon_sym_SEMI, + [17864] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3747), 1, + anon_sym_LT_LT_LT, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3753), 1, + sym__special_character, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, + aux_sym_number_token1, + ACTIONS(3761), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, + anon_sym_BQUOTE, + ACTIONS(3769), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3773), 1, + sym_file_descriptor, + ACTIONS(3775), 1, + sym_test_operator, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(3805), 1, + aux_sym_heredoc_redirect_token1, + STATE(3577), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, + sym_concatenation, + STATE(6864), 1, + sym__heredoc_pipeline, + STATE(6865), 1, + sym__heredoc_expression, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3737), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3739), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3743), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5597), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [16365] = 36, - ACTIONS(71), 1, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [17982] = 36, + ACTIONS(73), 1, sym_comment, - ACTIONS(171), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1171), 1, + ACTIONS(1223), 1, sym_word, - ACTIONS(1181), 1, + ACTIONS(1233), 1, sym__special_character, - ACTIONS(1185), 1, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, sym_test_operator, - ACTIONS(3109), 1, + ACTIONS(3206), 1, anon_sym_LPAREN, - ACTIONS(3111), 1, + ACTIONS(3208), 1, anon_sym_BANG, - ACTIONS(3117), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3119), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(3552), 1, + ACTIONS(3807), 1, aux_sym__simple_variable_name_token1, - STATE(2369), 1, + STATE(2442), 1, sym_command_substitution, - STATE(2548), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2686), 1, + sym__expression, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - STATE(3038), 1, - sym__expression, - ACTIONS(1099), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3113), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(3115), 2, + ACTIONS(3212), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2427), 4, + STATE(2438), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2530), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2876), 4, + STATE(2895), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2674), 6, + STATE(2492), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_raw_string, + sym_process_substitution, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [16493] = 22, + [18110] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3384), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3386), 1, - anon_sym_DOLLAR, - ACTIONS(3388), 1, - sym__special_character, - ACTIONS(3390), 1, + ACTIONS(3539), 1, anon_sym_DQUOTE, - ACTIONS(3392), 1, - aux_sym_number_token1, - ACTIONS(3394), 1, - aux_sym_number_token2, - ACTIONS(3396), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3398), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3400), 1, - anon_sym_BQUOTE, - ACTIONS(3402), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3408), 1, + ACTIONS(3813), 1, + sym_variable_name, + STATE(1880), 1, + sym_string, + ACTIONS(3811), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(3410), 1, sym__brace_start, - ACTIONS(3554), 1, - aux_sym__simple_variable_name_token1, - STATE(2241), 1, - aux_sym__literal_repeat1, - ACTIONS(3382), 2, + ACTIONS(3809), 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(1267), 37, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3404), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(678), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2507), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3380), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1695), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2505), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90231,6 +92326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90240,156 +92337,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [16593] = 36, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [18182] = 36, + ACTIONS(73), 1, sym_comment, - ACTIONS(171), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1171), 1, + ACTIONS(1223), 1, sym_word, - ACTIONS(1181), 1, + ACTIONS(1233), 1, sym__special_character, - ACTIONS(1185), 1, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, sym_test_operator, - ACTIONS(3109), 1, + ACTIONS(3206), 1, anon_sym_LPAREN, - ACTIONS(3111), 1, + ACTIONS(3208), 1, anon_sym_BANG, - ACTIONS(3117), 1, + ACTIONS(3214), 1, anon_sym_TILDE, - ACTIONS(3119), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(3556), 1, + ACTIONS(3815), 1, aux_sym__simple_variable_name_token1, - STATE(2369), 1, + STATE(2442), 1, sym_command_substitution, - STATE(2548), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - STATE(3038), 1, + STATE(2980), 1, + sym__arithmetic_unary_expression, + STATE(3025), 1, sym__expression, - ACTIONS(1099), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3113), 2, + ACTIONS(3210), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(3115), 2, + ACTIONS(3212), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2427), 4, + STATE(2438), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2530), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2824), 4, + STATE(2909), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2674), 6, + STATE(2492), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_raw_string, + sym_process_substitution, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [16721] = 22, + [18310] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3821), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3243), 1, + ACTIONS(3823), 1, anon_sym_DOLLAR, - ACTIONS(3245), 1, + ACTIONS(3825), 1, sym__special_character, - ACTIONS(3247), 1, + ACTIONS(3827), 1, anon_sym_DQUOTE, - ACTIONS(3249), 1, + ACTIONS(3829), 1, + anon_sym_SQUOTE, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(3251), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(3253), 1, + ACTIONS(3835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3255), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, + ACTIONS(3839), 1, anon_sym_BQUOTE, - ACTIONS(3259), 1, + ACTIONS(3841), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3265), 1, + ACTIONS(3845), 1, sym_test_operator, - ACTIONS(3267), 1, + ACTIONS(3847), 1, sym__brace_start, - ACTIONS(3558), 1, - aux_sym__simple_variable_name_token1, - STATE(2250), 1, + STATE(2301), 1, aux_sym__literal_repeat1, - ACTIONS(2507), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3239), 2, + ACTIONS(3817), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3819), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3261), 2, + ACTIONS(3843), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(671), 2, + STATE(719), 2, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3237), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1593), 9, + aux_sym_for_statement_repeat1, + STATE(1809), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2505), 20, + ACTIONS(2154), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90410,79 +92522,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [16821] = 26, + [18410] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1492), 1, + ACTIONS(3821), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(3823), 1, anon_sym_DOLLAR, - ACTIONS(1498), 1, + ACTIONS(3825), 1, + sym__special_character, + ACTIONS(3827), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(3829), 1, + anon_sym_SQUOTE, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(3835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1508), 1, + ACTIONS(3839), 1, anon_sym_BQUOTE, - ACTIONS(1510), 1, + ACTIONS(3841), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1516), 1, - sym__bare_dollar, - ACTIONS(1518), 1, - sym__brace_start, - ACTIONS(2515), 1, - anon_sym_LT_LT_LT, - ACTIONS(2517), 1, - sym__special_character, - ACTIONS(2519), 1, + ACTIONS(3845), 1, sym_test_operator, - STATE(707), 1, - aux_sym_command_repeat2, - STATE(1457), 1, + ACTIONS(3847), 1, + sym__brace_start, + STATE(2301), 1, aux_sym__literal_repeat1, - STATE(1626), 1, - sym_concatenation, - STATE(1633), 1, - sym_herestring_redirect, - ACTIONS(1486), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1512), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1619), 2, + ACTIONS(2160), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2513), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2511), 3, - sym_raw_string, + ACTIONS(3817), 2, sym_ansi_c_string, sym_word, - STATE(1921), 9, + ACTIONS(3819), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3843), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(719), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1809), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1617), 16, + ACTIONS(2158), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90492,80 +92600,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [16929] = 27, + [18510] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1567), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1827), 1, + ACTIONS(3705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1830), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(1836), 1, + ACTIONS(3711), 1, anon_sym_DQUOTE, - ACTIONS(1839), 1, + ACTIONS(3713), 1, + anon_sym_SQUOTE, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(1842), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(1845), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1848), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1851), 1, + ACTIONS(3723), 1, anon_sym_BQUOTE, - ACTIONS(1854), 1, + ACTIONS(3725), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1866), 1, - sym__bare_dollar, - ACTIONS(1869), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(3566), 1, - anon_sym_LT_LT_LT, - ACTIONS(3569), 1, + ACTIONS(3851), 1, sym__special_character, - ACTIONS(3572), 1, - sym_file_descriptor, - ACTIONS(3575), 1, + ACTIONS(3853), 1, sym_test_operator, - STATE(707), 1, - aux_sym_command_repeat2, - STATE(1457), 1, + STATE(4365), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(4762), 1, sym_concatenation, - STATE(1633), 1, - sym_herestring_redirect, - ACTIONS(1818), 2, + ACTIONS(2408), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1857), 2, + ACTIONS(3727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3563), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3560), 3, - sym_raw_string, + ACTIONS(3849), 2, sym_ansi_c_string, sym_word, - STATE(1921), 9, + STATE(4628), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1562), 16, + ACTIONS(2406), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90575,79 +92677,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [17039] = 26, + anon_sym_LT_LT_LT, + [18610] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1492), 1, + ACTIONS(3705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1494), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(1498), 1, + ACTIONS(3711), 1, anon_sym_DQUOTE, - ACTIONS(1500), 1, + ACTIONS(3713), 1, + anon_sym_SQUOTE, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(1504), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1506), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1508), 1, + ACTIONS(3723), 1, anon_sym_BQUOTE, - ACTIONS(1510), 1, + ACTIONS(3725), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1516), 1, - sym__bare_dollar, - ACTIONS(1518), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(2515), 1, - anon_sym_LT_LT_LT, - ACTIONS(2517), 1, + ACTIONS(3851), 1, sym__special_character, - ACTIONS(2519), 1, + ACTIONS(3857), 1, sym_test_operator, - STATE(707), 1, - aux_sym_command_repeat2, - STATE(1457), 1, + STATE(4370), 1, aux_sym__literal_repeat1, - STATE(1626), 1, + STATE(4786), 1, sym_concatenation, - STATE(1633), 1, - sym_herestring_redirect, - ACTIONS(1482), 2, + ACTIONS(2546), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1486), 2, + ACTIONS(3703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1512), 2, + ACTIONS(3727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2513), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2511), 3, - sym_raw_string, + ACTIONS(3855), 2, sym_ansi_c_string, sym_word, - STATE(1921), 9, + STATE(4630), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1480), 16, + ACTIONS(2544), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90657,24 +92755,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [17147] = 8, + anon_sym_LT_LT_LT, + [18710] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 1, + ACTIONS(3539), 1, anon_sym_DQUOTE, - ACTIONS(3426), 1, + ACTIONS(3813), 1, sym_variable_name, - STATE(1731), 1, + STATE(1880), 1, sym_string, - ACTIONS(3424), 2, + ACTIONS(3811), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3422), 9, + ACTIONS(3809), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -90684,7 +92782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 36, + ACTIONS(1255), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -90696,6 +92794,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -90706,11 +92806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -90721,35 +92820,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [17219] = 8, + [18782] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(3865), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3868), 1, + anon_sym_DOLLAR, + ACTIONS(3871), 1, + sym__special_character, + ACTIONS(3874), 1, anon_sym_DQUOTE, - ACTIONS(3584), 1, - sym_variable_name, - STATE(1952), 1, - sym_string, - ACTIONS(3582), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, - sym_file_descriptor, + ACTIONS(3877), 1, + anon_sym_SQUOTE, + ACTIONS(3880), 1, + aux_sym_number_token1, + ACTIONS(3883), 1, + aux_sym_number_token2, + ACTIONS(3886), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3889), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3892), 1, + anon_sym_BQUOTE, + ACTIONS(3895), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3901), 1, sym_test_operator, + ACTIONS(3904), 1, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3578), 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(1239), 35, + STATE(2301), 1, + aux_sym__literal_repeat1, + ACTIONS(2170), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3859), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3862), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3898), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(719), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1809), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2168), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -90759,6 +92887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -90769,230 +92898,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, + [18882] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3913), 1, + anon_sym_DOLLAR, + ACTIONS(3915), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3917), 1, + anon_sym_DQUOTE, + ACTIONS(3919), 1, + anon_sym_SQUOTE, + ACTIONS(3921), 1, aux_sym_number_token1, + ACTIONS(3923), 1, aux_sym_number_token2, + ACTIONS(3925), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3927), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3929), 1, anon_sym_BQUOTE, + ACTIONS(3931), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3935), 1, + sym_test_operator, + ACTIONS(3937), 1, + sym__brace_start, + STATE(2342), 1, + aux_sym__literal_repeat1, + ACTIONS(3907), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3909), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3933), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [17290] = 35, - ACTIONS(71), 1, + STATE(736), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2156), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(2017), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2154), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [18982] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 1, + ACTIONS(3417), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(3423), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(3425), 1, + anon_sym_SQUOTE, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(3431), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(3437), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1181), 1, + ACTIONS(3682), 1, sym__special_character, - ACTIONS(1185), 1, + ACTIONS(3684), 1, sym_test_operator, - ACTIONS(3109), 1, - anon_sym_LPAREN, - ACTIONS(3111), 1, - anon_sym_BANG, - ACTIONS(3117), 1, - anon_sym_TILDE, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(3586), 1, - aux_sym__simple_variable_name_token1, - STATE(2369), 1, - sym_command_substitution, - STATE(2548), 1, + STATE(2246), 1, aux_sym__literal_repeat1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - STATE(3096), 1, - sym__expression, - ACTIONS(1099), 2, + ACTIONS(2156), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3415), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(3439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1183), 2, - sym_raw_string, + ACTIONS(3680), 2, sym_ansi_c_string, - ACTIONS(3113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2427), 4, + sym_word, + STATE(699), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1796), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2530), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, + sym_command_substitution, sym_process_substitution, - STATE(2868), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [17415] = 35, - ACTIONS(71), 1, + ACTIONS(2154), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [19080] = 21, + ACTIONS(3), 1, sym_comment, - ACTIONS(237), 1, - sym_word, - ACTIONS(258), 1, + ACTIONS(3417), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(3423), 1, + anon_sym_DQUOTE, + ACTIONS(3425), 1, + anon_sym_SQUOTE, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(3431), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, + ACTIONS(3437), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, + ACTIONS(3682), 1, sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3588), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_BANG, - ACTIONS(3596), 1, - anon_sym_TILDE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - ACTIONS(3600), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3602), 1, - sym_variable_name, - STATE(2500), 1, - sym_command_substitution, - STATE(2623), 1, + ACTIONS(3684), 1, + sym_test_operator, + STATE(2246), 1, aux_sym__literal_repeat1, - STATE(3126), 1, - sym__expression, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(1153), 2, + ACTIONS(2160), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3415), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, + ACTIONS(3439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3592), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3594), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2498), 4, + ACTIONS(3680), 2, + sym_ansi_c_string, + sym_word, + STATE(699), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1796), 10, sym_arithmetic_expansion, sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2499), 4, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(3254), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [17540] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3390), 1, - anon_sym_DQUOTE, - ACTIONS(3608), 1, - sym_variable_name, - STATE(1816), 1, - sym_string, - ACTIONS(3606), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3604), 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(1239), 35, - anon_sym_LPAREN_LPAREN, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2158), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91012,39 +93128,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [17611] = 8, + [19178] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, + ACTIONS(3941), 1, anon_sym_DQUOTE, - ACTIONS(3616), 1, + ACTIONS(3945), 1, sym_variable_name, - STATE(2249), 1, + STATE(1592), 1, sym_string, - ACTIONS(3614), 2, + ACTIONS(3943), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(3610), 9, + ACTIONS(3939), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91054,19 +93156,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 35, + ACTIONS(1267), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -91075,11 +93178,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -91090,46 +93194,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [17682] = 8, + [19250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, - anon_sym_DQUOTE, - ACTIONS(3616), 1, - sym_variable_name, - STATE(2249), 1, - sym_string, - ACTIONS(3614), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + STATE(1991), 1, + aux_sym__literal_repeat1, + STATE(2237), 1, + sym_concatenation, + ACTIONS(2546), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(3610), 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(1239), 35, + aux_sym_heredoc_redirect_token1, + STATE(1753), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2544), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -91141,8 +93242,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -91153,114 +93256,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [17753] = 35, - ACTIONS(71), 1, + [19318] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(237), 1, + ACTIONS(2680), 1, sym_word, - ACTIONS(258), 1, + ACTIONS(2686), 1, + anon_sym_LT_LT_LT, + ACTIONS(2688), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2690), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(2692), 1, + sym__special_character, + ACTIONS(2694), 1, + anon_sym_DQUOTE, + ACTIONS(2696), 1, + anon_sym_SQUOTE, + ACTIONS(2698), 1, + sym_ansi_c_string, + ACTIONS(2700), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(2702), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(2704), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(2706), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(2708), 1, + anon_sym_BQUOTE, + ACTIONS(2710), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(2714), 1, sym_test_operator, - ACTIONS(284), 1, + ACTIONS(2716), 1, + sym__bare_dollar, + ACTIONS(2718), 1, sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3588), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_BANG, - ACTIONS(3596), 1, - anon_sym_TILDE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(3618), 1, - aux_sym__simple_variable_name_token1, - STATE(2500), 1, - sym_command_substitution, - STATE(2623), 1, + STATE(728), 1, + aux_sym_command_repeat2, + STATE(2460), 1, aux_sym__literal_repeat1, - STATE(3113), 1, - sym__expression, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(1153), 2, + STATE(2601), 1, + sym_concatenation, + STATE(2604), 1, + sym_herestring_redirect, + ACTIONS(2682), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, + ACTIONS(2684), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2712), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3592), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3594), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2498), 4, + ACTIONS(1622), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1624), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(2251), 10, sym_arithmetic_expansion, sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2499), 4, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(3267), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [17878] = 8, + sym_command_substitution, + sym_process_substitution, + [19430] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(1856), 1, anon_sym_DQUOTE, - ACTIONS(3584), 1, + ACTIONS(3951), 1, sym_variable_name, - STATE(1952), 1, + STATE(1400), 1, sym_string, - ACTIONS(3582), 2, + ACTIONS(3949), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3578), 9, + ACTIONS(3947), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91270,7 +93366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 35, + ACTIONS(1267), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -91282,6 +93378,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91295,7 +93393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -91306,259 +93404,280 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [17949] = 21, + [19502] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, + ACTIONS(3747), 1, + anon_sym_LT_LT_LT, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3626), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(3628), 1, + ACTIONS(3753), 1, sym__special_character, - ACTIONS(3630), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(3632), 1, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(3634), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(3636), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3638), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3640), 1, + ACTIONS(3767), 1, anon_sym_BQUOTE, - ACTIONS(3642), 1, + ACTIONS(3769), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3646), 1, + ACTIONS(3773), 1, + sym_file_descriptor, + ACTIONS(3775), 1, sym_test_operator, - ACTIONS(3648), 1, + ACTIONS(3777), 1, sym__brace_start, - STATE(4378), 1, + ACTIONS(3953), 1, + aux_sym_heredoc_redirect_token1, + STATE(3621), 1, + aux_sym__heredoc_command, + STATE(5336), 1, aux_sym__literal_repeat1, - STATE(4788), 1, + STATE(5504), 1, sym_concatenation, - ACTIONS(2303), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3622), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3644), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3620), 3, - sym_raw_string, + STATE(7407), 1, + sym__heredoc_pipeline, + STATE(7476), 1, + sym__heredoc_expression, + ACTIONS(3733), 2, sym_ansi_c_string, sym_word, - STATE(4577), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2301), 21, - anon_sym_SEMI, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3737), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3739), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3743), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5594), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [18046] = 30, - ACTIONS(3), 1, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [19620] = 29, + ACTIONS(73), 1, sym_comment, - ACTIONS(3662), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(3664), 1, + ACTIONS(3955), 1, + sym_word, + ACTIONS(3964), 1, anon_sym_LT_LT_LT, - ACTIONS(3666), 1, + ACTIONS(3967), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(3970), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, + ACTIONS(3973), 1, sym__special_character, - ACTIONS(3672), 1, + ACTIONS(3976), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(3979), 1, + anon_sym_SQUOTE, + ACTIONS(3982), 1, + sym_ansi_c_string, + ACTIONS(3985), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(3988), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(3991), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(3994), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(3997), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(4000), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3688), 1, + ACTIONS(4006), 1, sym_file_descriptor, - ACTIONS(3690), 1, + ACTIONS(4009), 1, sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(4012), 1, + sym__bare_dollar, + ACTIONS(4015), 1, sym__brace_start, - STATE(3553), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + STATE(728), 1, + aux_sym_command_repeat2, + STATE(2460), 1, aux_sym__literal_repeat1, - STATE(5411), 1, + STATE(2601), 1, sym_concatenation, - STATE(7190), 1, - sym__heredoc_pipeline, - STATE(7193), 1, - sym__heredoc_expression, - ACTIONS(3652), 2, + STATE(2604), 1, + sym_herestring_redirect, + ACTIONS(3958), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3654), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3656), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3660), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3686), 2, + ACTIONS(3961), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(4003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5507), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, + ACTIONS(1522), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1527), 9, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5109), 9, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(2251), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [18161] = 20, - ACTIONS(3), 1, + [19734] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - ACTIONS(3032), 1, + ACTIONS(2680), 1, + sym_word, + ACTIONS(2686), 1, + anon_sym_LT_LT_LT, + ACTIONS(2688), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3034), 1, + ACTIONS(2690), 1, anon_sym_DOLLAR, - ACTIONS(3038), 1, + ACTIONS(2692), 1, + sym__special_character, + ACTIONS(2694), 1, + anon_sym_DQUOTE, + ACTIONS(2696), 1, + anon_sym_SQUOTE, + ACTIONS(2698), 1, + sym_ansi_c_string, + ACTIONS(2700), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(2702), 1, aux_sym_number_token2, - ACTIONS(3042), 1, + ACTIONS(2704), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3044), 1, + ACTIONS(2706), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3048), 1, + ACTIONS(2708), 1, + anon_sym_BQUOTE, + ACTIONS(2710), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3054), 1, - sym__brace_start, - ACTIONS(3696), 1, - sym__special_character, - ACTIONS(3698), 1, + ACTIONS(2714), 1, sym_test_operator, - STATE(2006), 1, + ACTIONS(2716), 1, + sym__bare_dollar, + ACTIONS(2718), 1, + sym__brace_start, + STATE(728), 1, + aux_sym_command_repeat2, + STATE(2460), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3030), 2, + STATE(2601), 1, + sym_concatenation, + STATE(2604), 1, + sym_herestring_redirect, + ACTIONS(2682), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3050), 2, + ACTIONS(2684), 2, + anon_sym_EQ_EQ, + anon_sym_EQ_TILDE, + ACTIONS(2712), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(768), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3694), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1858), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1618), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1620), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [18256] = 8, + STATE(2251), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [19846] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(4020), 1, anon_sym_DQUOTE, - ACTIONS(3026), 1, + ACTIONS(4024), 1, sym_variable_name, - STATE(1747), 1, + STATE(1733), 1, sym_string, - ACTIONS(3024), 2, + ACTIONS(4022), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1269), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3020), 9, + ts_builtin_sym_end, + ACTIONS(4018), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91568,7 +93687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 36, + ACTIONS(1267), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -91594,7 +93713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -91605,23 +93724,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18327] = 8, + [19918] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(4020), 1, anon_sym_DQUOTE, - ACTIONS(3026), 1, + ACTIONS(4024), 1, sym_variable_name, - STATE(1747), 1, + STATE(1733), 1, sym_string, - ACTIONS(3024), 2, + ACTIONS(4022), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3020), 9, + ts_builtin_sym_end, + ACTIONS(4018), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -91631,7 +93751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 36, + ACTIONS(1255), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -91657,7 +93777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -91668,145 +93788,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18398] = 30, + [19990] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, - anon_sym_LT_LT_LT, - ACTIONS(3666), 1, + ACTIONS(3238), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(3240), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, - sym__special_character, - ACTIONS(3672), 1, + ACTIONS(3244), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(3246), 1, + anon_sym_SQUOTE, + ACTIONS(3248), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(3250), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(3252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, - anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(3258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3688), 1, - sym_file_descriptor, - ACTIONS(3690), 1, - sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(3266), 1, sym__brace_start, - ACTIONS(3700), 1, - aux_sym_heredoc_redirect_token1, - STATE(3555), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(4028), 1, + sym__special_character, + ACTIONS(4030), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4032), 1, + sym_test_operator, + STATE(2182), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - STATE(7204), 1, - sym__heredoc_pipeline, - STATE(7208), 1, - sym__heredoc_expression, - ACTIONS(3652), 2, + ACTIONS(2368), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3236), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3654), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3656), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3660), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3686), 2, + ACTIONS(3260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, + ACTIONS(4026), 2, sym_ansi_c_string, sym_word, - STATE(5509), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5109), 9, + STATE(738), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + STATE(2052), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [18513] = 20, + ACTIONS(2366), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [20090] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - ACTIONS(3032), 1, + ACTIONS(4038), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3034), 1, + ACTIONS(4040), 1, anon_sym_DOLLAR, - ACTIONS(3038), 1, + ACTIONS(4042), 1, + sym__special_character, + ACTIONS(4044), 1, + anon_sym_DQUOTE, + ACTIONS(4046), 1, + anon_sym_SQUOTE, + ACTIONS(4048), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(4050), 1, aux_sym_number_token2, - ACTIONS(3042), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3044), 1, + ACTIONS(4054), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3048), 1, + ACTIONS(4056), 1, + anon_sym_BQUOTE, + ACTIONS(4058), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3054), 1, - sym__brace_start, - ACTIONS(3696), 1, - sym__special_character, - ACTIONS(3698), 1, + ACTIONS(4062), 1, sym_test_operator, - STATE(2006), 1, + ACTIONS(4064), 1, + sym__brace_start, + STATE(4660), 1, aux_sym__literal_repeat1, - ACTIONS(2173), 2, + STATE(5152), 1, + sym_concatenation, + ACTIONS(2408), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3030), 2, + ACTIONS(4034), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(4036), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3050), 2, + ACTIONS(4060), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(768), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3694), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1858), 9, + STATE(4638), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 21, + ACTIONS(2406), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -91817,6 +93933,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -91826,132 +93944,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [18608] = 30, + [20190] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, - anon_sym_LT_LT_LT, - ACTIONS(3666), 1, + ACTIONS(4038), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(4040), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, + ACTIONS(4042), 1, sym__special_character, - ACTIONS(3672), 1, + ACTIONS(4044), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(4046), 1, + anon_sym_SQUOTE, + ACTIONS(4048), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(4050), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(4052), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(4054), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(4056), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(4058), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3688), 1, - sym_file_descriptor, - ACTIONS(3690), 1, - sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(4064), 1, sym__brace_start, - ACTIONS(3702), 1, - aux_sym_heredoc_redirect_token1, - STATE(3593), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(4068), 1, + sym_test_operator, + STATE(4703), 1, aux_sym__literal_repeat1, - STATE(5411), 1, + STATE(5091), 1, sym_concatenation, - STATE(7418), 1, - sym__heredoc_pipeline, - STATE(7419), 1, - sym__heredoc_expression, - ACTIONS(3652), 2, + ACTIONS(2546), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4036), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3654), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3656), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3660), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3686), 2, + ACTIONS(4060), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, + ACTIONS(4066), 2, sym_ansi_c_string, sym_word, - STATE(5503), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5109), 9, + STATE(4488), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [18723] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1498), 1, - anon_sym_DQUOTE, - ACTIONS(2165), 1, - sym_variable_name, - STATE(1215), 1, - sym_string, - ACTIONS(2163), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ACTIONS(2161), 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(1227), 35, - anon_sym_LPAREN_LPAREN, + ACTIONS(2544), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -91960,61 +94022,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [20290] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3911), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3913), 1, + anon_sym_DOLLAR, + ACTIONS(3915), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3917), 1, + anon_sym_DQUOTE, + ACTIONS(3919), 1, + anon_sym_SQUOTE, + ACTIONS(3921), 1, aux_sym_number_token1, + ACTIONS(3923), 1, aux_sym_number_token2, + ACTIONS(3925), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3927), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3929), 1, anon_sym_BQUOTE, + ACTIONS(3931), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [18794] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1498), 1, - anon_sym_DQUOTE, - ACTIONS(2165), 1, - sym_variable_name, - STATE(1215), 1, - sym_string, - ACTIONS(2163), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, - sym_file_descriptor, + ACTIONS(3935), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(3937), 1, sym__brace_start, - ACTIONS(2161), 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(1239), 35, + STATE(2342), 1, + aux_sym__literal_repeat1, + ACTIONS(3907), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3909), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3933), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(736), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2160), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(2017), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2158), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92023,39 +94100,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [20390] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4076), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4079), 1, + anon_sym_DOLLAR, + ACTIONS(4082), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4085), 1, + anon_sym_DQUOTE, + ACTIONS(4088), 1, + anon_sym_SQUOTE, + ACTIONS(4091), 1, aux_sym_number_token1, + ACTIONS(4094), 1, aux_sym_number_token2, + ACTIONS(4097), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4100), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4103), 1, anon_sym_BQUOTE, + ACTIONS(4106), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4112), 1, + sym_test_operator, + ACTIONS(4115), 1, + sym__brace_start, + STATE(2342), 1, + aux_sym__literal_repeat1, + ACTIONS(4070), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(4073), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4109), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [18865] = 8, + STATE(736), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2170), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(2017), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2168), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [20490] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, + ACTIONS(1856), 1, anon_sym_DQUOTE, - ACTIONS(3710), 1, + ACTIONS(3951), 1, sym_variable_name, - STATE(1942), 1, + STATE(1400), 1, sym_string, - ACTIONS(3708), 2, + ACTIONS(3949), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3704), 9, + ACTIONS(3947), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92065,7 +94204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 36, + ACTIONS(1255), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -92076,8 +94215,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -92091,7 +94231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -92102,35 +94242,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [18936] = 8, + [20562] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, + ACTIONS(3238), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3240), 1, + anon_sym_DOLLAR, + ACTIONS(3244), 1, anon_sym_DQUOTE, - ACTIONS(3716), 1, - sym_variable_name, - STATE(1725), 1, - sym_string, - ACTIONS(3714), 2, + ACTIONS(3246), 1, + anon_sym_SQUOTE, + ACTIONS(3248), 1, + aux_sym_number_token1, + ACTIONS(3250), 1, + aux_sym_number_token2, + ACTIONS(3252), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3258), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3266), 1, + sym__brace_start, + ACTIONS(4028), 1, + sym__special_character, + ACTIONS(4032), 1, + sym_test_operator, + ACTIONS(4118), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + STATE(2182), 1, + aux_sym__literal_repeat1, + ACTIONS(2540), 2, sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3712), 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(1227), 35, + aux_sym_heredoc_redirect_token1, + ACTIONS(3236), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3260), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4026), 2, + sym_ansi_c_string, + sym_word, + STATE(752), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + STATE(2052), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2538), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92150,210 +94319,457 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_BQUOTE, + [20662] = 36, + ACTIONS(73), 1, + sym_comment, + ACTIONS(243), 1, + sym_word, + ACTIONS(264), 1, + anon_sym_DOLLAR, + ACTIONS(272), 1, + aux_sym_number_token1, + ACTIONS(274), 1, + aux_sym_number_token2, + ACTIONS(278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_test_operator, + ACTIONS(292), 1, + sym__brace_start, + ACTIONS(1099), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - sym_raw_string, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1113), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3781), 1, + anon_sym_LPAREN, + ACTIONS(3783), 1, + anon_sym_BANG, + ACTIONS(3789), 1, + anon_sym_TILDE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + ACTIONS(3795), 1, + sym_variable_name, + ACTIONS(4120), 1, + aux_sym__simple_variable_name_token1, + STATE(2522), 1, + sym_command_substitution, + STATE(2653), 1, + aux_sym__literal_repeat1, + STATE(3003), 1, + sym__expression, + STATE(3332), 1, + sym__arithmetic_binary_expression, + STATE(3336), 1, + sym__arithmetic_ternary_expression, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [19007] = 35, - ACTIONS(71), 1, + ACTIONS(3785), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2518), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(3349), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2507), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_raw_string, + sym_process_substitution, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [20790] = 36, + ACTIONS(73), 1, sym_comment, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(243), 1, + sym_word, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(290), 1, + sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1181), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3109), 1, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3781), 1, anon_sym_LPAREN, - ACTIONS(3111), 1, + ACTIONS(3783), 1, anon_sym_BANG, - ACTIONS(3117), 1, + ACTIONS(3789), 1, anon_sym_TILDE, - ACTIONS(3119), 1, + ACTIONS(3791), 1, anon_sym_BQUOTE, - ACTIONS(3123), 1, + ACTIONS(3795), 1, sym_variable_name, - ACTIONS(3718), 1, + ACTIONS(4122), 1, aux_sym__simple_variable_name_token1, - STATE(2369), 1, + STATE(2522), 1, sym_command_substitution, - STATE(2548), 1, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3004), 1, + sym__expression, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - STATE(2995), 1, - sym__expression, - ACTIONS(1099), 2, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3113), 2, + ACTIONS(3785), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(3115), 2, + ACTIONS(3787), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2427), 4, + STATE(2518), 4, sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2530), 4, + STATE(3482), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2507), 5, sym_arithmetic_expansion, sym_brace_expression, sym_translated_string, + sym_raw_string, sym_process_substitution, - STATE(2761), 4, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [20918] = 36, + ACTIONS(73), 1, + sym_comment, + ACTIONS(243), 1, + sym_word, + ACTIONS(264), 1, + anon_sym_DOLLAR, + ACTIONS(272), 1, + aux_sym_number_token1, + ACTIONS(274), 1, + aux_sym_number_token2, + ACTIONS(278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_test_operator, + ACTIONS(292), 1, + sym__brace_start, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, + sym__special_character, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3781), 1, + anon_sym_LPAREN, + ACTIONS(3783), 1, + anon_sym_BANG, + ACTIONS(3789), 1, + anon_sym_TILDE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + ACTIONS(3795), 1, + sym_variable_name, + ACTIONS(4124), 1, + aux_sym__simple_variable_name_token1, + STATE(2522), 1, + sym_command_substitution, + STATE(2653), 1, + aux_sym__literal_repeat1, + STATE(3005), 1, + sym__expression, + STATE(3332), 1, + sym__arithmetic_binary_expression, + STATE(3336), 1, + sym__arithmetic_ternary_expression, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3785), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2518), 4, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + STATE(3297), 4, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, sym__arithmetic_parenthesized_expression, - STATE(2674), 6, + STATE(2507), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_raw_string, + sym_process_substitution, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - [19132] = 27, - ACTIONS(71), 1, + [21046] = 36, + ACTIONS(73), 1, sym_comment, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2651), 1, - anon_sym_LT_LT_LT, - ACTIONS(2653), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2655), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(2657), 1, - sym__special_character, - ACTIONS(2659), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(2665), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(2667), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2669), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2671), 1, - anon_sym_BQUOTE, - ACTIONS(2673), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2677), 1, - sym_test_operator, - ACTIONS(2679), 1, - sym__bare_dollar, - ACTIONS(2681), 1, + ACTIONS(1161), 1, sym__brace_start, - STATE(747), 1, - aux_sym_command_repeat2, - STATE(2425), 1, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3206), 1, + anon_sym_LPAREN, + ACTIONS(3208), 1, + anon_sym_BANG, + ACTIONS(3214), 1, + anon_sym_TILDE, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(4126), 1, + aux_sym__simple_variable_name_token1, + STATE(2442), 1, + sym_command_substitution, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2523), 1, - sym_concatenation, - STATE(2525), 1, - sym_herestring_redirect, - ACTIONS(2647), 2, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + STATE(3011), 1, + sym__expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2649), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2661), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2675), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1617), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2159), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(3210), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3212), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2438), 4, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, - sym_command_substitution, + STATE(2819), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2492), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_raw_string, sym_process_substitution, - ACTIONS(1619), 10, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [21174] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3292), 1, + anon_sym_DQUOTE, + ACTIONS(4132), 1, + sym_variable_name, + STATE(2027), 1, + sym_string, + ACTIONS(4130), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 4, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(4128), 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(1267), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [19241] = 8, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [21246] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(3292), 1, anon_sym_DQUOTE, - ACTIONS(3724), 1, + ACTIONS(4132), 1, sym_variable_name, - STATE(1876), 1, + STATE(2027), 1, sym_string, - ACTIONS(3722), 2, + ACTIONS(4130), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3720), 9, + ts_builtin_sym_end, + ACTIONS(4128), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92363,7 +94779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 36, + ACTIONS(1255), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -92374,7 +94790,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -92386,10 +94801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -92400,23 +94816,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19312] = 8, + [21318] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(2216), 1, anon_sym_DQUOTE, - ACTIONS(3724), 1, + ACTIONS(2220), 1, sym_variable_name, - STATE(1876), 1, + STATE(1093), 1, sym_string, - ACTIONS(3722), 2, + ACTIONS(2218), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1269), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3720), 9, + ACTIONS(2214), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -92426,20 +94843,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 36, + ACTIONS(1267), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -92449,10 +94865,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [21390] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2216), 1, + anon_sym_DQUOTE, + ACTIONS(2220), 1, + sym_variable_name, + STATE(1093), 1, + sym_string, + ACTIONS(2218), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(2214), 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(1255), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -92463,62 +94944,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [19383] = 21, + [21462] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, + ACTIONS(3238), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3626), 1, + ACTIONS(3240), 1, anon_sym_DOLLAR, - ACTIONS(3630), 1, + ACTIONS(3244), 1, anon_sym_DQUOTE, - ACTIONS(3632), 1, + ACTIONS(3246), 1, + anon_sym_SQUOTE, + ACTIONS(3248), 1, aux_sym_number_token1, - ACTIONS(3634), 1, + ACTIONS(3250), 1, aux_sym_number_token2, - ACTIONS(3636), 1, + ACTIONS(3252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3638), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3640), 1, + ACTIONS(3256), 1, anon_sym_BQUOTE, - ACTIONS(3642), 1, + ACTIONS(3258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3648), 1, + ACTIONS(3266), 1, sym__brace_start, - ACTIONS(3728), 1, + ACTIONS(4028), 1, sym__special_character, - ACTIONS(3730), 1, + ACTIONS(4032), 1, sym_test_operator, - STATE(4395), 1, + ACTIONS(4134), 1, + aux_sym__simple_variable_name_token1, + STATE(2182), 1, aux_sym__literal_repeat1, - STATE(4818), 1, - sym_concatenation, - ACTIONS(3622), 2, + ACTIONS(2368), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3236), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3644), 2, + ACTIONS(3260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2307), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3726), 3, - sym_raw_string, + ACTIONS(4026), 2, sym_ansi_c_string, sym_word, - STATE(4586), 9, + STATE(749), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + STATE(2052), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 20, + ACTIONS(2366), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92538,64 +95023,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [19480] = 21, + [21564] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, - anon_sym_DQUOTE, - ACTIONS(3736), 1, + ACTIONS(3705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3738), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(3740), 1, + ACTIONS(3709), 1, sym__special_character, - ACTIONS(3742), 1, + ACTIONS(3711), 1, + anon_sym_DQUOTE, + ACTIONS(3713), 1, + anon_sym_SQUOTE, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(3744), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(3746), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3748), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3750), 1, + ACTIONS(3723), 1, anon_sym_BQUOTE, - ACTIONS(3752), 1, + ACTIONS(3725), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3756), 1, - sym_test_operator, - ACTIONS(3758), 1, + ACTIONS(3731), 1, sym__brace_start, - STATE(2287), 1, + ACTIONS(4138), 1, + sym_test_operator, + STATE(4365), 1, aux_sym__literal_repeat1, - ACTIONS(3734), 2, + STATE(4762), 1, + sym_concatenation, + ACTIONS(3703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3754), 2, + ACTIONS(3727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(752), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 3, + ACTIONS(4136), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2408), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3732), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1780), 9, + STATE(4525), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 19, + ACTIONS(2406), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -92615,502 +95100,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [19577] = 30, + anon_sym_LT_LT_LT, + [21664] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, - anon_sym_LT_LT_LT, - ACTIONS(3666), 1, + ACTIONS(3238), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(3240), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, - sym__special_character, - ACTIONS(3672), 1, + ACTIONS(3244), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(3246), 1, + anon_sym_SQUOTE, + ACTIONS(3248), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(3250), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(3252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(3256), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(3258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3688), 1, - sym_file_descriptor, - ACTIONS(3690), 1, - sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(3266), 1, sym__brace_start, - ACTIONS(3760), 1, - aux_sym_heredoc_redirect_token1, - STATE(3602), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(4028), 1, + sym__special_character, + ACTIONS(4032), 1, + sym_test_operator, + ACTIONS(4118), 1, + aux_sym__simple_variable_name_token1, + STATE(2182), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - STATE(7043), 1, - sym__heredoc_pipeline, - STATE(7059), 1, - sym__heredoc_expression, - ACTIONS(3652), 2, + ACTIONS(2540), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3236), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3654), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3656), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3660), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3686), 2, + ACTIONS(3260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, + ACTIONS(4026), 2, sym_ansi_c_string, sym_word, - STATE(5527), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5109), 9, + STATE(752), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + STATE(2052), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [19692] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3664), 1, - anon_sym_LT_LT_LT, - ACTIONS(3666), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, - anon_sym_DOLLAR, - ACTIONS(3670), 1, - sym__special_character, - ACTIONS(3672), 1, - anon_sym_DQUOTE, - ACTIONS(3674), 1, - aux_sym_number_token1, - ACTIONS(3676), 1, - aux_sym_number_token2, - ACTIONS(3678), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, - anon_sym_BQUOTE, - ACTIONS(3684), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3688), 1, - sym_file_descriptor, - ACTIONS(3690), 1, - sym_test_operator, - ACTIONS(3692), 1, - sym__brace_start, - ACTIONS(3762), 1, - aux_sym_heredoc_redirect_token1, - STATE(3607), 1, - aux_sym__heredoc_command, - STATE(5280), 1, - aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - STATE(7309), 1, - sym__heredoc_expression, - STATE(7670), 1, - sym__heredoc_pipeline, - ACTIONS(3652), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3654), 2, + ACTIONS(2538), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3656), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3660), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3686), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5528), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - STATE(5109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [19807] = 30, - ACTIONS(3), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [21766] = 36, + ACTIONS(73), 1, sym_comment, - ACTIONS(3664), 1, - anon_sym_LT_LT_LT, - ACTIONS(3666), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(243), 1, + sym_word, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, - sym__special_character, - ACTIONS(3672), 1, - anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(3678), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, - anon_sym_BQUOTE, - ACTIONS(3684), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3688), 1, - sym_file_descriptor, - ACTIONS(3690), 1, + ACTIONS(290), 1, sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(3764), 1, - aux_sym_heredoc_redirect_token1, - STATE(3613), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, + sym__special_character, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3781), 1, + anon_sym_LPAREN, + ACTIONS(3783), 1, + anon_sym_BANG, + ACTIONS(3789), 1, + anon_sym_TILDE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + ACTIONS(3795), 1, + sym_variable_name, + ACTIONS(4140), 1, + aux_sym__simple_variable_name_token1, + STATE(2522), 1, + sym_command_substitution, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - STATE(7425), 1, - sym__heredoc_pipeline, - STATE(7426), 1, - sym__heredoc_expression, - ACTIONS(3652), 2, + STATE(3029), 1, + sym__expression, + STATE(3332), 1, + sym__arithmetic_binary_expression, + STATE(3336), 1, + sym__arithmetic_ternary_expression, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3654), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3656), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3660), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3686), 2, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5508), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5109), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(3785), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(3787), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2518), 4, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, - sym_command_substitution, - sym_process_substitution, - [19922] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3664), 1, - anon_sym_LT_LT_LT, - ACTIONS(3666), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, - anon_sym_DOLLAR, - ACTIONS(3670), 1, - sym__special_character, - ACTIONS(3672), 1, - anon_sym_DQUOTE, - ACTIONS(3674), 1, - aux_sym_number_token1, - ACTIONS(3676), 1, - aux_sym_number_token2, - ACTIONS(3678), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, - anon_sym_BQUOTE, - ACTIONS(3684), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3688), 1, - sym_file_descriptor, - ACTIONS(3690), 1, - sym_test_operator, - ACTIONS(3692), 1, - sym__brace_start, - ACTIONS(3766), 1, - aux_sym_heredoc_redirect_token1, - STATE(3564), 1, - aux_sym__heredoc_command, - STATE(5280), 1, - aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - STATE(7368), 1, - sym__heredoc_expression, - STATE(7493), 1, - sym__heredoc_pipeline, - ACTIONS(3652), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3654), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3656), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3660), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3686), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5502), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5109), 9, + STATE(3407), 4, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + STATE(2507), 5, sym_arithmetic_expansion, sym_brace_expression, - sym_string, sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [20037] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3243), 1, - anon_sym_DOLLAR, - ACTIONS(3247), 1, - anon_sym_DQUOTE, - ACTIONS(3249), 1, - aux_sym_number_token1, - ACTIONS(3251), 1, - aux_sym_number_token2, - ACTIONS(3253), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3255), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3259), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3267), 1, - sym__brace_start, - ACTIONS(3770), 1, - sym__special_character, - ACTIONS(3772), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3774), 1, - sym_test_operator, - STATE(2250), 1, - aux_sym__literal_repeat1, - ACTIONS(2460), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3239), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(758), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3768), 3, sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1915), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, sym_process_substitution, - ACTIONS(2458), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [20134] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2129), 1, - anon_sym_DQUOTE, - ACTIONS(3716), 1, - sym_variable_name, - STATE(1725), 1, - sym_string, - ACTIONS(3714), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3712), 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(1239), 35, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [20205] = 8, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + [21894] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, + ACTIONS(3423), 1, anon_sym_DQUOTE, - ACTIONS(3710), 1, + ACTIONS(3699), 1, sym_variable_name, - STATE(1942), 1, + STATE(2070), 1, sym_string, - ACTIONS(3708), 2, + ACTIONS(3697), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3704), 9, + ACTIONS(3695), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -93120,7 +95298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 36, + ACTIONS(1267), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -93143,10 +95321,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -93157,62 +95336,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [20276] = 21, + [21966] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - ACTIONS(3032), 1, + ACTIONS(3320), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3034), 1, + ACTIONS(3323), 1, anon_sym_DOLLAR, - ACTIONS(3038), 1, + ACTIONS(3329), 1, + anon_sym_DQUOTE, + ACTIONS(3332), 1, + anon_sym_SQUOTE, + ACTIONS(3335), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(3338), 1, aux_sym_number_token2, - ACTIONS(3042), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3044), 1, + ACTIONS(3344), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3046), 1, + ACTIONS(3347), 1, anon_sym_BQUOTE, - ACTIONS(3048), 1, + ACTIONS(3350), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3054), 1, + ACTIONS(3362), 1, sym__brace_start, - ACTIONS(3696), 1, + ACTIONS(4145), 1, sym__special_character, - ACTIONS(3698), 1, + ACTIONS(4148), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4151), 1, sym_test_operator, - STATE(2006), 1, + STATE(2182), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(2585), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3030), 2, + ACTIONS(3317), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3050), 2, + ACTIONS(3353), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(768), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3694), 3, - sym_raw_string, + ACTIONS(4142), 2, sym_ansi_c_string, sym_word, - STATE(1858), 9, + STATE(752), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + STATE(2052), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 20, + ACTIONS(2583), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93232,73 +95415,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [20373] = 21, + [22068] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - ACTIONS(3032), 1, + ACTIONS(2122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3034), 1, + ACTIONS(2124), 1, anon_sym_DOLLAR, - ACTIONS(3038), 1, + ACTIONS(2128), 1, + anon_sym_DQUOTE, + ACTIONS(2130), 1, + anon_sym_SQUOTE, + ACTIONS(2132), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(2134), 1, aux_sym_number_token2, - ACTIONS(3042), 1, + ACTIONS(2136), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3044), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3046), 1, + ACTIONS(2140), 1, anon_sym_BQUOTE, - ACTIONS(3048), 1, + ACTIONS(2142), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3054), 1, + ACTIONS(2152), 1, sym__brace_start, - ACTIONS(3696), 1, + ACTIONS(4156), 1, sym__special_character, - ACTIONS(3698), 1, + ACTIONS(4158), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4160), 1, + sym_variable_name, + ACTIONS(4162), 1, sym_test_operator, - STATE(2006), 1, + STATE(1911), 1, aux_sym__literal_repeat1, - ACTIONS(2173), 2, + STATE(6793), 1, + sym_subscript, + ACTIONS(1764), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3030), 2, + ACTIONS(2120), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3050), 2, + ACTIONS(2144), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(768), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3694), 3, - sym_raw_string, + ACTIONS(4154), 2, sym_ansi_c_string, sym_word, - STATE(1858), 9, + STATE(754), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2384), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 20, - anon_sym_SEMI, + ACTIONS(1762), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93308,163 +95496,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [20470] = 35, - ACTIONS(71), 1, - sym_comment, - ACTIONS(237), 1, - sym_word, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3588), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_BANG, - ACTIONS(3596), 1, - anon_sym_TILDE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(3776), 1, - aux_sym__simple_variable_name_token1, - STATE(2500), 1, - sym_command_substitution, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3059), 1, - sym__expression, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3592), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3594), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2498), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2499), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(3251), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [20595] = 21, + [22174] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, + ACTIONS(2122), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3626), 1, + ACTIONS(2124), 1, anon_sym_DOLLAR, - ACTIONS(3628), 1, - sym__special_character, - ACTIONS(3630), 1, + ACTIONS(2128), 1, anon_sym_DQUOTE, - ACTIONS(3632), 1, + ACTIONS(2130), 1, + anon_sym_SQUOTE, + ACTIONS(2132), 1, aux_sym_number_token1, - ACTIONS(3634), 1, + ACTIONS(2134), 1, aux_sym_number_token2, - ACTIONS(3636), 1, + ACTIONS(2136), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3638), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3640), 1, + ACTIONS(2140), 1, anon_sym_BQUOTE, - ACTIONS(3642), 1, + ACTIONS(2142), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3648), 1, + ACTIONS(2152), 1, sym__brace_start, - ACTIONS(3780), 1, + ACTIONS(4156), 1, + sym__special_character, + ACTIONS(4160), 1, + sym_variable_name, + ACTIONS(4162), 1, sym_test_operator, - STATE(4395), 1, + ACTIONS(4164), 1, + aux_sym__simple_variable_name_token1, + STATE(1911), 1, aux_sym__literal_repeat1, - STATE(4818), 1, - sym_concatenation, - ACTIONS(2307), 2, + STATE(6793), 1, + sym_subscript, + ACTIONS(1670), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3622), 2, + ACTIONS(2120), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3644), 2, + ACTIONS(2144), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3778), 3, - sym_raw_string, + ACTIONS(4154), 2, sym_ansi_c_string, sym_word, - STATE(4579), 9, + STATE(756), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2384), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 21, - anon_sym_SEMI, + ACTIONS(1668), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93474,157 +95577,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [20692] = 28, - ACTIONS(71), 1, + [22280] = 31, + ACTIONS(3), 1, sym_comment, - ACTIONS(3782), 1, - sym_word, - ACTIONS(3791), 1, + ACTIONS(3747), 1, anon_sym_LT_LT_LT, - ACTIONS(3794), 1, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3797), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(3800), 1, + ACTIONS(3753), 1, sym__special_character, - ACTIONS(3803), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(3809), 1, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(3812), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(3815), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3818), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3821), 1, + ACTIONS(3767), 1, anon_sym_BQUOTE, - ACTIONS(3824), 1, + ACTIONS(3769), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3830), 1, + ACTIONS(3773), 1, sym_file_descriptor, - ACTIONS(3833), 1, + ACTIONS(3775), 1, sym_test_operator, - ACTIONS(3836), 1, - sym__bare_dollar, - ACTIONS(3839), 1, + ACTIONS(3777), 1, sym__brace_start, - STATE(747), 1, - aux_sym_command_repeat2, - STATE(2425), 1, + ACTIONS(4166), 1, + aux_sym_heredoc_redirect_token1, + STATE(3628), 1, + aux_sym__heredoc_command, + STATE(5336), 1, aux_sym__literal_repeat1, - STATE(2523), 1, + STATE(5504), 1, sym_concatenation, - STATE(2525), 1, - sym_herestring_redirect, - ACTIONS(3785), 2, + STATE(7181), 1, + sym__heredoc_pipeline, + STATE(7182), 1, + sym__heredoc_expression, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3788), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(3806), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(3827), 2, + ACTIONS(3737), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3739), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(3743), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1562), 7, - anon_sym_PIPE, + STATE(5577), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1567), 9, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - STATE(2159), 9, + STATE(5161), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [20803] = 21, + [22398] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(3846), 1, + ACTIONS(2228), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3848), 1, + ACTIONS(2231), 1, anon_sym_DOLLAR, - ACTIONS(3850), 1, - sym__special_character, - ACTIONS(3852), 1, + ACTIONS(2237), 1, anon_sym_DQUOTE, - ACTIONS(3854), 1, + ACTIONS(2240), 1, + anon_sym_SQUOTE, + ACTIONS(2243), 1, aux_sym_number_token1, - ACTIONS(3856), 1, + ACTIONS(2246), 1, aux_sym_number_token2, - ACTIONS(3858), 1, + ACTIONS(2249), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3860), 1, + ACTIONS(2252), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3862), 1, + ACTIONS(2255), 1, anon_sym_BQUOTE, - ACTIONS(3864), 1, + ACTIONS(2258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3868), 1, - sym_test_operator, - ACTIONS(3870), 1, + ACTIONS(2273), 1, sym__brace_start, - STATE(4706), 1, + ACTIONS(4171), 1, + sym__special_character, + ACTIONS(4174), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4177), 1, + sym_variable_name, + ACTIONS(4180), 1, + sym_test_operator, + STATE(1911), 1, aux_sym__literal_repeat1, - STATE(5084), 1, - sym_concatenation, - ACTIONS(2303), 2, + STATE(6793), 1, + sym_subscript, + ACTIONS(1712), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3844), 2, + ACTIONS(2225), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3866), 2, + ACTIONS(2261), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3842), 3, - sym_raw_string, + ACTIONS(4168), 2, sym_ansi_c_string, sym_word, - STATE(4526), 9, + STATE(756), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + STATE(2384), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 21, - anon_sym_SEMI, + ACTIONS(1710), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -93634,140 +95745,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [20900] = 22, + [22504] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3747), 1, + anon_sym_LT_LT_LT, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3243), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(3247), 1, + ACTIONS(3753), 1, + sym__special_character, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(3249), 1, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(3251), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(3253), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3255), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, + ACTIONS(3767), 1, anon_sym_BQUOTE, - ACTIONS(3259), 1, + ACTIONS(3769), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3267), 1, - sym__brace_start, - ACTIONS(3770), 1, - sym__special_character, - ACTIONS(3774), 1, - sym_test_operator, - ACTIONS(3872), 1, - aux_sym__simple_variable_name_token1, - STATE(2250), 1, - aux_sym__literal_repeat1, - ACTIONS(2507), 2, + ACTIONS(3773), 1, sym_file_descriptor, + ACTIONS(3775), 1, + sym_test_operator, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(4183), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(3239), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3261), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(753), 2, + STATE(3635), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3768), 3, - sym_raw_string, + STATE(7190), 1, + sym__heredoc_pipeline, + STATE(7191), 1, + sym__heredoc_expression, + ACTIONS(3733), 2, sym_ansi_c_string, sym_word, - STATE(1915), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2505), 19, - anon_sym_SEMI, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3737), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3739), 2, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_PIPE_AMP, + ACTIONS(3743), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5579), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [20999] = 21, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [22622] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, - anon_sym_DQUOTE, - ACTIONS(3736), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3738), 1, - anon_sym_DOLLAR, - ACTIONS(3740), 1, - sym__special_character, - ACTIONS(3742), 1, - aux_sym_number_token1, - ACTIONS(3744), 1, - aux_sym_number_token2, - ACTIONS(3746), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3748), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3750), 1, - anon_sym_BQUOTE, - ACTIONS(3752), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3756), 1, - sym_test_operator, - ACTIONS(3758), 1, - sym__brace_start, - STATE(2287), 1, + STATE(1938), 1, aux_sym__literal_repeat1, - ACTIONS(3734), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3754), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(752), 2, + STATE(2240), 1, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2173), 3, + ACTIONS(2408), 5, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3732), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1780), 9, + STATE(1748), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 19, + ACTIONS(2406), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93787,23 +95877,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [21096] = 8, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [22690] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(3941), 1, anon_sym_DQUOTE, - ACTIONS(3878), 1, + ACTIONS(3945), 1, sym_variable_name, - STATE(1683), 1, + STATE(1592), 1, sym_string, - ACTIONS(3876), 2, + ACTIONS(3943), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3874), 9, + ACTIONS(3939), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -93813,7 +95920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 36, + ACTIONS(1255), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -93836,10 +95943,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -93850,63 +95958,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [21167] = 21, + [22762] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3889), 1, - anon_sym_DOLLAR, - ACTIONS(3892), 1, - sym__special_character, - ACTIONS(3895), 1, + ACTIONS(3941), 1, anon_sym_DQUOTE, - ACTIONS(3898), 1, - aux_sym_number_token1, - ACTIONS(3901), 1, - aux_sym_number_token2, - ACTIONS(3904), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3907), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3910), 1, - anon_sym_BQUOTE, - ACTIONS(3913), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3919), 1, + ACTIONS(3945), 1, + sym_variable_name, + STATE(1592), 1, + sym_string, + ACTIONS(3943), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(3922), 1, sym__brace_start, - STATE(2287), 1, - aux_sym__literal_repeat1, - ACTIONS(3883), 2, + ACTIONS(3939), 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(1267), 36, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3916), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(752), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2183), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(3880), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1780), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2181), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -93926,64 +96005,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [21264] = 22, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [22833] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3821), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3243), 1, + ACTIONS(3823), 1, anon_sym_DOLLAR, - ACTIONS(3247), 1, + ACTIONS(3827), 1, anon_sym_DQUOTE, - ACTIONS(3249), 1, + ACTIONS(3829), 1, + anon_sym_SQUOTE, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(3251), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(3253), 1, + ACTIONS(3835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3255), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, - anon_sym_BQUOTE, - ACTIONS(3259), 1, + ACTIONS(3841), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3267), 1, + ACTIONS(3847), 1, sym__brace_start, - ACTIONS(3770), 1, + ACTIONS(4187), 1, sym__special_character, - ACTIONS(3772), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3774), 1, + ACTIONS(4189), 1, sym_test_operator, - STATE(2250), 1, + STATE(2301), 1, aux_sym__literal_repeat1, - ACTIONS(2460), 2, + ACTIONS(2160), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3239), 2, + ACTIONS(3819), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3261), 2, + ACTIONS(3843), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(758), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3768), 3, - sym_raw_string, + ACTIONS(4185), 2, sym_ansi_c_string, sym_word, - STATE(1915), 9, + STATE(781), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2236), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2458), 19, + ACTIONS(2158), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94003,61 +96096,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [21363] = 21, + anon_sym_BQUOTE, + [22930] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3846), 1, + ACTIONS(3705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3848), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(3850), 1, - sym__special_character, - ACTIONS(3852), 1, + ACTIONS(3711), 1, anon_sym_DQUOTE, - ACTIONS(3854), 1, + ACTIONS(3713), 1, + anon_sym_SQUOTE, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(3856), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(3858), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3860), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3862), 1, - anon_sym_BQUOTE, - ACTIONS(3864), 1, + ACTIONS(3725), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3870), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(3927), 1, + ACTIONS(4193), 1, + sym__special_character, + ACTIONS(4195), 1, sym_test_operator, - STATE(4714), 1, + STATE(4365), 1, aux_sym__literal_repeat1, - STATE(5095), 1, + STATE(4762), 1, sym_concatenation, - ACTIONS(2307), 2, + ACTIONS(2408), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3844), 2, + ACTIONS(3703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3866), 2, + ACTIONS(3727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3925), 3, - sym_raw_string, + ACTIONS(4191), 2, sym_ansi_c_string, sym_word, - STATE(4533), 9, + STATE(4648), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 21, + ACTIONS(2406), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94068,8 +96162,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94079,105 +96171,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [21460] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2645), 1, - sym_word, - ACTIONS(2651), 1, anon_sym_LT_LT_LT, - ACTIONS(2653), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2655), 1, - anon_sym_DOLLAR, - ACTIONS(2657), 1, - sym__special_character, - ACTIONS(2659), 1, - anon_sym_DQUOTE, - ACTIONS(2663), 1, - aux_sym_number_token1, - ACTIONS(2665), 1, - aux_sym_number_token2, - ACTIONS(2667), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2669), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2671), 1, anon_sym_BQUOTE, - ACTIONS(2673), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2677), 1, - sym_test_operator, - ACTIONS(2679), 1, - sym__bare_dollar, - ACTIONS(2681), 1, - sym__brace_start, - STATE(747), 1, - aux_sym_command_repeat2, - STATE(2425), 1, - aux_sym__literal_repeat1, - STATE(2523), 1, - sym_concatenation, - STATE(2525), 1, - sym_herestring_redirect, - ACTIONS(2647), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2649), 2, - anon_sym_EQ_EQ, - anon_sym_EQ_TILDE, - ACTIONS(2661), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2675), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1480), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2159), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1482), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [21569] = 8, + [23027] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(3878), 1, + ACTIONS(2404), 1, sym_variable_name, - STATE(1683), 1, + STATE(1269), 1, sym_string, - ACTIONS(3876), 2, + ACTIONS(2402), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1269), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3874), 9, + ACTIONS(2400), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -94187,20 +96200,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 36, + ACTIONS(1267), 35, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -94210,10 +96221,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -94224,149 +96236,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [21640] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3664), 1, - anon_sym_LT_LT_LT, - ACTIONS(3666), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, - anon_sym_DOLLAR, - ACTIONS(3670), 1, - sym__special_character, - ACTIONS(3672), 1, - anon_sym_DQUOTE, - ACTIONS(3674), 1, - aux_sym_number_token1, - ACTIONS(3676), 1, - aux_sym_number_token2, - ACTIONS(3678), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, - anon_sym_BQUOTE, - ACTIONS(3684), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3688), 1, - sym_file_descriptor, - ACTIONS(3690), 1, - sym_test_operator, - ACTIONS(3692), 1, - sym__brace_start, - ACTIONS(3929), 1, - aux_sym_heredoc_redirect_token1, - STATE(3548), 1, - aux_sym__heredoc_command, - STATE(5280), 1, - aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - STATE(6955), 1, - sym__heredoc_pipeline, - STATE(6958), 1, - sym__heredoc_expression, - ACTIONS(3652), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3654), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3656), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3660), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3686), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5546), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [21755] = 22, + [23098] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3499), 1, + ACTIONS(3705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3502), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(3508), 1, + ACTIONS(3711), 1, anon_sym_DQUOTE, - ACTIONS(3511), 1, + ACTIONS(3713), 1, + anon_sym_SQUOTE, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(3514), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(3517), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3523), 1, - anon_sym_BQUOTE, - ACTIONS(3526), 1, + ACTIONS(3725), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3538), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(3934), 1, + ACTIONS(4193), 1, sym__special_character, - ACTIONS(3937), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3940), 1, + ACTIONS(4199), 1, sym_test_operator, - STATE(2250), 1, + STATE(4370), 1, aux_sym__literal_repeat1, - ACTIONS(2353), 2, + STATE(4786), 1, + sym_concatenation, + ACTIONS(2546), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3496), 2, + ACTIONS(3703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3529), 2, + ACTIONS(3727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(758), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3931), 3, - sym_raw_string, + ACTIONS(4197), 2, sym_ansi_c_string, sym_word, - STATE(1915), 9, + STATE(4650), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2351), 19, + ACTIONS(2544), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94386,237 +96310,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [21854] = 30, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [23195] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, - anon_sym_LT_LT_LT, - ACTIONS(3666), 1, + ACTIONS(4205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, + ACTIONS(4209), 1, sym__special_character, - ACTIONS(3672), 1, + ACTIONS(4211), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(4213), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(4223), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(4225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3688), 1, - sym_file_descriptor, - ACTIONS(3690), 1, + ACTIONS(4229), 1, sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(3943), 1, - aux_sym_heredoc_redirect_token1, - STATE(3556), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + STATE(4468), 1, aux_sym__literal_repeat1, - STATE(5411), 1, + STATE(5078), 1, sym_concatenation, - STATE(6980), 1, - sym__heredoc_pipeline, - STATE(6982), 1, - sym__heredoc_expression, - ACTIONS(3652), 2, + ACTIONS(2408), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4201), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(4203), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3654), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3656), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3660), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3686), 2, + ACTIONS(4227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5524), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5109), 9, + STATE(4834), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [21969] = 35, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3109), 1, - anon_sym_LPAREN, - ACTIONS(3111), 1, - anon_sym_BANG, - ACTIONS(3117), 1, - anon_sym_TILDE, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(3945), 1, - aux_sym__simple_variable_name_token1, - STATE(2369), 1, - sym_command_substitution, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2685), 1, - sym__expression, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1183), 2, sym_raw_string, - sym_ansi_c_string, - ACTIONS(3113), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3115), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2427), 4, - sym_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(2530), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, + sym_command_substitution, sym_process_substitution, - STATE(2844), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [22094] = 21, + ACTIONS(2406), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [23294] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3953), 1, + ACTIONS(4205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3956), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(3959), 1, + ACTIONS(4209), 1, sym__special_character, - ACTIONS(3962), 1, + ACTIONS(4211), 1, anon_sym_DQUOTE, - ACTIONS(3965), 1, + ACTIONS(4213), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(3968), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(3971), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3974), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3977), 1, + ACTIONS(4223), 1, anon_sym_BQUOTE, - ACTIONS(3980), 1, + ACTIONS(4225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3986), 1, - sym_test_operator, - ACTIONS(3989), 1, + ACTIONS(4231), 1, sym__brace_start, - STATE(2307), 1, + ACTIONS(4235), 1, + sym_test_operator, + STATE(4479), 1, aux_sym__literal_repeat1, - ACTIONS(2183), 2, + STATE(4941), 1, + sym_concatenation, + ACTIONS(2546), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3950), 2, + ACTIONS(4203), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3983), 2, + ACTIONS(4227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(761), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3947), 3, - sym_raw_string, + ACTIONS(4233), 2, sym_ansi_c_string, sym_word, - STATE(1836), 9, + STATE(4838), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 20, + ACTIONS(2544), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94637,62 +96466,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [22191] = 21, + [23393] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, + ACTIONS(3244), 1, anon_sym_DQUOTE, - ACTIONS(3996), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3998), 1, - anon_sym_DOLLAR, - ACTIONS(4000), 1, - sym__special_character, - ACTIONS(4002), 1, - aux_sym_number_token1, - ACTIONS(4004), 1, - aux_sym_number_token2, - ACTIONS(4006), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4008), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4010), 1, - anon_sym_BQUOTE, - ACTIONS(4012), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4016), 1, + ACTIONS(4241), 1, + sym_variable_name, + STATE(1852), 1, + sym_string, + ACTIONS(4239), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(4018), 1, sym__brace_start, - STATE(2307), 1, - aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3994), 2, + ACTIONS(4237), 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(1267), 36, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4014), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(761), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3992), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(1836), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -94713,76 +96514,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [22288] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2036), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(2038), 1, - anon_sym_DOLLAR, - ACTIONS(2042), 1, - anon_sym_DQUOTE, - ACTIONS(2044), 1, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(2048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2052), 1, anon_sym_BQUOTE, - ACTIONS(2054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2064), 1, - sym__brace_start, - ACTIONS(4022), 1, - sym__special_character, - ACTIONS(4024), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4026), 1, - sym_variable_name, - ACTIONS(4028), 1, - sym_test_operator, - STATE(1786), 1, - aux_sym__literal_repeat1, - STATE(6787), 1, - sym_subscript, - ACTIONS(1690), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2034), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2056), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4020), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(765), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(2326), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [23464] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3827), 1, + anon_sym_DQUOTE, + ACTIONS(4247), 1, + sym_variable_name, + STATE(2209), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1688), 16, + ACTIONS(4245), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4243), 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(1267), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94792,166 +96577,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [22391] = 35, - ACTIONS(71), 1, - sym_comment, - ACTIONS(237), 1, - sym_word, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(270), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [23535] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4251), 1, + anon_sym_DQUOTE, + ACTIONS(4255), 1, + sym_variable_name, + STATE(2105), 1, + sym_string, + ACTIONS(4253), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(284), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3588), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(4249), 9, + anon_sym_DASH, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(3596), 1, - anon_sym_TILDE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(4030), 1, - aux_sym__simple_variable_name_token1, - STATE(2500), 1, - sym_command_substitution, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(2983), 1, - sym__expression, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(1153), 2, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1267), 35, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, sym_ansi_c_string, - ACTIONS(1169), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3592), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3594), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2498), 4, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2499), 4, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - STATE(3271), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [22516] = 24, + sym_word, + [23606] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2038), 1, - anon_sym_DOLLAR, - ACTIONS(2042), 1, + ACTIONS(4251), 1, anon_sym_DQUOTE, - ACTIONS(2044), 1, + ACTIONS(4255), 1, + sym_variable_name, + STATE(2105), 1, + sym_string, + ACTIONS(4253), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(4249), 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(1255), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(2048), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2052), 1, anon_sym_BQUOTE, - ACTIONS(2054), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2064), 1, - sym__brace_start, - ACTIONS(4022), 1, - sym__special_character, - ACTIONS(4026), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [23677] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 1, + anon_sym_DQUOTE, + ACTIONS(4261), 1, sym_variable_name, - ACTIONS(4028), 1, - sym_test_operator, - ACTIONS(4032), 1, + STATE(2125), 1, + sym_string, + ACTIONS(4259), 2, aux_sym__simple_variable_name_token1, - STATE(1786), 1, - aux_sym__literal_repeat1, - STATE(6787), 1, - sym_subscript, - ACTIONS(1724), 2, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 4, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2034), 2, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(4257), 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(1267), 35, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2056), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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(4020), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(770), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - STATE(2326), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [23748] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3917), 1, + anon_sym_DQUOTE, + ACTIONS(4261), 1, + sym_variable_name, + STATE(2125), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1722), 16, + ACTIONS(4259), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + ACTIONS(4257), 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(1255), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -94961,62 +96829,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [22619] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3706), 1, - anon_sym_DQUOTE, - ACTIONS(3996), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3998), 1, - anon_sym_DOLLAR, - ACTIONS(4000), 1, sym__special_character, - ACTIONS(4002), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(4006), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4010), 1, anon_sym_BQUOTE, - ACTIONS(4012), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4016), 1, - sym_test_operator, - ACTIONS(4018), 1, - sym__brace_start, - STATE(2307), 1, - aux_sym__literal_repeat1, - ACTIONS(2173), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3994), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4014), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(761), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(3992), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1836), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [23819] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_DQUOTE, + ACTIONS(4267), 1, + sym_variable_name, + STATE(1617), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2171), 20, + ACTIONS(4265), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4263), 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(1267), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95037,62 +96892,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [22716] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3241), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3243), 1, - anon_sym_DOLLAR, - ACTIONS(3247), 1, - anon_sym_DQUOTE, - ACTIONS(3249), 1, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3251), 1, aux_sym_number_token2, - ACTIONS(3253), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3255), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3259), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3267), 1, - sym__brace_start, - ACTIONS(3770), 1, - sym__special_character, - ACTIONS(3774), 1, - sym_test_operator, - ACTIONS(4034), 1, - aux_sym__simple_variable_name_token1, - STATE(2250), 1, - aux_sym__literal_repeat1, - ACTIONS(2507), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3239), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3261), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(740), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(3768), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1915), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [23890] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_DQUOTE, + ACTIONS(4267), 1, + sym_variable_name, + STATE(1617), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2505), 20, + ACTIONS(4265), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4263), 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(1255), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95102,6 +96944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -95112,63 +96955,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [22813] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3062), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3065), 1, - anon_sym_DOLLAR, - ACTIONS(3071), 1, - anon_sym_DQUOTE, - ACTIONS(3074), 1, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3077), 1, aux_sym_number_token2, - ACTIONS(3080), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3083), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3086), 1, anon_sym_BQUOTE, - ACTIONS(3089), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3098), 1, - sym__brace_start, - ACTIONS(4039), 1, - sym__special_character, - ACTIONS(4042), 1, - sym_test_operator, - STATE(2006), 1, - aux_sym__literal_repeat1, - ACTIONS(2183), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3059), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3092), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(768), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4036), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(1858), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [23961] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3423), 1, + anon_sym_DQUOTE, + ACTIONS(3699), 1, + sym_variable_name, + STATE(2070), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2181), 20, + ACTIONS(3697), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(3695), 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(1267), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95188,63 +97017,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [22910] = 21, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [24032] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, + ACTIONS(3821), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3626), 1, + ACTIONS(3823), 1, anon_sym_DOLLAR, - ACTIONS(3630), 1, + ACTIONS(3827), 1, anon_sym_DQUOTE, - ACTIONS(3632), 1, + ACTIONS(3829), 1, + anon_sym_SQUOTE, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(3634), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(3636), 1, + ACTIONS(3835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3638), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3640), 1, + ACTIONS(3839), 1, anon_sym_BQUOTE, - ACTIONS(3642), 1, + ACTIONS(3841), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3648), 1, + ACTIONS(3847), 1, sym__brace_start, - ACTIONS(3728), 1, + ACTIONS(4187), 1, sym__special_character, - ACTIONS(4047), 1, + ACTIONS(4189), 1, sym_test_operator, - STATE(4378), 1, + STATE(2301), 1, aux_sym__literal_repeat1, - STATE(4788), 1, - sym_concatenation, - ACTIONS(3622), 2, + ACTIONS(2160), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3819), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3644), 2, + ACTIONS(3843), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2303), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4045), 3, - sym_raw_string, + ACTIONS(4185), 2, sym_ansi_c_string, sym_word, - STATE(4573), 9, + STATE(781), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2236), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 20, + ACTIONS(2158), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95264,103 +97110,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [23007] = 24, - ACTIONS(3), 1, + [24131] = 26, + ACTIONS(73), 1, sym_comment, - ACTIONS(2072), 1, + ACTIONS(4269), 1, + sym_word, + ACTIONS(4273), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2075), 1, + ACTIONS(4275), 1, anon_sym_DOLLAR, - ACTIONS(2081), 1, + ACTIONS(4277), 1, + sym__special_character, + ACTIONS(4279), 1, anon_sym_DQUOTE, - ACTIONS(2084), 1, + ACTIONS(4281), 1, + anon_sym_SQUOTE, + ACTIONS(4283), 1, + sym_ansi_c_string, + ACTIONS(4285), 1, aux_sym_number_token1, - ACTIONS(2087), 1, + ACTIONS(4287), 1, aux_sym_number_token2, - ACTIONS(2090), 1, + ACTIONS(4289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2093), 1, + ACTIONS(4291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2096), 1, + ACTIONS(4293), 1, anon_sym_BQUOTE, - ACTIONS(2099), 1, + ACTIONS(4295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2114), 1, - sym__brace_start, - ACTIONS(4052), 1, - sym__special_character, - ACTIONS(4055), 1, + ACTIONS(4299), 1, aux_sym__simple_variable_name_token1, - ACTIONS(4058), 1, + ACTIONS(4301), 1, sym_variable_name, - ACTIONS(4061), 1, + ACTIONS(4303), 1, sym_test_operator, - STATE(1786), 1, + ACTIONS(4305), 1, + sym__brace_start, + STATE(2689), 1, aux_sym__literal_repeat1, - STATE(6787), 1, + STATE(6806), 1, sym_subscript, - ACTIONS(1637), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2069), 2, + ACTIONS(4271), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2102), 2, + ACTIONS(4297), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4049), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(770), 3, + STATE(783), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - STATE(2326), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1635), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1668), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1670), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [23110] = 8, + STATE(2456), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [24238] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, + ACTIONS(3827), 1, anon_sym_DQUOTE, - ACTIONS(3107), 1, + ACTIONS(4247), 1, sym_variable_name, - STATE(1501), 1, + STATE(2209), 1, sym_string, - ACTIONS(3105), 2, + ACTIONS(4245), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3101), 9, + ACTIONS(4243), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -95370,7 +97217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 36, + ACTIONS(1255), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95381,6 +97228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -95392,11 +97240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -95407,23 +97254,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23181] = 8, + [24309] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, + ACTIONS(1640), 1, anon_sym_DQUOTE, - ACTIONS(3107), 1, + ACTIONS(2404), 1, sym_variable_name, - STATE(1501), 1, + STATE(1269), 1, sym_string, - ACTIONS(3105), 2, + ACTIONS(2402), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3101), 9, + ACTIONS(2400), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -95433,19 +97281,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 36, + ACTIONS(1255), 35, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -95459,7 +97306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -95470,24 +97317,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23252] = 8, + [24380] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3390), 1, + ACTIONS(3941), 1, anon_sym_DQUOTE, - ACTIONS(3608), 1, + ACTIONS(3945), 1, sym_variable_name, - STATE(1816), 1, + STATE(1592), 1, sym_string, - ACTIONS(3606), 2, + ACTIONS(3943), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - ACTIONS(3604), 9, + ACTIONS(3939), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -95497,7 +97343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 35, + ACTIONS(1255), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -95519,10 +97365,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -95533,116 +97380,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23323] = 30, + [24451] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, - anon_sym_LT_LT_LT, - ACTIONS(3666), 1, + ACTIONS(3865), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(3868), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, - sym__special_character, - ACTIONS(3672), 1, + ACTIONS(3874), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(3877), 1, + anon_sym_SQUOTE, + ACTIONS(3880), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(3883), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(3886), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(3889), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(3892), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(3895), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3688), 1, - sym_file_descriptor, - ACTIONS(3690), 1, - sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(3904), 1, sym__brace_start, - ACTIONS(4064), 1, - aux_sym_heredoc_redirect_token1, - STATE(3562), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(4310), 1, + sym__special_character, + ACTIONS(4313), 1, + sym_test_operator, + STATE(2301), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - STATE(6998), 1, - sym__heredoc_pipeline, - STATE(7053), 1, - sym__heredoc_expression, - ACTIONS(3652), 2, + ACTIONS(2170), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3862), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3654), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3656), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(3660), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(3686), 2, + ACTIONS(3898), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, + ACTIONS(4307), 2, sym_ansi_c_string, sym_word, - STATE(5544), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - STATE(5109), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [23438] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1787), 1, - aux_sym__literal_repeat1, - STATE(2251), 1, + STATE(781), 2, sym_concatenation, - ACTIONS(2303), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(1652), 9, + aux_sym_for_statement_repeat1, + STATE(2236), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(2168), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95662,48 +97457,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [24550] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4205), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4207), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4211), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4213), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, aux_sym_number_token1, + ACTIONS(4217), 1, aux_sym_number_token2, + ACTIONS(4219), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4223), 1, anon_sym_BQUOTE, + ACTIONS(4225), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4231), 1, + sym__brace_start, + ACTIONS(4318), 1, + sym__special_character, + ACTIONS(4320), 1, + sym_test_operator, + STATE(4479), 1, + aux_sym__literal_repeat1, + STATE(4941), 1, + sym_concatenation, + ACTIONS(4203), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4316), 2, + sym_ansi_c_string, sym_word, - [23505] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1792), 1, - aux_sym__literal_repeat1, - STATE(1944), 1, - sym_concatenation, - ACTIONS(2307), 5, + ACTIONS(2546), 3, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(1662), 9, + STATE(4911), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(2544), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95723,169 +97534,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [24649] = 26, + ACTIONS(73), 1, + sym_comment, + ACTIONS(4322), 1, + sym_word, + ACTIONS(4328), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4331), 1, anon_sym_DOLLAR, + ACTIONS(4334), 1, sym__special_character, + ACTIONS(4337), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(4340), 1, + anon_sym_SQUOTE, + ACTIONS(4343), 1, sym_ansi_c_string, + ACTIONS(4346), 1, aux_sym_number_token1, + ACTIONS(4349), 1, aux_sym_number_token2, + ACTIONS(4352), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4355), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4358), 1, anon_sym_BQUOTE, + ACTIONS(4361), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4367), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4370), 1, + sym_variable_name, + ACTIONS(4373), 1, + sym_test_operator, + ACTIONS(4376), 1, + sym__brace_start, + STATE(2689), 1, + aux_sym__literal_repeat1, + STATE(6806), 1, + sym_subscript, + ACTIONS(4325), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4364), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [23572] = 35, - ACTIONS(71), 1, + STATE(783), 3, + sym_variable_assignment, + sym_concatenation, + aux_sym_declaration_command_repeat1, + ACTIONS(1710), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1712), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(2456), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [24756] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(237), 1, - sym_word, - ACTIONS(258), 1, + ACTIONS(4205), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(4211), 1, + anon_sym_DQUOTE, + ACTIONS(4213), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(4219), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, + ACTIONS(4223), 1, + anon_sym_BQUOTE, + ACTIONS(4225), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, + ACTIONS(4318), 1, sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3588), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_BANG, - ACTIONS(3596), 1, - anon_sym_TILDE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(4066), 1, - aux_sym__simple_variable_name_token1, - STATE(2500), 1, - sym_command_substitution, - STATE(2623), 1, + ACTIONS(4381), 1, + sym_test_operator, + STATE(4468), 1, aux_sym__literal_repeat1, - STATE(3076), 1, - sym__expression, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(1153), 2, + STATE(5078), 1, + sym_concatenation, + ACTIONS(4203), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, + ACTIONS(4227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3592), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(3594), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2498), 4, + ACTIONS(4379), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(2408), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4730), 10, sym_arithmetic_expansion, sym_brace_expression, - sym_translated_string, - sym_process_substitution, - STATE(2499), 4, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, - STATE(3252), 4, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - [23697] = 21, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2406), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [24855] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(3705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4074), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(4076), 1, - sym__special_character, - ACTIONS(4078), 1, + ACTIONS(3711), 1, anon_sym_DQUOTE, - ACTIONS(4080), 1, + ACTIONS(3713), 1, + anon_sym_SQUOTE, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(4084), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4086), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4088), 1, + ACTIONS(3723), 1, anon_sym_BQUOTE, - ACTIONS(4090), 1, + ACTIONS(3725), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4094), 1, - sym_test_operator, - ACTIONS(4096), 1, + ACTIONS(3731), 1, sym__brace_start, - STATE(4503), 1, + ACTIONS(4385), 1, + sym__special_character, + ACTIONS(4387), 1, + sym_test_operator, + STATE(4365), 1, aux_sym__literal_repeat1, - STATE(4987), 1, + STATE(4762), 1, sym_concatenation, - ACTIONS(4070), 2, + ACTIONS(2408), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4092), 2, + ACTIONS(3727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2303), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4068), 3, - sym_raw_string, + ACTIONS(4383), 2, sym_ansi_c_string, sym_word, - STATE(4663), 9, + STATE(4875), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 19, + ACTIONS(2406), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95905,62 +97768,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [23793] = 21, + anon_sym_LT_LT_LT, + [24954] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, - anon_sym_DQUOTE, - ACTIONS(3996), 1, + ACTIONS(3705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3998), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(4002), 1, + ACTIONS(3711), 1, + anon_sym_DQUOTE, + ACTIONS(3713), 1, + anon_sym_SQUOTE, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(4006), 1, + ACTIONS(3719), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4008), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4010), 1, + ACTIONS(3723), 1, anon_sym_BQUOTE, - ACTIONS(4012), 1, + ACTIONS(3725), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4018), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(4100), 1, + ACTIONS(4385), 1, sym__special_character, - ACTIONS(4102), 1, + ACTIONS(4391), 1, sym_test_operator, - STATE(2307), 1, + STATE(4370), 1, aux_sym__literal_repeat1, - ACTIONS(2173), 2, + STATE(4786), 1, + sym_concatenation, + ACTIONS(2546), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3994), 2, + ACTIONS(3703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4014), 2, + ACTIONS(3727), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(784), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4098), 3, - sym_raw_string, + ACTIONS(4389), 2, sym_ansi_c_string, sym_word, - STATE(2129), 9, + STATE(4877), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 19, + ACTIONS(2544), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -95980,23 +97845,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [23889] = 8, + anon_sym_LT_LT_LT, + [25053] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(3244), 1, anon_sym_DQUOTE, - ACTIONS(3724), 1, + ACTIONS(4241), 1, sym_variable_name, - STATE(1876), 1, + STATE(1852), 1, sym_string, - ACTIONS(3722), 2, + ACTIONS(4239), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3720), 9, + ACTIONS(4237), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96006,7 +97872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 35, + ACTIONS(1255), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96017,6 +97883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -96031,7 +97898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -96042,24 +97909,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [23959] = 8, + [25124] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, + ACTIONS(2090), 1, anon_sym_DQUOTE, - ACTIONS(4110), 1, + ACTIONS(4397), 1, sym_variable_name, - STATE(2268), 1, + STATE(1661), 1, sym_string, - ACTIONS(4108), 2, + ACTIONS(4395), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 4, + ACTIONS(1269), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(4104), 9, + ts_builtin_sym_end, + ACTIONS(4393), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96069,18 +97936,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 34, + ACTIONS(1267), 35, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96089,11 +97957,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -96104,24 +97972,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24029] = 8, + [25195] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, + ACTIONS(2090), 1, anon_sym_DQUOTE, - ACTIONS(4110), 1, + ACTIONS(4397), 1, sym_variable_name, - STATE(2268), 1, + STATE(1661), 1, sym_string, - ACTIONS(4108), 2, + ACTIONS(4395), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 4, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ACTIONS(4104), 9, + ts_builtin_sym_end, + ACTIONS(4393), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96131,18 +97999,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 34, + ACTIONS(1255), 35, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -96151,11 +98020,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -96166,57 +98035,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24099] = 25, - ACTIONS(71), 1, + [25266] = 26, + ACTIONS(73), 1, sym_comment, - ACTIONS(4112), 1, + ACTIONS(4269), 1, sym_word, - ACTIONS(4118), 1, + ACTIONS(4273), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4121), 1, + ACTIONS(4275), 1, anon_sym_DOLLAR, - ACTIONS(4124), 1, + ACTIONS(4277), 1, sym__special_character, - ACTIONS(4127), 1, + ACTIONS(4279), 1, anon_sym_DQUOTE, - ACTIONS(4133), 1, + ACTIONS(4281), 1, + anon_sym_SQUOTE, + ACTIONS(4283), 1, + sym_ansi_c_string, + ACTIONS(4285), 1, aux_sym_number_token1, - ACTIONS(4136), 1, + ACTIONS(4287), 1, aux_sym_number_token2, - ACTIONS(4139), 1, + ACTIONS(4289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4142), 1, + ACTIONS(4291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4145), 1, + ACTIONS(4293), 1, anon_sym_BQUOTE, - ACTIONS(4148), 1, + ACTIONS(4295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4154), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4157), 1, + ACTIONS(4301), 1, sym_variable_name, - ACTIONS(4160), 1, + ACTIONS(4303), 1, sym_test_operator, - ACTIONS(4163), 1, + ACTIONS(4305), 1, sym__brace_start, - STATE(2629), 1, + ACTIONS(4399), 1, + aux_sym__simple_variable_name_token1, + STATE(2689), 1, aux_sym__literal_repeat1, - STATE(6791), 1, + STATE(6806), 1, sym_subscript, - ACTIONS(4115), 2, + ACTIONS(4271), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4130), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4151), 2, + ACTIONS(4297), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(783), 3, + STATE(777), 3, sym_variable_assignment, sym_concatenation, aux_sym_declaration_command_repeat1, - ACTIONS(1635), 7, + ACTIONS(1762), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -96224,17 +98094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2357), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1637), 10, + ACTIONS(1764), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96245,98 +98105,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [24203] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3953), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3956), 1, - anon_sym_DOLLAR, - ACTIONS(3962), 1, - anon_sym_DQUOTE, - ACTIONS(3965), 1, - aux_sym_number_token1, - ACTIONS(3968), 1, - aux_sym_number_token2, - ACTIONS(3971), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3974), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3977), 1, - anon_sym_BQUOTE, - ACTIONS(3980), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3989), 1, - sym__brace_start, - ACTIONS(4169), 1, - sym__special_character, - ACTIONS(4172), 1, - sym_test_operator, - STATE(2307), 1, - aux_sym__literal_repeat1, - ACTIONS(2183), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3950), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3983), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(784), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4166), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2129), 9, + STATE(2456), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [24299] = 8, + [25373] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(3710), 1, + ACTIONS(4405), 1, sym_variable_name, - STATE(1942), 1, + STATE(1916), 1, sym_string, - ACTIONS(3708), 2, + ACTIONS(4403), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1269), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3704), 9, + ts_builtin_sym_end, + ACTIONS(4401), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96346,7 +98143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 35, + ACTIONS(1267), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96371,7 +98168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -96382,23 +98179,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24369] = 8, + [25444] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3821), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3823), 1, + anon_sym_DOLLAR, + ACTIONS(3827), 1, + anon_sym_DQUOTE, + ACTIONS(3829), 1, + anon_sym_SQUOTE, + ACTIONS(3831), 1, + aux_sym_number_token1, + ACTIONS(3833), 1, + aux_sym_number_token2, + ACTIONS(3835), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3837), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3847), 1, + sym__brace_start, + ACTIONS(4187), 1, + sym__special_character, + ACTIONS(4189), 1, + sym_test_operator, + STATE(2301), 1, + aux_sym__literal_repeat1, + ACTIONS(2156), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3819), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3843), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4185), 2, + sym_ansi_c_string, + sym_word, + STATE(781), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2236), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2154), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [25543] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(3710), 1, + ACTIONS(4405), 1, sym_variable_name, - STATE(1942), 1, + STATE(1916), 1, sym_string, - ACTIONS(3708), 2, + ACTIONS(4403), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3704), 9, + ts_builtin_sym_end, + ACTIONS(4401), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96408,7 +98283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 35, + ACTIONS(1255), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96433,7 +98308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -96444,61 +98319,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24439] = 21, + [25614] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(3821), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4074), 1, + ACTIONS(3823), 1, anon_sym_DOLLAR, - ACTIONS(4078), 1, + ACTIONS(3827), 1, anon_sym_DQUOTE, - ACTIONS(4080), 1, + ACTIONS(3829), 1, + anon_sym_SQUOTE, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(4084), 1, + ACTIONS(3835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4086), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4088), 1, - anon_sym_BQUOTE, - ACTIONS(4090), 1, + ACTIONS(3841), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, + ACTIONS(3847), 1, sym__brace_start, - ACTIONS(4177), 1, + ACTIONS(4187), 1, sym__special_character, - ACTIONS(4179), 1, + ACTIONS(4189), 1, sym_test_operator, - STATE(4503), 1, + STATE(2301), 1, aux_sym__literal_repeat1, - STATE(4987), 1, - sym_concatenation, - ACTIONS(2303), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4070), 2, + ACTIONS(3819), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4092), 2, + ACTIONS(3843), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4175), 3, - sym_raw_string, + ACTIONS(4185), 2, sym_ansi_c_string, sym_word, - STATE(4798), 9, + STATE(781), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2236), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 20, + ACTIONS(2154), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96508,7 +98384,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -96519,60 +98394,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [24535] = 20, + anon_sym_BQUOTE, + [25711] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, + ACTIONS(3423), 1, anon_sym_DQUOTE, - ACTIONS(3996), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3998), 1, - anon_sym_DOLLAR, - ACTIONS(4002), 1, - aux_sym_number_token1, - ACTIONS(4004), 1, - aux_sym_number_token2, - ACTIONS(4006), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4008), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4012), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4018), 1, - sym__brace_start, - ACTIONS(4100), 1, - sym__special_character, - ACTIONS(4102), 1, - sym_test_operator, - STATE(2307), 1, - aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(3699), 1, + sym_variable_name, + STATE(2070), 1, + sym_string, + ACTIONS(3697), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3994), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(3695), 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(1255), 36, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4014), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(784), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4098), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2129), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96592,62 +98442,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [24629] = 21, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [25782] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(4205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4074), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(4078), 1, + ACTIONS(4211), 1, anon_sym_DQUOTE, - ACTIONS(4080), 1, + ACTIONS(4213), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(4084), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4086), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4088), 1, + ACTIONS(4223), 1, anon_sym_BQUOTE, - ACTIONS(4090), 1, + ACTIONS(4225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(4177), 1, + ACTIONS(4409), 1, sym__special_character, - ACTIONS(4183), 1, + ACTIONS(4411), 1, sym_test_operator, - STATE(4525), 1, + STATE(4468), 1, aux_sym__literal_repeat1, - STATE(4872), 1, + STATE(5078), 1, sym_concatenation, - ACTIONS(2307), 2, + ACTIONS(2408), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4070), 2, + ACTIONS(4203), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4092), 2, + ACTIONS(4227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4181), 3, - sym_raw_string, + ACTIONS(4407), 2, sym_ansi_c_string, sym_word, - STATE(4802), 9, + STATE(5046), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 20, + ACTIONS(2406), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96657,7 +98524,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -96668,61 +98534,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [24725] = 21, - ACTIONS(3), 1, + [25880] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(3624), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3626), 1, - anon_sym_DOLLAR, - ACTIONS(3630), 1, - anon_sym_DQUOTE, - ACTIONS(3632), 1, + ACTIONS(3278), 1, + ts_builtin_sym_end, + ACTIONS(3226), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3224), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, - ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(3636), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3640), 1, + sym_word, + [25942] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(832), 23, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(3642), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(4187), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(593), 29, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_done, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(4189), 1, - sym_test_operator, - STATE(4378), 1, - aux_sym__literal_repeat1, - STATE(4788), 1, - sym_concatenation, - ACTIONS(2303), 2, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [26002] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(3230), 1, + ts_builtin_sym_end, + ACTIONS(3226), 23, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3622), 2, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3644), 2, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4185), 3, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3224), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - STATE(4832), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [26064] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_DQUOTE, + ACTIONS(4267), 1, + sym_variable_name, + STATE(1617), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2301), 20, + ACTIONS(4265), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4263), 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(1267), 35, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96742,62 +98754,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [24821] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3624), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3626), 1, - anon_sym_DOLLAR, - ACTIONS(3630), 1, - anon_sym_DQUOTE, - ACTIONS(3632), 1, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(3636), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3640), 1, anon_sym_BQUOTE, - ACTIONS(3642), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(4187), 1, - sym__special_character, - ACTIONS(4193), 1, - sym_test_operator, - STATE(4395), 1, - aux_sym__literal_repeat1, - STATE(4818), 1, - sym_concatenation, - ACTIONS(2307), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3622), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3644), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4191), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(4834), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [26134] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_DQUOTE, + ACTIONS(4267), 1, + sym_variable_name, + STATE(1617), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2305), 20, + ACTIONS(4265), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4263), 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(1255), 35, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -96817,24 +98816,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [24917] = 8, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [26204] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(3244), 1, anon_sym_DQUOTE, - ACTIONS(3878), 1, + ACTIONS(4241), 1, sym_variable_name, - STATE(1683), 1, + STATE(1852), 1, sym_string, - ACTIONS(3876), 2, + ACTIONS(4239), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3874), 9, + ACTIONS(4237), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96844,7 +98857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 35, + ACTIONS(1267), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96869,7 +98882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -96880,23 +98893,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [24987] = 8, + [26274] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(3244), 1, anon_sym_DQUOTE, - ACTIONS(3878), 1, + ACTIONS(4241), 1, sym_variable_name, - STATE(1683), 1, + STATE(1852), 1, sym_string, - ACTIONS(3876), 2, + ACTIONS(4239), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3874), 9, + ACTIONS(4237), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -96906,7 +98919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 35, + ACTIONS(1255), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -96931,7 +98944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -96942,202 +98955,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25057] = 20, - ACTIONS(3), 1, + [26344] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(3706), 1, - anon_sym_DQUOTE, - ACTIONS(3996), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3998), 1, - anon_sym_DOLLAR, - ACTIONS(4002), 1, - aux_sym_number_token1, - ACTIONS(4004), 1, - aux_sym_number_token2, - ACTIONS(4006), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4008), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4012), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4018), 1, - sym__brace_start, - ACTIONS(4100), 1, - sym__special_character, - ACTIONS(4102), 1, - sym_test_operator, - STATE(2307), 1, + STATE(2533), 1, aux_sym__literal_repeat1, - ACTIONS(2173), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3994), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4014), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(784), 2, + STATE(805), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(4098), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2129), 9, + STATE(2310), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2154), 13, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [25151] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2757), 1, - ts_builtin_sym_end, - ACTIONS(2753), 23, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2156), 26, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2751), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [25213] = 20, - ACTIONS(3), 1, + [26410] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(3624), 1, + ACTIONS(4413), 1, + sym_word, + ACTIONS(4419), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3626), 1, + ACTIONS(4422), 1, anon_sym_DOLLAR, - ACTIONS(3630), 1, + ACTIONS(4425), 1, + sym__special_character, + ACTIONS(4428), 1, anon_sym_DQUOTE, - ACTIONS(3632), 1, + ACTIONS(4431), 1, + anon_sym_SQUOTE, + ACTIONS(4434), 1, + sym_ansi_c_string, + ACTIONS(4437), 1, aux_sym_number_token1, - ACTIONS(3634), 1, + ACTIONS(4440), 1, aux_sym_number_token2, - ACTIONS(3636), 1, + ACTIONS(4443), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3638), 1, + ACTIONS(4446), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3642), 1, + ACTIONS(4449), 1, + anon_sym_BQUOTE, + ACTIONS(4452), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4199), 1, + ACTIONS(4458), 1, sym_test_operator, - STATE(4378), 1, + ACTIONS(4461), 1, + sym__brace_start, + STATE(2533), 1, aux_sym__literal_repeat1, - STATE(4788), 1, - sym_concatenation, - ACTIONS(2303), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3622), 2, + ACTIONS(4416), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3644), 2, + ACTIONS(4455), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4195), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4599), 9, + STATE(805), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2168), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2310), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 21, - anon_sym_SEMI, + ACTIONS(2170), 13, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [26510] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 1, + anon_sym_DQUOTE, + ACTIONS(4470), 1, + sym_variable_name, + STATE(2348), 1, + sym_string, + ACTIONS(4468), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(4464), 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(1267), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97147,71 +99140,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [25307] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3624), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3626), 1, - anon_sym_DOLLAR, - ACTIONS(3630), 1, - anon_sym_DQUOTE, - ACTIONS(3632), 1, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(3636), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3642), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(4197), 1, - sym__special_character, - ACTIONS(4203), 1, - sym_test_operator, - STATE(4395), 1, - aux_sym__literal_repeat1, - STATE(4818), 1, - sym_concatenation, - ACTIONS(2307), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3622), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3644), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4201), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(4601), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [26580] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4466), 1, + anon_sym_DQUOTE, + ACTIONS(4470), 1, + sym_variable_name, + STATE(2348), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2305), 21, - anon_sym_SEMI, + ACTIONS(4468), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 4, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ACTIONS(4464), 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(1255), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97221,63 +99202,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [25401] = 21, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [26650] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(4205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4074), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(4076), 1, - sym__special_character, - ACTIONS(4078), 1, + ACTIONS(4211), 1, anon_sym_DQUOTE, - ACTIONS(4080), 1, + ACTIONS(4213), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(4084), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4086), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4088), 1, - anon_sym_BQUOTE, - ACTIONS(4090), 1, + ACTIONS(4225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(4207), 1, + ACTIONS(4474), 1, + sym__special_character, + ACTIONS(4476), 1, sym_test_operator, - STATE(4525), 1, + STATE(4468), 1, aux_sym__literal_repeat1, - STATE(4872), 1, + STATE(5078), 1, sym_concatenation, - ACTIONS(4070), 2, + ACTIONS(2408), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4203), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4092), 2, + ACTIONS(4227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2307), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(4205), 3, - sym_raw_string, + ACTIONS(4472), 2, sym_ansi_c_string, sym_word, - STATE(4698), 9, + STATE(4895), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 19, + ACTIONS(2406), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -97297,120 +99290,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [25497] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2838), 1, - ts_builtin_sym_end, - ACTIONS(2753), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2751), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [25559] = 21, + [26746] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, - anon_sym_DQUOTE, - ACTIONS(3996), 1, + ACTIONS(4205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3998), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(4002), 1, + ACTIONS(4211), 1, + anon_sym_DQUOTE, + ACTIONS(4213), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(4006), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4008), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4010), 1, - anon_sym_BQUOTE, - ACTIONS(4012), 1, + ACTIONS(4225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4018), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(4100), 1, + ACTIONS(4474), 1, sym__special_character, - ACTIONS(4102), 1, + ACTIONS(4480), 1, sym_test_operator, - STATE(2307), 1, + STATE(4479), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + STATE(4941), 1, + sym_concatenation, + ACTIONS(2546), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3994), 2, + ACTIONS(4203), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4014), 2, + ACTIONS(4227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(784), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4098), 3, - sym_raw_string, + ACTIONS(4478), 2, sym_ansi_c_string, sym_word, - STATE(2129), 9, + STATE(4899), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 19, + ACTIONS(2544), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -97430,80 +99365,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [25655] = 3, - ACTIONS(71), 1, + anon_sym_BQUOTE, + [26842] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(819), 23, - sym_file_descriptor, + ACTIONS(3827), 1, + anon_sym_DQUOTE, + ACTIONS(4247), 1, sym_variable_name, + STATE(2209), 1, + sym_string, + ACTIONS(4245), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ACTIONS(4243), 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(1267), 35, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, + sym__special_character, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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(579), 29, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_done, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [25715] = 8, + [26912] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(3827), 1, anon_sym_DQUOTE, - ACTIONS(3724), 1, + ACTIONS(4247), 1, sym_variable_name, - STATE(1876), 1, + STATE(2209), 1, sym_string, - ACTIONS(3722), 2, + ACTIONS(4245), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3720), 9, + ACTIONS(4243), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -97513,7 +99454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 35, + ACTIONS(1255), 35, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -97538,7 +99479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -97549,168 +99490,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [25785] = 25, - ACTIONS(71), 1, + [26982] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(4209), 1, - sym_word, - ACTIONS(4213), 1, + ACTIONS(4205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4215), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(4217), 1, - sym__special_character, - ACTIONS(4219), 1, + ACTIONS(4211), 1, anon_sym_DQUOTE, - ACTIONS(4223), 1, + ACTIONS(4213), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(4225), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(4227), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4229), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4231), 1, + ACTIONS(4223), 1, anon_sym_BQUOTE, - ACTIONS(4233), 1, + ACTIONS(4225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4237), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4239), 1, - sym_variable_name, - ACTIONS(4241), 1, - sym_test_operator, - ACTIONS(4243), 1, + ACTIONS(4231), 1, sym__brace_start, - STATE(2629), 1, + ACTIONS(4409), 1, + sym__special_character, + ACTIONS(4484), 1, + sym_test_operator, + STATE(4479), 1, aux_sym__literal_repeat1, - STATE(6791), 1, - sym_subscript, - ACTIONS(4211), 2, + STATE(4941), 1, + sym_concatenation, + ACTIONS(2546), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4203), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4221), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4235), 2, + ACTIONS(4227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(783), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1722), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2357), 9, + ACTIONS(4482), 2, + sym_ansi_c_string, + sym_word, + STATE(4919), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(1724), 10, - sym_file_descriptor, + ACTIONS(2544), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [25889] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4209), 1, - sym_word, - ACTIONS(4213), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4215), 1, - anon_sym_DOLLAR, - ACTIONS(4217), 1, - sym__special_character, - ACTIONS(4219), 1, - anon_sym_DQUOTE, - ACTIONS(4223), 1, - aux_sym_number_token1, - ACTIONS(4225), 1, - aux_sym_number_token2, - ACTIONS(4227), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4229), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4231), 1, - anon_sym_BQUOTE, - ACTIONS(4233), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4239), 1, - sym_variable_name, - ACTIONS(4241), 1, - sym_test_operator, - ACTIONS(4243), 1, - sym__brace_start, - ACTIONS(4245), 1, - aux_sym__simple_variable_name_token1, - STATE(2629), 1, - aux_sym__literal_repeat1, - STATE(6791), 1, - sym_subscript, - ACTIONS(4211), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4221), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4235), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(803), 3, - sym_variable_assignment, - sym_concatenation, - aux_sym_declaration_command_repeat1, - ACTIONS(1688), 7, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2357), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(1690), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [25993] = 3, - ACTIONS(71), 1, + [27080] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(819), 24, + ACTIONS(832), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -97728,14 +99587,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(579), 28, + ACTIONS(593), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -97764,63 +99623,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [26053] = 21, + [27140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2909), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2912), 1, - anon_sym_DOLLAR, - ACTIONS(2918), 1, - anon_sym_DQUOTE, - ACTIONS(2921), 1, - aux_sym_number_token1, - ACTIONS(2924), 1, - aux_sym_number_token2, - ACTIONS(2927), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2930), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2933), 1, - anon_sym_BQUOTE, - ACTIONS(2936), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2945), 1, - sym__brace_start, - ACTIONS(4250), 1, - sym__special_character, - ACTIONS(4253), 1, - sym_test_operator, - STATE(1777), 1, + STATE(1873), 1, aux_sym__literal_repeat1, - ACTIONS(2906), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2939), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(806), 2, + STATE(817), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2183), 3, + ACTIONS(2156), 5, sym_file_descriptor, sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4247), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2324), 9, + STATE(2382), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 17, + ACTIONS(2154), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -97838,70 +99667,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [26148] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4256), 1, - sym_word, - ACTIONS(4262), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4265), 1, anon_sym_DOLLAR, - ACTIONS(4268), 1, sym__special_character, - ACTIONS(4271), 1, anon_sym_DQUOTE, - ACTIONS(4277), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4280), 1, aux_sym_number_token2, - ACTIONS(4283), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4286), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4289), 1, anon_sym_BQUOTE, - ACTIONS(4292), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4298), 1, - sym_test_operator, - ACTIONS(4301), 1, - sym__brace_start, - STATE(2560), 1, - aux_sym__literal_repeat1, - ACTIONS(4259), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4274), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4295), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(807), 2, + sym_word, + [27206] = 6, + ACTIONS(73), 1, + sym_comment, + STATE(2533), 1, + aux_sym__literal_repeat1, + STATE(805), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2181), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2302), 9, + STATE(2310), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2183), 13, + ACTIONS(2158), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2160), 26, sym_file_descriptor, sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -97913,48 +99733,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [26245] = 13, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [27272] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4320), 1, - sym_variable_name, - STATE(6744), 1, - sym_subscript, - ACTIONS(4306), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4308), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4312), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(4232), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + STATE(1873), 1, + aux_sym__literal_repeat1, + STATE(817), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2160), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - STATE(4407), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4314), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(4304), 28, + aux_sym_heredoc_redirect_token1, + STATE(2382), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2158), 34, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -97962,13 +99785,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -97979,59 +99803,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26324] = 9, + [27338] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4320), 1, - sym_variable_name, - STATE(6744), 1, - sym_subscript, - ACTIONS(4318), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(4323), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4232), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4407), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2768), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(2771), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(2777), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2780), 1, + anon_sym_SQUOTE, + ACTIONS(2783), 1, aux_sym_number_token1, + ACTIONS(2786), 1, aux_sym_number_token2, + ACTIONS(2789), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(2792), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(2795), 1, anon_sym_BQUOTE, + ACTIONS(2798), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(2807), 1, + sym__brace_start, + ACTIONS(4489), 1, + sym__special_character, + ACTIONS(4492), 1, + sym_test_operator, + STATE(1873), 1, + aux_sym__literal_repeat1, + ACTIONS(2765), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(2801), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(4486), 2, + sym_ansi_c_string, sym_word, - ACTIONS(4310), 22, - anon_sym_SEMI, + STATE(817), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2170), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + STATE(2382), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2168), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98041,30 +99878,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [26395] = 10, + anon_sym_LT_LT_LT, + [27436] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4320), 1, - sym_variable_name, - ACTIONS(4327), 1, + ACTIONS(4501), 1, aux_sym_heredoc_redirect_token1, - STATE(6744), 1, + ACTIONS(4505), 1, + sym_variable_name, + STATE(6828), 1, sym_subscript, - ACTIONS(4310), 2, + ACTIONS(4499), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(4232), 2, + STATE(4293), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(4503), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4407), 3, + STATE(4436), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 10, + ACTIONS(4497), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -98075,7 +99913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_LT_LT_DASH, - ACTIONS(4304), 28, + ACTIONS(4495), 28, anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, @@ -98093,7 +99931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -98104,59 +99942,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26468] = 20, + [27509] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(4505), 1, + sym_variable_name, + STATE(6828), 1, + sym_subscript, + ACTIONS(4503), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(4508), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4293), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4074), 1, anon_sym_DOLLAR, - ACTIONS(4078), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(4080), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(4084), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4090), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(4331), 1, - sym__special_character, - ACTIONS(4333), 1, - sym_test_operator, - STATE(4503), 1, - aux_sym__literal_repeat1, - STATE(4987), 1, - sym_concatenation, - ACTIONS(2303), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4070), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4092), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4329), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(4848), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2301), 20, + ACTIONS(4499), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -98166,7 +99991,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -98176,82 +100004,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [26561] = 6, - ACTIONS(71), 1, + [27580] = 4, + ACTIONS(73), 1, sym_comment, - STATE(2560), 1, - aux_sym__literal_repeat1, - STATE(807), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2302), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2169), 26, + ACTIONS(3230), 1, + anon_sym_BQUOTE, + ACTIONS(3226), 22, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [26626] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4335), 1, - aux_sym_concatenation_token1, - ACTIONS(4337), 1, - sym__concat, - STATE(822), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, + ACTIONS(3224), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [27641] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(3278), 1, + anon_sym_BQUOTE, + ACTIONS(3226), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_LBRACE, + anon_sym_LBRACK_LBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(3224), 28, + anon_sym_for, + anon_sym_select, + anon_sym_LT, + anon_sym_GT, + anon_sym_LPAREN, + anon_sym_while, + anon_sym_until, + anon_sym_if, + anon_sym_case, + anon_sym_function, + anon_sym_BANG, + anon_sym_LBRACK, + anon_sym_declare, + anon_sym_typeset, + anon_sym_export, + anon_sym_readonly, + anon_sym_local, + anon_sym_unset, + anon_sym_unsetenv, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + [27702] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4510), 1, + aux_sym_concatenation_token1, + ACTIONS(4512), 1, + sym__concat, + STATE(826), 1, + aux_sym_concatenation_repeat1, + ACTIONS(286), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 43, + ACTIONS(247), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -98284,7 +100166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -98295,40 +100177,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26691] = 6, + [27767] = 7, ACTIONS(3), 1, sym_comment, - STATE(1777), 1, - aux_sym__literal_repeat1, - STATE(806), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2169), 5, + ACTIONS(4510), 1, + aux_sym_concatenation_token1, + ACTIONS(4512), 1, + sym__concat, + ACTIONS(4514), 1, + anon_sym_LPAREN, + STATE(827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - STATE(2324), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 34, + ACTIONS(1279), 42, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98343,7 +100226,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [27834] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4505), 1, + sym_variable_name, + ACTIONS(4525), 1, + aux_sym_heredoc_redirect_token1, + STATE(6828), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4517), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4519), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4521), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(4293), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(4436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4523), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(4495), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -98354,22 +100303,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26756] = 6, + [27913] = 6, + ACTIONS(73), 1, + sym_comment, + STATE(2552), 1, + aux_sym__literal_repeat1, + STATE(2656), 1, + sym_concatenation, + STATE(2321), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2544), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2546), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [27978] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4335), 1, + ACTIONS(4510), 1, aux_sym_concatenation_token1, - ACTIONS(4337), 1, + ACTIONS(4527), 1, sym__concat, - STATE(818), 1, + STATE(828), 1, aux_sym_concatenation_repeat1, - ACTIONS(278), 5, + ACTIONS(1296), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 43, + ACTIONS(1294), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -98402,7 +100410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -98413,24 +100421,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26821] = 7, + [28043] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4335), 1, + ACTIONS(4510), 1, aux_sym_concatenation_token1, - ACTIONS(4337), 1, + ACTIONS(4529), 1, sym__concat, - ACTIONS(4339), 1, - anon_sym_LPAREN, - STATE(822), 1, + STATE(828), 1, aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, + ACTIONS(1316), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 42, + ACTIONS(1314), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -98442,6 +100448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -98462,7 +100469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -98473,79 +100480,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [26888] = 4, - ACTIONS(71), 1, + [28108] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2838), 1, - anon_sym_BQUOTE, - ACTIONS(2753), 22, + ACTIONS(4531), 1, + aux_sym_concatenation_token1, + ACTIONS(4534), 1, + sym__concat, + STATE(828), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 43, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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(2751), 28, - anon_sym_for, - anon_sym_select, - anon_sym_LT, - anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - [26949] = 6, + [28173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4335), 1, + ACTIONS(4510), 1, aux_sym_concatenation_token1, - ACTIONS(4342), 1, + ACTIONS(4512), 1, sym__concat, - STATE(823), 1, + STATE(826), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 43, + ACTIONS(1300), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -98578,7 +100587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -98589,106 +100598,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27014] = 13, + [28238] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4320), 1, + ACTIONS(4505), 1, sym_variable_name, - ACTIONS(4346), 1, + ACTIONS(4539), 1, aux_sym_heredoc_redirect_token1, - STATE(6744), 1, + STATE(6828), 1, sym_subscript, - ACTIONS(4308), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4310), 2, + ACTIONS(4499), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4312), 2, + ACTIONS(4519), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4521), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(4344), 2, + ACTIONS(4537), 2, anon_sym_SEMI, anon_sym_AMP, - STATE(4232), 2, + STATE(4293), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(4503), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4407), 3, + STATE(4436), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(2755), 4, + ACTIONS(3280), 4, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(4304), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [27093] = 6, - ACTIONS(3), 1, - sym_comment, - STATE(1777), 1, - aux_sym__literal_repeat1, - STATE(806), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2173), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(2324), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2171), 34, + ACTIONS(4495), 28, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98696,14 +100647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -98714,12 +100664,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27158] = 4, - ACTIONS(71), 1, + [28317] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(2757), 1, - anon_sym_BQUOTE, - ACTIONS(2753), 22, + ACTIONS(3226), 23, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -98736,13 +100684,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2751), 28, + ACTIONS(3224), 28, anon_sym_for, anon_sym_select, anon_sym_LT, @@ -98771,103 +100720,125 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - [27219] = 6, - ACTIONS(3), 1, + [28376] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(4335), 1, - aux_sym_concatenation_token1, - ACTIONS(4348), 1, - sym__concat, - STATE(823), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, - sym_file_descriptor, + ACTIONS(4541), 1, + sym_word, + ACTIONS(4547), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4550), 1, + anon_sym_DOLLAR, + ACTIONS(4553), 1, + sym__special_character, + ACTIONS(4556), 1, + anon_sym_DQUOTE, + ACTIONS(4559), 1, + anon_sym_SQUOTE, + ACTIONS(4562), 1, + sym_ansi_c_string, + ACTIONS(4565), 1, + aux_sym_number_token1, + ACTIONS(4568), 1, + aux_sym_number_token2, + ACTIONS(4571), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4574), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4577), 1, + anon_sym_BQUOTE, + ACTIONS(4580), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4586), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4589), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 43, + STATE(2673), 1, + aux_sym__literal_repeat1, + ACTIONS(4544), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4583), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(832), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2168), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2433), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2170), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + [28475] = 6, + ACTIONS(73), 1, + sym_comment, + STATE(2655), 1, + aux_sym__literal_repeat1, + STATE(837), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2469), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, - sym_ansi_c_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2154), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [27284] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4350), 1, - aux_sym_concatenation_token1, - ACTIONS(4353), 1, - sym__concat, - STATE(823), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(2156), 26, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 43, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -98875,54 +100846,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [27349] = 6, + [28540] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4335), 1, - aux_sym_concatenation_token1, - ACTIONS(4337), 1, - sym__concat, - STATE(818), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + STATE(1991), 1, + aux_sym__literal_repeat1, + STATE(2237), 1, + sym_concatenation, + ACTIONS(2546), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 43, + STATE(2388), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2544), 34, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -98937,7 +100903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -98948,69 +100914,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [27414] = 20, + [28605] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(3417), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4074), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(4078), 1, + ACTIONS(3423), 1, anon_sym_DQUOTE, - ACTIONS(4080), 1, + ACTIONS(3425), 1, + anon_sym_SQUOTE, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(4084), 1, + ACTIONS(3431), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4086), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4090), 1, + ACTIONS(3435), 1, + anon_sym_BQUOTE, + ACTIONS(3437), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(4331), 1, + ACTIONS(4594), 1, sym__special_character, - ACTIONS(4358), 1, + ACTIONS(4596), 1, sym_test_operator, - STATE(4525), 1, + STATE(2246), 1, aux_sym__literal_repeat1, - STATE(4872), 1, - sym_concatenation, - ACTIONS(2307), 2, + ACTIONS(2160), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4070), 2, + ACTIONS(3415), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4092), 2, + ACTIONS(3439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4356), 3, - sym_raw_string, + ACTIONS(4592), 2, sym_ansi_c_string, sym_word, - STATE(4852), 9, + STATE(840), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2407), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 20, - anon_sym_SEMI, + ACTIONS(2158), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99020,26 +100988,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [27507] = 6, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [28702] = 6, + ACTIONS(73), 1, sym_comment, - STATE(2560), 1, + STATE(2655), 1, aux_sym__literal_repeat1, - STATE(807), 2, + STATE(837), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2302), 9, + STATE(2469), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 13, + ACTIONS(2158), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -99048,12 +101017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(2173), 26, + ACTIONS(2160), 26, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -99063,7 +101031,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -99072,79 +101039,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [28767] = 23, + ACTIONS(73), 1, + sym_comment, + ACTIONS(4598), 1, + sym_word, + ACTIONS(4604), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4607), 1, + anon_sym_DOLLAR, + ACTIONS(4610), 1, + sym__special_character, + ACTIONS(4613), 1, + anon_sym_DQUOTE, + ACTIONS(4616), 1, + anon_sym_SQUOTE, + ACTIONS(4619), 1, sym_ansi_c_string, + ACTIONS(4622), 1, + aux_sym_number_token1, + ACTIONS(4625), 1, + aux_sym_number_token2, + ACTIONS(4628), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4631), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4634), 1, anon_sym_BQUOTE, + ACTIONS(4637), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4643), 1, + sym_test_operator, + ACTIONS(4646), 1, + sym__brace_start, + STATE(2655), 1, + aux_sym__literal_repeat1, + ACTIONS(4601), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4640), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [27572] = 21, + STATE(837), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2168), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2469), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2170), 12, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [28866] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(3417), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4074), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(4078), 1, + ACTIONS(3423), 1, anon_sym_DQUOTE, - ACTIONS(4080), 1, + ACTIONS(3425), 1, + anon_sym_SQUOTE, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(4084), 1, + ACTIONS(3431), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4086), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4088), 1, + ACTIONS(3435), 1, anon_sym_BQUOTE, - ACTIONS(4090), 1, + ACTIONS(3437), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(4362), 1, + ACTIONS(4594), 1, sym__special_character, - ACTIONS(4364), 1, + ACTIONS(4596), 1, sym_test_operator, - STATE(4503), 1, + STATE(2246), 1, aux_sym__literal_repeat1, - STATE(4987), 1, - sym_concatenation, - ACTIONS(2303), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4070), 2, + ACTIONS(3415), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4092), 2, + ACTIONS(3439), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4360), 3, - sym_raw_string, + ACTIONS(4592), 2, sym_ansi_c_string, sym_word, - STATE(5005), 9, + STATE(840), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2407), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 19, - anon_sym_SEMI, + ACTIONS(2154), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99154,127 +101198,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [27667] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(2753), 23, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_LBRACE, - anon_sym_LBRACK_LBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [28963] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3238), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3240), 1, + anon_sym_DOLLAR, + ACTIONS(3244), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3246), 1, + anon_sym_SQUOTE, + ACTIONS(3248), 1, + aux_sym_number_token1, + ACTIONS(3250), 1, + aux_sym_number_token2, + ACTIONS(3252), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3254), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3256), 1, anon_sym_BQUOTE, + ACTIONS(3258), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3266), 1, + sym__brace_start, + ACTIONS(4651), 1, + sym__special_character, + ACTIONS(4653), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4655), 1, + sym_test_operator, + STATE(2182), 1, + aux_sym__literal_repeat1, + ACTIONS(2368), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3236), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(2751), 28, - anon_sym_for, - anon_sym_select, + ACTIONS(4649), 2, + sym_ansi_c_string, + sym_word, + STATE(842), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + STATE(2466), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2366), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_LPAREN, - anon_sym_while, - anon_sym_until, - anon_sym_if, - anon_sym_case, - anon_sym_function, - anon_sym_BANG, - anon_sym_LBRACK, - anon_sym_declare, - anon_sym_typeset, - anon_sym_export, - anon_sym_readonly, - anon_sym_local, - anon_sym_unset, - anon_sym_unsetenv, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - [27726] = 21, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [29062] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, + ACTIONS(3451), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4074), 1, + ACTIONS(3454), 1, anon_sym_DOLLAR, - ACTIONS(4078), 1, + ACTIONS(3460), 1, anon_sym_DQUOTE, - ACTIONS(4080), 1, + ACTIONS(3463), 1, + anon_sym_SQUOTE, + ACTIONS(3466), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(3469), 1, aux_sym_number_token2, - ACTIONS(4084), 1, + ACTIONS(3472), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4086), 1, + ACTIONS(3475), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4088), 1, + ACTIONS(3478), 1, anon_sym_BQUOTE, - ACTIONS(4090), 1, + ACTIONS(3481), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, + ACTIONS(3490), 1, sym__brace_start, - ACTIONS(4362), 1, + ACTIONS(4660), 1, sym__special_character, - ACTIONS(4368), 1, + ACTIONS(4663), 1, sym_test_operator, - STATE(4525), 1, + STATE(2246), 1, aux_sym__literal_repeat1, - STATE(4872), 1, - sym_concatenation, - ACTIONS(2307), 2, + ACTIONS(2170), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4070), 2, + ACTIONS(3448), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4092), 2, + ACTIONS(3484), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4366), 3, - sym_raw_string, + ACTIONS(4657), 2, sym_ansi_c_string, sym_word, - STATE(5009), 9, + STATE(840), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2407), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2305), 19, - anon_sym_SEMI, + ACTIONS(2168), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -99284,64 +101349,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [27821] = 22, + anon_sym_LT_LT_LT, + [29159] = 6, + ACTIONS(73), 1, + sym_comment, + STATE(2539), 1, + aux_sym__literal_repeat1, + STATE(2627), 1, + sym_concatenation, + STATE(2313), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2406), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2408), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [29224] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(3238), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3243), 1, + ACTIONS(3240), 1, anon_sym_DOLLAR, - ACTIONS(3247), 1, + ACTIONS(3244), 1, anon_sym_DQUOTE, - ACTIONS(3249), 1, + ACTIONS(3246), 1, + anon_sym_SQUOTE, + ACTIONS(3248), 1, aux_sym_number_token1, - ACTIONS(3251), 1, + ACTIONS(3250), 1, aux_sym_number_token2, - ACTIONS(3253), 1, + ACTIONS(3252), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3255), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, + ACTIONS(3256), 1, anon_sym_BQUOTE, - ACTIONS(3259), 1, + ACTIONS(3258), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3267), 1, + ACTIONS(3266), 1, sym__brace_start, - ACTIONS(4372), 1, + ACTIONS(4651), 1, sym__special_character, - ACTIONS(4374), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4376), 1, + ACTIONS(4655), 1, sym_test_operator, - STATE(2250), 1, + ACTIONS(4666), 1, + aux_sym__simple_variable_name_token1, + STATE(2182), 1, aux_sym__literal_repeat1, - ACTIONS(2507), 2, + ACTIONS(2540), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3239), 2, + ACTIONS(3236), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3261), 2, + ACTIONS(3260), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(877), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(4370), 3, - sym_raw_string, + ACTIONS(4649), 2, sym_ansi_c_string, sym_word, - STATE(2409), 9, + STATE(846), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + STATE(2466), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2505), 16, + ACTIONS(2538), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -99358,50 +101485,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [27917] = 22, - ACTIONS(71), 1, + [29323] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(4378), 1, + ACTIONS(4668), 1, sym_word, - ACTIONS(4384), 1, + ACTIONS(4672), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4387), 1, + ACTIONS(4674), 1, anon_sym_DOLLAR, - ACTIONS(4390), 1, + ACTIONS(4676), 1, sym__special_character, - ACTIONS(4393), 1, + ACTIONS(4678), 1, anon_sym_DQUOTE, - ACTIONS(4399), 1, + ACTIONS(4680), 1, + anon_sym_SQUOTE, + ACTIONS(4682), 1, + sym_ansi_c_string, + ACTIONS(4684), 1, aux_sym_number_token1, - ACTIONS(4402), 1, + ACTIONS(4686), 1, aux_sym_number_token2, - ACTIONS(4405), 1, + ACTIONS(4688), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4408), 1, + ACTIONS(4690), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4411), 1, + ACTIONS(4692), 1, anon_sym_BQUOTE, - ACTIONS(4414), 1, + ACTIONS(4694), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4420), 1, + ACTIONS(4698), 1, sym_test_operator, - ACTIONS(4423), 1, + ACTIONS(4700), 1, sym__brace_start, - STATE(2607), 1, + STATE(2673), 1, aux_sym__literal_repeat1, - ACTIONS(4381), 2, + ACTIONS(4670), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4396), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4417), 2, + ACTIONS(4696), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(831), 2, + STATE(832), 2, sym_concatenation, aux_sym_for_statement_repeat1, - ACTIONS(2181), 7, + ACTIONS(2154), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -99409,17 +101537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2381), 9, + STATE(2433), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2183), 12, + ACTIONS(2156), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -99432,75 +101561,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [28013] = 6, - ACTIONS(3), 1, + [29422] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(4430), 1, - aux_sym_concatenation_token1, - ACTIONS(4432), 1, - sym__concat, - STATE(850), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 5, - sym_file_descriptor, + ACTIONS(4668), 1, + sym_word, + ACTIONS(4672), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4674), 1, + anon_sym_DOLLAR, + ACTIONS(4676), 1, + sym__special_character, + ACTIONS(4678), 1, + anon_sym_DQUOTE, + ACTIONS(4680), 1, + anon_sym_SQUOTE, + ACTIONS(4682), 1, + sym_ansi_c_string, + ACTIONS(4684), 1, + aux_sym_number_token1, + ACTIONS(4686), 1, + aux_sym_number_token2, + ACTIONS(4688), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4690), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4692), 1, + anon_sym_BQUOTE, + ACTIONS(4694), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4698), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4700), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 42, + STATE(2673), 1, + aux_sym__literal_repeat1, + ACTIONS(4670), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4696), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(832), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2158), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2433), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2160), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [28077] = 3, + [29521] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(4510), 1, + aux_sym_concatenation_token1, + ACTIONS(4512), 1, sym__concat, + STATE(827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 44, + ACTIONS(1279), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99530,11 +101682,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -99545,62 +101696,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28135] = 21, + [29586] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - ACTIONS(3032), 1, + ACTIONS(3320), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3034), 1, + ACTIONS(3323), 1, anon_sym_DOLLAR, - ACTIONS(3038), 1, + ACTIONS(3329), 1, + anon_sym_DQUOTE, + ACTIONS(3332), 1, + anon_sym_SQUOTE, + ACTIONS(3335), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(3338), 1, aux_sym_number_token2, - ACTIONS(3042), 1, + ACTIONS(3341), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3044), 1, + ACTIONS(3344), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3046), 1, + ACTIONS(3347), 1, anon_sym_BQUOTE, - ACTIONS(3048), 1, + ACTIONS(3350), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3054), 1, + ACTIONS(3362), 1, sym__brace_start, - ACTIONS(4436), 1, + ACTIONS(4705), 1, sym__special_character, - ACTIONS(4438), 1, + ACTIONS(4708), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(4711), 1, sym_test_operator, - STATE(2006), 1, + STATE(2182), 1, aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(2585), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3030), 2, + ACTIONS(3317), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3050), 2, + ACTIONS(3353), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(844), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4434), 3, - sym_raw_string, + ACTIONS(4702), 2, sym_ansi_c_string, sym_word, - STATE(2361), 9, + STATE(846), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + STATE(2466), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 17, + ACTIONS(2583), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -99617,63 +101772,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [28229] = 21, + [29685] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - ACTIONS(3032), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3034), 1, - anon_sym_DOLLAR, - ACTIONS(3038), 1, - aux_sym_number_token1, - ACTIONS(3040), 1, - aux_sym_number_token2, - ACTIONS(3042), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3044), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3046), 1, - anon_sym_BQUOTE, - ACTIONS(3048), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3054), 1, - sym__brace_start, - ACTIONS(4436), 1, - sym__special_character, - ACTIONS(4438), 1, - sym_test_operator, - STATE(2006), 1, + STATE(1938), 1, aux_sym__literal_repeat1, - ACTIONS(2173), 2, + STATE(2240), 1, + sym_concatenation, + ACTIONS(2408), 5, sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3030), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3050), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(844), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4434), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2361), 9, + STATE(2385), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 17, + ACTIONS(2406), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -99691,17 +101815,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [28323] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [29750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(4714), 1, + aux_sym_concatenation_token1, + ACTIONS(4717), 1, sym__concat, + STATE(848), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 44, + ACTIONS(1304), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99713,7 +101858,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -99731,11 +101875,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -99746,56 +101889,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28381] = 8, + [29814] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4442), 1, - anon_sym_DQUOTE, - ACTIONS(4446), 1, + ACTIONS(4720), 1, sym_variable_name, - STATE(2392), 1, - sym_string, - ACTIONS(4444), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, + STATE(6809), 1, + sym_subscript, + ACTIONS(4503), 2, sym_test_operator, sym__brace_start, - ACTIONS(4440), 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(1227), 33, + ACTIONS(4508), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4457), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 18, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -99806,35 +101928,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28449] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 44, - anon_sym_LPAREN_LPAREN, + ACTIONS(4499), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99843,35 +101950,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [28507] = 3, + [29884] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(4723), 1, + aux_sym_concatenation_token1, + ACTIONS(4725), 1, sym__concat, + STATE(878), 1, + aux_sym_concatenation_repeat1, + ACTIONS(286), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 44, + ACTIONS(247), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -99884,7 +101978,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -99901,11 +101994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -99916,35 +102008,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28565] = 3, + [29948] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(4720), 1, + sym_variable_name, + ACTIONS(4733), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 44, - anon_sym_LPAREN_LPAREN, + STATE(6809), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4727), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4729), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4731), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, + anon_sym_LT_LT_DASH, + STATE(4457), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(3280), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + ACTIONS(4503), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(4473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -99952,15 +102056,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -99971,150 +102073,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28623] = 8, - ACTIONS(3), 1, + [30026] = 24, + ACTIONS(73), 1, sym_comment, - ACTIONS(4442), 1, + ACTIONS(4735), 1, + sym_word, + ACTIONS(4739), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4741), 1, + anon_sym_DOLLAR, + ACTIONS(4743), 1, + sym__special_character, + ACTIONS(4745), 1, anon_sym_DQUOTE, - ACTIONS(4446), 1, - sym_variable_name, - STATE(2392), 1, - sym_string, - ACTIONS(4444), 2, + ACTIONS(4747), 1, + anon_sym_SQUOTE, + ACTIONS(4749), 1, + sym_ansi_c_string, + ACTIONS(4751), 1, + aux_sym_number_token1, + ACTIONS(4753), 1, + aux_sym_number_token2, + ACTIONS(4755), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4757), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4759), 1, + anon_sym_BQUOTE, + ACTIONS(4761), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4765), 1, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, + ACTIONS(4767), 1, sym_test_operator, + ACTIONS(4769), 1, sym__brace_start, - ACTIONS(4440), 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(1239), 33, + STATE(2973), 1, + aux_sym__literal_repeat1, + ACTIONS(4737), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4763), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(874), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2366), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(2368), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + STATE(2572), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30126] = 31, + ACTIONS(73), 1, + sym_comment, + ACTIONS(461), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(463), 1, + anon_sym_DOLLAR, + ACTIONS(467), 1, + anon_sym_DQUOTE, + ACTIONS(469), 1, + anon_sym_SQUOTE, + ACTIONS(471), 1, sym_ansi_c_string, + ACTIONS(473), 1, aux_sym_number_token1, + ACTIONS(475), 1, aux_sym_number_token2, + ACTIONS(477), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(479), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(481), 1, anon_sym_BQUOTE, + ACTIONS(483), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(491), 1, + sym_test_operator, + ACTIONS(493), 1, + sym__brace_start, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, + sym_file_descriptor, + ACTIONS(3085), 1, + sym_word, + ACTIONS(4771), 1, + sym__special_character, + ACTIONS(4773), 1, + sym_variable_name, + STATE(531), 1, + sym_command_name, + STATE(940), 1, + aux_sym__literal_repeat1, + STATE(1061), 1, + sym_concatenation, + STATE(6797), 1, + sym_subscript, + ACTIONS(459), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(485), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [28691] = 3, - ACTIONS(3), 1, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3208), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(845), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30240] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(1318), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(4775), 1, + sym_word, + ACTIONS(4781), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4784), 1, + anon_sym_DOLLAR, + ACTIONS(4787), 1, + sym__special_character, + ACTIONS(4790), 1, + anon_sym_DQUOTE, + ACTIONS(4793), 1, + anon_sym_SQUOTE, + ACTIONS(4796), 1, + sym_ansi_c_string, + ACTIONS(4799), 1, + aux_sym_number_token1, + ACTIONS(4802), 1, + aux_sym_number_token2, + ACTIONS(4805), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4808), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4811), 1, + anon_sym_BQUOTE, + ACTIONS(4814), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4820), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4823), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 44, + STATE(2874), 1, + aux_sym__literal_repeat1, + ACTIONS(4778), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4817), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(854), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2168), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2615), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2170), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [30338] = 31, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1065), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1067), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1071), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1073), 1, + anon_sym_SQUOTE, + ACTIONS(1075), 1, sym_ansi_c_string, + ACTIONS(1077), 1, aux_sym_number_token1, + ACTIONS(1079), 1, aux_sym_number_token2, + ACTIONS(1081), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1083), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1085), 1, anon_sym_BQUOTE, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1093), 1, + sym_test_operator, + ACTIONS(1095), 1, + sym__brace_start, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, + sym_file_descriptor, + ACTIONS(3029), 1, + sym_word, + ACTIONS(4773), 1, + sym_variable_name, + ACTIONS(4826), 1, + sym__special_character, + STATE(613), 1, + sym_command_name, + STATE(2378), 1, + aux_sym__literal_repeat1, + STATE(2443), 1, + sym_concatenation, + STATE(6797), 1, + sym_subscript, + ACTIONS(1063), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [28749] = 3, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3208), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1918), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [30452] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(4720), 1, + sym_variable_name, + ACTIONS(4830), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 44, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + STATE(6809), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4729), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4731), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, + anon_sym_LT_LT_DASH, + ACTIONS(4828), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(4457), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4523), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + STATE(4473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100122,15 +102438,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -100141,62 +102455,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28807] = 21, + [30530] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3062), 1, + ACTIONS(3821), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3065), 1, + ACTIONS(3823), 1, anon_sym_DOLLAR, - ACTIONS(3071), 1, + ACTIONS(3827), 1, anon_sym_DQUOTE, - ACTIONS(3074), 1, + ACTIONS(3829), 1, + anon_sym_SQUOTE, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(3077), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(3080), 1, + ACTIONS(3835), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3083), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3086), 1, + ACTIONS(3839), 1, anon_sym_BQUOTE, - ACTIONS(3089), 1, + ACTIONS(3841), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3098), 1, + ACTIONS(3847), 1, sym__brace_start, - ACTIONS(4451), 1, + ACTIONS(4834), 1, sym__special_character, - ACTIONS(4454), 1, + ACTIONS(4836), 1, sym_test_operator, - STATE(2006), 1, + STATE(2301), 1, aux_sym__literal_repeat1, - ACTIONS(2183), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(3059), 2, + ACTIONS(3819), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3092), 2, + ACTIONS(3843), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(844), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4448), 3, - sym_raw_string, + ACTIONS(4832), 2, sym_ansi_c_string, sym_word, - STATE(2361), 9, + STATE(893), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2521), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2181), 17, + ACTIONS(2154), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -100213,44 +102529,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [28901] = 8, + [30626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 1, - anon_sym_DQUOTE, - ACTIONS(4463), 1, - sym_variable_name, - STATE(2520), 1, - sym_string, - ACTIONS(4461), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4457), 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(1227), 33, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 44, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100262,8 +102569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -100274,47 +102584,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [28969] = 13, + [30684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4471), 1, + ACTIONS(1306), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4473), 1, - sym_variable_name, - STATE(6765), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4465), 2, + ACTIONS(1304), 44, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4467), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4469), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(4369), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(2755), 3, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(4318), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - STATE(4509), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100322,13 +102620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -100339,34 +102639,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29047] = 8, + [30742] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 1, + ACTIONS(3821), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3823), 1, + anon_sym_DOLLAR, + ACTIONS(3827), 1, anon_sym_DQUOTE, - ACTIONS(4463), 1, - sym_variable_name, - STATE(2520), 1, - sym_string, - ACTIONS(4461), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, + ACTIONS(3829), 1, + anon_sym_SQUOTE, + ACTIONS(3831), 1, + aux_sym_number_token1, + ACTIONS(3833), 1, + aux_sym_number_token2, + ACTIONS(3835), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3837), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3839), 1, + anon_sym_BQUOTE, + ACTIONS(3841), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3847), 1, sym__brace_start, - ACTIONS(4457), 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(1239), 33, + ACTIONS(4834), 1, + sym__special_character, + ACTIONS(4836), 1, + sym_test_operator, + STATE(2301), 1, + aux_sym__literal_repeat1, + ACTIONS(2160), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3819), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3843), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(4832), 2, + sym_ansi_c_string, + sym_word, + STATE(893), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2521), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2158), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -100375,7 +102705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100384,32 +102713,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - 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, - [29115] = 3, + [30838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 44, + ACTIONS(1344), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100443,7 +102757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -100454,17 +102768,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29173] = 3, + [30896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(1362), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 44, + ACTIONS(1360), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100498,7 +102812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -100509,22 +102823,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29231] = 6, + [30954] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 1, - aux_sym_concatenation_token1, - ACTIONS(4476), 1, - sym__concat, - STATE(852), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1366), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 42, + ACTIONS(1364), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100536,6 +102845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -100553,10 +102863,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -100567,80 +102878,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29295] = 6, - ACTIONS(3), 1, + [31012] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(4430), 1, - aux_sym_concatenation_token1, - ACTIONS(4478), 1, - sym__concat, - STATE(852), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, - sym_file_descriptor, + ACTIONS(4838), 1, + sym_word, + ACTIONS(4842), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4844), 1, + anon_sym_DOLLAR, + ACTIONS(4846), 1, + sym__special_character, + ACTIONS(4848), 1, + anon_sym_DQUOTE, + ACTIONS(4850), 1, + anon_sym_SQUOTE, + ACTIONS(4852), 1, + sym_ansi_c_string, + ACTIONS(4854), 1, + aux_sym_number_token1, + ACTIONS(4856), 1, + aux_sym_number_token2, + ACTIONS(4858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4860), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4862), 1, + anon_sym_BQUOTE, + ACTIONS(4864), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4868), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(4870), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 42, + STATE(2874), 1, + aux_sym__literal_repeat1, + ACTIONS(4840), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4866), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(854), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2154), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(2615), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2156), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [29359] = 6, + [31110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4480), 1, - aux_sym_concatenation_token1, - ACTIONS(4483), 1, - sym__concat, - STATE(852), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 42, + ACTIONS(1356), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100652,6 +102975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -100669,10 +102993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -100683,17 +103008,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29423] = 3, + [31168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 44, + ACTIONS(1352), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100727,7 +103052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -100738,17 +103063,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29481] = 3, + [31226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1374), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 44, + ACTIONS(1372), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100782,7 +103107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -100793,39 +103118,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29539] = 6, + [31284] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 1, - aux_sym_concatenation_token1, - ACTIONS(4432), 1, - sym__concat, - STATE(850), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(4874), 1, + anon_sym_DQUOTE, + ACTIONS(4878), 1, + sym_variable_name, + STATE(2565), 1, + sym_string, + ACTIONS(4876), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 42, + ACTIONS(4872), 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(1267), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100837,10 +103166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -100851,39 +103178,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29603] = 6, + [31352] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, - aux_sym_concatenation_token1, - ACTIONS(4488), 1, - sym__concat, - STATE(858), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(4874), 1, + anon_sym_DQUOTE, + ACTIONS(4878), 1, + sym_variable_name, + STATE(2565), 1, + sym_string, + ACTIONS(4876), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 42, + ACTIONS(4872), 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(1255), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -100895,10 +103226,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -100909,22 +103238,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29667] = 6, + [31420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, - aux_sym_concatenation_token1, - ACTIONS(4490), 1, - sym__concat, - STATE(858), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1390), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 42, + ACTIONS(1388), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100937,6 +103261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -100953,10 +103278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -100967,22 +103293,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29731] = 6, + [31478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4492), 1, - aux_sym_concatenation_token1, - ACTIONS(4495), 1, - sym__concat, - STATE(858), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 42, + ACTIONS(1328), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -100995,6 +103316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101011,10 +103333,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101025,22 +103348,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29795] = 6, + [31536] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, + ACTIONS(4880), 1, aux_sym_concatenation_token1, - ACTIONS(4498), 1, + ACTIONS(4882), 1, sym__concat, - STATE(857), 1, + STATE(848), 1, aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, + ACTIONS(1296), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 42, + ACTIONS(1294), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101052,7 +103375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101072,7 +103395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101083,17 +103406,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29859] = 3, + [31600] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + ACTIONS(4880), 1, + aux_sym_concatenation_token1, + ACTIONS(4884), 1, sym__concat, + STATE(848), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 44, + ACTIONS(1314), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101105,7 +103433,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -101123,11 +103450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101138,79 +103464,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [29917] = 10, - ACTIONS(3), 1, + [31664] = 24, + ACTIONS(73), 1, sym_comment, - ACTIONS(4327), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4473), 1, - sym_variable_name, - STATE(6765), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4369), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - STATE(4509), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(4304), 28, - anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4735), 1, + sym_word, + ACTIONS(4739), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4741), 1, anon_sym_DOLLAR, + ACTIONS(4743), 1, sym__special_character, + ACTIONS(4745), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(4747), 1, + anon_sym_SQUOTE, + ACTIONS(4749), 1, sym_ansi_c_string, + ACTIONS(4751), 1, aux_sym_number_token1, + ACTIONS(4753), 1, aux_sym_number_token2, + ACTIONS(4755), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4757), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4759), 1, anon_sym_BQUOTE, + ACTIONS(4761), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4767), 1, + sym_test_operator, + ACTIONS(4769), 1, + sym__brace_start, + ACTIONS(4886), 1, + aux_sym__simple_variable_name_token1, + STATE(2973), 1, + aux_sym__literal_repeat1, + ACTIONS(4737), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4763), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [29989] = 3, + STATE(888), 2, + sym_concatenation, + aux_sym_unset_command_repeat1, + ACTIONS(2538), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(2540), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(2572), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [31764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 44, + ACTIONS(1340), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101244,7 +103584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101255,17 +103595,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30047] = 3, + [31822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 44, + ACTIONS(1320), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101299,7 +103639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101310,17 +103650,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30105] = 3, + [31880] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, - sym_file_descriptor, + ACTIONS(4880), 1, + aux_sym_concatenation_token1, + ACTIONS(4888), 1, sym__concat, + STATE(872), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 44, + ACTIONS(1300), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101332,7 +103677,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -101350,11 +103694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101365,17 +103708,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30163] = 3, + [31944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, - sym_file_descriptor, + ACTIONS(4723), 1, + aux_sym_concatenation_token1, + ACTIONS(4890), 1, sym__concat, + STATE(880), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 44, + ACTIONS(1294), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101388,7 +103736,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101405,11 +103752,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101420,22 +103766,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30221] = 6, + [32008] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, + ACTIONS(4723), 1, aux_sym_concatenation_token1, - ACTIONS(4498), 1, + ACTIONS(4892), 1, sym__concat, - STATE(856), 1, + STATE(880), 1, aux_sym_concatenation_repeat1, - ACTIONS(278), 5, + ACTIONS(1316), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 42, + ACTIONS(1314), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101467,7 +103813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101478,22 +103824,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30285] = 6, + [32072] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 1, + ACTIONS(4894), 1, aux_sym_concatenation_token1, - ACTIONS(4432), 1, + ACTIONS(4897), 1, sym__concat, - STATE(850), 1, + STATE(880), 1, aux_sym_concatenation_repeat1, - ACTIONS(4502), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4500), 42, + ACTIONS(1304), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101505,7 +103851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101525,7 +103871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101536,22 +103882,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30349] = 6, + [32136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 1, - aux_sym_concatenation_token1, - ACTIONS(4432), 1, - sym__concat, - STATE(850), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4506), 5, + ACTIONS(1326), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4504), 42, + ACTIONS(1324), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101563,6 +103904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -101580,10 +103922,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101594,17 +103937,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30413] = 3, + [32194] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1378), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 44, + ACTIONS(1376), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101638,7 +103981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101649,17 +103992,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30471] = 3, + [32252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 44, + ACTIONS(1336), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101693,7 +104036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101704,17 +104047,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30529] = 3, + [32310] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1382), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 44, + ACTIONS(1380), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101748,7 +104091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101759,24 +104102,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30587] = 7, + [32368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, - aux_sym_concatenation_token1, - ACTIONS(4498), 1, - sym__concat, - ACTIONS(4508), 1, - anon_sym_LPAREN, - STATE(857), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 41, + ACTIONS(1332), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101788,6 +104124,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101804,10 +104142,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101818,22 +104157,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30653] = 6, + [32426] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 1, + ACTIONS(4723), 1, aux_sym_concatenation_token1, - ACTIONS(4432), 1, + ACTIONS(4725), 1, sym__concat, - STATE(851), 1, + STATE(878), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 42, + ACTIONS(1300), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -101845,7 +104184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -101865,7 +104204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -101876,59 +104215,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30717] = 9, + [32490] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4473), 1, - sym_variable_name, - STATE(6765), 1, - sym_subscript, - ACTIONS(4318), 2, + ACTIONS(4880), 1, + aux_sym_concatenation_token1, + ACTIONS(4888), 1, + sym__concat, + STATE(873), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4902), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4323), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4369), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4509), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 18, + ACTIONS(4900), 42, anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_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(4310), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -101937,116 +104256,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [30787] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3103), 1, - anon_sym_DQUOTE, - ACTIONS(3107), 1, - sym_variable_name, - STATE(1501), 1, - sym_string, - ACTIONS(3105), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3101), 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(1227), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - 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, - [30855] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3103), 1, - anon_sym_DQUOTE, - ACTIONS(3107), 1, - sym_variable_name, - STATE(1501), 1, - sym_string, - ACTIONS(3105), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(3101), 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(1239), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -102057,96 +104273,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [30923] = 22, - ACTIONS(3), 1, + [32554] = 24, + ACTIONS(73), 1, sym_comment, - ACTIONS(3241), 1, + ACTIONS(4904), 1, + sym_word, + ACTIONS(4910), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3243), 1, + ACTIONS(4913), 1, anon_sym_DOLLAR, - ACTIONS(3247), 1, + ACTIONS(4916), 1, + sym__special_character, + ACTIONS(4919), 1, anon_sym_DQUOTE, - ACTIONS(3249), 1, + ACTIONS(4922), 1, + anon_sym_SQUOTE, + ACTIONS(4925), 1, + sym_ansi_c_string, + ACTIONS(4928), 1, aux_sym_number_token1, - ACTIONS(3251), 1, + ACTIONS(4931), 1, aux_sym_number_token2, - ACTIONS(3253), 1, + ACTIONS(4934), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3255), 1, + ACTIONS(4937), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3257), 1, + ACTIONS(4940), 1, anon_sym_BQUOTE, - ACTIONS(3259), 1, + ACTIONS(4943), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3267), 1, - sym__brace_start, - ACTIONS(4372), 1, - sym__special_character, - ACTIONS(4376), 1, - sym_test_operator, - ACTIONS(4515), 1, + ACTIONS(4949), 1, aux_sym__simple_variable_name_token1, - STATE(2250), 1, + ACTIONS(4952), 1, + sym_test_operator, + ACTIONS(4955), 1, + sym__brace_start, + STATE(2973), 1, aux_sym__literal_repeat1, - ACTIONS(2460), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3239), 2, + ACTIONS(4907), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3261), 2, + ACTIONS(4946), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(885), 2, + STATE(888), 2, sym_concatenation, aux_sym_unset_command_repeat1, - ACTIONS(4370), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2409), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2458), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2583), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(2585), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [31019] = 6, + STATE(2572), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [32654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 1, - aux_sym_concatenation_token1, - ACTIONS(4432), 1, - sym__concat, - STATE(851), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4519), 5, + ACTIONS(1370), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 42, + ACTIONS(1368), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102158,6 +104371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -102175,10 +104389,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -102189,22 +104404,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31083] = 6, + [32712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 1, - aux_sym_concatenation_token1, - ACTIONS(4432), 1, - sym__concat, - STATE(851), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4523), 5, + ACTIONS(1386), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4521), 42, + ACTIONS(1384), 44, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102216,6 +104426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, @@ -102233,10 +104444,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -102247,47 +104459,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31147] = 13, + [32770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4473), 1, - sym_variable_name, - ACTIONS(4527), 1, - aux_sym_heredoc_redirect_token1, - STATE(6765), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4467), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4469), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4525), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(4369), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4314), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(4318), 3, + ACTIONS(1370), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(4509), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 28, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 44, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102295,13 +104495,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -102312,212 +104514,337 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31225] = 6, - ACTIONS(71), 1, + [32828] = 23, + ACTIONS(73), 1, sym_comment, - STATE(2633), 1, + ACTIONS(4838), 1, + sym_word, + ACTIONS(4842), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4844), 1, + anon_sym_DOLLAR, + ACTIONS(4846), 1, + sym__special_character, + ACTIONS(4848), 1, + anon_sym_DQUOTE, + ACTIONS(4850), 1, + anon_sym_SQUOTE, + ACTIONS(4852), 1, + sym_ansi_c_string, + ACTIONS(4854), 1, + aux_sym_number_token1, + ACTIONS(4856), 1, + aux_sym_number_token2, + ACTIONS(4858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4860), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4862), 1, + anon_sym_BQUOTE, + ACTIONS(4864), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4868), 1, + sym_test_operator, + ACTIONS(4870), 1, + sym__brace_start, + STATE(2874), 1, aux_sym__literal_repeat1, - STATE(883), 2, + ACTIONS(4840), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4866), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(854), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2362), 9, + ACTIONS(2158), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2615), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2167), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2169), 26, + ACTIONS(2160), 11, sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [32926] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3865), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(3868), 1, + anon_sym_DOLLAR, + ACTIONS(3874), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3877), 1, + anon_sym_SQUOTE, + ACTIONS(3880), 1, + aux_sym_number_token1, + ACTIONS(3883), 1, + aux_sym_number_token2, + ACTIONS(3886), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3889), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3892), 1, anon_sym_BQUOTE, + ACTIONS(3895), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3904), 1, + sym__brace_start, + ACTIONS(4961), 1, + sym__special_character, + ACTIONS(4964), 1, + sym_test_operator, + STATE(2301), 1, + aux_sym__literal_repeat1, + ACTIONS(2170), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3862), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3898), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [31289] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(2633), 1, - aux_sym__literal_repeat1, - STATE(883), 2, + ACTIONS(4958), 2, + sym_ansi_c_string, + sym_word, + STATE(893), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2362), 9, + STATE(2521), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2171), 12, + ACTIONS(2168), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2173), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [33022] = 31, + ACTIONS(73), 1, + sym_comment, + ACTIONS(367), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(369), 1, + anon_sym_DOLLAR, + ACTIONS(373), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(377), 1, sym_ansi_c_string, + ACTIONS(379), 1, + aux_sym_number_token1, + ACTIONS(381), 1, + aux_sym_number_token2, + ACTIONS(383), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(385), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(387), 1, anon_sym_BQUOTE, + ACTIONS(389), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(397), 1, + sym_test_operator, + ACTIONS(399), 1, + sym__brace_start, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, + sym_file_descriptor, + ACTIONS(2896), 1, + sym_word, + ACTIONS(4773), 1, + sym_variable_name, + ACTIONS(4967), 1, + sym__special_character, + STATE(547), 1, + sym_command_name, + STATE(1252), 1, + aux_sym__literal_repeat1, + STATE(1375), 1, + sym_concatenation, + STATE(6797), 1, + sym_subscript, + ACTIONS(365), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(391), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [31353] = 22, - ACTIONS(71), 1, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3208), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1117), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33136] = 31, + ACTIONS(73), 1, sym_comment, - ACTIONS(4529), 1, - sym_word, - ACTIONS(4535), 1, + ACTIONS(367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4538), 1, + ACTIONS(369), 1, anon_sym_DOLLAR, - ACTIONS(4541), 1, - sym__special_character, - ACTIONS(4544), 1, + ACTIONS(373), 1, anon_sym_DQUOTE, - ACTIONS(4550), 1, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(379), 1, aux_sym_number_token1, - ACTIONS(4553), 1, + ACTIONS(381), 1, aux_sym_number_token2, - ACTIONS(4556), 1, + ACTIONS(383), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4559), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4562), 1, + ACTIONS(387), 1, anon_sym_BQUOTE, - ACTIONS(4565), 1, + ACTIONS(389), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4571), 1, - sym_test_operator, - ACTIONS(4574), 1, + ACTIONS(399), 1, sym__brace_start, - STATE(2633), 1, + ACTIONS(798), 1, + sym_ansi_c_string, + ACTIONS(800), 1, + sym_test_operator, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, + sym_file_descriptor, + ACTIONS(3035), 1, + sym_word, + ACTIONS(4773), 1, + sym_variable_name, + ACTIONS(4969), 1, + sym__special_character, + STATE(540), 1, + sym_command_name, + STATE(1252), 1, aux_sym__literal_repeat1, - ACTIONS(4532), 2, + STATE(1375), 1, + sym_concatenation, + STATE(6797), 1, + sym_subscript, + ACTIONS(365), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4547), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4568), 2, + ACTIONS(391), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(883), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2181), 7, - anon_sym_PIPE, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3208), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2362), 9, + STATE(944), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2183), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [31449] = 6, + [33250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 1, + ACTIONS(4723), 1, aux_sym_concatenation_token1, - ACTIONS(4432), 1, + ACTIONS(4725), 1, sym__concat, - STATE(850), 1, + STATE(879), 1, aux_sym_concatenation_repeat1, - ACTIONS(4579), 5, + ACTIONS(1286), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 42, + ACTIONS(1279), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102529,7 +104856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -102549,7 +104876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -102560,96 +104887,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31513] = 22, - ACTIONS(3), 1, + [33314] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(3499), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3502), 1, + STATE(2651), 1, + aux_sym__literal_repeat1, + STATE(2905), 1, + sym_concatenation, + STATE(2420), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2406), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(3508), 1, - anon_sym_DQUOTE, - ACTIONS(3511), 1, aux_sym_number_token1, - ACTIONS(3514), 1, aux_sym_number_token2, - ACTIONS(3517), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3520), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3523), 1, - anon_sym_BQUOTE, - ACTIONS(3526), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3538), 1, - sym__brace_start, - ACTIONS(4584), 1, - sym__special_character, - ACTIONS(4587), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4590), 1, - sym_test_operator, - STATE(2250), 1, - aux_sym__literal_repeat1, - ACTIONS(2353), 2, + sym_word, + ACTIONS(2408), 26, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3496), 2, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3529), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(885), 2, + [33378] = 6, + ACTIONS(73), 1, + sym_comment, + STATE(2638), 1, + aux_sym__literal_repeat1, + STATE(2949), 1, sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(4581), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2409), 9, + STATE(2473), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2351), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(2544), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2546), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [31609] = 6, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [33442] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4430), 1, + ACTIONS(4880), 1, aux_sym_concatenation_token1, - ACTIONS(4432), 1, + ACTIONS(4888), 1, sym__concat, - STATE(851), 1, + STATE(872), 1, aux_sym_concatenation_repeat1, - ACTIONS(4595), 5, + ACTIONS(4973), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 42, + ACTIONS(4971), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -102681,7 +105050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -102692,50 +105061,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31673] = 22, - ACTIONS(71), 1, + [33506] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(4975), 1, sym_word, - ACTIONS(4601), 1, + ACTIONS(4979), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4603), 1, + ACTIONS(4981), 1, anon_sym_DOLLAR, - ACTIONS(4605), 1, + ACTIONS(4983), 1, sym__special_character, - ACTIONS(4607), 1, + ACTIONS(4985), 1, anon_sym_DQUOTE, - ACTIONS(4611), 1, + ACTIONS(4987), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, + sym_ansi_c_string, + ACTIONS(4991), 1, aux_sym_number_token1, - ACTIONS(4613), 1, + ACTIONS(4993), 1, aux_sym_number_token2, - ACTIONS(4615), 1, + ACTIONS(4995), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4617), 1, + ACTIONS(4997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4619), 1, + ACTIONS(4999), 1, anon_sym_BQUOTE, - ACTIONS(4621), 1, + ACTIONS(5001), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4625), 1, + ACTIONS(5005), 1, sym_test_operator, - ACTIONS(4627), 1, + ACTIONS(5007), 1, sym__brace_start, - STATE(2607), 1, + STATE(5313), 1, aux_sym__literal_repeat1, - ACTIONS(4599), 2, + STATE(5560), 1, + sym_concatenation, + ACTIONS(4977), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4609), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4623), 2, + ACTIONS(5003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(831), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2171), 7, + ACTIONS(2406), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -102743,17 +105112,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2381), 9, + STATE(5200), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2173), 12, + ACTIONS(2408), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102766,50 +105136,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [31769] = 22, - ACTIONS(71), 1, + [33604] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(4597), 1, - sym_word, - ACTIONS(4601), 1, + ACTIONS(4979), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4603), 1, + ACTIONS(4981), 1, anon_sym_DOLLAR, - ACTIONS(4605), 1, + ACTIONS(4983), 1, sym__special_character, - ACTIONS(4607), 1, + ACTIONS(4985), 1, anon_sym_DQUOTE, - ACTIONS(4611), 1, + ACTIONS(4987), 1, + anon_sym_SQUOTE, + ACTIONS(4991), 1, aux_sym_number_token1, - ACTIONS(4613), 1, + ACTIONS(4993), 1, aux_sym_number_token2, - ACTIONS(4615), 1, + ACTIONS(4995), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4617), 1, + ACTIONS(4997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4619), 1, + ACTIONS(4999), 1, anon_sym_BQUOTE, - ACTIONS(4621), 1, + ACTIONS(5001), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4625), 1, - sym_test_operator, - ACTIONS(4627), 1, + ACTIONS(5007), 1, sym__brace_start, - STATE(2607), 1, + ACTIONS(5009), 1, + sym_word, + ACTIONS(5011), 1, + sym_ansi_c_string, + ACTIONS(5013), 1, + sym_test_operator, + STATE(5370), 1, aux_sym__literal_repeat1, - ACTIONS(4599), 2, + STATE(5602), 1, + sym_concatenation, + ACTIONS(4977), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4609), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4623), 2, + ACTIONS(5003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(831), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, + ACTIONS(2544), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -102817,17 +105187,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(2381), 9, + STATE(5210), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2169), 12, + ACTIONS(2546), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102840,42 +105211,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [31865] = 8, + [33702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, - anon_sym_DQUOTE, - ACTIONS(3026), 1, - sym_variable_name, - STATE(1747), 1, - sym_string, - ACTIONS(3024), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(4880), 1, + aux_sym_concatenation_token1, + ACTIONS(4888), 1, + sym__concat, + STATE(873), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3020), 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(1227), 33, + aux_sym_heredoc_redirect_token1, + ACTIONS(5015), 42, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -102884,12 +105252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -102900,23 +105269,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [31933] = 8, + [33766] = 31, + ACTIONS(47), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(49), 1, + anon_sym_DOLLAR, + ACTIONS(53), 1, + anon_sym_DQUOTE, + ACTIONS(55), 1, + anon_sym_SQUOTE, + ACTIONS(57), 1, + sym_ansi_c_string, + ACTIONS(59), 1, + aux_sym_number_token1, + ACTIONS(61), 1, + aux_sym_number_token2, + ACTIONS(63), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(65), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(67), 1, + anon_sym_BQUOTE, + ACTIONS(69), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(73), 1, + sym_comment, + ACTIONS(79), 1, + sym_test_operator, + ACTIONS(81), 1, + sym__brace_start, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, + sym_file_descriptor, + ACTIONS(2642), 1, + sym_word, + ACTIONS(4773), 1, + sym_variable_name, + ACTIONS(5019), 1, + sym__special_character, + STATE(535), 1, + sym_command_name, + STATE(1290), 1, + aux_sym__literal_repeat1, + STATE(1383), 1, + sym_concatenation, + STATE(6797), 1, + sym_subscript, + ACTIONS(45), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(71), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3208), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(926), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [33880] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(3941), 1, anon_sym_DQUOTE, - ACTIONS(3026), 1, + ACTIONS(3945), 1, sym_variable_name, - STATE(1747), 1, + STATE(1592), 1, sym_string, - ACTIONS(3024), 2, + ACTIONS(3943), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3020), 9, + ACTIONS(3939), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -102926,7 +105378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 33, + ACTIONS(1267), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -102949,7 +105401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -102960,49 +105412,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32001] = 6, - ACTIONS(71), 1, + [33948] = 7, + ACTIONS(3), 1, sym_comment, - STATE(2460), 1, - aux_sym__literal_repeat1, - STATE(2700), 1, - sym_concatenation, - STATE(2289), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2305), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2307), 26, + ACTIONS(4723), 1, + aux_sym_concatenation_token1, + ACTIONS(4725), 1, + sym__concat, + ACTIONS(5021), 1, + anon_sym_LPAREN, + STATE(879), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1279), 41, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -103010,96 +105457,190 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [32065] = 6, - ACTIONS(71), 1, + sym_word, + [34014] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2569), 1, - aux_sym__literal_repeat1, - STATE(2720), 1, - sym_concatenation, - STATE(2319), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(3423), 1, + anon_sym_DQUOTE, + ACTIONS(3699), 1, + sym_variable_name, + STATE(2070), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2301), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2303), 26, + ACTIONS(3697), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ACTIONS(3695), 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(1255), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, + sym__special_character, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [32129] = 6, - ACTIONS(3), 1, + sym_word, + [34082] = 31, + ACTIONS(73), 1, sym_comment, - STATE(1787), 1, - aux_sym__literal_repeat1, - STATE(2251), 1, - sym_concatenation, - ACTIONS(2303), 5, + ACTIONS(367), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(369), 1, + anon_sym_DOLLAR, + ACTIONS(373), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(379), 1, + aux_sym_number_token1, + ACTIONS(381), 1, + aux_sym_number_token2, + ACTIONS(383), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(385), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(387), 1, + anon_sym_BQUOTE, + ACTIONS(389), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(399), 1, + sym__brace_start, + ACTIONS(1039), 1, + sym_ansi_c_string, + ACTIONS(1045), 1, + sym_test_operator, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, sym_file_descriptor, + ACTIONS(3033), 1, + sym_word, + ACTIONS(4773), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(2328), 9, + ACTIONS(5024), 1, + sym__special_character, + STATE(609), 1, + sym_command_name, + STATE(1252), 1, + aux_sym__literal_repeat1, + STATE(1375), 1, + sym_concatenation, + STATE(6797), 1, + sym_subscript, + ACTIONS(365), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(391), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3208), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1765), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 34, + [34196] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5028), 1, + anon_sym_DQUOTE, + ACTIONS(5032), 1, + sym_variable_name, + STATE(2470), 1, + sym_string, + ACTIONS(5030), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5026), 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(1267), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103109,6 +105650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103120,10 +105662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103134,30 +105674,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32193] = 6, + [34264] = 8, ACTIONS(3), 1, sym_comment, - STATE(1792), 1, - aux_sym__literal_repeat1, - STATE(1944), 1, - sym_concatenation, - ACTIONS(2307), 5, - sym_file_descriptor, + ACTIONS(5028), 1, + anon_sym_DQUOTE, + ACTIONS(5032), 1, sym_variable_name, + STATE(2470), 1, + sym_string, + ACTIONS(5030), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - STATE(2331), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2305), 34, + ACTIONS(5026), 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(1255), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -103167,6 +105710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103178,10 +105722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103192,22 +105734,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32257] = 6, + [34332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4486), 1, + ACTIONS(4880), 1, aux_sym_concatenation_token1, - ACTIONS(4498), 1, + ACTIONS(4888), 1, sym__concat, - STATE(856), 1, + STATE(872), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(5036), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 42, + ACTIONS(5034), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103219,7 +105761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -103239,7 +105781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103250,38 +105792,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32321] = 6, + [34396] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, - aux_sym_concatenation_token1, - ACTIONS(4631), 1, - sym__concat, - STATE(912), 1, - aux_sym_concatenation_repeat1, - ACTIONS(278), 6, + ACTIONS(3941), 1, + anon_sym_DQUOTE, + ACTIONS(3945), 1, + sym_variable_name, + STATE(1592), 1, + sym_string, + ACTIONS(3943), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(241), 40, + ACTIONS(3939), 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(1255), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103290,13 +105836,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103307,34 +105852,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32384] = 3, + [34464] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(4501), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(4720), 1, + sym_variable_name, + STATE(6809), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4457), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 43, - anon_sym_LPAREN_LPAREN, + STATE(4473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_LT_LT_DASH, + ACTIONS(4495), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103342,15 +105897,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103361,22 +105914,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32441] = 6, + [34536] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 1, + ACTIONS(4880), 1, aux_sym_concatenation_token1, - ACTIONS(4635), 1, + ACTIONS(4888), 1, sym__concat, - STATE(914), 1, + STATE(873), 1, aux_sym_concatenation_repeat1, - ACTIONS(4502), 5, + ACTIONS(5040), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4500), 41, + ACTIONS(5038), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103388,6 +105941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -103407,7 +105961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103418,17 +105972,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32504] = 3, - ACTIONS(3), 1, + [34600] = 31, + ACTIONS(73), 1, sym_comment, - ACTIONS(1318), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(724), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(726), 1, + anon_sym_DOLLAR, + ACTIONS(730), 1, + anon_sym_DQUOTE, + ACTIONS(732), 1, + anon_sym_SQUOTE, + ACTIONS(734), 1, + sym_ansi_c_string, + ACTIONS(736), 1, + aux_sym_number_token1, + ACTIONS(738), 1, + aux_sym_number_token2, + ACTIONS(740), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(742), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(744), 1, + anon_sym_BQUOTE, + ACTIONS(746), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(754), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(756), 1, + sym__brace_start, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, + sym_file_descriptor, + ACTIONS(3031), 1, + sym_word, + ACTIONS(4773), 1, + sym_variable_name, + ACTIONS(5042), 1, + sym__special_character, + STATE(533), 1, + sym_command_name, + STATE(1026), 1, + aux_sym__literal_repeat1, + STATE(1308), 1, + sym_concatenation, + STATE(6797), 1, + sym_subscript, + ACTIONS(722), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(748), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3208), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(896), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [34714] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4880), 1, + aux_sym_concatenation_token1, + ACTIONS(4888), 1, + sym__concat, + STATE(872), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 43, + ACTIONS(5044), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103457,11 +106099,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103472,17 +106113,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32561] = 3, + [34778] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(4880), 1, + aux_sym_concatenation_token1, + ACTIONS(4888), 1, sym__concat, + STATE(873), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 43, + ACTIONS(5048), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103511,11 +106157,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103526,38 +106171,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32618] = 6, - ACTIONS(3), 1, + [34842] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(4633), 1, - aux_sym_concatenation_token1, - ACTIONS(4635), 1, - sym__concat, - STATE(917), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4519), 5, + ACTIONS(5052), 1, + sym_word, + ACTIONS(5056), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5058), 1, + anon_sym_DOLLAR, + ACTIONS(5060), 1, + sym__special_character, + ACTIONS(5062), 1, + anon_sym_DQUOTE, + ACTIONS(5064), 1, + anon_sym_SQUOTE, + ACTIONS(5066), 1, + sym_ansi_c_string, + ACTIONS(5068), 1, + aux_sym_number_token1, + ACTIONS(5070), 1, + aux_sym_number_token2, + ACTIONS(5072), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5074), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5076), 1, + anon_sym_BQUOTE, + ACTIONS(5078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5082), 1, + sym_test_operator, + ACTIONS(5084), 1, + sym__brace_start, + STATE(2997), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(921), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2154), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2544), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2156), 11, sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [34940] = 23, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5052), 1, + sym_word, + ACTIONS(5056), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5058), 1, + anon_sym_DOLLAR, + ACTIONS(5060), 1, + sym__special_character, + ACTIONS(5062), 1, + anon_sym_DQUOTE, + ACTIONS(5064), 1, + anon_sym_SQUOTE, + ACTIONS(5066), 1, + sym_ansi_c_string, + ACTIONS(5068), 1, + aux_sym_number_token1, + ACTIONS(5070), 1, + aux_sym_number_token2, + ACTIONS(5072), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5074), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5076), 1, + anon_sym_BQUOTE, + ACTIONS(5078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5082), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(5084), 1, sym__brace_start, + STATE(2997), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(921), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2158), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2544), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2160), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [35038] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3705), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(3711), 1, + anon_sym_DQUOTE, + ACTIONS(3713), 1, + anon_sym_SQUOTE, + ACTIONS(3715), 1, + aux_sym_number_token1, + ACTIONS(3717), 1, + aux_sym_number_token2, + ACTIONS(3719), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3723), 1, + anon_sym_BQUOTE, + ACTIONS(3725), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3731), 1, + sym__brace_start, + ACTIONS(5088), 1, + sym__special_character, + ACTIONS(5090), 1, + sym_test_operator, + STATE(4365), 1, + aux_sym__literal_repeat1, + STATE(4762), 1, + sym_concatenation, + ACTIONS(2408), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 41, + ACTIONS(3703), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3727), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5086), 2, + sym_ansi_c_string, + sym_word, + STATE(5299), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2406), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103567,50 +106395,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [35134] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3705), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(3711), 1, + anon_sym_DQUOTE, + ACTIONS(3713), 1, + anon_sym_SQUOTE, + ACTIONS(3715), 1, + aux_sym_number_token1, + ACTIONS(3717), 1, + aux_sym_number_token2, + ACTIONS(3719), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3723), 1, + anon_sym_BQUOTE, + ACTIONS(3725), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3731), 1, + sym__brace_start, + ACTIONS(5088), 1, + sym__special_character, + ACTIONS(5094), 1, + sym_test_operator, + STATE(4370), 1, + aux_sym__literal_repeat1, + STATE(4786), 1, + sym_concatenation, + ACTIONS(2546), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(3703), 2, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3727), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5092), 2, + sym_ansi_c_string, + sym_word, + STATE(5301), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2544), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [35230] = 23, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5096), 1, + sym_word, + ACTIONS(5102), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5105), 1, anon_sym_DOLLAR, + ACTIONS(5108), 1, sym__special_character, + ACTIONS(5111), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(5114), 1, + anon_sym_SQUOTE, + ACTIONS(5117), 1, sym_ansi_c_string, + ACTIONS(5120), 1, aux_sym_number_token1, + ACTIONS(5123), 1, aux_sym_number_token2, + ACTIONS(5126), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5129), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5132), 1, anon_sym_BQUOTE, + ACTIONS(5135), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(5141), 1, + sym_test_operator, + ACTIONS(5144), 1, + sym__brace_start, + STATE(2997), 1, + aux_sym__literal_repeat1, + ACTIONS(5099), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5138), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [32681] = 3, + STATE(921), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2168), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(2544), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2170), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [35328] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(3423), 1, + anon_sym_DQUOTE, + ACTIONS(3699), 1, + sym_variable_name, + STATE(2070), 1, + sym_string, + ACTIONS(3697), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 43, + ACTIONS(3695), 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(1267), 33, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103619,14 +106588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103637,17 +106604,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32738] = 3, + [35396] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(4880), 1, + aux_sym_concatenation_token1, + ACTIONS(4888), 1, sym__concat, + STATE(872), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5149), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 43, + ACTIONS(5147), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103659,7 +106631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -103676,11 +106648,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103691,17 +106662,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32795] = 3, - ACTIONS(3), 1, + [35460] = 31, + ACTIONS(73), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(367), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(369), 1, + anon_sym_DOLLAR, + ACTIONS(373), 1, + anon_sym_DQUOTE, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(377), 1, + sym_ansi_c_string, + ACTIONS(379), 1, + aux_sym_number_token1, + ACTIONS(381), 1, + aux_sym_number_token2, + ACTIONS(383), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(385), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(387), 1, + anon_sym_BQUOTE, + ACTIONS(389), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(397), 1, + sym_test_operator, + ACTIONS(399), 1, + sym__brace_start, + ACTIONS(1426), 1, + anon_sym_LT_LT_LT, + ACTIONS(1428), 1, sym_file_descriptor, + ACTIONS(2896), 1, + sym_word, + ACTIONS(4773), 1, + sym_variable_name, + ACTIONS(4967), 1, + sym__special_character, + STATE(548), 1, + sym_command_name, + STATE(1252), 1, + aux_sym__literal_repeat1, + STATE(1375), 1, + sym_concatenation, + STATE(6797), 1, + sym_subscript, + ACTIONS(365), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(391), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1424), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3208), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(1422), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(1420), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(1117), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [35574] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5151), 1, + anon_sym_LPAREN, + ACTIONS(5154), 1, + aux_sym_concatenation_token1, + ACTIONS(5156), 1, sym__concat, + STATE(931), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 43, + ACTIONS(1279), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103713,10 +106775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -103730,11 +106789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103745,17 +106803,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32852] = 3, + [35639] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(5154), 1, + aux_sym_concatenation_token1, + ACTIONS(5156), 1, sym__concat, + STATE(931), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 43, + ACTIONS(1279), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103769,8 +106833,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -103784,11 +106846,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103799,34 +106860,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32909] = 3, + [35702] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(3244), 1, + anon_sym_DQUOTE, + ACTIONS(4241), 1, + sym_variable_name, + STATE(1852), 1, + sym_string, + ACTIONS(4239), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 43, + ACTIONS(4237), 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(1255), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -103835,14 +106904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103853,17 +106919,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [32966] = 3, + [35769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, - sym_file_descriptor, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(5160), 1, sym__concat, + STATE(942), 1, + aux_sym_concatenation_repeat1, + ACTIONS(286), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 43, + ACTIONS(247), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103875,10 +106946,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -103892,11 +106962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103907,17 +106976,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33023] = 3, + [35832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(1386), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 43, + ACTIONS(1384), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -103950,7 +107019,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -103961,17 +107030,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33080] = 3, + [35889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1370), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 43, + ACTIONS(1368), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104004,7 +107073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104015,23 +107084,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33137] = 6, + [35946] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, + ACTIONS(5154), 1, aux_sym_concatenation_token1, - ACTIONS(4631), 1, + ACTIONS(5162), 1, sym__concat, - STATE(912), 1, + STATE(939), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 6, + ACTIONS(1316), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1314), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104061,7 +107130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104072,17 +107141,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33200] = 3, + [36009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1386), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 43, + ACTIONS(1384), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104115,7 +107184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104126,23 +107195,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33257] = 6, + [36066] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, - aux_sym_concatenation_token1, - ACTIONS(4637), 1, - sym__concat, - STATE(966), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 6, + ACTIONS(3280), 1, + anon_sym_RPAREN, + ACTIONS(4733), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5168), 1, + sym_variable_name, + STATE(6830), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5164), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(4613), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, sym_file_descriptor, sym_test_operator, + sym__brace_start, + ACTIONS(4727), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4739), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [36143] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1370), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 40, + ACTIONS(1368), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104156,6 +107283,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -104169,10 +107298,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104183,39 +107313,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33320] = 10, + [36200] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4639), 1, + ACTIONS(5171), 1, sym_variable_name, - STATE(6748), 1, + STATE(6845), 1, sym_subscript, - ACTIONS(4310), 2, + ACTIONS(4499), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(4569), 2, + ACTIONS(4501), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4642), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(4503), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4669), 3, + STATE(4869), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 8, + ACTIONS(4497), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_AMP, anon_sym_LT_LT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_LT_LT_DASH, - ACTIONS(4304), 28, + ACTIONS(4495), 28, anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, @@ -104233,7 +107363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104244,22 +107374,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33391] = 6, + [36271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 1, - aux_sym_concatenation_token1, - ACTIONS(4642), 1, - sym__concat, - STATE(918), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1326), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 41, + ACTIONS(1324), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104271,6 +107396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104287,10 +107413,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104301,17 +107428,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33454] = 3, + [36328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1378), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 43, + ACTIONS(1376), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104323,7 +107450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104344,7 +107471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104355,17 +107482,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33511] = 3, + [36385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(5160), 1, sym__concat, + STATE(942), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 43, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104377,10 +107509,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -104394,11 +107525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104409,22 +107539,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33568] = 6, + [36448] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 1, + ACTIONS(5174), 1, aux_sym_concatenation_token1, - ACTIONS(4644), 1, + ACTIONS(5177), 1, sym__concat, - STATE(918), 1, + STATE(939), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1306), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 41, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104436,9 +107567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -104455,7 +107585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104466,22 +107596,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33631] = 6, + [36511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4646), 1, - aux_sym_concatenation_token1, - ACTIONS(4649), 1, - sym__concat, - STATE(918), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(5180), 1, + sym__special_character, + STATE(963), 1, + aux_sym__literal_repeat1, + ACTIONS(286), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(247), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104493,6 +107621,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104510,9 +107640,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104523,38 +107652,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33694] = 6, + [36572] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 1, - aux_sym_concatenation_token1, - ACTIONS(4635), 1, - sym__concat, - STATE(914), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(4501), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5168), 1, + sym_variable_name, + STATE(6830), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4613), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, - anon_sym_LPAREN_LPAREN, + STATE(4739), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 8, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4495), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104562,14 +107696,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104580,17 +107713,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33757] = 3, + [36643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, - sym_file_descriptor, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(5182), 1, sym__concat, + STATE(1022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 43, + ACTIONS(1294), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104603,9 +107741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -104619,11 +107756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104634,17 +107770,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33814] = 3, + [36706] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(5171), 1, + sym_variable_name, + ACTIONS(5184), 1, + ts_builtin_sym_end, + ACTIONS(5190), 1, + aux_sym_heredoc_redirect_token1, + STATE(6845), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5188), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4642), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5186), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4869), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [36783] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(5160), 1, sym__concat, + STATE(950), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 43, + ACTIONS(1279), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104657,9 +107862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -104673,11 +107877,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104688,42 +107891,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33871] = 8, + [36846] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4654), 1, - anon_sym_DQUOTE, - ACTIONS(4658), 1, - sym_variable_name, - STATE(2645), 1, - sym_string, - ACTIONS(4656), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1291), 1, + anon_sym_LPAREN, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(5160), 1, + sym__concat, + STATE(950), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4652), 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(1227), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(1279), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -104735,8 +107935,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104747,23 +107949,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [33938] = 8, + [36911] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4654), 1, + ACTIONS(3827), 1, anon_sym_DQUOTE, - ACTIONS(4658), 1, + ACTIONS(4247), 1, sym_variable_name, - STATE(2645), 1, + STATE(2209), 1, sym_string, - ACTIONS(4656), 2, + ACTIONS(4245), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4652), 9, + ACTIONS(4243), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -104773,7 +107975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 32, + ACTIONS(1267), 32, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -104791,11 +107993,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104806,17 +108008,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34005] = 3, + [36978] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, - sym_file_descriptor, + ACTIONS(5192), 1, + aux_sym_concatenation_token1, + ACTIONS(5194), 1, sym__concat, + STATE(994), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5036), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 43, + ACTIONS(5034), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104828,7 +108035,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104845,11 +108051,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104860,17 +108065,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34062] = 3, + [37041] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(5192), 1, + aux_sym_concatenation_token1, + ACTIONS(5194), 1, sym__concat, + STATE(994), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 43, + ACTIONS(4971), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104882,7 +108092,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104899,11 +108108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104914,17 +108122,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34119] = 3, + [37104] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + ACTIONS(5192), 1, + aux_sym_concatenation_token1, + ACTIONS(5194), 1, sym__concat, + STATE(997), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 43, + ACTIONS(5015), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104936,7 +108149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -104953,11 +108165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -104968,17 +108179,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34176] = 3, + [37167] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, - sym_file_descriptor, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(5196), 1, sym__concat, + STATE(1022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 43, + ACTIONS(1314), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -104990,10 +108206,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105007,11 +108222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105022,17 +108236,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34233] = 3, + [37230] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, - sym_file_descriptor, + ACTIONS(5192), 1, + aux_sym_concatenation_token1, + ACTIONS(5194), 1, sym__concat, + STATE(994), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 43, + ACTIONS(5044), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105044,7 +108263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105061,11 +108279,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105076,17 +108293,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34290] = 3, + [37293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, - sym_file_descriptor, + ACTIONS(5192), 1, + aux_sym_concatenation_token1, + ACTIONS(5194), 1, sym__concat, + STATE(997), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 43, + ACTIONS(5048), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105098,7 +108320,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105115,11 +108336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105130,17 +108350,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34347] = 3, + [37356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, - sym_file_descriptor, + ACTIONS(5192), 1, + aux_sym_concatenation_token1, + ACTIONS(5194), 1, sym__concat, + STATE(997), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5040), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 43, + ACTIONS(5038), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105152,7 +108377,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105169,11 +108393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105184,42 +108407,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34404] = 8, + [37419] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, - anon_sym_DQUOTE, - ACTIONS(3878), 1, + ACTIONS(4523), 1, + anon_sym_RPAREN, + ACTIONS(4830), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5168), 1, sym_variable_name, - STATE(1683), 1, - sym_string, - ACTIONS(3876), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + STATE(6830), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5164), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + STATE(4613), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3874), 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(1227), 32, + ACTIONS(4828), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4739), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 28, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105227,12 +108454,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105243,23 +108471,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34471] = 8, + [37496] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(3827), 1, anon_sym_DQUOTE, - ACTIONS(3878), 1, + ACTIONS(4247), 1, sym_variable_name, - STATE(1683), 1, + STATE(2209), 1, sym_string, - ACTIONS(3876), 2, + ACTIONS(4245), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3874), 9, + ACTIONS(4243), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -105269,7 +108497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 32, + ACTIONS(1255), 32, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105291,7 +108519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105302,17 +108530,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34538] = 3, + [37563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, + ACTIONS(5154), 1, + aux_sym_concatenation_token1, + ACTIONS(5156), 1, sym__concat, + STATE(980), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 43, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105324,10 +108558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -105341,11 +108573,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105356,17 +108587,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34595] = 3, + [37626] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, - sym_file_descriptor, + ACTIONS(5192), 1, + aux_sym_concatenation_token1, + ACTIONS(5194), 1, sym__concat, + STATE(994), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5149), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 43, + ACTIONS(5147), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105378,7 +108614,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105395,11 +108630,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105410,17 +108644,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34652] = 3, - ACTIONS(3), 1, + [37689] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(5198), 1, + sym_word, + ACTIONS(5202), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5204), 1, + anon_sym_DOLLAR, + ACTIONS(5206), 1, + sym__special_character, + ACTIONS(5208), 1, + anon_sym_DQUOTE, + ACTIONS(5210), 1, + anon_sym_SQUOTE, + ACTIONS(5212), 1, + sym_ansi_c_string, + ACTIONS(5214), 1, + aux_sym_number_token1, + ACTIONS(5216), 1, + aux_sym_number_token2, + ACTIONS(5218), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5220), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5222), 1, + anon_sym_BQUOTE, + ACTIONS(5224), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5228), 1, + sym_test_operator, + ACTIONS(5230), 1, + sym__brace_start, + STATE(5556), 1, + aux_sym__literal_repeat1, + STATE(5661), 1, + sym_concatenation, + ACTIONS(5200), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5226), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2406), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(5439), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2408), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [37786] = 23, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5202), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5204), 1, + anon_sym_DOLLAR, + ACTIONS(5206), 1, + sym__special_character, + ACTIONS(5208), 1, + anon_sym_DQUOTE, + ACTIONS(5210), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, + aux_sym_number_token1, + ACTIONS(5216), 1, + aux_sym_number_token2, + ACTIONS(5218), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5220), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5222), 1, + anon_sym_BQUOTE, + ACTIONS(5224), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5230), 1, + sym__brace_start, + ACTIONS(5232), 1, + sym_word, + ACTIONS(5234), 1, + sym_ansi_c_string, + ACTIONS(5236), 1, + sym_test_operator, + STATE(5521), 1, + aux_sym__literal_repeat1, + STATE(5631), 1, + sym_concatenation, + ACTIONS(5200), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5226), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2544), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + STATE(5406), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2546), 11, sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [37883] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5192), 1, + aux_sym_concatenation_token1, + ACTIONS(5194), 1, sym__concat, + STATE(997), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4902), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 43, + ACTIONS(4900), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105432,7 +108819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105449,11 +108835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105464,23 +108849,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34709] = 8, + [37946] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(5240), 1, anon_sym_DQUOTE, - ACTIONS(3724), 1, + ACTIONS(5244), 1, sym_variable_name, - STATE(1876), 1, + STATE(2551), 1, sym_string, - ACTIONS(3722), 2, + ACTIONS(5242), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3720), 9, + ACTIONS(5238), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -105490,7 +108875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 32, + ACTIONS(1267), 32, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105508,11 +108893,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105523,23 +108908,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34776] = 8, + [38013] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(5240), 1, anon_sym_DQUOTE, - ACTIONS(3724), 1, + ACTIONS(5244), 1, sym_variable_name, - STATE(1876), 1, + STATE(2551), 1, sym_string, - ACTIONS(3722), 2, + ACTIONS(5242), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(3720), 9, + ACTIONS(5238), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -105549,7 +108934,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 32, + ACTIONS(1255), 32, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -105567,11 +108952,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105582,17 +108967,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34843] = 3, + [38080] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(5246), 1, + sym__special_character, + STATE(963), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 43, + ACTIONS(1394), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105605,6 +108993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105621,11 +109010,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105636,34 +109023,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34900] = 3, + [38141] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(5251), 1, + anon_sym_DQUOTE, + ACTIONS(5255), 1, + sym_variable_name, + STATE(2665), 1, + sym_string, + ACTIONS(5253), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 43, + ACTIONS(5249), 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(1267), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, + anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -105672,14 +109068,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [38208] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5251), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(5255), 1, + sym_variable_name, + STATE(2665), 1, + sym_string, + ACTIONS(5253), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5249), 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(1255), 32, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105690,17 +109141,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [34957] = 3, + [38275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 43, + ACTIONS(1348), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105712,7 +109163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105733,7 +109184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105744,17 +109195,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35014] = 3, + [38332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 43, + ACTIONS(1304), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105766,7 +109217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105787,7 +109238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105798,17 +109249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35071] = 3, + [38389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1370), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 43, + ACTIONS(1368), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105820,7 +109271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105841,7 +109292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105852,17 +109303,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35128] = 3, + [38446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 43, + ACTIONS(1336), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105895,7 +109346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105906,7 +109357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35185] = 3, + [38503] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1346), 6, @@ -105928,7 +109379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -105949,7 +109400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -105960,17 +109411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35242] = 3, + [38560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1362), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 43, + ACTIONS(1360), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -105982,7 +109433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -106003,7 +109454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -106014,42 +109465,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35299] = 8, + [38617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, - anon_sym_DQUOTE, - ACTIONS(3710), 1, - sym_variable_name, - STATE(1942), 1, - sym_string, - ACTIONS(3708), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1366), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3704), 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(1227), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(1364), 43, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106058,11 +109501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -106073,42 +109519,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35366] = 8, + [38674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, - anon_sym_DQUOTE, - ACTIONS(3710), 1, - sym_variable_name, - STATE(1942), 1, - sym_string, - ACTIONS(3708), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1382), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(3704), 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(1239), 32, + aux_sym_heredoc_redirect_token1, + ACTIONS(1380), 43, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106117,11 +109555,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -106132,25 +109573,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35433] = 7, + [38731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, - aux_sym_concatenation_token1, - ACTIONS(4631), 1, - sym__concat, - ACTIONS(4660), 1, - anon_sym_LPAREN, - STATE(1002), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 6, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, + ACTIONS(1356), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106162,7 +109595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -106176,10 +109612,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -106190,182 +109627,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35498] = 23, - ACTIONS(71), 1, + [38788] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4663), 1, - sym_word, - ACTIONS(4667), 1, + ACTIONS(1354), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 43, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4669), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4671), 1, sym__special_character, - ACTIONS(4673), 1, anon_sym_DQUOTE, - ACTIONS(4677), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4679), 1, aux_sym_number_token2, - ACTIONS(4681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4683), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4685), 1, anon_sym_BQUOTE, - ACTIONS(4687), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4691), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4693), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [38845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1374), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(4695), 1, + sym__bare_dollar, sym__brace_start, - STATE(2753), 1, - aux_sym__literal_repeat1, - ACTIONS(4665), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1372), 43, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4675), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4689), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(953), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2505), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2507), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [35595] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1043), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1045), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1049), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1053), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1055), 1, aux_sym_number_token2, - ACTIONS(1057), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1061), 1, anon_sym_BQUOTE, - ACTIONS(1063), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1069), 1, - sym_test_operator, - ACTIONS(1071), 1, - sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(3014), 1, - sym_word, - ACTIONS(4697), 1, - sym__special_character, - ACTIONS(4699), 1, - sym_variable_name, - STATE(617), 1, - sym_command_name, - STATE(2277), 1, - aux_sym__literal_repeat1, - STATE(2352), 1, - sym_concatenation, - STATE(6731), 1, - sym_subscript, - ACTIONS(1041), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1051), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1065), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3005), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1853), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [35706] = 9, + sym_word, + [38902] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4639), 1, + ACTIONS(5168), 1, sym_variable_name, - STATE(6748), 1, + STATE(6830), 1, sym_subscript, - ACTIONS(4318), 2, + ACTIONS(4503), 2, sym_test_operator, sym__brace_start, - ACTIONS(4323), 2, + ACTIONS(4508), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4569), 2, + STATE(4613), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - STATE(4669), 3, + STATE(4739), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 18, + ACTIONS(4495), 18, anon_sym_LPAREN_LPAREN, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, @@ -106373,7 +109763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -106384,7 +109774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(4310), 20, + ACTIONS(4499), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -106405,46 +109795,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [35775] = 13, + [38971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 1, - ts_builtin_sym_end, - ACTIONS(4707), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4709), 1, - sym_variable_name, - STATE(6770), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4703), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - STATE(4570), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(4701), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 43, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4634), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -106452,13 +109830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -106469,97 +109849,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [35852] = 23, - ACTIONS(71), 1, + [39028] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4663), 1, - sym_word, - ACTIONS(4667), 1, + ACTIONS(1306), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 43, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4669), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4671), 1, sym__special_character, - ACTIONS(4673), 1, anon_sym_DQUOTE, - ACTIONS(4677), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4679), 1, aux_sym_number_token2, - ACTIONS(4681), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4683), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4685), 1, anon_sym_BQUOTE, - ACTIONS(4687), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4693), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [39085] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5154), 1, + aux_sym_concatenation_token1, + ACTIONS(5257), 1, + sym__concat, + STATE(939), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 6, + sym_file_descriptor, sym_test_operator, - ACTIONS(4695), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(4712), 1, - aux_sym__simple_variable_name_token1, - STATE(2753), 1, - aux_sym__literal_repeat1, - ACTIONS(4665), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1294), 40, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4675), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4689), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(957), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2458), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2460), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [35949] = 6, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [39148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4629), 1, - aux_sym_concatenation_token1, - ACTIONS(4631), 1, - sym__concat, - STATE(1002), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 6, + ACTIONS(1346), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(1344), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106573,6 +109984,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -106586,10 +109999,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -106600,42 +110014,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36012] = 13, + [39205] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4709), 1, - sym_variable_name, - ACTIONS(4714), 1, + ACTIONS(3278), 1, ts_builtin_sym_end, - ACTIONS(4718), 1, + ACTIONS(5171), 1, + sym_variable_name, + ACTIONS(5261), 1, aux_sym_heredoc_redirect_token1, - STATE(6770), 1, + STATE(6845), 1, sym_subscript, - ACTIONS(4310), 2, + ACTIONS(4499), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4703), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4705), 2, + ACTIONS(5166), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - STATE(4570), 2, + ACTIONS(5188), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4642), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(4503), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4716), 3, + ACTIONS(5259), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4634), 3, + STATE(4869), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 28, + ACTIONS(4495), 28, anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, @@ -106653,7 +110067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -106664,17 +110078,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36089] = 3, + [39282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1362), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 43, + ACTIONS(1360), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -106686,7 +110100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -106707,7 +110121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -106718,436 +110132,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [36146] = 23, - ACTIONS(71), 1, + [39339] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4720), 1, - sym_word, - ACTIONS(4726), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4729), 1, - anon_sym_DOLLAR, - ACTIONS(4732), 1, - sym__special_character, - ACTIONS(4735), 1, - anon_sym_DQUOTE, - ACTIONS(4741), 1, - aux_sym_number_token1, - ACTIONS(4744), 1, - aux_sym_number_token2, - ACTIONS(4747), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4750), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4753), 1, - anon_sym_BQUOTE, - ACTIONS(4756), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4762), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(4765), 1, + ACTIONS(1366), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(4768), 1, + sym__bare_dollar, sym__brace_start, - STATE(2753), 1, - aux_sym__literal_repeat1, - ACTIONS(4723), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1364), 43, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4738), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4759), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(957), 2, - sym_concatenation, - aux_sym_unset_command_repeat1, - ACTIONS(2351), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2517), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2353), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [36243] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4771), 1, - sym_word, - ACTIONS(4775), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4777), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4779), 1, sym__special_character, - ACTIONS(4781), 1, anon_sym_DQUOTE, - ACTIONS(4785), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4787), 1, aux_sym_number_token2, - ACTIONS(4789), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4791), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4793), 1, anon_sym_BQUOTE, - ACTIONS(4795), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4799), 1, - sym_test_operator, - ACTIONS(4801), 1, - sym__brace_start, - STATE(2891), 1, - aux_sym__literal_repeat1, - ACTIONS(4773), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4783), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4797), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(965), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2482), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2169), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [36338] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4771), 1, sym_word, - ACTIONS(4775), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4777), 1, - anon_sym_DOLLAR, - ACTIONS(4779), 1, - sym__special_character, - ACTIONS(4781), 1, - anon_sym_DQUOTE, - ACTIONS(4785), 1, - aux_sym_number_token1, - ACTIONS(4787), 1, - aux_sym_number_token2, - ACTIONS(4789), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4791), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4793), 1, - anon_sym_BQUOTE, - ACTIONS(4795), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4799), 1, + [39396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1390), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(4801), 1, + sym__bare_dollar, sym__brace_start, - STATE(2891), 1, - aux_sym__literal_repeat1, - ACTIONS(4773), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1388), 43, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4783), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4797), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(965), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2171), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2482), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2173), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [36433] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4803), 1, - sym_word, - ACTIONS(4807), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4809), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4811), 1, sym__special_character, - ACTIONS(4813), 1, anon_sym_DQUOTE, - ACTIONS(4817), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4819), 1, aux_sym_number_token2, - ACTIONS(4821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4825), 1, anon_sym_BQUOTE, - ACTIONS(4827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4831), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [39453] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(4833), 1, + sym__bare_dollar, sym__brace_start, - STATE(5268), 1, - aux_sym__literal_repeat1, - STATE(5537), 1, - sym_concatenation, - ACTIONS(4805), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 43, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4815), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4829), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2301), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5124), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2303), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [36528] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4807), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4809), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4811), 1, sym__special_character, - ACTIONS(4813), 1, anon_sym_DQUOTE, - ACTIONS(4817), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4819), 1, aux_sym_number_token2, - ACTIONS(4821), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4823), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4825), 1, anon_sym_BQUOTE, - ACTIONS(4827), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4833), 1, - sym__brace_start, - ACTIONS(4835), 1, - sym_word, - ACTIONS(4839), 1, - sym_test_operator, - STATE(5309), 1, - aux_sym__literal_repeat1, - STATE(5541), 1, - sym_concatenation, - ACTIONS(4805), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4829), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(4837), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2305), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5249), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2307), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [36623] = 21, + sym_word, + [39510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, - anon_sym_DQUOTE, - ACTIONS(3996), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3998), 1, - anon_sym_DOLLAR, - ACTIONS(4002), 1, - aux_sym_number_token1, - ACTIONS(4004), 1, - aux_sym_number_token2, - ACTIONS(4006), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4008), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4010), 1, - anon_sym_BQUOTE, - ACTIONS(4012), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4018), 1, - sym__brace_start, - ACTIONS(4843), 1, - sym__special_character, - ACTIONS(4845), 1, - sym_test_operator, - STATE(2307), 1, - aux_sym__literal_repeat1, - ACTIONS(2169), 2, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(3994), 2, + ACTIONS(1356), 43, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4014), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(964), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4841), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(2516), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 16, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107156,70 +110330,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [36716] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3706), 1, - anon_sym_DQUOTE, - ACTIONS(3996), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3998), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4002), 1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4004), 1, aux_sym_number_token2, - ACTIONS(4006), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4008), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4010), 1, anon_sym_BQUOTE, - ACTIONS(4012), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4018), 1, - sym__brace_start, - ACTIONS(4843), 1, - sym__special_character, - ACTIONS(4845), 1, - sym_test_operator, - STATE(2307), 1, - aux_sym__literal_repeat1, - ACTIONS(2173), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3994), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4014), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(964), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4841), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2516), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2171), 16, + [39567] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 43, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -107228,62 +110384,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [36809] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3953), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3956), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(3962), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(3965), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3968), 1, aux_sym_number_token2, - ACTIONS(3971), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3974), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3977), 1, anon_sym_BQUOTE, - ACTIONS(3980), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3989), 1, - sym__brace_start, - ACTIONS(4850), 1, - sym__special_character, - ACTIONS(4853), 1, - sym_test_operator, - STATE(2307), 1, - aux_sym__literal_repeat1, - ACTIONS(2183), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3950), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3983), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(964), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(4847), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(2516), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [39624] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3244), 1, + anon_sym_DQUOTE, + ACTIONS(4241), 1, + sym_variable_name, + STATE(1852), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2181), 16, + ACTIONS(4239), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(4237), 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(1267), 32, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -107300,96 +110446,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [36902] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4856), 1, - sym_word, - ACTIONS(4862), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4865), 1, - anon_sym_DOLLAR, - ACTIONS(4868), 1, sym__special_character, - ACTIONS(4871), 1, - anon_sym_DQUOTE, - ACTIONS(4877), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4880), 1, aux_sym_number_token2, - ACTIONS(4883), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4886), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4889), 1, anon_sym_BQUOTE, - ACTIONS(4892), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4898), 1, - sym_test_operator, - ACTIONS(4901), 1, - sym__brace_start, - STATE(2891), 1, - aux_sym__literal_repeat1, - ACTIONS(4859), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4874), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4895), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(965), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2181), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2482), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2183), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [36997] = 6, + sym_word, + [39691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4904), 1, - aux_sym_concatenation_token1, - ACTIONS(4907), 1, - sym__concat, - STATE(966), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 6, + ACTIONS(1374), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1372), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107403,6 +110485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -107416,10 +110500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -107430,22 +110515,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37060] = 6, + [39748] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(4912), 1, - sym__concat, - STATE(979), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, + ACTIONS(1332), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107458,8 +110538,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -107473,10 +110554,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -107487,22 +110569,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [37123] = 8, + [39805] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4916), 1, + ACTIONS(5265), 1, anon_sym_DQUOTE, - ACTIONS(4920), 1, + ACTIONS(5269), 1, sym_variable_name, - STATE(2612), 1, + STATE(2626), 1, sym_string, - ACTIONS(1235), 2, + ACTIONS(1269), 2, sym__concat, sym_test_operator, - ACTIONS(4918), 2, + ACTIONS(5267), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4914), 9, + ACTIONS(5263), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -107512,7 +110594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 33, + ACTIONS(1267), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -107546,22 +110628,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, anon_sym_EQ_TILDE, - [37190] = 8, + [39872] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4916), 1, + ACTIONS(5265), 1, anon_sym_DQUOTE, - ACTIONS(4920), 1, + ACTIONS(5269), 1, sym_variable_name, - STATE(2612), 1, + STATE(2626), 1, sym_string, - ACTIONS(1241), 2, + ACTIONS(1263), 2, sym__concat, sym_test_operator, - ACTIONS(4918), 2, + ACTIONS(5267), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4914), 9, + ACTIONS(5263), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -107571,7 +110653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 33, + ACTIONS(1255), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -107605,47 +110687,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_RBRACK, anon_sym_EQ_TILDE, - [37257] = 6, - ACTIONS(71), 1, + [39939] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2671), 1, - aux_sym__literal_repeat1, - STATE(2789), 1, - sym_concatenation, - STATE(2441), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2301), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2303), 26, + ACTIONS(5192), 1, + aux_sym_concatenation_token1, + ACTIONS(5271), 1, + sym__concat, + STATE(998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1294), 41, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -107653,56 +110730,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [37320] = 6, - ACTIONS(71), 1, + sym_word, + [40002] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2697), 1, - aux_sym__literal_repeat1, - STATE(2874), 1, - sym_concatenation, - STATE(2400), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2305), 12, + ACTIONS(1342), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 43, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(2307), 26, + [40059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 43, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -107710,112 +110837,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [37383] = 30, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, - anon_sym_DOLLAR, - ACTIONS(53), 1, - anon_sym_DQUOTE, - ACTIONS(57), 1, - aux_sym_number_token1, - ACTIONS(59), 1, - aux_sym_number_token2, - ACTIONS(61), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(77), 1, - sym_test_operator, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2715), 1, sym_word, - ACTIONS(4699), 1, - sym_variable_name, - ACTIONS(4922), 1, - sym__special_character, - STATE(540), 1, - sym_command_name, - STATE(1257), 1, - aux_sym__literal_repeat1, - STATE(1432), 1, - sym_concatenation, - STATE(6731), 1, - sym_subscript, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(55), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3005), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - 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, - [37494] = 6, + [40116] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(5192), 1, aux_sym_concatenation_token1, - ACTIONS(4912), 1, + ACTIONS(5273), 1, sym__concat, - STATE(979), 1, + STATE(998), 1, aux_sym_concatenation_repeat1, - ACTIONS(278), 5, + ACTIONS(1316), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 41, + ACTIONS(1314), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -107827,9 +110879,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -107846,331 +110898,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [37557] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4924), 1, - sym_word, - ACTIONS(4928), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4930), 1, - anon_sym_DOLLAR, - ACTIONS(4932), 1, - sym__special_character, - ACTIONS(4934), 1, - anon_sym_DQUOTE, - ACTIONS(4938), 1, - aux_sym_number_token1, - ACTIONS(4940), 1, - aux_sym_number_token2, - ACTIONS(4942), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4944), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4946), 1, - anon_sym_BQUOTE, - ACTIONS(4948), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4952), 1, - sym_test_operator, - ACTIONS(4954), 1, - sym__brace_start, - STATE(2818), 1, - aux_sym__literal_repeat1, - ACTIONS(4926), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4936), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4950), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(976), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2532), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2169), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [37652] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4924), 1, - sym_word, - ACTIONS(4928), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4930), 1, - anon_sym_DOLLAR, - ACTIONS(4932), 1, - sym__special_character, - ACTIONS(4934), 1, - anon_sym_DQUOTE, - ACTIONS(4938), 1, - aux_sym_number_token1, - ACTIONS(4940), 1, - aux_sym_number_token2, - ACTIONS(4942), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4944), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4946), 1, - anon_sym_BQUOTE, - ACTIONS(4948), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4952), 1, - sym_test_operator, - ACTIONS(4954), 1, - sym__brace_start, - STATE(2818), 1, - aux_sym__literal_repeat1, - ACTIONS(4926), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4936), 2, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - ACTIONS(4950), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(976), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2171), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2532), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2173), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [37747] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4956), 1, - sym_word, - ACTIONS(4962), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4965), 1, - anon_sym_DOLLAR, - ACTIONS(4968), 1, - sym__special_character, - ACTIONS(4971), 1, - anon_sym_DQUOTE, - ACTIONS(4977), 1, aux_sym_number_token1, - ACTIONS(4980), 1, aux_sym_number_token2, - ACTIONS(4983), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4986), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4989), 1, anon_sym_BQUOTE, - ACTIONS(4992), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4998), 1, - sym_test_operator, - ACTIONS(5001), 1, - sym__brace_start, - STATE(2818), 1, - aux_sym__literal_repeat1, - ACTIONS(4959), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4974), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4995), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(976), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2181), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2532), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2183), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [37842] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(449), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(451), 1, - anon_sym_DOLLAR, - ACTIONS(455), 1, - anon_sym_DQUOTE, - ACTIONS(459), 1, - aux_sym_number_token1, - ACTIONS(461), 1, - aux_sym_number_token2, - ACTIONS(463), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(465), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(467), 1, - anon_sym_BQUOTE, - ACTIONS(469), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(477), 1, - sym_test_operator, - ACTIONS(479), 1, - sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2683), 1, sym_word, - ACTIONS(4699), 1, - sym_variable_name, - ACTIONS(5004), 1, - sym__special_character, - STATE(529), 1, - sym_command_name, - STATE(978), 1, - aux_sym__literal_repeat1, - STATE(1073), 1, - sym_concatenation, - STATE(6731), 1, - sym_subscript, - ACTIONS(447), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(457), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(471), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3005), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(813), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [37953] = 5, + [40179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5006), 1, - sym__special_character, - STATE(997), 1, - aux_sym__literal_repeat1, - ACTIONS(278), 5, + ACTIONS(5275), 1, + aux_sym_concatenation_token1, + ACTIONS(5278), 1, + sym__concat, + STATE(998), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 42, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108182,8 +110936,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -108201,8 +110953,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -108213,22 +110966,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38014] = 6, + [40242] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(5192), 1, aux_sym_concatenation_token1, - ACTIONS(5008), 1, + ACTIONS(5194), 1, sym__concat, - STATE(985), 1, + STATE(994), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 41, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108240,9 +110993,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -108259,7 +111012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -108270,22 +111023,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38077] = 6, + [40305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(4912), 1, - sym__concat, - STATE(981), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, + ACTIONS(1390), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 41, + ACTIONS(1388), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108298,8 +111046,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -108313,10 +111062,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -108327,22 +111077,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38140] = 6, + [40362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(5010), 1, - sym__concat, - STATE(985), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 41, + ACTIONS(1328), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108355,8 +111100,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -108370,10 +111116,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -108384,39 +111131,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38203] = 7, + [40419] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1263), 1, - anon_sym_LPAREN, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(4912), 1, - sym__concat, - STATE(981), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, + ACTIONS(5283), 1, + anon_sym_DQUOTE, + ACTIONS(5287), 1, + sym_variable_name, + STATE(2753), 1, + sym_string, + ACTIONS(5285), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(5281), 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(1267), 32, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108428,10 +111178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -108442,46 +111190,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38268] = 13, + [40486] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 1, - anon_sym_RPAREN, - ACTIONS(4527), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4639), 1, + ACTIONS(5283), 1, + anon_sym_DQUOTE, + ACTIONS(5287), 1, sym_variable_name, - STATE(6748), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5012), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4569), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + STATE(2753), 1, + sym_string, + ACTIONS(5285), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(4525), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 28, + ACTIONS(5281), 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(1255), 32, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108489,13 +111233,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -108506,103 +111249,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38345] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(357), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(359), 1, - anon_sym_DOLLAR, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(367), 1, - aux_sym_number_token1, - ACTIONS(369), 1, - aux_sym_number_token2, - ACTIONS(371), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_BQUOTE, - ACTIONS(377), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(387), 1, - sym__brace_start, - ACTIONS(781), 1, - sym_test_operator, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2962), 1, - sym_word, - ACTIONS(4699), 1, - sym_variable_name, - ACTIONS(5014), 1, - sym__special_character, - STATE(533), 1, - sym_command_name, - STATE(1179), 1, - aux_sym__literal_repeat1, - STATE(1398), 1, - sym_concatenation, - STATE(6731), 1, - sym_subscript, - ACTIONS(355), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(379), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(779), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3005), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(980), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [38456] = 6, + [40553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5016), 1, - aux_sym_concatenation_token1, - ACTIONS(5019), 1, - sym__concat, - STATE(985), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(1342), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(1340), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108615,8 +111272,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -108630,10 +111288,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -108644,57 +111303,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38519] = 10, + [40610] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4709), 1, + ACTIONS(5171), 1, sym_variable_name, - STATE(6770), 1, + STATE(6845), 1, sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4327), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(4570), 2, + ACTIONS(4503), 2, + sym_test_operator, + sym__brace_start, + STATE(4642), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(4508), 3, sym_file_descriptor, - sym_test_operator, - sym__brace_start, - STATE(4634), 3, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4869), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 7, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(4304), 28, + ACTIONS(4495), 18, anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -108705,22 +111343,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38590] = 6, + ACTIONS(4499), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [40679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 1, - aux_sym_concatenation_token1, - ACTIONS(4635), 1, - sym__concat, - STATE(914), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 5, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 41, + ACTIONS(1320), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108732,6 +111385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -108748,10 +111402,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -108762,22 +111417,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38653] = 6, + [40736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 1, - aux_sym_concatenation_token1, - ACTIONS(4635), 1, - sym__concat, - STATE(917), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4513), 5, + ACTIONS(1326), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 41, + ACTIONS(1324), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108789,6 +111439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -108805,10 +111456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -108819,58 +111471,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38716] = 9, + [40793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4709), 1, - sym_variable_name, - STATE(6770), 1, - sym_subscript, - ACTIONS(4318), 2, + ACTIONS(1378), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(4570), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4323), 3, - sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4634), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 18, + ACTIONS(1376), 43, anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_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(4310), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -108879,22 +111507,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [38785] = 6, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [40850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 1, - aux_sym_concatenation_token1, - ACTIONS(4635), 1, - sym__concat, - STATE(914), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 5, + ACTIONS(1338), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 41, + ACTIONS(1336), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108906,6 +111547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -108922,10 +111564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -108936,22 +111579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38848] = 6, + [40907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 1, - aux_sym_concatenation_token1, - ACTIONS(4635), 1, - sym__concat, - STATE(917), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 5, + ACTIONS(1382), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 41, + ACTIONS(1380), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -108963,6 +111601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -108979,10 +111618,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -108993,103 +111633,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [38911] = 30, - ACTIONS(71), 1, + [40964] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(707), 1, + ACTIONS(5289), 1, + sym_word, + ACTIONS(5293), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(709), 1, + ACTIONS(5295), 1, anon_sym_DOLLAR, - ACTIONS(713), 1, + ACTIONS(5297), 1, + sym__special_character, + ACTIONS(5299), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(5301), 1, + anon_sym_SQUOTE, + ACTIONS(5303), 1, + sym_ansi_c_string, + ACTIONS(5305), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(5307), 1, aux_sym_number_token2, - ACTIONS(721), 1, + ACTIONS(5309), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, + ACTIONS(5311), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(5313), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(5315), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(735), 1, + ACTIONS(5319), 1, sym_test_operator, - ACTIONS(737), 1, + ACTIONS(5321), 1, sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(3018), 1, - sym_word, - ACTIONS(4699), 1, - sym_variable_name, - ACTIONS(5022), 1, - sym__special_character, - STATE(530), 1, - sym_command_name, - STATE(1127), 1, + STATE(3205), 1, aux_sym__literal_repeat1, - STATE(1231), 1, - sym_concatenation, - STATE(6731), 1, - sym_subscript, - ACTIONS(705), 2, + ACTIONS(5291), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(715), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(729), 2, + ACTIONS(5317), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3005), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, + STATE(1014), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2154), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(859), 9, + ACTIONS(2156), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(2749), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [39022] = 6, + [41061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4633), 1, - aux_sym_concatenation_token1, - ACTIONS(4635), 1, - sym__concat, - STATE(914), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4506), 5, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4504), 41, + ACTIONS(1332), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109101,6 +111729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -109117,10 +111746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -109131,254 +111761,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39085] = 6, - ACTIONS(3), 1, + [41118] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(4633), 1, - aux_sym_concatenation_token1, - ACTIONS(4635), 1, - sym__concat, - STATE(917), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4523), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4521), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5289), 1, + sym_word, + ACTIONS(5293), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5295), 1, anon_sym_DOLLAR, + ACTIONS(5297), 1, sym__special_character, + ACTIONS(5299), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(5301), 1, + anon_sym_SQUOTE, + ACTIONS(5303), 1, sym_ansi_c_string, + ACTIONS(5305), 1, aux_sym_number_token1, + ACTIONS(5307), 1, aux_sym_number_token2, + ACTIONS(5309), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5311), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5313), 1, anon_sym_BQUOTE, + ACTIONS(5315), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [39148] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_DQUOTE, - ACTIONS(5030), 1, - sym_variable_name, - STATE(2466), 1, - sym_string, - ACTIONS(5028), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, + ACTIONS(5319), 1, sym_test_operator, + ACTIONS(5321), 1, sym__brace_start, - ACTIONS(5024), 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(1227), 32, + STATE(3205), 1, + aux_sym__literal_repeat1, + ACTIONS(5291), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5317), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1014), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2158), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [39215] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_DQUOTE, - ACTIONS(5030), 1, - sym_variable_name, - STATE(2466), 1, - sym_string, - ACTIONS(5028), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(2160), 10, sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5024), 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(1239), 32, - anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(2749), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41215] = 23, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5323), 1, + sym_word, + ACTIONS(5329), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5332), 1, + anon_sym_DOLLAR, + ACTIONS(5335), 1, sym__special_character, - sym_raw_string, + ACTIONS(5338), 1, + anon_sym_DQUOTE, + ACTIONS(5341), 1, + anon_sym_SQUOTE, + ACTIONS(5344), 1, sym_ansi_c_string, + ACTIONS(5347), 1, aux_sym_number_token1, + ACTIONS(5350), 1, aux_sym_number_token2, + ACTIONS(5353), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5356), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5359), 1, anon_sym_BQUOTE, + ACTIONS(5362), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [39282] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5032), 1, - sym__special_character, - STATE(997), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, - sym_file_descriptor, + ACTIONS(5368), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(5371), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 42, + STATE(3205), 1, + aux_sym__literal_repeat1, + ACTIONS(5326), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5365), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1014), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2168), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(2170), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, + STATE(2749), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [39343] = 8, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [41312] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(2128), 1, anon_sym_DQUOTE, - ACTIONS(5041), 1, + ACTIONS(4267), 1, sym_variable_name, - STATE(2596), 1, + STATE(1617), 1, sym_string, - ACTIONS(5039), 2, + ACTIONS(4265), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5035), 9, + ACTIONS(4263), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -109388,7 +111935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 32, + ACTIONS(1267), 32, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109398,7 +111945,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109407,10 +111953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -109421,23 +111968,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39410] = 8, + [41379] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(2128), 1, anon_sym_DQUOTE, - ACTIONS(5041), 1, + ACTIONS(4267), 1, sym_variable_name, - STATE(2596), 1, + STATE(1617), 1, sym_string, - ACTIONS(5039), 2, + ACTIONS(4265), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5035), 9, + ACTIONS(4263), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -109447,7 +111994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 32, + ACTIONS(1255), 32, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -109457,7 +112004,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109466,10 +112012,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -109480,354 +112027,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39477] = 3, - ACTIONS(3), 1, + [41446] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 43, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5374), 1, + sym_word, + ACTIONS(5378), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(5380), 1, anon_sym_DOLLAR, + ACTIONS(5382), 1, sym__special_character, + ACTIONS(5384), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(5386), 1, + anon_sym_SQUOTE, + ACTIONS(5388), 1, sym_ansi_c_string, + ACTIONS(5390), 1, aux_sym_number_token1, + ACTIONS(5392), 1, aux_sym_number_token2, + ACTIONS(5394), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5396), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5398), 1, anon_sym_BQUOTE, + ACTIONS(5400), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [39534] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(357), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(359), 1, - anon_sym_DOLLAR, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(367), 1, - aux_sym_number_token1, - ACTIONS(369), 1, - aux_sym_number_token2, - ACTIONS(371), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_BQUOTE, - ACTIONS(377), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, + ACTIONS(5404), 1, sym_test_operator, - ACTIONS(387), 1, + ACTIONS(5406), 1, sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2804), 1, - sym_word, - ACTIONS(4699), 1, - sym_variable_name, - ACTIONS(5043), 1, - sym__special_character, - STATE(553), 1, - sym_command_name, - STATE(1179), 1, + STATE(5505), 1, aux_sym__literal_repeat1, - STATE(1398), 1, + STATE(5611), 1, sym_concatenation, - STATE(6731), 1, - sym_subscript, - ACTIONS(355), 2, + ACTIONS(5376), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(365), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(379), 2, + ACTIONS(5402), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3005), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, + ACTIONS(2406), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - STATE(1010), 9, + STATE(5307), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [39645] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4629), 1, - aux_sym_concatenation_token1, - ACTIONS(5045), 1, - sym__concat, - STATE(966), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 6, + ACTIONS(2408), 11, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [41543] = 23, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5378), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(5380), 1, anon_sym_DOLLAR, + ACTIONS(5382), 1, sym__special_character, + ACTIONS(5384), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(5386), 1, + anon_sym_SQUOTE, + ACTIONS(5390), 1, aux_sym_number_token1, + ACTIONS(5392), 1, aux_sym_number_token2, + ACTIONS(5394), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(5396), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(5398), 1, anon_sym_BQUOTE, + ACTIONS(5400), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(5406), 1, + sym__brace_start, + ACTIONS(5408), 1, sym_word, - [39708] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2755), 1, - anon_sym_RPAREN, - ACTIONS(4471), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(4639), 1, - sym_variable_name, - STATE(6748), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5012), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4569), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, - sym_file_descriptor, + ACTIONS(5410), 1, + sym_ansi_c_string, + ACTIONS(5412), 1, sym_test_operator, - sym__brace_start, - ACTIONS(4465), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 28, + STATE(5507), 1, + aux_sym__literal_repeat1, + STATE(5617), 1, + sym_concatenation, + ACTIONS(5376), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5402), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2544), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + STATE(5338), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2546), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + [41640] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4205), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(4207), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(4211), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(4213), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, aux_sym_number_token1, + ACTIONS(4217), 1, aux_sym_number_token2, + ACTIONS(4219), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4223), 1, anon_sym_BQUOTE, + ACTIONS(4225), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(4231), 1, + sym__brace_start, + ACTIONS(5416), 1, + sym__special_character, + ACTIONS(5418), 1, + sym_test_operator, + STATE(4468), 1, + aux_sym__literal_repeat1, + STATE(5078), 1, + sym_concatenation, + ACTIONS(2408), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4203), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(5414), 2, + sym_ansi_c_string, sym_word, - [39785] = 30, - ACTIONS(71), 1, + STATE(5444), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2406), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [41735] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(357), 1, + ACTIONS(4205), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(359), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(363), 1, + ACTIONS(4211), 1, anon_sym_DQUOTE, - ACTIONS(367), 1, + ACTIONS(4213), 1, + anon_sym_SQUOTE, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(369), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(371), 1, + ACTIONS(4219), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(4223), 1, anon_sym_BQUOTE, - ACTIONS(377), 1, + ACTIONS(4225), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(387), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(1023), 1, - sym_test_operator, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(3012), 1, - sym_word, - ACTIONS(4699), 1, - sym_variable_name, - ACTIONS(5047), 1, + ACTIONS(5416), 1, sym__special_character, - STATE(613), 1, - sym_command_name, - STATE(1179), 1, + ACTIONS(5422), 1, + sym_test_operator, + STATE(4479), 1, aux_sym__literal_repeat1, - STATE(1398), 1, + STATE(4941), 1, sym_concatenation, - STATE(6731), 1, - sym_subscript, - ACTIONS(355), 2, + ACTIONS(2546), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4203), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(379), 2, + ACTIONS(4227), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1017), 2, - sym_raw_string, + ACTIONS(5420), 2, sym_ansi_c_string, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3005), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1693), 9, + sym_word, + STATE(5448), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [39896] = 3, + ACTIONS(2544), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [41830] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1370), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 43, + ACTIONS(1368), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109860,7 +112364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -109871,17 +112375,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [39953] = 3, + [41887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(5424), 1, + aux_sym_concatenation_token1, + ACTIONS(5427), 1, sym__concat, + STATE(1022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 43, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -109893,10 +112402,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -109910,11 +112418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -109925,69 +112432,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40010] = 21, + [41950] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3626), 1, - anon_sym_DOLLAR, - ACTIONS(3630), 1, - anon_sym_DQUOTE, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3636), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3638), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3640), 1, - anon_sym_BQUOTE, - ACTIONS(3642), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(5051), 1, - sym__special_character, - ACTIONS(5053), 1, - sym_test_operator, - STATE(4378), 1, - aux_sym__literal_repeat1, - STATE(4788), 1, - sym_concatenation, - ACTIONS(2303), 2, + ACTIONS(5154), 1, + aux_sym_concatenation_token1, + ACTIONS(5156), 1, + sym__concat, + STATE(980), 1, + aux_sym_concatenation_repeat1, + ACTIONS(286), 6, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(3622), 2, + ACTIONS(247), 40, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3644), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5049), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5236), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2301), 17, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -109997,69 +112473,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [40103] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3624), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(3626), 1, anon_sym_DOLLAR, - ACTIONS(3630), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(3632), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3634), 1, aux_sym_number_token2, - ACTIONS(3636), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3638), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3640), 1, anon_sym_BQUOTE, - ACTIONS(3642), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(5051), 1, - sym__special_character, - ACTIONS(5057), 1, - sym_test_operator, - STATE(4395), 1, - aux_sym__literal_repeat1, - STATE(4818), 1, - sym_concatenation, - ACTIONS(2307), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(3622), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3644), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5055), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(5238), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2305), 17, + [42013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 7, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110069,103 +112525,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [40196] = 30, - ACTIONS(71), 1, - sym_comment, - ACTIONS(357), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(359), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(363), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(367), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(369), 1, aux_sym_number_token2, - ACTIONS(371), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, anon_sym_BQUOTE, - ACTIONS(377), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(385), 1, - sym_test_operator, - ACTIONS(387), 1, - sym__brace_start, - ACTIONS(1394), 1, - anon_sym_LT_LT_LT, - ACTIONS(1396), 1, - sym_file_descriptor, - ACTIONS(2804), 1, - sym_word, - ACTIONS(4699), 1, - sym_variable_name, - ACTIONS(5043), 1, - sym__special_character, - STATE(545), 1, - sym_command_name, - STATE(1179), 1, - aux_sym__literal_repeat1, - STATE(1398), 1, - sym_concatenation, - STATE(6731), 1, - sym_subscript, - ACTIONS(355), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(365), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(379), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1392), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3005), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(1390), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(1388), 5, + sym_word, + [42069] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_test_operator, + ACTIONS(5432), 1, + anon_sym_DQUOTE, + ACTIONS(5436), 1, + sym_variable_name, + STATE(2432), 1, + sym_string, + ACTIONS(5434), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5430), 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(1255), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(1010), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [40307] = 6, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + [42135] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(4912), 1, - sym__concat, - STATE(1049), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, + ACTIONS(5438), 1, + sym__special_character, + STATE(1094), 1, + aux_sym__literal_repeat1, + ACTIONS(286), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(247), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110179,6 +112627,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110193,9 +112643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -110206,37 +112655,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40369] = 6, + [42195] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, + ACTIONS(5444), 1, aux_sym_concatenation_token1, - ACTIONS(5061), 1, + ACTIONS(5446), 1, sym__concat, - STATE(1046), 1, + STATE(1044), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 6, + ACTIONS(5442), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 39, + ACTIONS(5440), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110251,7 +112700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -110262,17 +112711,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40431] = 3, + [42257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(5448), 1, + aux_sym_concatenation_token1, + ACTIONS(5450), 1, sym__concat, + STATE(1032), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 42, + ACTIONS(1294), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110285,8 +112740,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110300,11 +112753,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -110315,17 +112767,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40487] = 3, + [42319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 42, + ACTIONS(1320), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110357,7 +112809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -110368,17 +112820,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40543] = 3, + [42375] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + ACTIONS(5448), 1, + aux_sym_concatenation_token1, + ACTIONS(5452), 1, sym__concat, + STATE(1032), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 42, + ACTIONS(1314), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110391,8 +112849,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110406,11 +112862,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -110421,17 +112876,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40599] = 3, + [42437] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, - sym_file_descriptor, + ACTIONS(5448), 1, + aux_sym_concatenation_token1, + ACTIONS(5454), 1, sym__concat, + STATE(1030), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4902), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 42, + ACTIONS(4900), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110444,8 +112905,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110459,11 +112918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -110474,17 +112932,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40655] = 3, + [42499] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, - sym_file_descriptor, + ACTIONS(5456), 1, + aux_sym_concatenation_token1, + ACTIONS(5459), 1, sym__concat, + STATE(1032), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 42, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110497,8 +112961,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110512,11 +112974,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -110527,33 +112988,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40711] = 3, + [42561] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(5466), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5468), 1, + sym_variable_name, + STATE(6849), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5464), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4855), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 42, - anon_sym_LPAREN_LPAREN, + ACTIONS(5462), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -110561,15 +113033,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -110580,17 +113050,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40767] = 3, + [42635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1386), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 42, + ACTIONS(1384), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110602,9 +113072,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110622,7 +113092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -110633,133 +113103,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [40823] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_test_operator, - ACTIONS(5065), 1, - anon_sym_DQUOTE, - ACTIONS(5069), 1, - sym_variable_name, - STATE(2433), 1, - sym_string, - ACTIONS(5067), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5063), 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(1227), 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [40889] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_test_operator, - ACTIONS(5065), 1, - anon_sym_DQUOTE, - ACTIONS(5069), 1, - sym_variable_name, - STATE(2433), 1, - sym_string, - ACTIONS(5067), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5063), 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(1239), 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [40955] = 3, + [42691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1370), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 42, + ACTIONS(1368), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110771,9 +113125,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110791,7 +113145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -110802,17 +113156,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41011] = 3, + [42747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1362), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 42, + ACTIONS(1360), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110824,9 +113178,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110844,7 +113198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -110855,17 +113209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41067] = 3, + [42803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 42, + ACTIONS(1348), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110877,9 +113231,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -110897,7 +113251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -110908,22 +113262,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41123] = 6, + [42859] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, + ACTIONS(5448), 1, aux_sym_concatenation_token1, - ACTIONS(5073), 1, + ACTIONS(5454), 1, sym__concat, - STATE(1067), 1, + STATE(1028), 1, aux_sym_concatenation_repeat1, - ACTIONS(4502), 5, + ACTIONS(1302), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4500), 40, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -110935,7 +113290,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -110953,7 +113307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -110964,46 +113318,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41185] = 13, + [42921] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 1, - anon_sym_BQUOTE, - ACTIONS(5079), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5081), 1, - sym_variable_name, - STATE(6774), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5077), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4593), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(5448), 1, + aux_sym_concatenation_token1, + ACTIONS(5454), 1, + sym__concat, + STATE(1028), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5075), 3, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5044), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 27, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111011,33 +113356,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41261] = 3, + [42983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1302), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 42, + ACTIONS(1300), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111049,6 +113395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -111065,11 +113413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111080,17 +113427,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41317] = 3, + [43039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1390), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 42, + ACTIONS(1388), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111102,9 +113449,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111122,7 +113469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111133,23 +113480,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41373] = 6, + [43095] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, + ACTIONS(5448), 1, aux_sym_concatenation_token1, - ACTIONS(5061), 1, + ACTIONS(5454), 1, sym__concat, - STATE(1045), 1, + STATE(1030), 1, aux_sym_concatenation_repeat1, - ACTIONS(4579), 6, + ACTIONS(5050), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 39, + ACTIONS(5048), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111178,7 +113525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111189,23 +113536,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41435] = 6, + [43157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, - aux_sym_concatenation_token1, - ACTIONS(5061), 1, - sym__concat, - STATE(1046), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 6, + ACTIONS(1338), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 39, + ACTIONS(1336), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111217,6 +113558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -111231,10 +113574,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111245,41 +113589,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41497] = 8, + [43213] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 1, - anon_sym_DQUOTE, - ACTIONS(5090), 1, - sym_variable_name, - STATE(2862), 1, - sym_string, - ACTIONS(5088), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(5444), 1, + aux_sym_concatenation_token1, + ACTIONS(5471), 1, + sym__concat, + STATE(1046), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5084), 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(1227), 31, + aux_sym_heredoc_redirect_token1, + ACTIONS(1294), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -111289,10 +113628,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111303,41 +113645,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41563] = 8, + [43275] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 1, - anon_sym_DQUOTE, - ACTIONS(5090), 1, - sym_variable_name, - STATE(2862), 1, - sym_string, - ACTIONS(5088), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(5444), 1, + aux_sym_concatenation_token1, + ACTIONS(5473), 1, + sym__concat, + STATE(1046), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5084), 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(1239), 31, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -111347,10 +113684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111361,44 +113701,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41629] = 12, + [43337] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5098), 1, - sym_variable_name, - STATE(6757), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4816), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(5475), 1, + aux_sym_concatenation_token1, + ACTIONS(5478), 1, + sym__concat, + STATE(1046), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5092), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 28, - anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111406,13 +113739,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111423,17 +113757,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41703] = 3, + [43399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 42, + ACTIONS(1336), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111465,7 +113799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111476,44 +113810,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41759] = 12, + [43455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5098), 1, - sym_variable_name, - ACTIONS(5103), 1, - aux_sym_heredoc_redirect_token1, - STATE(6757), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4816), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(1382), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5101), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1380), 42, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111521,13 +113844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111538,46 +113863,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [41833] = 13, + [43511] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, - anon_sym_BQUOTE, - ACTIONS(5081), 1, - sym_variable_name, - ACTIONS(5107), 1, - aux_sym_heredoc_redirect_token1, - STATE(6774), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5077), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4593), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(5481), 1, + aux_sym_concatenation_token1, + ACTIONS(5483), 1, + sym__concat, + STATE(1051), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5105), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1294), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 27, - anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111585,60 +113901,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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, - [41909] = 12, + [43573] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5098), 1, - sym_variable_name, - ACTIONS(5111), 1, - aux_sym_heredoc_redirect_token1, - STATE(6757), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4816), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(5481), 1, + aux_sym_concatenation_token1, + ACTIONS(5485), 1, + sym__concat, + STATE(1051), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5109), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 28, - anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111646,13 +113957,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111662,38 +113973,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, - [41983] = 6, + [43635] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, + ACTIONS(5487), 1, aux_sym_concatenation_token1, - ACTIONS(5073), 1, + ACTIONS(5490), 1, sym__concat, - STATE(1067), 1, + STATE(1051), 1, aux_sym_concatenation_repeat1, - ACTIONS(4428), 5, + ACTIONS(1306), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 40, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111702,13 +114014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111718,38 +114029,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, - [42045] = 6, + [43697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, + ACTIONS(5444), 1, aux_sym_concatenation_token1, - ACTIONS(5073), 1, + ACTIONS(5446), 1, sym__concat, - STATE(1069), 1, + STATE(1044), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 5, + ACTIONS(1302), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 40, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111764,7 +114076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111775,22 +114087,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42107] = 6, + [43759] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1067), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 5, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 40, + ACTIONS(1332), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -111802,8 +114109,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -111817,10 +114125,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111831,37 +114140,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42169] = 6, + [43815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, + ACTIONS(5444), 1, aux_sym_concatenation_token1, - ACTIONS(5073), 1, + ACTIONS(5446), 1, sym__concat, - STATE(1069), 1, + STATE(1044), 1, aux_sym_concatenation_repeat1, - ACTIONS(4595), 5, + ACTIONS(5495), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 40, + ACTIONS(5493), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -111876,7 +114185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -111887,283 +114196,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42231] = 8, + [43877] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, - sym_test_operator, - ACTIONS(5065), 1, - anon_sym_DQUOTE, - ACTIONS(5069), 1, + ACTIONS(5481), 1, + aux_sym_concatenation_token1, + ACTIONS(5497), 1, + sym__concat, + STATE(1049), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, + sym_file_descriptor, sym_variable_name, - STATE(2433), 1, - sym_string, - ACTIONS(5067), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5063), 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(1227), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - [42297] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_test_operator, - ACTIONS(5065), 1, - anon_sym_DQUOTE, - ACTIONS(5069), 1, - sym_variable_name, - STATE(2433), 1, - sym_string, - ACTIONS(5067), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5063), 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(1239), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - [42363] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5113), 1, - sym_word, - ACTIONS(5117), 1, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(5119), 1, anon_sym_DOLLAR, - ACTIONS(5121), 1, sym__special_character, - ACTIONS(5123), 1, anon_sym_DQUOTE, - ACTIONS(5127), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(5129), 1, aux_sym_number_token2, - ACTIONS(5131), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5133), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5135), 1, anon_sym_BQUOTE, - ACTIONS(5137), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5141), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [43939] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5444), 1, + aux_sym_concatenation_token1, + ACTIONS(5446), 1, + sym__concat, + STATE(1045), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5501), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(5143), 1, sym__brace_start, - STATE(5435), 1, - aux_sym__literal_repeat1, - STATE(5605), 1, - sym_concatenation, - ACTIONS(5115), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5499), 40, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5125), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5139), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2301), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5329), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2303), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [42457] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5117), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(5119), 1, anon_sym_DOLLAR, - ACTIONS(5121), 1, sym__special_character, - ACTIONS(5123), 1, anon_sym_DQUOTE, - ACTIONS(5127), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(5129), 1, aux_sym_number_token2, - ACTIONS(5131), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5133), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5135), 1, anon_sym_BQUOTE, - ACTIONS(5137), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5143), 1, - sym__brace_start, - ACTIONS(5145), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(5149), 1, - sym_test_operator, - STATE(5482), 1, + [44001] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5503), 1, + sym__special_character, + STATE(1070), 1, aux_sym__literal_repeat1, - STATE(5574), 1, - sym_concatenation, - ACTIONS(5115), 2, + ACTIONS(5149), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5147), 41, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5139), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5147), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2305), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5263), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2307), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [42551] = 6, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [44061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, - aux_sym_concatenation_token1, - ACTIONS(5151), 1, - sym__concat, - STATE(1050), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 6, + ACTIONS(1326), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 39, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112175,6 +114386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -112189,10 +114401,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112203,23 +114416,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42613] = 6, + [44117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, - aux_sym_concatenation_token1, - ACTIONS(5153), 1, - sym__concat, - STATE(1050), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 6, + ACTIONS(1366), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, + ACTIONS(1364), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112231,6 +114439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -112245,10 +114454,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112259,38 +114469,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42675] = 10, + [44173] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5081), 1, + ACTIONS(5468), 1, sym_variable_name, - STATE(6774), 1, + ACTIONS(5507), 1, + aux_sym_heredoc_redirect_token1, + STATE(6849), 1, sym_subscript, - ACTIONS(4310), 2, + ACTIONS(4499), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - STATE(4593), 2, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5464), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4855), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(4503), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 7, + ACTIONS(5505), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(4304), 28, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 28, anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, @@ -112308,7 +114520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112319,22 +114531,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42745] = 6, + [44247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(5155), 1, - sym__concat, - STATE(985), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1286), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 40, + ACTIONS(1279), 43, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112347,7 +114553,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112364,7 +114573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112375,22 +114584,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42807] = 6, + [44303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(5157), 1, - sym__concat, - STATE(985), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1358), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112417,10 +114622,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112431,37 +114637,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42869] = 6, + [44359] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5159), 1, - aux_sym_concatenation_token1, - ACTIONS(5162), 1, - sym__concat, - STATE(1050), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(5509), 1, + sym_variable_name, + STATE(6819), 1, + sym_subscript, + ACTIONS(4503), 2, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, + ACTIONS(4508), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + STATE(4643), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(4824), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 17, anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + 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(4499), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112470,34 +114695,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [42931] = 3, + [44427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(5503), 1, + sym__special_character, + STATE(1070), 1, + aux_sym__literal_repeat1, + ACTIONS(4973), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 42, + ACTIONS(4971), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112509,6 +114721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -112525,11 +114738,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112540,23 +114751,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [42987] = 6, + [44487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, - aux_sym_concatenation_token1, - ACTIONS(5061), 1, - sym__concat, - STATE(1045), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 6, + ACTIONS(1390), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1388), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112568,6 +114774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -112582,10 +114789,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112596,37 +114804,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43049] = 6, + [44543] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, - aux_sym_concatenation_token1, - ACTIONS(5171), 1, - sym__concat, - STATE(1143), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5167), 5, - sym_file_descriptor, + ACTIONS(5468), 1, sym_variable_name, - sym_test_operator, - sym__brace_start, + ACTIONS(5514), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + STATE(6849), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5464), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + STATE(4855), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(5512), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112634,14 +114849,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112652,37 +114866,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43111] = 6, + [44617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, - aux_sym_concatenation_token1, - ACTIONS(5171), 1, - sym__concat, - STATE(1144), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5175), 5, + ACTIONS(1342), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 40, + ACTIONS(1340), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112694,10 +114904,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112708,17 +114919,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43173] = 3, + [44673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(1304), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112730,9 +114941,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112750,7 +114961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112761,18 +114972,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43229] = 3, + [44729] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 7, - sym_file_descriptor, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, sym__concat, + STATE(1144), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5149), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 41, + ACTIONS(5147), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112784,7 +114999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -112799,11 +115014,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112814,18 +115028,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43285] = 3, + [44791] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(5520), 1, + sym__special_character, + STATE(1070), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(1394), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -112837,8 +115053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -112852,11 +115070,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112867,33 +115083,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43341] = 3, + [44851] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, + ACTIONS(4501), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5509), 1, + sym_variable_name, + STATE(6819), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(4643), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, - anon_sym_LPAREN_LPAREN, + STATE(4824), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4495), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112901,15 +115126,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112920,37 +115143,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43397] = 6, + [44921] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5158), 1, aux_sym_concatenation_token1, - ACTIONS(5179), 1, + ACTIONS(5523), 1, sym__concat, - STATE(1146), 1, + STATE(1022), 1, aux_sym_concatenation_repeat1, - ACTIONS(5167), 5, + ACTIONS(1296), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 40, + ACTIONS(1294), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -112959,12 +115182,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -112974,39 +115198,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, - [43459] = 6, + [44983] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5516), 1, aux_sym_concatenation_token1, - ACTIONS(5179), 1, + ACTIONS(5518), 1, sym__concat, STATE(1147), 1, aux_sym_concatenation_repeat1, - ACTIONS(5175), 5, + ACTIONS(4902), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 40, + ACTIONS(4900), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113015,12 +115238,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -113030,20 +115254,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, - [43521] = 3, + [45045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 7, - sym_file_descriptor, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, sym__concat, + STATE(1144), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5036), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, + ACTIONS(5034), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113055,7 +115282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -113070,11 +115297,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -113085,22 +115311,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43577] = 6, + [45107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, + ACTIONS(5481), 1, aux_sym_concatenation_token1, - ACTIONS(5171), 1, + ACTIONS(5497), 1, sym__concat, - STATE(1144), 1, + STATE(1049), 1, aux_sym_concatenation_repeat1, - ACTIONS(2169), 5, + ACTIONS(5527), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 40, + ACTIONS(5525), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113124,13 +115350,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -113140,34 +115365,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, - [43639] = 3, + [45169] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, - sym_file_descriptor, + ACTIONS(5481), 1, + aux_sym_concatenation_token1, + ACTIONS(5497), 1, sym__concat, + STATE(1049), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5495), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 42, + ACTIONS(5493), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113176,14 +115406,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -113193,23 +115421,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, - [43695] = 6, + [45231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, + ACTIONS(5481), 1, aux_sym_concatenation_token1, - ACTIONS(5171), 1, + ACTIONS(5497), 1, sym__concat, - STATE(1144), 1, + STATE(1050), 1, aux_sym_concatenation_repeat1, - ACTIONS(2173), 5, + ACTIONS(5531), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 40, + ACTIONS(5529), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113233,13 +115462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -113249,139 +115477,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [43757] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 1, - anon_sym_DQUOTE, - ACTIONS(1235), 1, - sym_test_operator, - ACTIONS(5185), 1, - sym_variable_name, - STATE(2710), 1, - sym_string, - ACTIONS(5183), 2, aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5181), 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(1227), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - [43823] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(262), 1, - anon_sym_DQUOTE, - ACTIONS(1241), 1, - sym_test_operator, - ACTIONS(5185), 1, - sym_variable_name, - STATE(2710), 1, - sym_string, - ACTIONS(5183), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5181), 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(1239), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - [43889] = 6, + sym_word, + [45293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, + ACTIONS(5516), 1, aux_sym_concatenation_token1, - ACTIONS(5187), 1, + ACTIONS(5518), 1, sym__concat, - STATE(1071), 1, + STATE(1147), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(5040), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 40, + ACTIONS(5038), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113411,7 +115524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -113422,109 +115535,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [43951] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5189), 1, - sym_word, - ACTIONS(5193), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5195), 1, - anon_sym_DOLLAR, - ACTIONS(5197), 1, - sym__special_character, - ACTIONS(5199), 1, - anon_sym_DQUOTE, - ACTIONS(5203), 1, - aux_sym_number_token1, - ACTIONS(5205), 1, - aux_sym_number_token2, - ACTIONS(5207), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5209), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5211), 1, - anon_sym_BQUOTE, - ACTIONS(5213), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5217), 1, - sym_test_operator, - ACTIONS(5219), 1, - sym__brace_start, - STATE(3035), 1, - aux_sym__literal_repeat1, - ACTIONS(5191), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5201), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5215), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1072), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2167), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2664), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2169), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [44045] = 6, + [45355] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, + ACTIONS(5481), 1, aux_sym_concatenation_token1, - ACTIONS(5221), 1, + ACTIONS(5497), 1, sym__concat, - STATE(1071), 1, + STATE(1050), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(5501), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, + ACTIONS(5499), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -113533,13 +115574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -113549,95 +115589,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, - [44107] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5189), 1, - sym_word, - ACTIONS(5193), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5195), 1, - anon_sym_DOLLAR, - ACTIONS(5197), 1, - sym__special_character, - ACTIONS(5199), 1, - anon_sym_DQUOTE, - ACTIONS(5203), 1, - aux_sym_number_token1, - ACTIONS(5205), 1, - aux_sym_number_token2, - ACTIONS(5207), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5209), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5211), 1, - anon_sym_BQUOTE, - ACTIONS(5213), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5217), 1, - sym_test_operator, - ACTIONS(5219), 1, - sym__brace_start, - STATE(3035), 1, - aux_sym__literal_repeat1, - ACTIONS(5191), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5201), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5215), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1072), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2171), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2664), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2173), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [44201] = 6, + [45417] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, + ACTIONS(5158), 1, aux_sym_concatenation_token1, - ACTIONS(5226), 1, + ACTIONS(5533), 1, sym__concat, - STATE(1071), 1, + STATE(1022), 1, aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(1316), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1314), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113649,7 +115618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -113667,7 +115636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -113678,88 +115647,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44263] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5229), 1, - sym_word, - ACTIONS(5235), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5238), 1, - anon_sym_DOLLAR, - ACTIONS(5241), 1, - sym__special_character, - ACTIONS(5244), 1, - anon_sym_DQUOTE, - ACTIONS(5250), 1, - aux_sym_number_token1, - ACTIONS(5253), 1, - aux_sym_number_token2, - ACTIONS(5256), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5259), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5262), 1, - anon_sym_BQUOTE, - ACTIONS(5265), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5271), 1, - sym_test_operator, - ACTIONS(5274), 1, - sym__brace_start, - STATE(3035), 1, - aux_sym__literal_repeat1, - ACTIONS(5232), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5247), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5268), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1072), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2181), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(2664), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2183), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [44357] = 3, + [45479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1370), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 43, + ACTIONS(1368), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113771,8 +115669,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -113789,10 +115685,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -113803,94 +115700,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44413] = 22, - ACTIONS(71), 1, + [45535] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5277), 1, - sym_word, - ACTIONS(5281), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5283), 1, - anon_sym_DOLLAR, - ACTIONS(5285), 1, + ACTIONS(5503), 1, sym__special_character, - ACTIONS(5287), 1, - anon_sym_DQUOTE, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5295), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, - anon_sym_BQUOTE, - ACTIONS(5301), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5305), 1, - sym_test_operator, - ACTIONS(5307), 1, - sym__brace_start, - STATE(5408), 1, + STATE(1070), 1, aux_sym__literal_repeat1, - STATE(5582), 1, - sym_concatenation, - ACTIONS(5279), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5289), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5303), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2301), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5261), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2303), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [44507] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1067), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(5046), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(5044), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -113902,8 +115725,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -113918,9 +115743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -113931,109 +115755,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44569] = 22, - ACTIONS(71), 1, + [45595] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5281), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5283), 1, - anon_sym_DOLLAR, - ACTIONS(5285), 1, - sym__special_character, - ACTIONS(5287), 1, - anon_sym_DQUOTE, - ACTIONS(5291), 1, - aux_sym_number_token1, - ACTIONS(5293), 1, - aux_sym_number_token2, - ACTIONS(5295), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, - anon_sym_BQUOTE, - ACTIONS(5301), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5307), 1, - sym__brace_start, - ACTIONS(5309), 1, - sym_word, - ACTIONS(5313), 1, + ACTIONS(1269), 1, sym_test_operator, - STATE(5497), 1, - aux_sym__literal_repeat1, - STATE(5612), 1, - sym_concatenation, - ACTIONS(5279), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5311), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2305), 7, + ACTIONS(5432), 1, + anon_sym_DQUOTE, + ACTIONS(5436), 1, + sym_variable_name, + STATE(2432), 1, + sym_string, + ACTIONS(5434), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5430), 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(1267), 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5270), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2307), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [44663] = 6, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [45661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, - aux_sym_concatenation_token1, - ACTIONS(5171), 1, - sym__concat, - STATE(1143), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 5, + ACTIONS(1386), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 40, + ACTIONS(1384), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114045,10 +115851,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114059,37 +115866,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44725] = 6, + [45717] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, - aux_sym_concatenation_token1, - ACTIONS(5171), 1, - sym__concat, - STATE(1144), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4513), 5, - sym_file_descriptor, + ACTIONS(1263), 1, + sym_test_operator, + ACTIONS(5432), 1, + anon_sym_DQUOTE, + ACTIONS(5436), 1, sym_variable_name, + STATE(2432), 1, + sym_string, + ACTIONS(5434), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5430), 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(1255), 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [45783] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1370), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 40, + ACTIONS(1368), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114101,10 +115962,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114115,37 +115977,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44787] = 6, + [45839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, + ACTIONS(5448), 1, aux_sym_concatenation_token1, - ACTIONS(5171), 1, + ACTIONS(5454), 1, sym__concat, - STATE(1143), 1, + STATE(1028), 1, aux_sym_concatenation_repeat1, - ACTIONS(4579), 5, + ACTIONS(5036), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 40, + ACTIONS(5034), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114160,7 +116022,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114171,37 +116033,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44849] = 6, + [45901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, - aux_sym_concatenation_token1, - ACTIONS(5171), 1, - sym__concat, - STATE(1144), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 5, + ACTIONS(1370), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 40, + ACTIONS(1368), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114213,10 +116071,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114227,37 +116086,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44911] = 6, + [45957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, - aux_sym_concatenation_token1, - ACTIONS(5171), 1, - sym__concat, - STATE(1143), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 5, + ACTIONS(1342), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 40, + ACTIONS(1340), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114269,10 +116124,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114283,37 +116139,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [44973] = 6, + [46013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, - aux_sym_concatenation_token1, - ACTIONS(5171), 1, - sym__concat, - STATE(1144), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5321), 5, + ACTIONS(1362), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 40, + ACTIONS(1360), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114325,10 +116177,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114339,7 +116192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45035] = 3, + [46069] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1334), 7, @@ -114381,7 +116234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114392,37 +116245,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45091] = 6, + [46125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - aux_sym_concatenation_token1, - ACTIONS(5179), 1, - sym__concat, - STATE(1146), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5325), 5, + ACTIONS(1322), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5323), 40, + ACTIONS(1320), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114431,12 +116280,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114446,39 +116297,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, - [45153] = 6, + [46181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - aux_sym_concatenation_token1, - ACTIONS(5179), 1, - sym__concat, - STATE(1147), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5329), 5, + ACTIONS(1346), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5327), 40, + ACTIONS(1344), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114487,12 +116333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114502,20 +116350,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, - [45215] = 3, + [46237] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 7, + ACTIONS(5535), 1, + sym__special_character, + STATE(1094), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 41, + ACTIONS(1394), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114529,6 +116378,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114542,11 +116393,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114557,17 +116406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45271] = 3, + [46297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1354), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 42, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114580,7 +116430,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -114599,7 +116448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114610,20 +116459,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45327] = 5, + [46353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5331), 1, - sym__special_character, - STATE(1161), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 5, + ACTIONS(1326), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 41, + ACTIONS(1324), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114635,10 +116481,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114652,9 +116497,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114665,33 +116512,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45387] = 3, + [46409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(5444), 1, + aux_sym_concatenation_token1, + ACTIONS(5446), 1, sym__concat, + STATE(1045), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 42, + ACTIONS(5538), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -114703,11 +116554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114718,17 +116568,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45443] = 3, + [46471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1330), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 42, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114741,7 +116592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -114760,7 +116610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114771,17 +116621,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45499] = 3, + [46527] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + ACTIONS(5448), 1, + aux_sym_concatenation_token1, + ACTIONS(5454), 1, sym__concat, + STATE(1028), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 42, + ACTIONS(4971), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114793,8 +116649,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -114809,11 +116663,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114824,7 +116677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45555] = 3, + [46589] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1330), 6, @@ -114866,7 +116719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114877,20 +116730,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45611] = 5, + [46645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5331), 1, - sym__special_character, - STATE(1161), 1, - aux_sym__literal_repeat1, - ACTIONS(4579), 5, + ACTIONS(1378), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 41, + ACTIONS(1376), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114902,10 +116752,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114919,9 +116768,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114932,23 +116783,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45671] = 6, + [46701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, - aux_sym_concatenation_token1, - ACTIONS(5061), 1, - sym__concat, - STATE(1045), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 6, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 39, + ACTIONS(1348), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -114961,6 +116806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -114974,10 +116821,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -114988,18 +116836,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45733] = 3, + [46757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 7, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(1304), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115011,8 +116858,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -115030,7 +116878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115041,18 +116889,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45789] = 3, + [46813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 7, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 41, + ACTIONS(1356), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115065,6 +116912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -115083,7 +116931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115094,20 +116942,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45845] = 5, + [46869] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5331), 1, + ACTIONS(5503), 1, sym__special_character, - STATE(1161), 1, + STATE(1070), 1, aux_sym__literal_repeat1, - ACTIONS(4506), 5, + ACTIONS(5036), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4504), 41, + ACTIONS(5034), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115138,7 +116986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115149,10 +116997,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45905] = 3, + [46929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 7, + ACTIONS(1382), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -115160,7 +117008,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(1380), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115191,7 +117039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115202,18 +117050,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [45961] = 3, + [46985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1344), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115225,8 +117072,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -115244,7 +117092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115255,17 +117103,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46017] = 3, + [47041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1362), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 42, + ACTIONS(1360), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115277,9 +117125,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -115297,7 +117145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115308,33 +117156,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46073] = 3, + [47097] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(5544), 1, + anon_sym_DQUOTE, + ACTIONS(5548), 1, + sym_variable_name, + STATE(2989), 1, + sym_string, + ACTIONS(5546), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 42, + ACTIONS(5542), 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(1267), 31, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115343,14 +117200,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115361,33 +117214,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46129] = 3, + [47163] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(5544), 1, + anon_sym_DQUOTE, + ACTIONS(5548), 1, + sym_variable_name, + STATE(2989), 1, + sym_string, + ACTIONS(5546), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 42, + ACTIONS(5542), 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(1255), 31, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115396,14 +117258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115414,22 +117272,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46185] = 6, + [47229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1069), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4519), 5, + ACTIONS(1366), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 40, + ACTIONS(1364), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115441,8 +117294,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -115456,10 +117310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115470,23 +117325,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46247] = 6, + [47285] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, + ACTIONS(1263), 1, + sym_test_operator, + ACTIONS(5265), 1, + anon_sym_DQUOTE, + ACTIONS(5269), 1, + sym_variable_name, + STATE(2626), 1, + sym_string, + ACTIONS(5267), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5263), 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(1255), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [47351] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 1, aux_sym_concatenation_token1, - ACTIONS(5061), 1, + ACTIONS(5160), 1, sym__concat, - STATE(1045), 1, + STATE(1072), 1, aux_sym_concatenation_repeat1, - ACTIONS(4502), 6, + ACTIONS(286), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4500), 39, + ACTIONS(247), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115498,6 +117410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -115515,7 +117428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115526,17 +117439,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46309] = 3, + [47413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1378), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 42, + ACTIONS(1376), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115549,7 +117463,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -115568,7 +117481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115579,17 +117492,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46365] = 3, + [47469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, - sym_file_descriptor, + ACTIONS(5448), 1, + aux_sym_concatenation_token1, + ACTIONS(5454), 1, sym__concat, + STATE(1030), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5040), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 42, + ACTIONS(5038), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115601,8 +117520,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -115617,11 +117534,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115632,33 +117548,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46421] = 3, + [47531] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(5468), 1, + sym_variable_name, + ACTIONS(5552), 1, + aux_sym_heredoc_redirect_token1, + STATE(6849), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5464), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4855), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 42, - anon_sym_LPAREN_LPAREN, + ACTIONS(5550), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 28, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115666,15 +117593,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115685,17 +117610,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46477] = 3, + [47605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, - sym_file_descriptor, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(5160), 1, sym__concat, + STATE(1080), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 42, + ACTIONS(1279), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115708,7 +117638,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -115723,11 +117652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115738,17 +117666,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46533] = 3, + [47667] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(5160), 1, sym__concat, + ACTIONS(5554), 1, + anon_sym_LPAREN, + STATE(1080), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 42, + ACTIONS(1279), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115760,8 +117695,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -115776,11 +117709,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115791,17 +117723,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46589] = 3, + [47731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 42, + ACTIONS(1356), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115813,9 +117745,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -115833,7 +117765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115844,20 +117776,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46645] = 5, + [47787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5331), 1, - sym__special_character, - STATE(1161), 1, - aux_sym__literal_repeat1, - ACTIONS(4502), 5, + ACTIONS(1342), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4500), 41, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115869,10 +117799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -115886,9 +117814,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115899,37 +117829,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46705] = 6, + [47843] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, + ACTIONS(5444), 1, aux_sym_concatenation_token1, - ACTIONS(5061), 1, + ACTIONS(5446), 1, sym__concat, - STATE(1046), 1, + STATE(1045), 1, aux_sym_concatenation_repeat1, - ACTIONS(4519), 6, + ACTIONS(2156), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 39, + ACTIONS(2154), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -115944,7 +117874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -115955,17 +117885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46767] = 3, + [47905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 42, + ACTIONS(1352), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -115977,9 +117907,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -115997,7 +117927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -116008,17 +117938,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46823] = 3, + [47961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1374), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 42, + ACTIONS(1372), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116050,7 +117980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -116061,17 +117991,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46879] = 3, + [48017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1374), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 42, + ACTIONS(1372), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116103,7 +118033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -116114,17 +118044,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46935] = 3, + [48073] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(5448), 1, + aux_sym_concatenation_token1, + ACTIONS(5454), 1, sym__concat, + STATE(1030), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 6, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 42, + ACTIONS(5015), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116137,8 +118073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -116152,11 +118086,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -116167,33 +118100,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [46991] = 3, + [48135] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(3280), 1, + anon_sym_BQUOTE, + ACTIONS(5509), 1, + sym_variable_name, + ACTIONS(5561), 1, + aux_sym_heredoc_redirect_token1, + STATE(6819), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5559), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4643), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 42, - anon_sym_LPAREN_LPAREN, + ACTIONS(5557), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(4824), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 27, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116201,63 +118147,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47047] = 12, + [48211] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5098), 1, - sym_variable_name, - ACTIONS(5335), 1, - aux_sym_heredoc_redirect_token1, - STATE(6757), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(4816), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(5448), 1, + aux_sym_concatenation_token1, + ACTIONS(5454), 1, + sym__concat, + STATE(1028), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5149), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5333), 3, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5147), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116265,13 +118201,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -116282,149 +118219,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47121] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_test_operator, - ACTIONS(4916), 1, - anon_sym_DQUOTE, - ACTIONS(4920), 1, - sym_variable_name, - STATE(2612), 1, - sym_string, - ACTIONS(4918), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4914), 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(1227), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [47187] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_test_operator, - ACTIONS(4916), 1, - anon_sym_DQUOTE, - ACTIONS(4920), 1, - sym_variable_name, - STATE(2612), 1, - sym_string, - ACTIONS(4918), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(4914), 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(1239), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [47253] = 3, + [48273] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 7, - sym_file_descriptor, + ACTIONS(5444), 1, + aux_sym_concatenation_token1, + ACTIONS(5446), 1, sym__concat, + STATE(1045), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 41, + ACTIONS(2158), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116436,11 +118261,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -116451,18 +118275,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47309] = 3, + [48335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(1324), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116474,8 +118297,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -116493,7 +118317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -116504,42 +118328,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47365] = 8, + [48391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5339), 1, - anon_sym_DQUOTE, - ACTIONS(5343), 1, - sym_variable_name, - STATE(2538), 1, - sym_string, - ACTIONS(5341), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1378), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5337), 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(1227), 31, + aux_sym_heredoc_redirect_token1, + ACTIONS(1376), 42, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116548,10 +118363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -116562,23 +118381,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47431] = 8, + [48447] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5339), 1, + ACTIONS(268), 1, anon_sym_DQUOTE, - ACTIONS(5343), 1, + ACTIONS(1269), 1, + sym_test_operator, + ACTIONS(5567), 1, sym_variable_name, - STATE(2538), 1, + STATE(2769), 1, sym_string, - ACTIONS(5341), 2, + ACTIONS(5565), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5337), 9, + ACTIONS(5563), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -116588,16 +118405,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 31, - anon_sym_LPAREN_LPAREN, + ACTIONS(1267), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [48513] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4501), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(5468), 1, + sym_variable_name, + STATE(6849), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, anon_sym_PIPE_AMP, + STATE(4855), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_LT_LT_DASH, + ACTIONS(4495), 28, + anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116605,11 +118482,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -116620,23 +118499,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47497] = 8, + [48583] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5347), 1, + ACTIONS(5571), 1, anon_sym_DQUOTE, - ACTIONS(5351), 1, + ACTIONS(5575), 1, sym_variable_name, - STATE(2691), 1, + STATE(2491), 1, sym_string, - ACTIONS(5349), 2, + ACTIONS(5573), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5345), 9, + ACTIONS(5569), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -116646,7 +118525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 31, + ACTIONS(1267), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116667,7 +118546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -116678,23 +118557,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47563] = 8, + [48649] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5347), 1, + ACTIONS(5571), 1, anon_sym_DQUOTE, - ACTIONS(5351), 1, + ACTIONS(5575), 1, sym_variable_name, - STATE(2691), 1, + STATE(2491), 1, sym_string, - ACTIONS(5349), 2, + ACTIONS(5573), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5345), 9, + ACTIONS(5569), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -116704,7 +118583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 31, + ACTIONS(1255), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -116725,7 +118604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -116736,51 +118615,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47629] = 5, + [48715] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5353), 1, - sym__special_character, - STATE(1136), 1, - aux_sym__literal_repeat1, - ACTIONS(278), 5, - sym_file_descriptor, + ACTIONS(5468), 1, + sym_variable_name, + STATE(6849), 1, + sym_subscript, + ACTIONS(4503), 2, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(4508), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 41, + STATE(4855), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 18, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -116791,33 +118654,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 7, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, - anon_sym_LPAREN_LPAREN, + ACTIONS(4499), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -116826,36 +118674,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [47745] = 3, + [48783] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, - sym_file_descriptor, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(5160), 1, sym__concat, + STATE(1072), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -116882,11 +118716,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -116897,79 +118730,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [47801] = 8, + [48845] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, - sym_test_operator, - ACTIONS(5065), 1, + ACTIONS(268), 1, anon_sym_DQUOTE, - ACTIONS(5069), 1, - sym_variable_name, - STATE(2433), 1, - sym_string, - ACTIONS(5067), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5063), 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(1227), 33, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - anon_sym_COLON, - [47867] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, + ACTIONS(1263), 1, sym_test_operator, - ACTIONS(5065), 1, - anon_sym_DQUOTE, - ACTIONS(5069), 1, + ACTIONS(5567), 1, sym_variable_name, - STATE(2433), 1, + STATE(2769), 1, sym_string, - ACTIONS(5067), 2, + ACTIONS(5565), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5063), 9, + ACTIONS(5563), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -116979,7 +118754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 33, + ACTIONS(1255), 33, anon_sym_EQ, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -117011,71 +118786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_COLON, - [47933] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5081), 1, - sym_variable_name, - STATE(6774), 1, - sym_subscript, - ACTIONS(4318), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(4323), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4593), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_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(4310), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [48001] = 3, + [48911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 7, + ACTIONS(1374), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -117083,7 +118799,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 41, + ACTIONS(1372), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117114,7 +118830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117125,22 +118841,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48057] = 6, + [48967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1067), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4506), 5, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4504), 40, + ACTIONS(1332), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117152,6 +118863,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -117167,10 +118879,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117181,93 +118894,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48119] = 6, - ACTIONS(3), 1, + [49023] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1069), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4523), 5, - sym_file_descriptor, + ACTIONS(5577), 1, + sym_word, + ACTIONS(5581), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5583), 1, + anon_sym_DOLLAR, + ACTIONS(5585), 1, + sym__special_character, + ACTIONS(5587), 1, + anon_sym_DQUOTE, + ACTIONS(5589), 1, + anon_sym_SQUOTE, + ACTIONS(5591), 1, + sym_ansi_c_string, + ACTIONS(5593), 1, + aux_sym_number_token1, + ACTIONS(5595), 1, + aux_sym_number_token2, + ACTIONS(5597), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5603), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5607), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(5609), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4521), 40, + STATE(5585), 1, + aux_sym__literal_repeat1, + STATE(5701), 1, + sym_concatenation, + ACTIONS(5579), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5605), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2406), 7, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(2408), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + STATE(5490), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [48181] = 5, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49119] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5355), 1, - sym__special_character, - STATE(1136), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, + ACTIONS(5613), 1, + anon_sym_DQUOTE, + ACTIONS(5617), 1, + sym_variable_name, + STATE(2723), 1, + sym_string, + ACTIONS(5615), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 41, + ACTIONS(5611), 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(1267), 31, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117276,12 +119011,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, + sym__special_character, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117292,34 +119025,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48241] = 3, + [49185] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(5613), 1, + anon_sym_DQUOTE, + ACTIONS(5617), 1, + sym_variable_name, + STATE(2723), 1, + sym_string, + ACTIONS(5615), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 43, + ACTIONS(5611), 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(1255), 31, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117328,13 +119069,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117345,22 +119083,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48297] = 6, + [49251] = 23, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5581), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5583), 1, + anon_sym_DOLLAR, + ACTIONS(5585), 1, + sym__special_character, + ACTIONS(5587), 1, + anon_sym_DQUOTE, + ACTIONS(5589), 1, + anon_sym_SQUOTE, + ACTIONS(5593), 1, + aux_sym_number_token1, + ACTIONS(5595), 1, + aux_sym_number_token2, + ACTIONS(5597), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5599), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5601), 1, + anon_sym_BQUOTE, + ACTIONS(5603), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5609), 1, + sym__brace_start, + ACTIONS(5619), 1, + sym_word, + ACTIONS(5621), 1, + sym_ansi_c_string, + ACTIONS(5623), 1, + sym_test_operator, + STATE(5575), 1, + aux_sym__literal_repeat1, + STATE(5751), 1, + sym_concatenation, + ACTIONS(5579), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5605), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(2544), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(2546), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + STATE(5498), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [49347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(5516), 1, aux_sym_concatenation_token1, - ACTIONS(4912), 1, + ACTIONS(5625), 1, sym__concat, - STATE(1048), 1, + STATE(1149), 1, aux_sym_concatenation_repeat1, - ACTIONS(278), 5, + ACTIONS(1296), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 40, + ACTIONS(1294), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117372,7 +119183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -117390,7 +119201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117401,33 +119212,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48359] = 3, + [49409] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(4523), 1, + anon_sym_BQUOTE, + ACTIONS(5509), 1, + sym_variable_name, + ACTIONS(5629), 1, + aux_sym_heredoc_redirect_token1, + STATE(6819), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5559), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(4643), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 42, - anon_sym_LPAREN_LPAREN, + ACTIONS(5627), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, + anon_sym_SEMI_SEMI, + STATE(4824), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 27, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117435,36 +119259,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48415] = 3, + [49485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1350), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 42, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117476,9 +119298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -117496,7 +119317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117507,23 +119328,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48471] = 6, + [49541] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, + ACTIONS(5516), 1, aux_sym_concatenation_token1, - ACTIONS(5061), 1, + ACTIONS(5631), 1, sym__concat, - STATE(1045), 1, + STATE(1149), 1, aux_sym_concatenation_repeat1, - ACTIONS(4506), 6, + ACTIONS(1316), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4504), 39, + ACTIONS(1314), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117535,6 +119355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -117552,7 +119373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117563,24 +119384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48533] = 7, + [49603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(4912), 1, - sym__concat, - ACTIONS(5358), 1, - anon_sym_LPAREN, - STATE(1049), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, + ACTIONS(1354), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, + ACTIONS(1352), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -117592,6 +119406,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -117606,10 +119422,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117620,37 +119437,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48597] = 6, + [49659] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, + ACTIONS(5633), 1, aux_sym_concatenation_token1, - ACTIONS(5361), 1, + ACTIONS(5636), 1, sym__concat, - STATE(1145), 1, + STATE(1149), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1306), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 40, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117665,7 +119482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117676,37 +119493,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48659] = 6, + [49721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, - aux_sym_concatenation_token1, - ACTIONS(5363), 1, - sym__concat, - STATE(1145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1382), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, + ACTIONS(1380), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117718,10 +119531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117732,37 +119546,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48721] = 6, + [49777] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5365), 1, - aux_sym_concatenation_token1, - ACTIONS(5368), 1, - sym__concat, - STATE(1145), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(1370), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1368), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117774,10 +119584,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117788,37 +119599,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48783] = 6, + [49833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - aux_sym_concatenation_token1, - ACTIONS(5371), 1, - sym__concat, - STATE(1149), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1370), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 40, + ACTIONS(1368), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117827,12 +119634,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117842,39 +119651,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, - [48845] = 6, + [49889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, - aux_sym_concatenation_token1, - ACTIONS(5373), 1, - sym__concat, - STATE(1149), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1322), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117883,12 +119687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117898,44 +119704,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, - [48907] = 10, + [49945] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5098), 1, - sym_variable_name, - STATE(6757), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(4816), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, + sym__concat, + STATE(1144), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 7, + aux_sym_heredoc_redirect_token1, + ACTIONS(4971), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_LT_LT_DASH, - ACTIONS(4304), 28, - anon_sym_LPAREN_LPAREN, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117943,13 +119743,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -117960,37 +119761,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [48977] = 6, + [50007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5375), 1, + ACTIONS(5516), 1, aux_sym_concatenation_token1, - ACTIONS(5378), 1, + ACTIONS(5518), 1, sym__concat, - STATE(1149), 1, + STATE(1147), 1, aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(5017), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(5015), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -117999,52 +119800,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [49039] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5098), 1, - sym_variable_name, - STATE(6757), 1, - sym_subscript, - ACTIONS(4318), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(4323), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4816), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 18, - anon_sym_LPAREN_LPAREN, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118055,42 +119817,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(4310), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [49107] = 6, + [50069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(5516), 1, aux_sym_concatenation_token1, - ACTIONS(4912), 1, + ACTIONS(5518), 1, sym__concat, - STATE(1048), 1, + STATE(1144), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118102,7 +119844,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -118120,7 +119862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118131,37 +119873,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49169] = 6, + [50131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5169), 1, - aux_sym_concatenation_token1, - ACTIONS(5171), 1, - sym__concat, - STATE(1143), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(1306), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118173,10 +119911,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118187,10 +119926,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49231] = 3, + [50187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 7, + ACTIONS(1346), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -118198,7 +119937,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 41, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118229,7 +119968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118240,22 +119979,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49287] = 6, + [50243] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5177), 1, + ACTIONS(5444), 1, aux_sym_concatenation_token1, - ACTIONS(5179), 1, + ACTIONS(5446), 1, sym__concat, - STATE(1146), 1, + STATE(1044), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(4973), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(4971), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118279,12 +120018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118294,35 +120034,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, - [49349] = 3, + [50305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 7, - sym_file_descriptor, + ACTIONS(5444), 1, + aux_sym_concatenation_token1, + ACTIONS(5446), 1, sym__concat, + STATE(1045), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 41, + ACTIONS(5015), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118334,11 +120077,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118349,18 +120091,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49405] = 3, + [50367] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(1269), 1, + sym_test_operator, + ACTIONS(5432), 1, + anon_sym_DQUOTE, + ACTIONS(5436), 1, + sym_variable_name, + STATE(2432), 1, + sym_string, + ACTIONS(5434), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5430), 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(1267), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [50433] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_test_operator, + ACTIONS(5432), 1, + anon_sym_DQUOTE, + ACTIONS(5436), 1, + sym_variable_name, + STATE(2432), 1, + sym_string, + ACTIONS(5434), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5430), 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(1255), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + anon_sym_COLON, + [50499] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1366), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(1364), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118373,6 +120230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -118391,7 +120249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118402,37 +120260,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49461] = 6, + [50555] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, + ACTIONS(5444), 1, aux_sym_concatenation_token1, - ACTIONS(5061), 1, + ACTIONS(5446), 1, sym__concat, - STATE(1046), 1, + STATE(1044), 1, aux_sym_concatenation_repeat1, - ACTIONS(4523), 6, + ACTIONS(5046), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4521), 39, + ACTIONS(5044), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118447,7 +120305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118458,18 +120316,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49523] = 3, + [50617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 7, + ACTIONS(1390), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 41, + ACTIONS(1388), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118481,8 +120338,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -118500,7 +120358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118511,69 +120369,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49579] = 21, + [50673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4072), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4074), 1, - anon_sym_DOLLAR, - ACTIONS(4078), 1, - anon_sym_DQUOTE, - ACTIONS(4080), 1, - aux_sym_number_token1, - ACTIONS(4082), 1, - aux_sym_number_token2, - ACTIONS(4084), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4088), 1, - anon_sym_BQUOTE, - ACTIONS(4090), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(5383), 1, - sym__special_character, - ACTIONS(5385), 1, - sym_test_operator, - STATE(4503), 1, - aux_sym__literal_repeat1, - STATE(4987), 1, - sym_concatenation, - ACTIONS(2303), 2, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4070), 2, + ACTIONS(1328), 42, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4092), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5381), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5392), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2301), 16, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118582,91 +120404,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [49671] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4072), 1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(4074), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(4078), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(4080), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(4082), 1, aux_sym_number_token2, - ACTIONS(4084), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4086), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4088), 1, anon_sym_BQUOTE, - ACTIONS(4090), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(5383), 1, - sym__special_character, - ACTIONS(5389), 1, - sym_test_operator, - STATE(4525), 1, - aux_sym__literal_repeat1, - STATE(4872), 1, - sym_concatenation, - ACTIONS(2307), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4070), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4092), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(5387), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - STATE(5396), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2305), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [49763] = 5, + [50729] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5391), 1, - sym__special_character, - STATE(1161), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, + sym__concat, + STATE(1144), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 41, + ACTIONS(5044), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118678,10 +120449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -118696,8 +120465,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118708,38 +120478,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49823] = 7, + [50791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, + ACTIONS(5444), 1, aux_sym_concatenation_token1, - ACTIONS(4912), 1, + ACTIONS(5446), 1, sym__concat, - ACTIONS(5394), 1, - anon_sym_LPAREN, - STATE(1049), 1, + STATE(1045), 1, aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, + ACTIONS(5050), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 39, + ACTIONS(5048), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118754,7 +120523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118765,17 +120534,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49887] = 3, + [50853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, - sym_file_descriptor, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, sym__concat, + STATE(1147), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 42, + ACTIONS(5048), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118787,7 +120561,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, @@ -118803,11 +120576,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118818,36 +120590,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [49943] = 6, + [50915] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, + ACTIONS(5158), 1, aux_sym_concatenation_token1, - ACTIONS(5399), 1, + ACTIONS(5160), 1, sym__concat, - STATE(1287), 1, + ACTIONS(5639), 1, + anon_sym_LPAREN, + STATE(1080), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1286), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, + ACTIONS(1279), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118856,12 +120630,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118871,34 +120646,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, - [50004] = 3, + [50979] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1269), 1, + sym_test_operator, + ACTIONS(5432), 1, + anon_sym_DQUOTE, + ACTIONS(5436), 1, + sym_variable_name, + STATE(2432), 1, + sym_string, + ACTIONS(5434), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5430), 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(1267), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + [51045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1386), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 41, + ACTIONS(1384), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -118907,13 +120740,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118923,19 +120757,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, - [50059] = 3, + [51101] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1269), 1, + sym_test_operator, + ACTIONS(5265), 1, + anon_sym_DQUOTE, + ACTIONS(5269), 1, + sym_variable_name, + STATE(2626), 1, + sym_string, + ACTIONS(5267), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5263), 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(1267), 33, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [51167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 41, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -118965,7 +120856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -118977,32 +120868,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [50114] = 3, + [51222] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(5642), 1, + sym__special_character, + STATE(1224), 1, + aux_sym__literal_repeat1, + ACTIONS(5149), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(5147), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119011,13 +120906,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119027,19 +120921,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, - [50169] = 3, + [51281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 41, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119070,7 +120963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119081,17 +120974,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50224] = 3, + [51336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 41, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119115,13 +121008,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119131,34 +121025,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, - [50279] = 3, + [51391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 41, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119174,7 +121067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119185,23 +121078,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50334] = 3, + [51446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 5, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4521), 42, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -119211,7 +121104,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119220,13 +121112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119236,33 +121128,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, - [50389] = 3, + [51501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 41, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119271,14 +121164,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119288,18 +121180,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, - [50444] = 3, + [51556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1362), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 41, + ACTIONS(1360), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119323,13 +121216,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119339,25 +121233,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, - [50499] = 3, + [51611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5403), 5, + ACTIONS(1366), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5401), 42, + ACTIONS(1364), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -119367,7 +121260,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119379,10 +121271,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119393,17 +121286,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50554] = 3, + [51666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, + ACTIONS(5644), 1, + aux_sym_concatenation_token1, + ACTIONS(5646), 1, sym__concat, - sym_variable_name, + STATE(1186), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(1294), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119429,11 +121326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119445,36 +121341,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [50609] = 6, + [51727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5405), 1, - sym__concat, - STATE(1071), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1346), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 39, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119483,13 +121375,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119499,22 +121391,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, - [50670] = 6, + [51782] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 1, + ACTIONS(5644), 1, aux_sym_concatenation_token1, - ACTIONS(5409), 1, + ACTIONS(5648), 1, sym__concat, - STATE(1278), 1, + STATE(1186), 1, aux_sym_concatenation_repeat1, - ACTIONS(5317), 4, + ACTIONS(1316), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 40, + ACTIONS(1314), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119538,13 +121431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119554,22 +121446,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, - [50731] = 6, + [51843] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 1, + ACTIONS(5650), 1, aux_sym_concatenation_token1, - ACTIONS(5409), 1, + ACTIONS(5653), 1, sym__concat, - STATE(1189), 1, + STATE(1186), 1, aux_sym_concatenation_repeat1, - ACTIONS(5321), 4, + ACTIONS(1306), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 40, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -119593,67 +121486,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [50792] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5411), 1, - sym__special_character, - STATE(1184), 1, - aux_sym__literal_repeat1, - ACTIONS(278), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(241), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119663,33 +121501,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, - [50851] = 3, + [51904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 41, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119705,7 +121544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119716,32 +121555,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50906] = 3, + [51959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119757,7 +121596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119768,32 +121607,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [50961] = 3, + [52014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1362), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 41, + ACTIONS(1360), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119802,14 +121641,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119819,37 +121657,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, - [51016] = 6, + [52069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5413), 1, - sym__concat, - STATE(1071), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1374), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, + ACTIONS(1372), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119861,64 +121696,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [51077] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5415), 1, - sym__special_character, - STATE(1184), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119929,32 +121711,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51136] = 3, + [52124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1366), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 41, + ACTIONS(1364), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -119963,14 +121745,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -119980,37 +121761,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, - [51191] = 6, + [52179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1176), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120019,13 +121797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120035,23 +121813,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, - [51252] = 6, + [52234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, - aux_sym_concatenation_token1, - ACTIONS(5420), 1, - sym__concat, - STATE(1254), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5167), 5, + ACTIONS(1354), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 39, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120062,6 +121836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120074,13 +121849,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120090,23 +121865,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, - [51313] = 6, + [52289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, - aux_sym_concatenation_token1, - ACTIONS(5420), 1, - sym__concat, - STATE(1248), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5175), 5, + ACTIONS(1374), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 39, + ACTIONS(1372), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120117,6 +121888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120129,13 +121901,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120145,22 +121917,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, - [51374] = 6, + [52344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 1, + ACTIONS(5644), 1, aux_sym_concatenation_token1, - ACTIONS(5422), 1, + ACTIONS(5656), 1, sym__concat, - STATE(1301), 1, + STATE(1183), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1302), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 40, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120184,13 +121957,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120200,23 +121972,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, - [51435] = 6, + [52405] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, + ACTIONS(5658), 1, aux_sym_concatenation_token1, - ACTIONS(5420), 1, + ACTIONS(5660), 1, sym__concat, - STATE(1254), 1, + STATE(1199), 1, aux_sym_concatenation_repeat1, - ACTIONS(5317), 5, + ACTIONS(1296), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 39, + ACTIONS(1294), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120227,6 +121999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120245,7 +122018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120256,22 +122029,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51496] = 6, + [52466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, + ACTIONS(5658), 1, aux_sym_concatenation_token1, - ACTIONS(5420), 1, + ACTIONS(5662), 1, sym__concat, - STATE(1248), 1, + STATE(1199), 1, aux_sym_concatenation_repeat1, - ACTIONS(5321), 5, + ACTIONS(1316), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 39, + ACTIONS(1314), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120282,6 +122054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120300,7 +122073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120311,36 +122084,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51557] = 6, + [52527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, - aux_sym_concatenation_token1, - ACTIONS(5420), 1, - sym__concat, - STATE(1254), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 5, + ACTIONS(1302), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 39, + ACTIONS(1300), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120355,7 +122125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120366,22 +122136,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51618] = 6, + [52582] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, + ACTIONS(5664), 1, aux_sym_concatenation_token1, - ACTIONS(5420), 1, + ACTIONS(5667), 1, sym__concat, - STATE(1248), 1, + STATE(1199), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 5, + ACTIONS(1306), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 39, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120392,6 +122161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120410,7 +122180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120421,32 +122191,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51679] = 3, + [52643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 7, + ACTIONS(1390), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(1388), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120462,7 +122232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120473,74 +122243,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51734] = 3, + [52698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 7, + ACTIONS(1330), 6, sym_file_descriptor, sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [51789] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5418), 1, - aux_sym_concatenation_token1, - ACTIONS(5420), 1, - sym__concat, - STATE(1254), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 5, - sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 39, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120551,6 +122264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120566,10 +122280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120580,22 +122295,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51850] = 6, + [52753] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, + ACTIONS(5658), 1, aux_sym_concatenation_token1, - ACTIONS(5420), 1, + ACTIONS(5670), 1, sym__concat, - STATE(1248), 1, + STATE(1196), 1, aux_sym_concatenation_repeat1, - ACTIONS(4595), 5, + ACTIONS(1302), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 39, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120606,6 +122320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -120624,7 +122339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120635,32 +122350,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [51911] = 3, + [52814] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 7, + ACTIONS(1390), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(1388), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120669,14 +122384,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120686,137 +122400,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, - [51966] = 3, + [52869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(5672), 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, - [52021] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 6, - sym_file_descriptor, + ACTIONS(5674), 1, sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [52076] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 6, + STATE(1208), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(1294), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120828,11 +122443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120843,32 +122457,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52131] = 3, + [52930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -120884,7 +122498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120895,17 +122509,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52186] = 3, + [52985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 41, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120936,7 +122550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -120947,22 +122561,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52241] = 6, + [53040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5424), 1, + ACTIONS(5672), 1, aux_sym_concatenation_token1, - ACTIONS(5426), 1, + ACTIONS(5676), 1, sym__concat, - STATE(1211), 1, + STATE(1208), 1, aux_sym_concatenation_repeat1, - ACTIONS(5167), 5, + ACTIONS(1316), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 39, + ACTIONS(1314), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -120985,12 +122599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121000,24 +122615,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, - [52302] = 6, + [53101] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5424), 1, + ACTIONS(5678), 1, aux_sym_concatenation_token1, - ACTIONS(5426), 1, + ACTIONS(5681), 1, sym__concat, - STATE(1232), 1, + STATE(1208), 1, aux_sym_concatenation_repeat1, - ACTIONS(5175), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 39, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121040,12 +122654,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121055,19 +122670,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, - [52363] = 3, + [53162] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, - sym_file_descriptor, + ACTIONS(5684), 1, + aux_sym_concatenation_token1, + ACTIONS(5686), 1, sym__concat, + STATE(1214), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(1294), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121078,7 +122697,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121091,14 +122709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121108,95 +122724,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [52418] = 22, - ACTIONS(71), 1, + [53223] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(5428), 1, - sym_word, - ACTIONS(5432), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5434), 1, - anon_sym_DOLLAR, - ACTIONS(5436), 1, - sym__special_character, - ACTIONS(5438), 1, - anon_sym_DQUOTE, - ACTIONS(5442), 1, - aux_sym_number_token1, - ACTIONS(5444), 1, - aux_sym_number_token2, - ACTIONS(5446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5448), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5450), 1, - anon_sym_BQUOTE, - ACTIONS(5452), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5456), 1, + ACTIONS(1342), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(5458), 1, sym__brace_start, - STATE(5505), 1, - aux_sym__literal_repeat1, - STATE(5692), 1, - sym_concatenation, - ACTIONS(5430), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5440), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5454), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(2301), 7, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5431), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2303), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [52511] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [53278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4519), 5, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 42, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -121206,7 +122804,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121215,13 +122812,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121231,89 +122828,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, - [52566] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5432), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5434), 1, - anon_sym_DOLLAR, - ACTIONS(5436), 1, - sym__special_character, - ACTIONS(5438), 1, - anon_sym_DQUOTE, - ACTIONS(5442), 1, - aux_sym_number_token1, - ACTIONS(5444), 1, - aux_sym_number_token2, - ACTIONS(5446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5448), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5450), 1, - anon_sym_BQUOTE, - ACTIONS(5452), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5458), 1, - sym__brace_start, - ACTIONS(5460), 1, - sym_word, - ACTIONS(5464), 1, - sym_test_operator, - STATE(5518), 1, - aux_sym__literal_repeat1, - STATE(5689), 1, - sym_concatenation, - ACTIONS(5430), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5454), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5462), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(2305), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - STATE(5453), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2307), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [52659] = 3, + [53333] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, - sym_file_descriptor, + ACTIONS(5684), 1, + aux_sym_concatenation_token1, + ACTIONS(5688), 1, sym__concat, + STATE(1214), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 41, + ACTIONS(1314), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121324,7 +122856,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121337,14 +122868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121354,37 +122883,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [52714] = 6, + [53394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5424), 1, - aux_sym_concatenation_token1, - ACTIONS(5466), 1, - sym__concat, - STATE(1246), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1302), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 39, + ACTIONS(1300), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121393,12 +122920,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121408,19 +122936,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, - [52775] = 3, + [53449] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, - sym_file_descriptor, + ACTIONS(5690), 1, + aux_sym_concatenation_token1, + ACTIONS(5693), 1, sym__concat, + STATE(1214), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 41, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121431,7 +122963,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121446,11 +122977,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121462,27 +122992,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [52830] = 5, + [53510] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 1, - sym__special_character, - STATE(1299), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 5, + ACTIONS(5672), 1, + aux_sym_concatenation_token1, + ACTIONS(5696), 1, + sym__concat, + STATE(1204), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 40, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -121491,7 +123022,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121504,8 +123034,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121516,17 +123047,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52889] = 3, + [53571] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, - sym_file_descriptor, + ACTIONS(5684), 1, + aux_sym_concatenation_token1, + ACTIONS(5698), 1, sym__concat, + STATE(1209), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 41, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121537,7 +123073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -121550,14 +123085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121567,33 +123100,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, - [52944] = 3, + [53632] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121609,7 +123143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121620,32 +123154,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [52999] = 3, + [53687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(1378), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1376), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121661,7 +123195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121672,17 +123206,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53054] = 3, + [53742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 41, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121713,7 +123247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121724,17 +123258,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53109] = 3, + [53797] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1382), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(1380), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -121758,13 +123292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121774,88 +123309,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, - [53164] = 5, + [53852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 1, - sym__special_character, - STATE(1299), 1, - aux_sym__literal_repeat1, - ACTIONS(4579), 5, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 40, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [53223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121871,7 +123351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121882,32 +123362,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53278] = 3, + [53907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121916,14 +123396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121933,33 +123412,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, - [53333] = 3, + [53962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, + ACTIONS(1378), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1376), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -121968,14 +123448,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -121985,70 +123464,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, - [53388] = 3, + [54017] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 7, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, + ACTIONS(5700), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [53443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1310), 6, + STATE(1224), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1394), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122060,8 +123491,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -122075,11 +123507,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122090,7 +123520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53498] = 3, + [54076] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1338), 6, @@ -122124,14 +123554,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122141,76 +123570,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, - [53553] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5474), 1, - anon_sym_DQUOTE, - ACTIONS(5476), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5478), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5480), 1, - anon_sym_BQUOTE, - ACTIONS(5482), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2547), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(5472), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5470), 25, - 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [53620] = 3, + [54131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1382), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(1380), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122234,14 +123606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122251,33 +123622,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, - [53675] = 3, + [54186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122286,14 +123658,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122303,37 +123674,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, - [53730] = 5, + [54241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5484), 1, - sym__special_character, - STATE(1229), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 6, + ACTIONS(1370), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 39, + ACTIONS(1368), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122345,9 +123713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122358,32 +123728,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53789] = 3, + [54296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(1386), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1384), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122399,7 +123769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122410,33 +123780,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53844] = 3, + [54351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(1370), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 42, + ACTIONS(1368), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122448,10 +123817,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122462,22 +123832,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [53899] = 6, + [54406] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5424), 1, - aux_sym_concatenation_token1, - ACTIONS(5487), 1, - sym__concat, - STATE(1246), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1370), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, + ACTIONS(1368), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122488,6 +123853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -122502,10 +123868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122517,17 +123884,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [53960] = 3, + [54461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(1386), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 41, + ACTIONS(1384), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122551,14 +123918,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122568,18 +123934,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, - [54015] = 3, + [54516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1370), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 41, + ACTIONS(1368), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122603,14 +123970,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122620,37 +123986,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [54070] = 6, + [54571] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, - aux_sym_concatenation_token1, - ACTIONS(5420), 1, - sym__concat, - STATE(1248), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2169), 5, - sym_file_descriptor, + ACTIONS(1269), 1, + sym_test_operator, + ACTIONS(5432), 1, + anon_sym_DQUOTE, + ACTIONS(5436), 1, + sym_variable_name, + STATE(2432), 1, + sym_string, + ACTIONS(5434), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5430), 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(1267), 32, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [54636] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_test_operator, + ACTIONS(5432), 1, + anon_sym_DQUOTE, + ACTIONS(5436), 1, sym_variable_name, + STATE(2432), 1, + sym_string, + ACTIONS(5434), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5430), 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(1255), 32, + anon_sym_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_TILDE, + [54701] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1346), 7, + sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 39, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122662,10 +124139,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122676,10 +124154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54131] = 3, + [54756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 7, + ACTIONS(1350), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -122687,7 +124165,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 40, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122717,7 +124195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122728,10 +124206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54186] = 3, + [54811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 7, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -122739,7 +124217,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 40, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122769,7 +124247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122780,32 +124258,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54241] = 3, + [54866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1354), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122821,7 +124299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122832,36 +124310,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54296] = 6, + [54921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5424), 1, - aux_sym_concatenation_token1, - ACTIONS(5426), 1, - sym__concat, - STATE(1211), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5325), 5, + ACTIONS(1362), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5323), 39, + ACTIONS(1360), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122870,12 +124344,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122885,18 +124361,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, - [54357] = 3, + [54976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 5, + ACTIONS(1366), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 42, + ACTIONS(1364), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -122908,10 +124385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -122925,10 +124399,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122939,36 +124414,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54412] = 6, + [55031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, - aux_sym_concatenation_token1, - ACTIONS(5420), 1, - sym__concat, - STATE(1248), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2173), 5, + ACTIONS(1358), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 39, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -122980,10 +124451,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -122994,10 +124466,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54473] = 3, + [55086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 7, + ACTIONS(1374), 7, sym_file_descriptor, sym__concat, sym_test_operator, @@ -123005,7 +124477,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 40, + ACTIONS(1372), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123035,7 +124507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123046,32 +124518,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54528] = 3, + [55141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1390), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 41, + ACTIONS(1388), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123087,7 +124559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123098,16 +124570,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54583] = 3, + [55196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1326), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 42, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123119,10 +124593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -123136,10 +124607,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123150,17 +124622,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54638] = 3, + [55251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1330), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123172,7 +124645,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -123191,7 +124663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123202,36 +124674,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54693] = 6, + [55306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5489), 1, - aux_sym_concatenation_token1, - ACTIONS(5492), 1, - sym__concat, - STATE(1246), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(1338), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123240,12 +124708,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123255,95 +124725,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, - [54754] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_test_operator, - ACTIONS(5065), 1, - anon_sym_DQUOTE, - ACTIONS(5069), 1, - sym_variable_name, - STATE(2433), 1, - sym_string, - ACTIONS(5067), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5063), 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(1227), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [54819] = 6, + [55361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, - aux_sym_concatenation_token1, - ACTIONS(5495), 1, - sym__concat, - STATE(1252), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1334), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123355,10 +124763,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123369,36 +124778,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54880] = 6, + [55416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 1, - aux_sym_concatenation_token1, - ACTIONS(5409), 1, - sym__concat, - STATE(1278), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(1342), 7, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123410,10 +124815,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123424,74 +124830,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [54941] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_test_operator, - ACTIONS(5065), 1, - anon_sym_DQUOTE, - ACTIONS(5069), 1, - sym_variable_name, - STATE(2433), 1, - sym_string, - ACTIONS(5067), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5063), 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(1239), 32, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_TILDE, - [55006] = 3, + [55471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1322), 7, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123503,7 +124853,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -123522,7 +124871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123533,36 +124882,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55061] = 6, + [55526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5497), 1, - aux_sym_concatenation_token1, - ACTIONS(5500), 1, - sym__concat, - STATE(1252), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(1378), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1376), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123574,10 +124919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123588,32 +124934,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55122] = 3, + [55581] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(5703), 1, + sym__special_character, + STATE(1281), 1, + aux_sym__literal_repeat1, + ACTIONS(286), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 41, + ACTIONS(247), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123622,13 +124972,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123638,38 +124987,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, - [55177] = 6, + [55640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, - aux_sym_concatenation_token1, - ACTIONS(5503), 1, - sym__concat, - STATE(1252), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1382), 7, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 39, + ACTIONS(1380), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123681,10 +125025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123695,18 +125040,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55238] = 3, + [55695] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, - sym_file_descriptor, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, sym__concat, + STATE(1255), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 5, + sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(5048), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123732,11 +125081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123747,16 +125095,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55293] = 3, + [55756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5705), 1, + sym__concat, + STATE(1149), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 42, + ACTIONS(1314), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123768,10 +125122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -123788,7 +125139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123799,21 +125150,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55348] = 5, + [55817] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5505), 1, - sym__special_character, - STATE(1229), 1, - aux_sym__literal_repeat1, - ACTIONS(278), 6, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, + sym__concat, + STATE(1321), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 39, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123825,7 +125177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -123841,8 +125192,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123853,17 +125205,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55407] = 3, + [55878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(5672), 1, + aux_sym_concatenation_token1, + ACTIONS(5696), 1, sym__concat, + STATE(1204), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5495), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(5493), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123874,7 +125231,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -123890,11 +125246,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123905,17 +125260,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55462] = 3, + [55939] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(5672), 1, + aux_sym_concatenation_token1, + ACTIONS(5696), 1, sym__concat, + STATE(1207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5501), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(5499), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -123926,7 +125286,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -123942,11 +125301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -123957,32 +125315,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55517] = 3, + [56000] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(1370), 7, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 41, + ACTIONS(1368), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -123991,13 +125349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124007,22 +125366,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, - [55572] = 5, + [56055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 1, - sym__special_character, - STATE(1299), 1, - aux_sym__literal_repeat1, - ACTIONS(4506), 5, + ACTIONS(1386), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4504), 40, + ACTIONS(1384), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124035,8 +125391,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -124050,9 +125404,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124063,22 +125419,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55631] = 6, + [56110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1176), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4506), 5, + ACTIONS(1370), 7, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4504), 39, + ACTIONS(1368), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124104,10 +125456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124118,36 +125471,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55692] = 6, + [56165] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5713), 1, + anon_sym_DOLLAR, + ACTIONS(5715), 1, + sym__special_character, + ACTIONS(5717), 1, + anon_sym_DQUOTE, + ACTIONS(5719), 1, + anon_sym_SQUOTE, + ACTIONS(5721), 1, + aux_sym_number_token1, + ACTIONS(5723), 1, + aux_sym_number_token2, + ACTIONS(5725), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5727), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5729), 1, + anon_sym_BQUOTE, + ACTIONS(5731), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5735), 1, + sym_test_operator, + ACTIONS(5737), 1, + sym__brace_start, + STATE(3537), 1, + aux_sym__literal_repeat1, + ACTIONS(2156), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5707), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(5709), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5733), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1266), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3179), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2154), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [56258] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5711), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5713), 1, + anon_sym_DOLLAR, + ACTIONS(5715), 1, + sym__special_character, + ACTIONS(5717), 1, + anon_sym_DQUOTE, + ACTIONS(5719), 1, + anon_sym_SQUOTE, + ACTIONS(5721), 1, + aux_sym_number_token1, + ACTIONS(5723), 1, + aux_sym_number_token2, + ACTIONS(5725), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5727), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5729), 1, + anon_sym_BQUOTE, + ACTIONS(5731), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5735), 1, + sym_test_operator, + ACTIONS(5737), 1, + sym__brace_start, + STATE(3537), 1, + aux_sym__literal_repeat1, + ACTIONS(2160), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5707), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(5709), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5733), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1266), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3179), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2158), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [56351] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, + ACTIONS(5684), 1, aux_sym_concatenation_token1, - ACTIONS(5073), 1, + ACTIONS(5698), 1, sym__concat, - STATE(1183), 1, + STATE(1209), 1, aux_sym_concatenation_repeat1, - ACTIONS(4523), 5, + ACTIONS(5495), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4521), 39, + ACTIONS(5493), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124156,13 +125651,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124172,23 +125666,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, - [55753] = 6, + [56412] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5418), 1, + ACTIONS(5684), 1, aux_sym_concatenation_token1, - ACTIONS(5420), 1, + ACTIONS(5698), 1, sym__concat, - STATE(1254), 1, + STATE(1212), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(5501), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(5499), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124211,13 +125706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124227,33 +125721,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [55814] = 3, + [56473] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 7, + ACTIONS(5745), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5748), 1, + anon_sym_DOLLAR, + ACTIONS(5751), 1, + sym__special_character, + ACTIONS(5754), 1, + anon_sym_DQUOTE, + ACTIONS(5757), 1, + anon_sym_SQUOTE, + ACTIONS(5760), 1, + aux_sym_number_token1, + ACTIONS(5763), 1, + aux_sym_number_token2, + ACTIONS(5766), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5769), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5772), 1, + anon_sym_BQUOTE, + ACTIONS(5775), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5781), 1, + sym_test_operator, + ACTIONS(5784), 1, + sym__brace_start, + STATE(3537), 1, + aux_sym__literal_repeat1, + ACTIONS(2170), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5739), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(5742), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5778), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1266), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3179), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2168), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [56566] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5644), 1, + aux_sym_concatenation_token1, + ACTIONS(5656), 1, sym__concat, + STATE(1183), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5789), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 40, + ACTIONS(5787), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124262,14 +125832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124279,18 +125847,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, - [55869] = 3, + [56627] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, - sym_file_descriptor, + ACTIONS(5644), 1, + aux_sym_concatenation_token1, + ACTIONS(5656), 1, sym__concat, - sym_variable_name, + STATE(1185), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5793), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(5791), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124314,14 +125887,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124331,19 +125902,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, - [55924] = 3, + [56688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 7, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 40, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124355,6 +125926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -124373,7 +125945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124384,32 +125956,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [55979] = 3, + [56743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124418,13 +125990,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124434,34 +126007,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, - [56034] = 3, + [56798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124470,13 +126042,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124486,34 +126059,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, - [56089] = 3, + [56853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 41, + ACTIONS(1352), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124522,13 +126094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124538,24 +126111,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, - [56144] = 6, + [56908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1176), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4502), 5, + ACTIONS(1362), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4500), 39, + ACTIONS(1360), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124567,6 +126134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -124581,10 +126149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124595,22 +126164,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56205] = 6, + [56963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1183), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4519), 5, + ACTIONS(1366), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 39, + ACTIONS(1364), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124622,6 +126186,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -124636,10 +126201,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124650,32 +126216,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56266] = 3, + [57018] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, - sym_file_descriptor, + ACTIONS(5672), 1, + aux_sym_concatenation_token1, + ACTIONS(5696), 1, sym__concat, + STATE(1207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2156), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 41, + ACTIONS(2154), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124687,11 +126257,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124702,17 +126271,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56321] = 3, + [57079] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(5672), 1, + aux_sym_concatenation_token1, + ACTIONS(5696), 1, sym__concat, + STATE(1207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(2158), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -124723,7 +126297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -124739,11 +126312,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124754,27 +126326,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56376] = 6, + [57140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - aux_sym_concatenation_token1, - ACTIONS(5511), 1, - sym__concat, - STATE(1279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5509), 4, + ACTIONS(5040), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5507), 40, + ACTIONS(5038), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -124784,6 +126352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124792,12 +126361,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124807,38 +126377,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, - [56437] = 6, + [57195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - aux_sym_concatenation_token1, - ACTIONS(5511), 1, - sym__concat, - STATE(1164), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5515), 4, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5513), 40, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124847,12 +126412,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124862,25 +126429,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, - [56498] = 3, + [57250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(5797), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(5795), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -124890,6 +126456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124901,11 +126468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124916,36 +126482,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56553] = 6, + [57305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5407), 1, - aux_sym_concatenation_token1, - ACTIONS(5517), 1, - sym__concat, - STATE(1301), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(1374), 6, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 40, + ACTIONS(1372), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -124957,10 +126519,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -124971,36 +126534,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56614] = 6, + [57360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - aux_sym_concatenation_token1, - ACTIONS(5519), 1, - sym__concat, - STATE(1287), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(5799), 1, + sym__special_character, + STATE(1281), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 40, + ACTIONS(1394), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125009,12 +126572,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125024,24 +126587,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, - [56675] = 6, + [57419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1176), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 5, + ACTIONS(1390), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 39, + ACTIONS(1388), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125053,6 +126610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -125067,10 +126625,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125081,22 +126640,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56736] = 6, + [57474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1183), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4513), 5, + ACTIONS(5017), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 39, + ACTIONS(5015), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125108,7 +126661,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -125125,7 +126681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125136,22 +126692,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56797] = 6, + [57529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1176), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 5, + ACTIONS(1326), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 39, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125163,6 +126714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -125177,10 +126729,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125191,22 +126744,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56858] = 6, + [57584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1183), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 39, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125218,6 +126766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -125232,10 +126781,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125246,23 +126796,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [56919] = 3, + [57639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(5050), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(5048), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -125272,6 +126822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125280,13 +126831,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125296,20 +126847,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, - [56974] = 3, + [57694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125321,6 +126870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -125339,7 +126889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125350,36 +126900,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57029] = 6, + [57749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5424), 1, - aux_sym_concatenation_token1, - ACTIONS(5426), 1, - sym__concat, - STATE(1211), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(1334), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125388,12 +126934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125403,38 +126951,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [57090] = 6, + [57804] = 9, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5806), 1, + anon_sym_DQUOTE, + ACTIONS(5808), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5810), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5812), 1, + anon_sym_BQUOTE, + ACTIONS(5814), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2545), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5804), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5802), 25, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [57871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5521), 1, - aux_sym_concatenation_token1, - ACTIONS(5524), 1, - sym__concat, - STATE(1287), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 4, + ACTIONS(5816), 1, + sym__special_character, + STATE(1296), 1, + aux_sym__literal_repeat1, + ACTIONS(286), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(247), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125443,12 +127048,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125458,38 +127063,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, - [57151] = 5, + [57930] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5468), 1, - sym__special_character, - STATE(1299), 1, - aux_sym__literal_repeat1, - ACTIONS(4502), 5, + ACTIONS(5658), 1, + aux_sym_concatenation_token1, + ACTIONS(5670), 1, + sym__concat, + STATE(1196), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4500), 40, + ACTIONS(5440), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125502,8 +127106,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125514,17 +127119,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57210] = 3, + [57991] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, - sym_file_descriptor, + ACTIONS(5658), 1, + aux_sym_concatenation_token1, + ACTIONS(5670), 1, sym__concat, - sym_variable_name, + STATE(1197), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, + ACTIONS(5538), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125551,11 +127160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125566,32 +127174,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57265] = 3, + [58052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125600,13 +127208,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125616,34 +127225,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, - [57320] = 3, + [58107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125659,7 +127267,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125670,32 +127278,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57375] = 3, + [58162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1378), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(1376), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125704,13 +127312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125720,18 +127329,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, - [57430] = 3, + [58217] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 5, + ACTIONS(5818), 1, + sym__special_character, + STATE(1296), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 42, + ACTIONS(1394), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125743,10 +127356,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -125761,9 +127372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125774,18 +127384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57485] = 3, + [58276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 7, + ACTIONS(1382), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 40, + ACTIONS(1380), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125797,6 +127406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -125815,7 +127425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125826,18 +127436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57540] = 3, + [58331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(4902), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(4900), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -125849,7 +127457,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -125863,11 +127474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125878,32 +127488,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57595] = 3, + [58386] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + ACTIONS(5672), 1, + aux_sym_concatenation_token1, + ACTIONS(5696), 1, sym__concat, + STATE(1204), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 41, + ACTIONS(5440), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125915,11 +127529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125930,32 +127543,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57650] = 3, + [58447] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 7, - sym_file_descriptor, + ACTIONS(5672), 1, + aux_sym_concatenation_token1, + ACTIONS(5696), 1, sym__concat, + STATE(1207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 40, + ACTIONS(5538), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -125967,11 +127584,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -125982,32 +127598,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57705] = 3, + [58508] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(5672), 1, + aux_sym_concatenation_token1, + ACTIONS(5696), 1, sym__concat, + STATE(1204), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 41, + ACTIONS(4971), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126019,11 +127639,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126034,27 +127653,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57760] = 5, + [58569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5527), 1, - sym__special_character, - STATE(1299), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, + ACTIONS(5672), 1, + aux_sym_concatenation_token1, + ACTIONS(5696), 1, + sym__concat, + STATE(1207), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 40, + ACTIONS(5015), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -126063,7 +127683,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126076,8 +127695,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126088,17 +127708,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57819] = 3, + [58630] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(5672), 1, + aux_sym_concatenation_token1, + ACTIONS(5696), 1, sym__concat, + STATE(1204), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 41, + ACTIONS(5044), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126109,7 +127734,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -126122,13 +127746,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126138,23 +127762,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, - [57874] = 6, + [58691] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5530), 1, + ACTIONS(5672), 1, aux_sym_concatenation_token1, - ACTIONS(5533), 1, + ACTIONS(5696), 1, sym__concat, - STATE(1301), 1, + STATE(1207), 1, aux_sym_concatenation_repeat1, - ACTIONS(1278), 4, + ACTIONS(5050), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(5048), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126165,7 +127789,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -126184,7 +127807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126195,32 +127818,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [57935] = 3, + [58752] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1370), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, + ACTIONS(1368), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126229,13 +127852,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126245,34 +127869,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, - [57990] = 3, + [58807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1386), 6, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1384), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126281,13 +127904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126297,38 +127921,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [58045] = 6, + [58862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5397), 1, - aux_sym_concatenation_token1, - ACTIONS(5511), 1, + ACTIONS(1370), 6, + sym_file_descriptor, sym__concat, - STATE(1279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [58917] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1279), 42, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126337,12 +128009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126352,20 +128025,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, - [58106] = 3, + [58972] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 7, + ACTIONS(5642), 1, + sym__special_character, + STATE(1224), 1, + aux_sym__literal_repeat1, + ACTIONS(4973), 5, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 40, + ACTIONS(4971), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126378,6 +128052,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -126391,11 +128067,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [59031] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5642), 1, sym__special_character, + STATE(1224), 1, + aux_sym__literal_repeat1, + ACTIONS(5046), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5044), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126406,22 +128134,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58161] = 6, + [59090] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5424), 1, + ACTIONS(5684), 1, aux_sym_concatenation_token1, - ACTIONS(5426), 1, + ACTIONS(5698), 1, sym__concat, - STATE(1232), 1, + STATE(1209), 1, aux_sym_concatenation_repeat1, - ACTIONS(5329), 5, + ACTIONS(5527), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5327), 39, + ACTIONS(5525), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -126449,7 +128177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126461,35 +128189,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [58222] = 5, + [59151] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5536), 1, - sym__special_character, - STATE(1307), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 6, + ACTIONS(5684), 1, + aux_sym_concatenation_token1, + ACTIONS(5698), 1, + sym__concat, + STATE(1212), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5531), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 38, + ACTIONS(5529), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126498,12 +128227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126513,36 +128242,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, - [58280] = 6, + [59212] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, + ACTIONS(5516), 1, aux_sym_concatenation_token1, - ACTIONS(5541), 1, + ACTIONS(5518), 1, sym__concat, - STATE(1326), 1, + STATE(1321), 1, aux_sym_concatenation_repeat1, - ACTIONS(4579), 5, + ACTIONS(5036), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 38, + ACTIONS(5034), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126557,7 +128288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126568,35 +128299,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58340] = 6, + [59273] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, + ACTIONS(5516), 1, aux_sym_concatenation_token1, - ACTIONS(5545), 1, + ACTIONS(5518), 1, sym__concat, - STATE(1409), 1, + STATE(1255), 1, aux_sym_concatenation_repeat1, - ACTIONS(5167), 6, + ACTIONS(5040), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 37, + ACTIONS(5038), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126611,7 +128343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126622,35 +128354,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58400] = 6, + [59334] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 1, + ACTIONS(5516), 1, aux_sym_concatenation_token1, - ACTIONS(5549), 1, + ACTIONS(5518), 1, sym__concat, - STATE(1437), 1, + STATE(1321), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(5149), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(5147), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126665,7 +128398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126676,31 +128409,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58460] = 3, + [59395] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, - sym_file_descriptor, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, sym__concat, - sym_variable_name, + STATE(1255), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4902), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 40, + ACTIONS(4900), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126709,13 +128447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126725,33 +128463,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, - [58514] = 3, + [59456] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(5642), 1, + sym__special_character, + STATE(1224), 1, + aux_sym__literal_repeat1, + ACTIONS(5036), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(5034), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126763,11 +128505,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126778,31 +128518,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58568] = 3, + [59515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, - sym_file_descriptor, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, sym__concat, + STATE(1321), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 41, + ACTIONS(4971), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126811,13 +128556,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126827,37 +128572,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, - [58622] = 5, + [59576] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1472), 1, - aux_sym__literal_repeat1, - ACTIONS(5167), 5, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, + sym__concat, + STATE(1255), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 39, + ACTIONS(5015), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126870,8 +128615,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126882,31 +128628,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58680] = 3, + [59637] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, sym__concat, - sym_variable_name, + STATE(1321), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 40, + ACTIONS(5044), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126915,13 +128666,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126931,37 +128682,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, - [58734] = 6, + [59698] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, + ACTIONS(5516), 1, aux_sym_concatenation_token1, - ACTIONS(5545), 1, + ACTIONS(5821), 1, sym__concat, - STATE(1426), 1, + STATE(1149), 1, aux_sym_concatenation_repeat1, - ACTIONS(5175), 6, + ACTIONS(1296), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 37, + ACTIONS(1294), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -126976,7 +128727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -126987,17 +128738,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58794] = 3, + [59759] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(5823), 1, + aux_sym_concatenation_token1, + ACTIONS(5825), 1, sym__concat, - sym_variable_name, + STATE(1447), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(5538), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127023,123 +128778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [58848] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5555), 1, - anon_sym_DQUOTE, - ACTIONS(5559), 1, - sym_variable_name, - STATE(3442), 1, - sym_string, - ACTIONS(5557), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5553), 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(1227), 29, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [58912] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5555), 1, anon_sym_DQUOTE, - ACTIONS(5559), 1, - sym_variable_name, - STATE(3442), 1, - sym_string, - ACTIONS(5557), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ACTIONS(5553), 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(1239), 29, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127150,17 +128792,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [58976] = 3, + [59819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1326), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127171,6 +128812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -127190,7 +128832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127201,16 +128843,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59030] = 3, + [59873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1378), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, + ACTIONS(1376), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127234,13 +128876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127250,23 +128893,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, - [59084] = 6, + [59927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 1, - aux_sym_concatenation_token1, - ACTIONS(5563), 1, - sym__concat, - STATE(1344), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(1338), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 39, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127277,6 +128914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -127289,12 +128927,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127304,22 +128944,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, - [59144] = 5, + [59981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5565), 1, - sym__special_character, - STATE(1408), 1, - aux_sym__literal_repeat1, - ACTIONS(5167), 5, + ACTIONS(1382), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 39, + ACTIONS(1380), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127343,11 +128978,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127357,18 +128995,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, - [59202] = 3, + [60035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 41, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127392,13 +129029,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127408,130 +129046,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [59256] = 3, - ACTIONS(3), 1, + [60089] = 29, + ACTIONS(73), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [59310] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5567), 1, - sym__concat, - STATE(1330), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(1161), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1235), 1, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(5827), 1, + sym_extglob_pattern, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(2652), 1, + sym__extglob_blob, + STATE(3047), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [59370] = 6, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60195] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, + ACTIONS(5829), 1, aux_sym_concatenation_token1, - ACTIONS(5545), 1, + ACTIONS(5831), 1, sym__concat, - STATE(1409), 1, + STATE(1415), 1, aux_sym_concatenation_repeat1, - ACTIONS(5317), 6, + ACTIONS(1316), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 37, + ACTIONS(1314), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127558,7 +129167,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127569,77 +129178,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59430] = 6, - ACTIONS(3), 1, + [60255] = 29, + ACTIONS(73), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5569), 1, - sym__concat, - STATE(1330), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5827), 1, + sym_extglob_pattern, + ACTIONS(5833), 1, + sym__special_character, + STATE(2652), 1, + sym__extglob_blob, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3108), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [59490] = 6, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [60361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, + ACTIONS(5835), 1, aux_sym_concatenation_token1, - ACTIONS(5545), 1, + ACTIONS(5837), 1, sym__concat, STATE(1426), 1, aux_sym_concatenation_repeat1, - ACTIONS(5321), 6, + ACTIONS(1302), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 37, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127660,13 +129292,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127676,23 +129307,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, - [59550] = 6, + [60421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5571), 1, - aux_sym_concatenation_token1, - ACTIONS(5574), 1, - sym__concat, - STATE(1330), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(1370), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1368), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127703,8 +129329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127717,10 +129345,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127731,16 +129360,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59610] = 3, + [60475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1386), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(1384), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127764,13 +129393,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127780,18 +129410,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, - [59664] = 3, + [60529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1370), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 41, + ACTIONS(1368), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127815,13 +129444,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127831,18 +129461,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, - [59718] = 3, + [60583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127853,7 +129483,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -127866,13 +129495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127882,19 +129512,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, - [59772] = 3, + [60637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1378), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1376), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127917,13 +129546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127933,24 +129563,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, - [59826] = 6, + [60691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(1338), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -127961,8 +129585,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -127975,10 +129600,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -127989,21 +129615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [59886] = 6, + [60745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 1, - aux_sym_concatenation_token1, - ACTIONS(5577), 1, - sym__concat, - STATE(1344), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1382), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, + ACTIONS(1380), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128026,66 +129648,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [59946] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5579), 1, aux_sym_concatenation_token1, - ACTIONS(5581), 1, - sym__concat, - STATE(1345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -128095,137 +129665,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, - [60006] = 6, + [60799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5583), 1, - aux_sym_concatenation_token1, - ACTIONS(5585), 1, - sym__concat, - STATE(1433), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5325), 6, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5323), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(5839), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [60066] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1472), 1, + STATE(1424), 1, aux_sym__literal_repeat1, - ACTIONS(5589), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [60124] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(5591), 1, - sym__concat, - STATE(1345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(4973), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 38, + ACTIONS(4971), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -128233,6 +129694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128241,12 +129703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -128256,19 +129718,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, - [60184] = 3, + [60857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 40, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128298,7 +129759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -128309,17 +129770,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60238] = 3, + [60911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128342,14 +129803,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -128359,21 +129819,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, - [60292] = 5, + [60965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1472), 1, - aux_sym__literal_repeat1, - ACTIONS(5595), 5, + ACTIONS(1378), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 39, + ACTIONS(1376), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128384,7 +129842,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -128397,65 +129854,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - 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, - [60350] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5597), 1, aux_sym_concatenation_token1, - ACTIONS(5600), 1, - sym__concat, - STATE(1344), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -128467,22 +129872,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60410] = 6, + [61019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5603), 1, - aux_sym_concatenation_token1, - ACTIONS(5606), 1, - sym__concat, - STATE(1345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(1338), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128493,8 +129893,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128506,10 +129907,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -128521,23 +129923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60470] = 6, + [61073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5583), 1, - aux_sym_concatenation_token1, - ACTIONS(5585), 1, - sym__concat, - STATE(1439), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5329), 6, + ACTIONS(1382), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5327), 37, + ACTIONS(1380), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128549,6 +129945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128560,10 +129958,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -128575,17 +129974,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60530] = 3, + [61127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128608,14 +130007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -128625,18 +130023,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, - [60584] = 3, + [61181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1370), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1368), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128659,13 +130058,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -128675,19 +130075,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, - [60638] = 3, + [61235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1386), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1384), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128717,7 +130116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -128728,17 +130127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [60692] = 3, + [61289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1370), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1368), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128761,13 +130160,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -128777,19 +130177,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, - [60746] = 3, + [61343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1370), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 40, + ACTIONS(1368), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128818,7 +130217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -128830,22 +130229,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60800] = 6, + [61397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(5609), 1, - sym__concat, - STATE(1337), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(1386), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1384), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -128856,8 +130250,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -128869,10 +130264,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -128884,67 +130280,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [60860] = 21, + [61451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5555), 1, - anon_sym_DQUOTE, - ACTIONS(5615), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5617), 1, - anon_sym_DOLLAR, - ACTIONS(5619), 1, - sym__special_character, - ACTIONS(5621), 1, - aux_sym_number_token1, - ACTIONS(5623), 1, - aux_sym_number_token2, - ACTIONS(5625), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5627), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5629), 1, - anon_sym_BQUOTE, - ACTIONS(5631), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5635), 1, + ACTIONS(1370), 6, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(5637), 1, sym__brace_start, - STATE(3460), 1, - aux_sym__literal_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5613), 2, + ACTIONS(1368), 40, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5633), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1357), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5611), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3017), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 13, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -128952,101 +130312,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [60950] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5555), 1, - anon_sym_DQUOTE, - ACTIONS(5615), 1, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(5617), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(5619), 1, sym__special_character, - ACTIONS(5621), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(5623), 1, aux_sym_number_token2, - ACTIONS(5625), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5627), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5629), 1, anon_sym_BQUOTE, - ACTIONS(5631), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5635), 1, - sym_test_operator, - ACTIONS(5637), 1, - sym__brace_start, - STATE(3460), 1, - aux_sym__literal_repeat1, - ACTIONS(2173), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5613), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5633), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1357), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5611), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - STATE(3017), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2171), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [61040] = 3, + [61505] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(5839), 1, + sym__special_character, + STATE(1424), 1, + aux_sym__literal_repeat1, + ACTIONS(5046), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(5044), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129055,13 +130368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129071,18 +130383,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, - [61094] = 3, + [61563] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, - sym_file_descriptor, + ACTIONS(5829), 1, + aux_sym_concatenation_token1, + ACTIONS(5841), 1, sym__concat, + STATE(1329), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2156), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 41, + ACTIONS(2154), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129093,10 +130411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129109,11 +130424,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129124,85 +130438,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61148] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5645), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5648), 1, - anon_sym_DOLLAR, - ACTIONS(5651), 1, - sym__special_character, - ACTIONS(5654), 1, - anon_sym_DQUOTE, - ACTIONS(5657), 1, - aux_sym_number_token1, - ACTIONS(5660), 1, - aux_sym_number_token2, - ACTIONS(5663), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5666), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5669), 1, - anon_sym_BQUOTE, - ACTIONS(5672), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5678), 1, - sym_test_operator, - ACTIONS(5681), 1, - sym__brace_start, - STATE(3460), 1, - aux_sym__literal_repeat1, - ACTIONS(2183), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5642), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5675), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1357), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(5639), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(3017), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2181), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [61238] = 3, + [61623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(1366), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 41, + ACTIONS(1364), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129226,14 +130471,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129243,17 +130487,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, - [61292] = 3, + [61677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 41, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129277,14 +130522,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129294,17 +130538,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, - [61346] = 3, + [61731] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, - sym_file_descriptor, + ACTIONS(5843), 1, + aux_sym_concatenation_token1, + ACTIONS(5845), 1, sym__concat, + STATE(1367), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 41, + ACTIONS(1294), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129328,14 +130578,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129346,16 +130594,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61400] = 3, + [61791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, - sym_file_descriptor, + ACTIONS(5843), 1, + aux_sym_concatenation_token1, + ACTIONS(5847), 1, sym__concat, + STATE(1367), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 41, + ACTIONS(1314), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129379,14 +130632,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129397,22 +130648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61454] = 6, + [61851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5167), 5, + ACTIONS(1350), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 38, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129423,8 +130669,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129437,10 +130684,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129451,16 +130699,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61514] = 3, + [61905] = 29, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(5853), 1, + sym_extglob_pattern, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2842), 1, + sym__expression, + STATE(2952), 1, + sym__extglob_blob, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [62011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 41, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129471,7 +130797,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -129491,7 +130816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129502,16 +130827,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61568] = 3, + [62065] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, - sym_file_descriptor, + ACTIONS(5829), 1, + aux_sym_concatenation_token1, + ACTIONS(5841), 1, sym__concat, + STATE(1468), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 41, + ACTIONS(4971), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129522,10 +130854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -129535,13 +130864,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129551,24 +130880,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, - [61622] = 6, + [62125] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, + ACTIONS(5829), 1, aux_sym_concatenation_token1, - ACTIONS(5541), 1, + ACTIONS(5841), 1, sym__concat, - STATE(1328), 1, + STATE(1329), 1, aux_sym_concatenation_repeat1, - ACTIONS(5175), 5, + ACTIONS(5017), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 38, + ACTIONS(5015), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129579,7 +130908,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -129596,7 +130924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129607,31 +130935,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61682] = 3, + [62185] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(5855), 1, + sym__special_character, + STATE(1363), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 6, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 41, + ACTIONS(1394), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129643,11 +130975,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129658,16 +130988,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61736] = 3, + [62243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(5858), 1, + sym__special_character, + STATE(1430), 1, + aux_sym__literal_repeat1, + ACTIONS(5495), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 41, + ACTIONS(5493), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129694,11 +131028,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129709,16 +131041,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61790] = 3, + [62301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(5860), 1, + sym__special_character, + STATE(1365), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 41, + ACTIONS(1394), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -129742,14 +131078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129759,36 +131092,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, - [61844] = 5, + [62359] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, + ACTIONS(5863), 1, sym__special_character, - STATE(1472), 1, + STATE(1363), 1, aux_sym__literal_repeat1, - ACTIONS(4428), 5, + ACTIONS(5046), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 39, + ACTIONS(5044), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129802,7 +131136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129813,35 +131147,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61902] = 5, + [62417] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5684), 1, - sym__special_character, - STATE(1370), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, + ACTIONS(5865), 1, + aux_sym_concatenation_token1, + ACTIONS(5868), 1, + sym__concat, + STATE(1367), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 39, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129850,12 +131185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129866,7 +131201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [61960] = 3, + [62477] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 5, @@ -129899,14 +131234,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129916,36 +131250,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, - [62014] = 5, + [62531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5687), 1, + ACTIONS(1354), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - STATE(1370), 1, - aux_sym__literal_repeat1, - ACTIONS(4502), 5, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [62585] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5829), 1, + aux_sym_concatenation_token1, + ACTIONS(5841), 1, + sym__concat, + STATE(1468), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4500), 39, + ACTIONS(5440), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -129958,8 +131344,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -129970,20 +131357,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62072] = 5, + [62645] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, + ACTIONS(5871), 1, sym__special_character, - STATE(1472), 1, + STATE(1365), 1, aux_sym__literal_repeat1, - ACTIONS(4579), 5, + ACTIONS(5495), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 39, + ACTIONS(5493), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130007,12 +131394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130022,22 +131408,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, - [62130] = 6, + [62703] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(5829), 1, aux_sym_concatenation_token1, - ACTIONS(5691), 1, + ACTIONS(5841), 1, sym__concat, - STATE(1461), 1, + STATE(1329), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(5540), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, + ACTIONS(5538), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130048,10 +131437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -130061,12 +131447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130077,17 +131464,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62190] = 3, + [62763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 40, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130117,7 +131504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130128,17 +131515,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62244] = 3, + [62817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1374), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 40, + ACTIONS(1372), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130149,6 +131535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -130161,14 +131548,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130178,18 +131564,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, - [62298] = 3, + [62871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1286), 5, sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1279), 41, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [62925] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5875), 1, sym__concat, + STATE(1382), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 40, + ACTIONS(1294), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130200,9 +131643,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -130215,11 +131657,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130230,17 +131671,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62352] = 3, + [62985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, - sym_file_descriptor, + ACTIONS(5843), 1, + aux_sym_concatenation_token1, + ACTIONS(5877), 1, sym__concat, - sym_variable_name, + STATE(1356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 40, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130251,6 +131696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -130263,14 +131709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130281,16 +131725,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62406] = 3, + [63045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 41, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130301,7 +131746,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -130320,7 +131764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130332,17 +131776,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [62460] = 3, + [63099] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5879), 1, + sym__concat, + STATE(1382), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [63159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130371,7 +131869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130383,35 +131881,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [62514] = 5, + [63213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5551), 1, - sym__special_character, - STATE(1472), 1, - aux_sym__literal_repeat1, - ACTIONS(5317), 5, + ACTIONS(4902), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 39, + ACTIONS(4900), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130424,8 +131919,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130436,17 +131932,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62572] = 3, + [63267] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, - sym_file_descriptor, + ACTIONS(5881), 1, + aux_sym_concatenation_token1, + ACTIONS(5884), 1, sym__concat, + STATE(1382), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 40, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130457,9 +131958,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -130472,11 +131972,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130487,31 +131986,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62626] = 3, + [63327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1286), 6, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1279), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130520,66 +132020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [62680] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5565), 1, - sym__special_character, - STATE(1408), 1, - aux_sym__literal_repeat1, - ACTIONS(5325), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5323), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130589,19 +132036,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, - [62738] = 3, + [63381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(1362), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 40, + ACTIONS(1360), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130624,13 +132070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130640,19 +132087,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, - [62792] = 3, + [63435] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, - sym_file_descriptor, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(1376), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 40, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130663,9 +132114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -130675,13 +132125,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130691,23 +132141,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, - [62846] = 6, + [63495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(5889), 1, aux_sym_concatenation_token1, - ACTIONS(5693), 1, + ACTIONS(5891), 1, sym__concat, - STATE(1479), 1, + STATE(1397), 1, aux_sym_concatenation_repeat1, - ACTIONS(5317), 4, + ACTIONS(1296), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 39, + ACTIONS(1294), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130718,10 +132168,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -130736,7 +132184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130746,22 +132194,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, - [62906] = 6, + [63555] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(5873), 1, aux_sym_concatenation_token1, - ACTIONS(5693), 1, + ACTIONS(5887), 1, sym__concat, - STATE(1374), 1, + STATE(1376), 1, aux_sym_concatenation_repeat1, - ACTIONS(5321), 4, + ACTIONS(5442), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 39, + ACTIONS(5440), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130772,10 +132222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -130785,12 +132233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130801,31 +132250,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [62966] = 3, + [63615] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(5717), 1, + anon_sym_DQUOTE, + ACTIONS(5897), 1, sym_variable_name, + STATE(3418), 1, + sym_string, + ACTIONS(5895), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 40, + ACTIONS(5893), 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(1267), 29, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130833,14 +132290,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130850,33 +132305,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, - [63020] = 3, + [63679] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(5717), 1, + anon_sym_DQUOTE, + ACTIONS(5897), 1, sym_variable_name, + STATE(3418), 1, + sym_string, + ACTIONS(5895), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 40, + ACTIONS(5893), 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(1255), 29, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130884,14 +132346,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130901,19 +132361,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, - [63074] = 3, + [63743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1366), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 40, + ACTIONS(1364), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -130936,13 +132395,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -130952,37 +132412,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, - [63128] = 5, + [63797] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 1, - sym__special_character, - STATE(1307), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 6, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, + sym__concat, + STATE(1379), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 38, + ACTIONS(5538), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -130995,8 +132454,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131007,17 +132467,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63186] = 3, + [63857] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(5858), 1, + sym__special_character, + STATE(1430), 1, + aux_sym__literal_repeat1, + ACTIONS(5901), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(5899), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131028,6 +132491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131043,11 +132507,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131058,17 +132520,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63240] = 3, + [63915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, - sym_file_descriptor, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(5903), 1, sym__concat, + STATE(1397), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 40, + ACTIONS(1314), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131079,9 +132546,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131091,14 +132557,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131108,18 +132572,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, - [63294] = 3, + [63975] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(5858), 1, + sym__special_character, + STATE(1430), 1, + aux_sym__literal_repeat1, + ACTIONS(5907), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(5905), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131130,6 +132598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131145,11 +132614,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131160,16 +132627,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [63348] = 3, + [64033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131193,14 +132660,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131210,22 +132676,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, - [63402] = 6, + [64087] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 1, + ACTIONS(5909), 1, aux_sym_concatenation_token1, - ACTIONS(5697), 1, + ACTIONS(5911), 1, sym__concat, - STATE(1322), 1, + STATE(1405), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(1296), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1294), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131253,7 +132720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131265,32 +132732,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63462] = 3, + [64147] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 5, + ACTIONS(5913), 1, + aux_sym_concatenation_token1, + ACTIONS(5916), 1, + sym__concat, + STATE(1397), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 41, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131299,13 +132769,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131315,23 +132784,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, - [63516] = 6, + [64207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1328), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2173), 5, + ACTIONS(1342), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 38, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131342,8 +132806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131353,13 +132819,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131369,18 +132835,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, - [63576] = 3, + [64261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 40, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131391,6 +132857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131409,7 +132876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131421,17 +132888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63630] = 3, + [64315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131460,7 +132927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131472,31 +132939,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63684] = 3, + [64369] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(5923), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5925), 1, + anon_sym_DOLLAR, + ACTIONS(5927), 1, + sym__special_character, + ACTIONS(5929), 1, + anon_sym_DQUOTE, + ACTIONS(5931), 1, + anon_sym_SQUOTE, + ACTIONS(5933), 1, + aux_sym_number_token1, + ACTIONS(5935), 1, + aux_sym_number_token2, + ACTIONS(5937), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5939), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5941), 1, + anon_sym_BQUOTE, + ACTIONS(5943), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5947), 1, sym_test_operator, + ACTIONS(5949), 1, sym__brace_start, + STATE(5703), 1, + aux_sym__literal_repeat1, + STATE(5807), 1, + sym_concatenation, + ACTIONS(2408), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(5919), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(5921), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5945), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5627), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2406), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131504,51 +133008,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [63738] = 3, + [64461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(5951), 1, + sym__concat, + STATE(1386), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131557,13 +133046,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131573,36 +133061,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [63792] = 6, + [64521] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5583), 1, - aux_sym_concatenation_token1, - ACTIONS(5585), 1, - sym__concat, - STATE(1433), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5167), 6, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(5923), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5925), 1, + anon_sym_DOLLAR, + ACTIONS(5927), 1, + sym__special_character, + ACTIONS(5929), 1, + anon_sym_DQUOTE, + ACTIONS(5931), 1, + anon_sym_SQUOTE, + ACTIONS(5933), 1, + aux_sym_number_token1, + ACTIONS(5935), 1, + aux_sym_number_token2, + ACTIONS(5937), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5939), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5941), 1, + anon_sym_BQUOTE, + ACTIONS(5943), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5949), 1, sym__brace_start, - ts_builtin_sym_end, + ACTIONS(5955), 1, + sym_test_operator, + STATE(5749), 1, + aux_sym__literal_repeat1, + STATE(5911), 1, + sym_concatenation, + ACTIONS(2546), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 37, + ACTIONS(5921), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5945), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(5953), 2, + sym_ansi_c_string, + sym_word, + STATE(5637), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2544), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131610,41 +133132,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [63852] = 6, + anon_sym_LT_LT_LT, + [64613] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5583), 1, + ACTIONS(5909), 1, aux_sym_concatenation_token1, - ACTIONS(5585), 1, + ACTIONS(5957), 1, sym__concat, - STATE(1439), 1, + STATE(1405), 1, aux_sym_concatenation_repeat1, - ACTIONS(5175), 6, + ACTIONS(1316), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 37, + ACTIONS(1314), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131656,6 +133159,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131670,7 +133175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131682,23 +133187,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [63912] = 6, + [64673] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, + ACTIONS(5959), 1, aux_sym_concatenation_token1, - ACTIONS(5545), 1, + ACTIONS(5962), 1, sym__concat, - STATE(1409), 1, + STATE(1405), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 6, + ACTIONS(1306), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131710,6 +133213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131719,13 +133224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131735,24 +133239,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, - [63972] = 6, + [64733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, - aux_sym_concatenation_token1, - ACTIONS(5545), 1, - sym__concat, - STATE(1426), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2169), 6, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 37, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131764,6 +133263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131776,10 +133277,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131790,20 +133292,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64032] = 5, + [64787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5699), 1, - sym__special_character, - STATE(1408), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, + ACTIONS(1354), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 39, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131814,7 +133313,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131827,11 +133325,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131841,25 +133342,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, - [64090] = 6, + [64841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, - aux_sym_concatenation_token1, - ACTIONS(5702), 1, - sym__concat, - STATE(1434), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 6, + ACTIONS(1362), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 37, + ACTIONS(1360), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131871,6 +133365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -131880,13 +133376,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131896,36 +133392,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, - [64150] = 5, + [64895] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 1, + ACTIONS(5871), 1, sym__special_character, - STATE(1307), 1, + STATE(1365), 1, aux_sym__literal_repeat1, - ACTIONS(4506), 6, + ACTIONS(5527), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4504), 38, + ACTIONS(5525), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -131934,12 +133431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -131949,17 +133445,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, - [64208] = 3, + [64953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1374), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(1372), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -131970,7 +133468,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -131990,7 +133487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132001,17 +133498,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64262] = 3, + [65007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1366), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1364), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132034,14 +133531,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132051,36 +133547,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, - [64316] = 5, + [65061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 1, - sym__special_character, - STATE(1307), 1, - aux_sym__literal_repeat1, - ACTIONS(4579), 6, + ACTIONS(5829), 1, + aux_sym_concatenation_token1, + ACTIONS(5841), 1, + sym__concat, + STATE(1468), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 38, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132093,8 +133590,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132105,22 +133603,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64374] = 6, + [65121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 5, + ACTIONS(1390), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 38, + ACTIONS(1388), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132131,8 +133623,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132145,10 +133639,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132159,22 +133654,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64434] = 6, + [65175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1328), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5321), 5, + ACTIONS(1330), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 38, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132185,8 +133674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132199,10 +133690,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132213,17 +133705,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64494] = 3, + [65229] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(5965), 1, + aux_sym_concatenation_token1, + ACTIONS(5968), 1, sym__concat, + STATE(1415), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1304), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132235,8 +133733,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132249,11 +133745,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132264,16 +133759,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64548] = 3, + [65289] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132284,7 +133780,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -132297,14 +133792,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132314,22 +133808,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, - [64602] = 5, + [65343] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5695), 1, + ACTIONS(5863), 1, sym__special_character, - STATE(1307), 1, + STATE(1363), 1, aux_sym__literal_repeat1, - ACTIONS(4502), 6, + ACTIONS(5149), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4500), 38, + ACTIONS(5147), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132357,7 +133852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132368,35 +133863,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64660] = 6, + [65401] = 29, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5827), 1, + sym_extglob_pattern, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(2652), 1, + sym__extglob_blob, + STATE(3159), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [65507] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, - aux_sym_concatenation_token1, - ACTIONS(5545), 1, - sym__concat, - STATE(1409), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 6, + ACTIONS(5863), 1, + sym__special_character, + STATE(1363), 1, + aux_sym__literal_repeat1, + ACTIONS(5036), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 37, + ACTIONS(5034), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132409,9 +133981,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132422,21 +133993,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64720] = 6, + [65565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 1, - aux_sym_concatenation_token1, - ACTIONS(5549), 1, - sym__concat, - STATE(1437), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 4, + ACTIONS(1374), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 39, + ACTIONS(1372), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132459,13 +134026,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132475,22 +134042,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, - [64780] = 6, + [65619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 1, + ACTIONS(5889), 1, aux_sym_concatenation_token1, - ACTIONS(5549), 1, + ACTIONS(5951), 1, sym__concat, - STATE(1454), 1, + STATE(1386), 1, aux_sym_concatenation_repeat1, - ACTIONS(5321), 4, + ACTIONS(5527), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 39, + ACTIONS(5525), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132501,9 +134070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132513,13 +134081,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132529,24 +134096,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, - [64840] = 6, + [65679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, + ACTIONS(5889), 1, aux_sym_concatenation_token1, - ACTIONS(5545), 1, + ACTIONS(5951), 1, sym__concat, - STATE(1426), 1, + STATE(1393), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 6, + ACTIONS(5531), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 37, + ACTIONS(5529), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132557,6 +134124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -132567,13 +134135,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132583,33 +134150,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, - [64900] = 3, + [65739] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 5, + ACTIONS(5858), 1, + sym__special_character, + STATE(1430), 1, + aux_sym__literal_repeat1, + ACTIONS(4973), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 41, + ACTIONS(4971), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132622,9 +134193,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132635,73 +134205,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [64954] = 9, - ACTIONS(71), 1, + [65797] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(5704), 1, - anon_sym_DQUOTE, - ACTIONS(5706), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5708), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5710), 1, - anon_sym_BQUOTE, - ACTIONS(5712), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2589), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(5472), 14, - anon_sym_EQ, + ACTIONS(5971), 1, + sym__special_character, + STATE(1424), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 5, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1394), 39, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5470), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [65020] = 3, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [65855] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, + ACTIONS(5909), 1, + aux_sym_concatenation_token1, + ACTIONS(5974), 1, sym__concat, + STATE(1396), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132712,7 +134283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -132725,14 +134295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132742,24 +134310,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, - [65074] = 6, + [65915] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, + ACTIONS(5835), 1, aux_sym_concatenation_token1, - ACTIONS(5714), 1, + ACTIONS(5976), 1, sym__concat, - STATE(1434), 1, + STATE(1497), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 6, + ACTIONS(1296), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(1294), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132780,13 +134349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132796,33 +134364,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, - [65134] = 3, + [65975] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 5, + ACTIONS(5858), 1, + sym__special_character, + STATE(1430), 1, + aux_sym__literal_repeat1, + ACTIONS(5046), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 41, + ACTIONS(5044), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132835,9 +134407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132848,32 +134419,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65188] = 3, + [66033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1350), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132885,10 +134455,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132899,32 +134470,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65242] = 3, + [66087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4519), 5, + ACTIONS(1306), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 41, + ACTIONS(1304), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -132936,10 +134506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -132950,22 +134521,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65296] = 6, + [66141] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(5609), 1, - sym__concat, - STATE(1337), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5325), 5, + ACTIONS(5978), 1, + sym__special_character, + STATE(1430), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5323), 38, + ACTIONS(1394), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -132976,8 +134545,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -132987,12 +134558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133002,24 +134573,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, - [65356] = 6, + [66199] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, + ACTIONS(5835), 1, aux_sym_concatenation_token1, - ACTIONS(5609), 1, + ACTIONS(5837), 1, sym__concat, - STATE(1340), 1, + STATE(1426), 1, aux_sym_concatenation_repeat1, - ACTIONS(5329), 5, + ACTIONS(5527), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5327), 38, + ACTIONS(5525), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133030,7 +134601,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -133046,7 +134616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133058,17 +134628,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [65416] = 3, + [66259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1258), 6, + ACTIONS(1302), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 40, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133081,6 +134650,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -133098,7 +134668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133109,23 +134679,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65470] = 6, + [66313] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5583), 1, + ACTIONS(5829), 1, aux_sym_concatenation_token1, - ACTIONS(5716), 1, + ACTIONS(5841), 1, sym__concat, - STATE(1445), 1, + STATE(1329), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 6, + ACTIONS(5501), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 37, + ACTIONS(5499), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133146,12 +134716,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133161,25 +134732,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, - [65530] = 6, + [66373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5718), 1, + ACTIONS(5873), 1, aux_sym_concatenation_token1, - ACTIONS(5721), 1, + ACTIONS(5887), 1, sym__concat, - STATE(1434), 1, + STATE(1379), 1, aux_sym_concatenation_repeat1, - ACTIONS(1278), 6, + ACTIONS(2156), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(2154), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133190,6 +134759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -133206,7 +134776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133217,22 +134787,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65590] = 6, + [66433] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1328), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2169), 5, + ACTIONS(5858), 1, + sym__special_character, + STATE(1430), 1, + aux_sym__literal_repeat1, + ACTIONS(5442), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 38, + ACTIONS(5440), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133243,8 +134811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133258,9 +134828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133271,22 +134840,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65650] = 6, + [66491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, + ACTIONS(5835), 1, aux_sym_concatenation_token1, - ACTIONS(5541), 1, + ACTIONS(5837), 1, sym__concat, - STATE(1326), 1, + STATE(1426), 1, aux_sym_concatenation_repeat1, - ACTIONS(4428), 5, + ACTIONS(5495), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 38, + ACTIONS(5493), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133297,7 +134867,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -133308,13 +134877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133324,22 +134892,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, - [65710] = 6, + [66551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5547), 1, + ACTIONS(5835), 1, aux_sym_concatenation_token1, - ACTIONS(5724), 1, + ACTIONS(5837), 1, sym__concat, - STATE(1458), 1, + STATE(1457), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(5501), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 39, + ACTIONS(5499), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133351,8 +134922,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133362,13 +134931,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133378,23 +134946,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, - [65770] = 6, + [66611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1328), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4513), 5, + ACTIONS(1346), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 38, + ACTIONS(1344), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133405,8 +134968,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133419,10 +134984,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133433,23 +134999,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [65830] = 6, + [66665] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5583), 1, + ACTIONS(5873), 1, aux_sym_concatenation_token1, - ACTIONS(5726), 1, + ACTIONS(5887), 1, sym__concat, - STATE(1445), 1, + STATE(1376), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 6, + ACTIONS(4973), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(4971), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133460,6 +135025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -133470,12 +135036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133485,24 +135052,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, - [65890] = 6, + [66725] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, + ACTIONS(5843), 1, aux_sym_concatenation_token1, - ACTIONS(5609), 1, + ACTIONS(5877), 1, sym__concat, - STATE(1337), 1, + STATE(1356), 1, aux_sym_concatenation_repeat1, - ACTIONS(5167), 5, + ACTIONS(5442), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 38, + ACTIONS(5440), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133513,8 +135078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133529,7 +135096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133539,23 +135106,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, - [65950] = 6, + [66785] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 1, + ACTIONS(5843), 1, aux_sym_concatenation_token1, - ACTIONS(5697), 1, + ACTIONS(5877), 1, sym__concat, - STATE(1322), 1, + STATE(1357), 1, aux_sym_concatenation_repeat1, - ACTIONS(5509), 4, + ACTIONS(5540), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5507), 39, + ACTIONS(5538), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133566,6 +135132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -133583,7 +135150,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133593,23 +135160,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, - [66010] = 6, + [66845] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5561), 1, + ACTIONS(5823), 1, aux_sym_concatenation_token1, - ACTIONS(5697), 1, + ACTIONS(5981), 1, sym__concat, - STATE(1336), 1, + STATE(1453), 1, aux_sym_concatenation_repeat1, - ACTIONS(5515), 4, + ACTIONS(1296), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5513), 39, + ACTIONS(1294), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133632,12 +135198,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133647,24 +135214,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, - [66070] = 6, + [66905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(5609), 1, - sym__concat, - STATE(1340), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5175), 5, + ACTIONS(1342), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 38, + ACTIONS(1340), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133675,8 +135235,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133686,12 +135248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133701,34 +135265,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [66130] = 3, + [66959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 5, + ACTIONS(1322), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4521), 41, + ACTIONS(1320), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133740,10 +135302,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133754,35 +135317,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66184] = 6, + [67013] = 29, + ACTIONS(73), 1, + sym_comment, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, + anon_sym_LPAREN, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, + anon_sym_DOLLAR, + ACTIONS(272), 1, + aux_sym_number_token1, + ACTIONS(274), 1, + aux_sym_number_token2, + ACTIONS(278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_test_operator, + ACTIONS(292), 1, + sym__brace_start, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, + sym__special_character, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + ACTIONS(5983), 1, + sym_extglob_pattern, + STATE(2653), 1, + aux_sym__literal_repeat1, + STATE(3038), 1, + sym__extglob_blob, + STATE(3111), 1, + sym__expression, + ACTIONS(105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2507), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [67119] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5728), 1, - aux_sym_concatenation_token1, - ACTIONS(5731), 1, - sym__concat, - STATE(1445), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 6, + ACTIONS(5839), 1, + sym__special_character, + STATE(1424), 1, + aux_sym__literal_repeat1, + ACTIONS(5149), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(5147), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133791,12 +135431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133806,25 +135446,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, - [66244] = 3, + [67177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5403), 5, + ACTIONS(5823), 1, + aux_sym_concatenation_token1, + ACTIONS(5985), 1, + sym__concat, + STATE(1453), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5401), 41, + ACTIONS(1314), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -133833,7 +135476,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -133848,7 +135490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133859,23 +135501,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66298] = 6, + [67237] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, + ACTIONS(5873), 1, aux_sym_concatenation_token1, - ACTIONS(5545), 1, + ACTIONS(5887), 1, sym__concat, - STATE(1426), 1, + STATE(1379), 1, aux_sym_concatenation_repeat1, - ACTIONS(2173), 6, + ACTIONS(5017), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 37, + ACTIONS(5015), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133886,6 +135527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -133902,7 +135544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133913,23 +135555,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66358] = 6, + [67297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, - aux_sym_concatenation_token1, - ACTIONS(5545), 1, - sym__concat, - STATE(1409), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 6, + ACTIONS(1362), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 37, + ACTIONS(1360), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -133940,7 +135575,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -133953,10 +135591,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -133967,35 +135606,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66418] = 6, + [67351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5543), 1, - aux_sym_concatenation_token1, - ACTIONS(5545), 1, - sym__concat, - STATE(1426), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 6, + ACTIONS(1302), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 37, + ACTIONS(1300), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134010,7 +135646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134021,23 +135657,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66478] = 6, + [67405] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5583), 1, + ACTIONS(5835), 1, aux_sym_concatenation_token1, - ACTIONS(5585), 1, + ACTIONS(5837), 1, sym__concat, - STATE(1433), 1, + STATE(1457), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 6, + ACTIONS(5531), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(5529), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134063,7 +135699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134075,16 +135711,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [66538] = 3, + [67465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1366), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 41, + ACTIONS(1364), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134115,7 +135751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134126,16 +135762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66592] = 3, + [67519] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, + ACTIONS(5987), 1, + aux_sym_concatenation_token1, + ACTIONS(5990), 1, sym__concat, + STATE(1453), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 41, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134146,7 +135787,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -134162,11 +135802,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134177,74 +135816,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66646] = 5, + [67579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5687), 1, - sym__special_character, - STATE(1370), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 5, + ACTIONS(1362), 5, sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [66704] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5547), 1, - aux_sym_concatenation_token1, - ACTIONS(5734), 1, sym__concat, - STATE(1458), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, - sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 39, + ACTIONS(1360), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134255,6 +135836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -134267,13 +135849,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134283,21 +135865,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, - [66764] = 5, + [67633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5687), 1, - sym__special_character, - STATE(1370), 1, - aux_sym__literal_repeat1, - ACTIONS(4579), 5, + ACTIONS(1302), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 39, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134309,7 +135889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, @@ -134325,8 +135905,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134337,32 +135918,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66822] = 3, + [67687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1350), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 41, + ACTIONS(1348), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134371,13 +135951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134387,36 +135967,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, - [66876] = 5, + [67741] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5687), 1, - sym__special_character, - STATE(1370), 1, - aux_sym__literal_repeat1, - ACTIONS(4506), 5, + ACTIONS(5835), 1, + aux_sym_concatenation_token1, + ACTIONS(5993), 1, + sym__concat, + STATE(1497), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4504), 39, + ACTIONS(1314), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134425,12 +136006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134440,36 +136021,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, - [66934] = 6, + [67801] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 1, - aux_sym_concatenation_token1, - ACTIONS(5739), 1, - sym__concat, - STATE(1458), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 4, + ACTIONS(5863), 1, + sym__special_character, + STATE(1363), 1, + aux_sym__literal_repeat1, + ACTIONS(4973), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(4971), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134482,9 +136064,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134495,17 +136076,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [66994] = 3, + [67859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1390), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1388), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134535,7 +136116,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134546,75 +136127,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67048] = 6, + [67913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, - aux_sym_concatenation_token1, - ACTIONS(5693), 1, - sym__concat, - STATE(1479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(1326), 5, sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [67108] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5742), 1, - aux_sym_concatenation_token1, - ACTIONS(5745), 1, sym__concat, - STATE(1461), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 4, - sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1324), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134640,10 +136162,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134653,32 +136176,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, - [67168] = 3, + [67967] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(5839), 1, + sym__special_character, + STATE(1424), 1, + aux_sym__literal_repeat1, + ACTIONS(5036), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 41, + ACTIONS(5034), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -134690,11 +136218,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134705,17 +136231,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67222] = 3, + [68025] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, - sym_file_descriptor, + ACTIONS(5829), 1, + aux_sym_concatenation_token1, + ACTIONS(5841), 1, sym__concat, + STATE(1329), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 40, + ACTIONS(2158), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134727,8 +136259,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134741,11 +136271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134756,16 +136285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67276] = 3, + [68085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1330), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 41, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134776,7 +136306,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -134789,13 +136318,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134805,18 +136335,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, - [67330] = 3, + [68139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1378), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 41, + ACTIONS(1376), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134846,7 +136375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134858,16 +136387,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67384] = 3, + [68193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 41, + ACTIONS(1336), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134897,7 +136426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134909,17 +136438,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67438] = 3, + [68247] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(1379), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 40, + ACTIONS(2158), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134930,9 +136464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -134945,11 +136478,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -134960,16 +136492,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67492] = 3, + [68307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(1382), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 41, + ACTIONS(1380), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -134999,7 +136531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135011,16 +136543,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67546] = 3, + [68361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, - sym_file_descriptor, + ACTIONS(5829), 1, + aux_sym_concatenation_token1, + ACTIONS(5995), 1, sym__concat, + STATE(1415), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 41, + ACTIONS(1294), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135031,10 +136570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135044,13 +136580,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135060,18 +136596,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, - [67600] = 3, + [68421] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 41, + ACTIONS(1356), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135095,13 +136630,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135111,9 +136647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [67654] = 3, + [68475] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1354), 5, @@ -135146,13 +136681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135162,22 +136698,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, - [67708] = 5, + [68529] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5748), 1, - sym__special_character, - STATE(1472), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, + sym__concat, + STATE(1376), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 39, + ACTIONS(5044), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135188,10 +136725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135205,8 +136740,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135217,17 +136753,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [67766] = 3, + [68589] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1332), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135238,6 +136773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -135256,7 +136792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135268,17 +136804,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67820] = 3, + [68643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(5823), 1, + aux_sym_concatenation_token1, + ACTIONS(5825), 1, sym__concat, - sym_variable_name, + STATE(1442), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135301,13 +136841,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135317,18 +136857,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, - [67874] = 3, + [68703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1390), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 41, + ACTIONS(1388), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135339,7 +136879,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -135358,7 +136897,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135370,177 +136909,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [67928] = 6, - ACTIONS(3), 1, + [68757] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1328), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, + ACTIONS(5997), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(5999), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6001), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6003), 1, anon_sym_BQUOTE, + ACTIONS(6005), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [67988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(2692), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5804), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [68042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 5, - sym_file_descriptor, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5802), 24, sym__concat, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 41, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [68096] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [68823] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5689), 1, + ACTIONS(5873), 1, aux_sym_concatenation_token1, - ACTIONS(5751), 1, + ACTIONS(5887), 1, sym__concat, - STATE(1461), 1, + STATE(1379), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(5050), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 39, + ACTIONS(5048), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135551,10 +136992,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135564,12 +137003,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135580,17 +137020,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68156] = 3, + [68883] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(1376), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5495), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(5493), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135601,9 +137046,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -135613,13 +137057,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135629,33 +137073,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, - [68210] = 3, + [68943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 6, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, + sym__concat, + STATE(1379), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5501), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 39, + ACTIONS(5499), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135670,7 +137117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135681,17 +137128,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68263] = 3, + [69003] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, - sym_file_descriptor, + ACTIONS(5829), 1, + aux_sym_concatenation_token1, + ACTIONS(5841), 1, sym__concat, + STATE(1468), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(5044), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135702,7 +137155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -135713,13 +137165,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135729,18 +137181,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, - [68316] = 3, + [69063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, - sym_file_descriptor, + ACTIONS(5823), 1, + aux_sym_concatenation_token1, + ACTIONS(5825), 1, sym__concat, + STATE(1442), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 40, + ACTIONS(5440), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135766,11 +137222,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135781,17 +137236,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68369] = 3, + [69123] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, - sym_file_descriptor, + ACTIONS(5829), 1, + aux_sym_concatenation_token1, + ACTIONS(5841), 1, sym__concat, + STATE(1468), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5495), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(5493), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135802,7 +137263,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -135813,13 +137273,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135829,18 +137289,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, - [68422] = 3, + [69183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1330), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -135863,14 +137323,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -135880,106 +137339,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, - [68475] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5753), 1, - sym_extglob_pattern, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2617), 1, - sym__extglob_blob, - STATE(3161), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [68578] = 3, + [69237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(5017), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(5015), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -135991,11 +137378,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136006,16 +137392,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68631] = 3, + [69291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, - sym_file_descriptor, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(5951), 1, sym__concat, + STATE(1386), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5495), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 40, + ACTIONS(5493), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136026,9 +137418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136040,11 +137431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136056,30 +137446,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68684] = 3, + [69351] = 29, + ACTIONS(73), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, + anon_sym_LPAREN, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, + sym_ansi_c_string, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(335), 1, + sym_test_operator, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + ACTIONS(6009), 1, + sym_extglob_pattern, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3072), 1, + sym__expression, + STATE(3073), 1, + sym__extglob_blob, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [69457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(5050), 5, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(5048), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136091,11 +137560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136106,75 +137574,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68737] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5755), 1, - anon_sym_DQUOTE, - ACTIONS(5757), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5759), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5761), 1, - anon_sym_BQUOTE, - ACTIONS(5763), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2854), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(5472), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5470), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [68802] = 5, + [69511] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5765), 1, - sym__special_character, - STATE(1581), 1, - aux_sym__literal_repeat1, - ACTIONS(5509), 4, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(5951), 1, + sym__concat, + STATE(1393), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5501), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5507), 39, + ACTIONS(5499), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136185,10 +137600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136201,8 +137614,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136214,16 +137628,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [68859] = 3, + [69571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(1374), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 40, + ACTIONS(1372), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136247,13 +137661,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136264,31 +137679,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [68912] = 3, + [69625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 6, + ACTIONS(1390), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 39, + ACTIONS(1388), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136297,13 +137712,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136313,18 +137728,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, - [68965] = 3, + [69679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(5909), 1, + aux_sym_concatenation_token1, + ACTIONS(5974), 1, sym__concat, - sym_variable_name, + STATE(1396), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5789), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(5787), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136335,8 +137755,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136348,11 +137769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136364,16 +137784,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69018] = 3, + [69739] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, - sym_file_descriptor, + ACTIONS(5909), 1, + aux_sym_concatenation_token1, + ACTIONS(5974), 1, sym__concat, + STATE(1404), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5793), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 40, + ACTIONS(5791), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136384,7 +137809,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -136399,11 +137823,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136413,17 +137836,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, - [69071] = 3, + [69799] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, - sym_file_descriptor, + ACTIONS(5829), 1, + aux_sym_concatenation_token1, + ACTIONS(5841), 1, sym__concat, + STATE(1329), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 6, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 40, + ACTIONS(5048), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136435,8 +137866,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136446,13 +137875,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136462,24 +137891,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, - [69124] = 3, + [69859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(5040), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 40, + ACTIONS(5038), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -136488,6 +137917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136496,13 +137926,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136512,24 +137942,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [69177] = 3, + [69913] = 29, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1239), 1, + sym_word, + ACTIONS(1241), 1, + anon_sym_BANG, + ACTIONS(1247), 1, + anon_sym_TILDE, + ACTIONS(1249), 1, + sym__special_character, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5827), 1, + sym_extglob_pattern, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(2652), 1, + sym__extglob_blob, + STATE(3433), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1243), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1245), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2777), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [70019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(5797), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 40, + ACTIONS(5795), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -136538,6 +138045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -136546,13 +138054,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136562,18 +138070,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, - [69230] = 3, + [70073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 40, + ACTIONS(1328), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136584,6 +138091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -136602,7 +138110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136614,17 +138122,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69283] = 3, + [70127] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, + ACTIONS(6011), 1, + aux_sym_concatenation_token1, + ACTIONS(6014), 1, sym__concat, + STATE(1497), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 6, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1304), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136635,7 +138149,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -136646,14 +138159,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136663,18 +138174,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, - [69336] = 3, + [70187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1370), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(1368), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136685,8 +138196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136696,14 +138209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136713,18 +138225,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, - [69389] = 3, + [70241] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1386), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1384), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136735,8 +138247,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -136752,7 +138266,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136764,84 +138278,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69442] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5771), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5773), 1, - anon_sym_DOLLAR, - ACTIONS(5775), 1, - sym__special_character, - ACTIONS(5777), 1, - anon_sym_DQUOTE, - ACTIONS(5779), 1, - aux_sym_number_token1, - ACTIONS(5781), 1, - aux_sym_number_token2, - ACTIONS(5783), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5785), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5787), 1, - anon_sym_BQUOTE, - ACTIONS(5789), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5793), 1, - sym_test_operator, - ACTIONS(5795), 1, - sym__brace_start, - STATE(5617), 1, - aux_sym__literal_repeat1, - STATE(5836), 1, - sym_concatenation, - ACTIONS(2303), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5769), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5791), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5767), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5609), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2301), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [69531] = 3, + [70295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1370), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 40, + ACTIONS(1368), 41, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136852,6 +138298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -136870,7 +138317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136882,16 +138329,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69584] = 3, + [70349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136914,13 +138362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -136930,18 +138379,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, - [69637] = 3, + [70403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 5, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 40, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -136952,7 +138401,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -136968,63 +138416,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [69690] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5797), 1, aux_sym_concatenation_token1, - ACTIONS(5799), 1, - sym__concat, - STATE(1524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137035,12 +138431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [69749] = 3, + [70457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, @@ -137055,7 +138452,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -137074,7 +138470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137084,18 +138480,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, - [69802] = 3, + [70511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137106,8 +138503,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137123,7 +138521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137135,17 +138533,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69855] = 3, + [70565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 39, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137156,8 +138554,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137173,7 +138572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137185,17 +138584,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [69908] = 3, + [70619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, + ACTIONS(6017), 1, + aux_sym_concatenation_token1, + ACTIONS(6019), 1, sym__concat, - sym_variable_name, + STATE(1734), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(5440), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137206,7 +138610,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -137217,13 +138620,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137233,86 +138636,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, - [69961] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5771), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5773), 1, - anon_sym_DOLLAR, - ACTIONS(5775), 1, - sym__special_character, - ACTIONS(5777), 1, - anon_sym_DQUOTE, - ACTIONS(5779), 1, - aux_sym_number_token1, - ACTIONS(5781), 1, - aux_sym_number_token2, - ACTIONS(5783), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5785), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5787), 1, - anon_sym_BQUOTE, - ACTIONS(5789), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5795), 1, - sym__brace_start, - ACTIONS(5803), 1, - sym_test_operator, - STATE(5638), 1, - aux_sym__literal_repeat1, - STATE(5709), 1, - sym_concatenation, - ACTIONS(2307), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5769), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5791), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(5801), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5570), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2305), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [70050] = 3, + [70678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1370), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1368), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137342,7 +138676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137353,21 +138687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70103] = 6, + [70731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - aux_sym_concatenation_token1, - ACTIONS(5807), 1, - sym__concat, - STATE(1544), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(1386), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 38, + ACTIONS(1384), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137378,8 +138707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -137391,10 +138722,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137404,18 +138736,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, - [70162] = 3, + [70784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1370), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 40, + ACTIONS(1368), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137445,7 +138776,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137456,21 +138787,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70215] = 6, + [70837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - aux_sym_concatenation_token1, - ACTIONS(5809), 1, - sym__concat, - STATE(1544), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1374), 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(1286), 38, + ACTIONS(1372), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137481,7 +138809,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -137494,10 +138821,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137509,10 +138837,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [70274] = 3, + [70890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(1334), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -137520,7 +138848,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1332), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137541,14 +138869,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137558,17 +138885,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, - [70327] = 3, + [70943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1342), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137597,7 +138925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137609,16 +138937,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [70380] = 3, + [70996] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 40, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137647,7 +138975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137659,30 +138987,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [70433] = 3, + [71049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(5050), 6, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(5048), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137691,13 +139020,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137707,37 +139036,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, - [70486] = 6, + [71102] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5797), 1, - aux_sym_concatenation_token1, - ACTIONS(5811), 1, - sym__concat, - STATE(1524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137745,65 +139059,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [70545] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5813), 1, - sym__special_character, - STATE(1600), 1, - aux_sym__literal_repeat1, - ACTIONS(5317), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 39, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + ACTIONS(6023), 12, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137814,20 +139091,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70602] = 5, + [71163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5815), 1, - sym__special_character, - STATE(1523), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, + ACTIONS(1390), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 38, + ACTIONS(1388), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -137850,65 +139123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [70659] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5818), 1, aux_sym_concatenation_token1, - ACTIONS(5821), 1, - sym__concat, - STATE(1524), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -137919,30 +139141,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70718] = 3, + [71216] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -137950,64 +139163,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [70771] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + ACTIONS(6023), 12, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138017,19 +139194,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, - [70824] = 3, + [71277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1366), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1364), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138040,7 +139217,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -138051,14 +139227,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138068,17 +139243,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, - [70877] = 3, + [71330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 40, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138108,7 +139284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138119,16 +139295,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [70930] = 3, + [71383] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, - sym_file_descriptor, + ACTIONS(6035), 1, + aux_sym_concatenation_token1, + ACTIONS(6037), 1, sym__concat, + STATE(1544), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 40, + ACTIONS(1294), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138140,8 +139322,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138151,14 +139331,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138168,31 +139346,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, - [70983] = 3, + [71442] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(5017), 5, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 40, + ACTIONS(5015), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138204,11 +139384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138219,17 +139398,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71036] = 3, + [71495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1390), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1388), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138240,8 +139418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138251,14 +139431,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138269,20 +139448,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71089] = 5, + [71548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5824), 1, - sym__special_character, - STATE(1523), 1, - aux_sym__literal_repeat1, - ACTIONS(5167), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 38, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138293,6 +139468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -138305,11 +139481,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138319,18 +139497,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, - [71146] = 3, + [71601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1342), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 40, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138360,7 +139537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138371,31 +139548,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71199] = 3, + [71654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5403), 6, + ACTIONS(1322), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5401), 39, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138407,10 +139583,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138421,16 +139598,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71252] = 3, + [71707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1390), 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(1336), 40, + ACTIONS(1388), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138442,8 +139621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138460,7 +139637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138471,16 +139648,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71305] = 3, + [71760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138510,7 +139687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138521,16 +139698,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71358] = 3, + [71813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, - sym_file_descriptor, + ACTIONS(6035), 1, + aux_sym_concatenation_token1, + ACTIONS(6039), 1, sym__concat, + STATE(1544), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(1314), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138542,8 +139725,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138553,14 +139734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138570,96 +139749,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, - [71411] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - ACTIONS(5826), 1, - sym_extglob_pattern, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3052), 1, - sym__expression, - STATE(3121), 1, - sym__extglob_blob, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [71514] = 5, + [71872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5828), 1, - sym__special_character, - STATE(1669), 1, - aux_sym__literal_repeat1, - ACTIONS(5317), 5, + ACTIONS(1326), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 38, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138682,12 +139783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138697,17 +139799,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, - [71571] = 3, + [71925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1378), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 40, + ACTIONS(1376), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138730,14 +139833,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138747,17 +139849,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, - [71624] = 3, + [71978] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 40, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138780,14 +139883,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138797,21 +139899,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, - [71677] = 5, + [72031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5828), 1, - sym__special_character, - STATE(1669), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 5, + ACTIONS(1382), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 38, + ACTIONS(1380), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138834,12 +139933,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138849,78 +139949,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [71734] = 3, - ACTIONS(3), 1, + [72084] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(6041), 1, + sym__regex_no_space, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3152), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [71787] = 6, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [72187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5830), 1, - aux_sym_concatenation_token1, - ACTIONS(5833), 1, - sym__concat, - STATE(1544), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 4, + ACTIONS(4902), 5, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(4900), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -138928,6 +140050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -138936,12 +140059,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -138951,19 +140075,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, - [71846] = 3, + [72240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -138974,8 +140096,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -138991,7 +140114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139003,10 +140126,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [71899] = 3, + [72293] = 28, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + ACTIONS(6041), 1, + sym__regex_no_space, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3064), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [72396] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 7, + ACTIONS(1358), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -139014,7 +140212,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 38, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139042,7 +140240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139053,92 +140251,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [71952] = 11, - ACTIONS(3), 1, + [72449] = 23, + ACTIONS(73), 1, sym_comment, - ACTIONS(5838), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5840), 1, - sym_variable_name, - STATE(6730), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5836), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(5230), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, - sym_file_descriptor, + ACTIONS(6043), 1, + sym_word, + ACTIONS(6049), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6052), 1, + anon_sym_DOLLAR, + ACTIONS(6055), 1, + sym__special_character, + ACTIONS(6058), 1, + anon_sym_DQUOTE, + ACTIONS(6061), 1, + anon_sym_SQUOTE, + ACTIONS(6064), 1, + sym_ansi_c_string, + ACTIONS(6067), 1, + aux_sym_number_token1, + ACTIONS(6070), 1, + aux_sym_number_token2, + ACTIONS(6073), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6076), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6079), 1, + anon_sym_BQUOTE, + ACTIONS(6082), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6088), 1, sym_test_operator, + ACTIONS(6091), 1, sym__brace_start, - STATE(5297), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 28, + STATE(3583), 1, + aux_sym__literal_repeat1, + ACTIONS(6046), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6085), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1538), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2168), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(2170), 8, + sym_file_descriptor, + sym_variable_name, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(3533), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [72542] = 28, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(6041), 1, + sym__regex_no_space, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3221), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [72021] = 5, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [72645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5828), 1, - sym__special_character, - STATE(1669), 1, - aux_sym__literal_repeat1, - ACTIONS(4579), 5, + ACTIONS(5050), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 38, + ACTIONS(5048), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139151,8 +140433,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139163,16 +140446,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72078] = 3, + [72698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1370), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1368), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139183,7 +140466,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -139202,7 +140484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139212,41 +140494,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [72131] = 11, + [72751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5840), 1, - sym_variable_name, - ACTIONS(5843), 1, - aux_sym_heredoc_redirect_token1, - STATE(6730), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5836), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(5230), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + ACTIONS(1386), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - STATE(5297), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 28, + aux_sym_heredoc_redirect_token1, + ACTIONS(1384), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139254,13 +140527,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139270,19 +140544,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, - [72200] = 3, + [72804] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 7, + ACTIONS(1370), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 38, + ACTIONS(1368), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139294,6 +140567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139303,14 +140578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139320,32 +140594,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, - [72253] = 3, + [72857] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(6094), 1, + aux_sym_concatenation_token1, + ACTIONS(6097), 1, + sym__concat, + STATE(1544), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 5, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1304), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139354,13 +140632,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139370,18 +140647,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, - [72306] = 3, + [72916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1326), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139392,8 +140669,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139403,13 +140681,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139419,24 +140698,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, - [72359] = 6, + [72969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, - aux_sym_concatenation_token1, - ACTIONS(5847), 1, - sym__concat, - STATE(1656), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5509), 5, + ACTIONS(1378), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5507), 37, + ACTIONS(1376), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139448,6 +140720,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139457,12 +140731,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139472,18 +140748,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, - [72418] = 3, + [73022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139494,7 +140769,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -139507,13 +140781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139524,50 +140799,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72471] = 7, + [73075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1382), 5, sym_file_descriptor, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5851), 12, + aux_sym_heredoc_redirect_token1, + ACTIONS(1380), 40, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139578,16 +140849,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72532] = 3, + [73128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139617,7 +140888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139628,21 +140899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72585] = 6, + [73181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5797), 1, - aux_sym_concatenation_token1, - ACTIONS(5863), 1, - sym__concat, - STATE(1507), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 4, + ACTIONS(1370), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 38, + ACTIONS(1368), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139665,12 +140931,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139681,21 +140949,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72644] = 6, + [73234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5797), 1, - aux_sym_concatenation_token1, - ACTIONS(5863), 1, - sym__concat, - STATE(1521), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5321), 4, + ACTIONS(1386), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 38, + ACTIONS(1384), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139718,64 +140981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [72703] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5805), 1, aux_sym_concatenation_token1, - ACTIONS(5865), 1, - sym__concat, - STATE(1514), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139785,19 +140998,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, - [72762] = 3, + [73287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1370), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 39, + ACTIONS(1368), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139808,8 +141019,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139826,7 +141038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139837,17 +141049,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72815] = 3, + [73340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, + ACTIONS(6035), 1, + aux_sym_concatenation_token1, + ACTIONS(6100), 1, sym__concat, - sym_variable_name, + STATE(1520), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139858,7 +141075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -139869,14 +141085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139886,17 +141100,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, - [72868] = 3, + [73399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1338), 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(1356), 40, + ACTIONS(1336), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -139907,10 +141124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -139920,13 +141134,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139937,31 +141152,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72921] = 3, + [73452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4519), 6, + ACTIONS(1354), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 39, + ACTIONS(1352), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -139973,10 +141187,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -139987,80 +141202,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [72974] = 3, + [73505] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(6104), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6106), 1, + sym_variable_name, + STATE(6815), 1, + sym_subscript, + ACTIONS(4499), 2, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(5166), 2, + anon_sym_LT_LT, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [73027] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 7, + ACTIONS(6102), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(5294), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 38, + STATE(5344), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 28, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140068,15 +141243,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140087,16 +141260,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73080] = 3, + [73574] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1382), 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(1356), 40, + ACTIONS(1380), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140107,10 +141282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140120,13 +141292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140137,17 +141310,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73133] = 3, + [73627] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(1370), 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(1324), 39, + ACTIONS(1368), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140158,7 +141332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -140176,7 +141349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140187,22 +141360,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73186] = 6, + [73680] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, + ACTIONS(6017), 1, aux_sym_concatenation_token1, - ACTIONS(5869), 1, + ACTIONS(6019), 1, sym__concat, - STATE(1595), 1, + STATE(1735), 1, aux_sym_concatenation_repeat1, - ACTIONS(5317), 5, + ACTIONS(5540), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 37, + ACTIONS(5538), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140229,7 +141402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140240,17 +141413,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73245] = 3, + [73739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(1386), 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(1328), 39, + ACTIONS(1384), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140261,7 +141435,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -140279,7 +141452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140290,60 +141463,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73298] = 3, - ACTIONS(3), 1, + [73792] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(5873), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5871), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(235), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3022), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [73351] = 3, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [73895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(1370), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -140351,7 +141549,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1368), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140379,7 +141577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140390,10 +141588,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73404] = 3, + [73948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, + ACTIONS(1362), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -140401,7 +141599,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1360), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140429,7 +141627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140440,22 +141638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73457] = 6, + [74001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_concatenation_token1, - ACTIONS(5869), 1, - sym__concat, - STATE(1596), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5321), 5, + ACTIONS(1302), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 37, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140466,7 +141658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140476,13 +141671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140492,81 +141686,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73516] = 3, - ACTIONS(3), 1, + [74054] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(1326), 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(1324), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(311), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(315), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6109), 1, + sym__regex_no_space, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2829), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [73569] = 3, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [74157] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(6106), 1, + sym_variable_name, + ACTIONS(6111), 1, + aux_sym_heredoc_redirect_token1, + STATE(6815), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6102), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(5294), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 40, + STATE(5344), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 28, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140574,14 +141804,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140591,18 +141820,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, - [73622] = 3, + [74226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1350), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 40, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140613,6 +141841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -140631,7 +141860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140641,23 +141870,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, - [73675] = 6, + [74279] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, + ACTIONS(6113), 1, aux_sym_concatenation_token1, - ACTIONS(5877), 1, + ACTIONS(6115), 1, sym__concat, - STATE(1611), 1, + STATE(1760), 1, aux_sym_concatenation_repeat1, - ACTIONS(5321), 4, + ACTIONS(5442), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 38, + ACTIONS(5440), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140685,7 +141913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140696,18 +141924,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73734] = 3, + [74338] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 7, - sym_file_descriptor, + ACTIONS(6113), 1, + aux_sym_concatenation_token1, + ACTIONS(6115), 1, sym__concat, - sym_variable_name, + STATE(1764), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 38, + ACTIONS(5538), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140718,6 +141949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -140731,11 +141963,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140746,18 +141977,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [73787] = 3, + [74397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 7, + ACTIONS(1350), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 38, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140769,6 +141998,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140778,14 +142009,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140795,35 +142025,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, - [73840] = 5, + [74450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5879), 1, - sym__special_character, - STATE(1581), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 4, + ACTIONS(1302), 6, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 39, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -140832,11 +142060,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140846,19 +142076,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, - [73897] = 3, + [74503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 39, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140869,8 +142097,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -140880,14 +142109,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140897,67 +142125,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [73950] = 3, - ACTIONS(3), 1, + [74556] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(229), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3091), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [74003] = 3, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [74659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 5, + ACTIONS(5501), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 40, + ACTIONS(5499), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -140981,12 +142235,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -140996,18 +142251,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [74056] = 3, + [74712] = 28, + ACTIONS(73), 1, + sym_comment, + ACTIONS(233), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3197), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [74815] = 9, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6117), 1, + anon_sym_DQUOTE, + ACTIONS(6119), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6121), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6123), 1, + anon_sym_BQUOTE, + ACTIONS(6125), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2967), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5804), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5802), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [74880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 40, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141018,6 +142403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -141030,14 +142416,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141048,16 +142433,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74109] = 3, + [74933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1374), 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(1320), 40, + ACTIONS(1372), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141068,10 +142455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141081,13 +142465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141098,21 +142483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74162] = 6, + [74986] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5797), 1, - aux_sym_concatenation_token1, - ACTIONS(5863), 1, - sym__concat, - STATE(1507), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(1334), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1332), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141124,8 +142506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141135,12 +142515,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141151,92 +142533,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74221] = 28, - ACTIONS(71), 1, + [75039] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(241), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1223), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1225), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1231), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1233), 1, sym__special_character, - ACTIONS(5884), 1, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(5886), 1, - sym_extglob_pattern, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2842), 1, - sym__extglob_blob, - STATE(2877), 1, + STATE(3169), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1227), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1229), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2492), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [74324] = 3, + [75142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1366), 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(1336), 39, + ACTIONS(1364), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141247,7 +142630,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -141265,7 +142647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141276,16 +142658,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74377] = 3, + [75195] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 5, + ACTIONS(6035), 1, + aux_sym_concatenation_token1, + ACTIONS(6100), 1, + sym__concat, + STATE(1520), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5789), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5888), 40, + ACTIONS(5787), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141296,10 +142684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141314,7 +142699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141326,71 +142711,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74430] = 3, - ACTIONS(3), 1, + [75254] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(1314), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + ACTIONS(6127), 1, + sym__regex_no_space, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3064), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [74483] = 6, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [75357] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, + ACTIONS(6035), 1, aux_sym_concatenation_token1, - ACTIONS(5865), 1, + ACTIONS(6100), 1, sym__concat, - STATE(1514), 1, + STATE(1528), 1, aux_sym_concatenation_repeat1, - ACTIONS(5509), 4, + ACTIONS(5793), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5507), 38, + ACTIONS(5791), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141401,7 +142812,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -141417,7 +142827,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141429,21 +142839,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74542] = 6, + [75416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - aux_sym_concatenation_token1, - ACTIONS(5865), 1, - sym__concat, - STATE(1516), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5515), 4, + ACTIONS(5501), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5513), 38, + ACTIONS(5499), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141454,8 +142859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141470,7 +142877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141482,18 +142889,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [74601] = 3, + [75469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(6131), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(6129), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141504,7 +142909,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141517,11 +142925,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141532,75 +142939,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74654] = 6, - ACTIONS(3), 1, + [75522] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_concatenation_token1, - ACTIONS(5892), 1, - sym__concat, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + STATE(3583), 1, + aux_sym__literal_repeat1, + STATE(1538), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2158), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + STATE(3533), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2160), 22, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [74713] = 6, + [75581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5867), 1, - aux_sym_concatenation_token1, - ACTIONS(5894), 1, - sym__concat, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(6135), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(6133), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141611,7 +143012,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141627,7 +143031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141638,22 +143042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74772] = 6, + [75634] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5896), 1, - aux_sym_concatenation_token1, - ACTIONS(5899), 1, - sym__concat, - STATE(1597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(1346), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141665,6 +143063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141674,13 +143074,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141690,11 +143090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [74831] = 3, + [75687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 7, + ACTIONS(1350), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -141702,7 +143103,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 38, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141723,13 +143124,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141739,20 +143141,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, - [74884] = 3, + [75740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 7, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141763,7 +143162,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141773,14 +143175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141791,19 +143192,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74937] = 5, + [75793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5902), 1, - sym__special_character, - STATE(1600), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 4, + ACTIONS(1346), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 39, + ACTIONS(1344), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141814,10 +143213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -141830,9 +143227,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141843,16 +143242,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [74994] = 3, + [75846] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(6137), 1, + sym__special_character, + STATE(1593), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 40, + ACTIONS(1394), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141878,64 +143281,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [75047] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5867), 1, - aux_sym_concatenation_token1, - ACTIONS(5869), 1, - sym__concat, - STATE(1595), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141946,17 +143294,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75106] = 3, + [75903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 39, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -141967,7 +143316,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -141978,13 +143326,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -141994,93 +143343,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [75159] = 28, - ACTIONS(71), 1, + [75956] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(1097), 1, + ACTIONS(1117), 1, sym_word, - ACTIONS(1101), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1103), 1, + ACTIONS(1123), 1, anon_sym_BANG, - ACTIONS(1109), 1, + ACTIONS(1129), 1, anon_sym_TILDE, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + ACTIONS(1159), 1, sym_test_operator, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(3119), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(5753), 1, - sym_extglob_pattern, - ACTIONS(5905), 1, + ACTIONS(5833), 1, sym__special_character, - STATE(2593), 1, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(2617), 1, - sym__extglob_blob, - STATE(3086), 1, + STATE(3014), 1, sym__expression, - ACTIONS(1099), 2, + STATE(7061), 1, + sym__test_command_binary_expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, + ACTIONS(1125), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1107), 2, + ACTIONS(1127), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2554), 9, + STATE(2588), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [75262] = 3, + [76059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1348), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142091,9 +143440,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142103,13 +143451,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142119,20 +143468,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, - [75315] = 3, + [76112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 7, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 38, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142143,6 +143490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142153,13 +143501,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142169,74 +143518,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, - [75368] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5907), 1, - anon_sym_DQUOTE, - ACTIONS(5909), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5911), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5913), 1, - anon_sym_BQUOTE, - ACTIONS(5915), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2819), 3, - sym_string, - sym_expansion, - sym_command_substitution, - ACTIONS(5472), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(5470), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [75433] = 3, + [76165] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(6140), 1, + sym__special_character, + STATE(1598), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 40, + ACTIONS(1394), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142262,11 +143557,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142276,19 +143569,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, - [75486] = 3, + [76222] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 7, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1352), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142299,6 +143592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142309,13 +143603,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142325,23 +143620,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, - [75539] = 6, + [76275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, - aux_sym_concatenation_token1, - ACTIONS(5917), 1, - sym__concat, - STATE(1612), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(1362), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 38, + ACTIONS(1360), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142366,10 +143656,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142380,21 +143671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75598] = 6, + [76328] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, - aux_sym_concatenation_token1, - ACTIONS(5919), 1, - sym__concat, - STATE(1612), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(6131), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 38, + ACTIONS(6129), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142405,8 +143691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142416,13 +143704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142432,22 +143719,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, - [75657] = 6, + [76381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5921), 1, - aux_sym_concatenation_token1, - ACTIONS(5924), 1, - sym__concat, - STATE(1612), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 4, + ACTIONS(6135), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(6133), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142458,8 +143741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142469,13 +143754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142485,22 +143769,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, - [75716] = 6, + [76434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, - aux_sym_concatenation_token1, - ACTIONS(5877), 1, - sym__concat, - STATE(1610), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 4, + ACTIONS(1366), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 38, + ACTIONS(1364), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142525,10 +143806,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142539,36 +143821,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75775] = 5, + [76487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 2, + ACTIONS(1362), 5, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4318), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4304), 18, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 40, anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_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(5927), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -142578,7 +143841,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -142591,21 +143853,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [75832] = 6, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [76540] = 28, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3147), 1, + sym__expression, + STATE(7429), 1, + sym__test_command_binary_expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [76643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, + ACTIONS(5873), 1, aux_sym_concatenation_token1, - ACTIONS(5877), 1, + ACTIONS(6143), 1, sym__concat, - STATE(1610), 1, + STATE(1382), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(1296), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1294), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142616,7 +143972,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -142633,7 +143988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142644,18 +143999,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [75891] = 3, + [76702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 7, - sym_file_descriptor, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(6145), 1, sym__concat, + STATE(1382), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 38, + ACTIONS(1314), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142676,13 +144035,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142692,22 +144051,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, - [75944] = 5, + [76761] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5828), 1, - sym__special_character, - STATE(1669), 1, - aux_sym__literal_repeat1, - ACTIONS(5589), 5, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, + sym__concat, + STATE(1606), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 38, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142719,8 +144079,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -142734,8 +144092,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142746,18 +144105,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76001] = 3, + [76820] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 7, - sym_file_descriptor, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(6147), 1, sym__concat, + STATE(1397), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 38, + ACTIONS(1294), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142780,11 +144143,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142796,18 +144158,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [76054] = 3, + [76879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 7, - sym_file_descriptor, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(6149), 1, sym__concat, + STATE(1397), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 38, + ACTIONS(1314), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142830,11 +144196,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142846,18 +144211,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [76107] = 3, + [76938] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 7, - sym_file_descriptor, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(5951), 1, sym__concat, + STATE(1609), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142878,14 +144247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142895,32 +144262,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [76160] = 3, + [76997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4519), 5, + ACTIONS(1366), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 40, + ACTIONS(1364), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -142929,13 +144296,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142945,21 +144312,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, - [76213] = 5, + [77050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5824), 1, - sym__special_character, - STATE(1523), 1, - aux_sym__literal_repeat1, - ACTIONS(5325), 5, + ACTIONS(1362), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5323), 38, + ACTIONS(1360), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -142970,6 +144334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -142984,9 +144349,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -142996,18 +144363,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, - [76270] = 3, + [77103] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(6151), 1, + aux_sym_concatenation_token1, + ACTIONS(6153), 1, sym__concat, + STATE(1632), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 40, + ACTIONS(1294), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143030,14 +144401,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143048,16 +144417,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76323] = 3, + [77162] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 5, + ACTIONS(2156), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 40, + ACTIONS(2154), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143087,7 +144456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143098,84 +144467,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76376] = 6, + [77215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(5931), 1, - sym__concat, - STATE(985), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LPAREN, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [76435] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4523), 5, + ACTIONS(1342), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4521), 40, + ACTIONS(1340), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143184,13 +144500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143201,18 +144517,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76488] = 3, + [77268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 7, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1344), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143223,6 +144538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -143239,7 +144555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143251,117 +144567,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [76541] = 3, - ACTIONS(3), 1, + [77321] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(1278), 7, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [76594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 6, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(1159), 1, sym_test_operator, + ACTIONS(1161), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 39, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3002), 1, + sym__expression, + STATE(7581), 1, + sym__test_command_binary_expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_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(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [76647] = 3, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [77424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1320), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143372,8 +144662,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143383,14 +144675,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143401,17 +144692,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76700] = 3, + [77477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(2160), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 39, + ACTIONS(2158), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143422,8 +144712,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143433,13 +144725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143449,12 +144741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [76753] = 3, + [77530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 7, + ACTIONS(1390), 7, sym_file_descriptor, sym__concat, sym_variable_name, @@ -143462,7 +144753,7 @@ static const uint16_t ts_small_parse_table[] = { sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1388), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143489,7 +144780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143501,29 +144792,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [76806] = 3, + [77583] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5403), 5, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(6155), 1, + sym__concat, + STATE(1022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5401), 40, + ACTIONS(1294), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -143540,7 +144834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143551,30 +144845,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [76859] = 3, + [77642] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 7, - sym_file_descriptor, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(6157), 1, sym__concat, - sym_variable_name, + STATE(1022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 38, + ACTIONS(1314), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -143583,13 +144881,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143599,95 +144897,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [76912] = 28, - ACTIONS(71), 1, + [77701] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(6151), 1, + aux_sym_concatenation_token1, + ACTIONS(6159), 1, + sym__concat, + STATE(1632), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, + [77760] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6161), 1, sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5753), 1, - sym_extglob_pattern, - STATE(2548), 1, + STATE(1593), 1, aux_sym__literal_repeat1, - STATE(2617), 1, - sym__extglob_blob, - STATE(3395), 1, - sym__expression, - ACTIONS(1099), 2, + ACTIONS(5495), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5493), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [77015] = 3, + sym_word, + [77817] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 7, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 38, + ACTIONS(1348), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143698,6 +145024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -143714,7 +145041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143726,18 +145053,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77068] = 3, + [77870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 7, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143748,6 +145074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -143764,7 +145091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143776,18 +145103,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77121] = 3, + [77923] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 7, + ACTIONS(6163), 1, + sym__special_character, + STATE(1628), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 38, + ACTIONS(1394), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143799,6 +145128,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143810,11 +145141,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143826,18 +145155,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77174] = 3, + [77980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 7, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143848,6 +145176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -143858,13 +145187,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143874,20 +145204,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [77227] = 3, + [78033] = 28, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3026), 1, + sym__expression, + STATE(7670), 1, + sym__test_command_binary_expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [78136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 7, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1352), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143898,6 +145301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -143914,7 +145318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143926,17 +145330,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77280] = 3, + [78189] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(6166), 1, + aux_sym_concatenation_token1, + ACTIONS(6169), 1, sym__concat, - sym_variable_name, + STATE(1632), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 39, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143947,8 +145355,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -143960,11 +145369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -143974,20 +145382,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, - [77333] = 3, + [78248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 7, + ACTIONS(1362), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1360), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -143998,6 +145404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144014,7 +145421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144026,18 +145433,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77386] = 3, + [78301] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 7, + ACTIONS(1374), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 38, + ACTIONS(1372), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144048,6 +145454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144058,13 +145465,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144074,19 +145482,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, - [77439] = 3, + [78354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1366), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 39, + ACTIONS(1364), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144108,14 +145515,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144125,76 +145531,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [77492] = 6, - ACTIONS(3), 1, + [78407] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1707), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3043), 1, + sym__expression, + STATE(7503), 1, + sym__test_command_binary_expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [77551] = 6, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [78510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1709), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5321), 5, + ACTIONS(1358), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 37, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144206,6 +145629,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144215,13 +145640,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144231,19 +145656,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, - [77610] = 3, + [78563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, + ACTIONS(1354), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144255,6 +145679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144270,7 +145696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144282,22 +145708,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77663] = 6, + [78616] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, + ACTIONS(6172), 1, aux_sym_concatenation_token1, - ACTIONS(5609), 1, + ACTIONS(6174), 1, sym__concat, - STATE(1713), 1, + STATE(1645), 1, aux_sym_concatenation_repeat1, - ACTIONS(5325), 5, + ACTIONS(1296), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5323), 37, + ACTIONS(1294), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144308,6 +145733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144323,7 +145749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144335,22 +145761,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77722] = 6, + [78675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, + ACTIONS(6172), 1, aux_sym_concatenation_token1, - ACTIONS(5609), 1, + ACTIONS(6176), 1, sym__concat, - STATE(1714), 1, + STATE(1645), 1, aux_sym_concatenation_repeat1, - ACTIONS(5329), 5, + ACTIONS(1316), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5327), 37, + ACTIONS(1314), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144361,6 +145786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144376,7 +145802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144388,31 +145814,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [77781] = 3, + [78734] = 28, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3099), 1, + sym__expression, + STATE(7619), 1, + sym__test_command_binary_expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [78837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1374), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1372), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144421,13 +145921,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144437,35 +145937,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, + [78890] = 28, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1117), 1, sym_word, - [77834] = 6, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3146), 1, + sym__expression, + STATE(7675), 1, + sym__test_command_binary_expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [78993] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(5933), 1, - sym__concat, - STATE(985), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(6178), 1, + sym__special_character, + STATE(1628), 1, + aux_sym__literal_repeat1, + ACTIONS(5495), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(5493), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144474,13 +146050,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144490,23 +146064,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, - [77893] = 6, + [79050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, + ACTIONS(6180), 1, aux_sym_concatenation_token1, - ACTIONS(5541), 1, + ACTIONS(6183), 1, sym__concat, - STATE(1709), 1, + STATE(1645), 1, aux_sym_concatenation_repeat1, - ACTIONS(2169), 5, + ACTIONS(1306), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 37, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144517,6 +146091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144527,13 +146102,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144543,23 +146117,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, + [79109] = 28, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1117), 1, sym_word, - [77952] = 6, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3176), 1, + sym__expression, + STATE(7373), 1, + sym__test_command_binary_expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [79212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1707), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 5, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 37, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144570,6 +146215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144580,13 +146226,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144596,23 +146242,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, - [78011] = 6, + [79265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1709), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4513), 5, + ACTIONS(1374), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 37, + ACTIONS(1372), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144623,6 +146265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144633,13 +146276,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144649,31 +146292,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, - [78070] = 3, + [79318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(4902), 6, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(4900), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144682,13 +146327,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144698,24 +146343,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, - [78123] = 6, + [79371] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, + ACTIONS(6172), 1, aux_sym_concatenation_token1, - ACTIONS(5935), 1, + ACTIONS(6186), 1, sym__concat, - STATE(1673), 1, + STATE(1639), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1302), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 37, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144726,6 +146369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144741,7 +146385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144753,18 +146397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [78182] = 3, + [79430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 7, + ACTIONS(1390), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 38, + ACTIONS(1388), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144775,6 +146418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -144792,7 +146436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144803,16 +146447,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78235] = 3, + [79483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 5, + ACTIONS(1366), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 40, + ACTIONS(1364), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144836,13 +146480,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144853,16 +146497,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78288] = 3, + [79536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1342), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -144873,10 +146519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -144892,7 +146535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144902,24 +146545,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [78341] = 3, + [79589] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 5, + ACTIONS(6113), 1, + aux_sym_concatenation_token1, + ACTIONS(6115), 1, + sym__concat, + STATE(1760), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 40, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, @@ -144927,7 +146575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144942,7 +146589,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -144953,34 +146600,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78394] = 5, + [79648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5828), 1, - sym__special_character, - STATE(1669), 1, - aux_sym__literal_repeat1, - ACTIONS(5595), 5, + ACTIONS(5040), 6, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 38, + ACTIONS(5038), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -144993,8 +146637,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145005,22 +146650,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78451] = 6, + [79701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1709), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2173), 5, + ACTIONS(1330), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 37, + ACTIONS(1328), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145031,6 +146671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -145044,10 +146685,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145058,22 +146700,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78510] = 6, + [79754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1707), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 5, + ACTIONS(6188), 1, + sym__special_character, + STATE(1598), 1, + aux_sym__literal_repeat1, + ACTIONS(5789), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 37, + ACTIONS(5787), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145084,7 +146723,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145094,13 +146736,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145110,23 +146750,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, - [78569] = 6, + [79811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1709), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 5, + ACTIONS(1338), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 37, + ACTIONS(1336), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145137,6 +146773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -145150,10 +146787,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145164,22 +146802,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78628] = 6, + [79864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1707), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5167), 5, + ACTIONS(1322), 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(5165), 37, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145200,13 +146834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145216,23 +146850,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, - [78687] = 6, + [79917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1709), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5175), 5, + ACTIONS(1334), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 37, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145243,6 +146873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -145256,10 +146887,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145270,22 +146902,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78746] = 6, + [79970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, - aux_sym_concatenation_token1, - ACTIONS(5937), 1, - sym__concat, - STATE(1673), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1346), 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(1286), 37, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145308,10 +146936,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145323,30 +146952,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [78805] = 3, + [80023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 7, + ACTIONS(5797), 6, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 38, + ACTIONS(5795), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145358,11 +146988,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145373,20 +147002,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [78858] = 5, + [80076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5939), 1, - sym__special_character, - STATE(1669), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, + ACTIONS(1390), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 38, + ACTIONS(1388), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145397,9 +147023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145409,12 +147034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145424,82 +147050,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, - [78915] = 3, - ACTIONS(3), 1, + [80129] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6190), 1, + anon_sym_DQUOTE, + ACTIONS(6192), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6194), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6196), 1, + anon_sym_BQUOTE, + ACTIONS(6198), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2953), 3, + sym_string, + sym_expansion, + sym_command_substitution, + ACTIONS(5804), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [78968] = 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(5802), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [80194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 5, + ACTIONS(6161), 1, + sym__special_character, + STATE(1593), 1, + aux_sym__literal_repeat1, + ACTIONS(5901), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 40, + ACTIONS(5899), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145512,9 +147148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145525,97 +147160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79021] = 28, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, - sym_word, - ACTIONS(295), 1, - anon_sym_LPAREN, - ACTIONS(297), 1, - anon_sym_BANG, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, - aux_sym_number_token1, - ACTIONS(313), 1, - aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, - sym_test_operator, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5942), 1, - sym__special_character, - ACTIONS(5944), 1, - sym_extglob_pattern, - STATE(2705), 1, - aux_sym__literal_repeat1, - STATE(2962), 1, - sym__expression, - STATE(2967), 1, - sym__extglob_blob, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2952), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2509), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [79124] = 6, + [80251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5946), 1, - aux_sym_concatenation_token1, - ACTIONS(5949), 1, - sym__concat, - STATE(1673), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(1326), 7, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145638,10 +147194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145653,16 +147210,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [79183] = 3, + [80304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 5, + ACTIONS(5017), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 40, + ACTIONS(5015), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145692,7 +147249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145703,16 +147260,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79236] = 3, + [80357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 40, + ACTIONS(1340), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145723,10 +147281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145736,13 +147292,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145753,16 +147310,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79289] = 3, + [80410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 40, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145773,9 +147331,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145792,7 +147349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145803,22 +147360,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79342] = 6, + [80463] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, - aux_sym_concatenation_token1, - ACTIONS(5847), 1, - sym__concat, - STATE(1656), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(1326), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1324), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145829,6 +147381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -145841,10 +147394,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145856,16 +147410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [79401] = 3, + [80516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1330), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1328), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145876,9 +147431,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -145888,14 +147442,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145905,23 +147458,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, - [79454] = 6, + [80569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(5609), 1, - sym__concat, - STATE(1713), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5167), 5, + ACTIONS(1378), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 37, + ACTIONS(1376), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -145932,6 +147481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -145942,12 +147492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -145957,36 +147509,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [79513] = 6, + [80622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(5609), 1, - sym__concat, - STATE(1714), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5175), 5, + ACTIONS(1302), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 37, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -145995,12 +147543,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146010,18 +147559,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, - [79572] = 3, + [80675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, - sym_file_descriptor, + ACTIONS(6151), 1, + aux_sym_concatenation_token1, + ACTIONS(6200), 1, sym__concat, + STATE(1614), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 40, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146044,14 +147597,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146062,17 +147613,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79625] = 3, + [80734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4523), 6, + ACTIONS(5017), 6, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4521), 39, + ACTIONS(5015), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146101,7 +147652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146112,17 +147663,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79678] = 3, + [80787] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(6161), 1, + sym__special_character, + STATE(1593), 1, + aux_sym__literal_repeat1, + ACTIONS(5907), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(5905), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146133,8 +147687,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146144,13 +147699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146160,19 +147714,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, - [79731] = 3, + [80844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(5050), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 39, + ACTIONS(5048), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146183,8 +147735,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146194,13 +147748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146210,18 +147764,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, - [79784] = 3, + [80897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 40, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146251,7 +147804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146262,17 +147815,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79837] = 3, + [80950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1338), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 39, + ACTIONS(1336), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146294,14 +147847,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146311,17 +147863,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, - [79890] = 3, + [81003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5873), 5, + ACTIONS(1382), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5871), 40, + ACTIONS(1380), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146332,10 +147886,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146348,10 +147900,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146362,18 +147915,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [79943] = 3, + [81056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 7, - sym_file_descriptor, + ACTIONS(6172), 1, + aux_sym_concatenation_token1, + ACTIONS(6186), 1, sym__concat, - sym_variable_name, + STATE(1639), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5789), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(5787), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146384,6 +147940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -146394,14 +147951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146411,35 +147966,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, - [79996] = 6, + [81115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(4912), 1, - sym__concat, - STATE(1625), 1, - aux_sym_concatenation_repeat1, - ACTIONS(278), 5, + ACTIONS(1354), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(241), 37, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -146448,13 +148001,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146465,16 +148018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80055] = 3, + [81168] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 40, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146485,9 +148039,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146497,14 +148050,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146514,18 +148066,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, - [80108] = 3, + [81221] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, - sym_file_descriptor, + ACTIONS(6172), 1, + aux_sym_concatenation_token1, + ACTIONS(6186), 1, sym__concat, - sym_variable_name, + STATE(1640), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5793), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 39, + ACTIONS(5791), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146549,11 +148106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146565,16 +148121,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [80161] = 3, + [81280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1374), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 40, + ACTIONS(1372), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146585,6 +148141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -146603,7 +148160,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146613,36 +148170,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [80214] = 6, + [81333] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(4912), 1, - sym__concat, - STATE(1651), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, + ACTIONS(1350), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 37, + ACTIONS(1348), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -146654,10 +148206,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146668,35 +148221,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80273] = 7, + [81386] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(4912), 1, - sym__concat, - ACTIONS(5952), 1, - anon_sym_LPAREN, - STATE(1651), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1258), 5, + ACTIONS(1306), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1251), 36, + ACTIONS(1304), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -146708,10 +148256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146722,22 +148271,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80334] = 6, + [81439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5845), 1, - aux_sym_concatenation_token1, - ACTIONS(5847), 1, - sym__concat, - STATE(1667), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5515), 5, + ACTIONS(1342), 6, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5513), 37, + ACTIONS(1340), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146748,6 +148292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -146760,10 +148305,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146775,16 +148321,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [80393] = 3, + [81492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 5, + ACTIONS(1322), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 40, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146795,10 +148342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146808,13 +148353,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146824,17 +148369,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, - [80446] = 3, + [81545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1378), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 40, + ACTIONS(1376), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146845,10 +148392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146864,7 +148409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146874,19 +148419,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, - [80499] = 3, + [81598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 7, + ACTIONS(1382), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, + ACTIONS(1380), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146897,6 +148442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -146907,14 +148453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146924,17 +148469,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, - [80552] = 3, + [81651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1370), 6, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 40, + ACTIONS(1368), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146945,9 +148492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -146957,13 +148503,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -146973,20 +148520,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, - [80605] = 3, + [81704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 7, + ACTIONS(1386), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 38, + ACTIONS(1384), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -146997,6 +148542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -147014,7 +148560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147025,18 +148571,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80658] = 3, + [81757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 7, + ACTIONS(1370), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, + ACTIONS(1368), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147047,6 +148592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -147064,7 +148610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147075,91 +148621,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [80711] = 28, - ACTIONS(71), 1, + [81810] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1330), 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(1328), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5753), 1, - sym_extglob_pattern, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2617), 1, - sym__extglob_blob, - STATE(3137), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [80814] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [81863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1344), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147182,13 +148703,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147198,68 +148720,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [80867] = 3, - ACTIONS(3), 1, + [81916] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(5890), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, + anon_sym_LPAREN, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, + anon_sym_DOLLAR, + ACTIONS(272), 1, + aux_sym_number_token1, + ACTIONS(274), 1, + aux_sym_number_token2, + ACTIONS(278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5888), 40, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1099), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1103), 1, sym__special_character, + ACTIONS(1105), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1113), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + ACTIONS(6202), 1, + sym__regex_no_space, + STATE(2653), 1, + aux_sym__literal_repeat1, + STATE(3001), 1, + sym__expression, + ACTIONS(105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [80920] = 3, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2507), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [82019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1370), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1368), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147270,10 +148817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147283,13 +148828,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147299,18 +148844,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, - [80973] = 3, + [82072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(1386), 6, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 39, + ACTIONS(1384), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147338,7 +148884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147350,22 +148896,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [81026] = 6, + [82125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5955), 1, - sym__concat, - STATE(1330), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1370), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 37, + ACTIONS(1368), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147376,6 +148917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -147386,13 +148928,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147402,80 +148944,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [81085] = 10, - ACTIONS(3), 1, + [82178] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(4327), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5840), 1, - sym_variable_name, - STATE(6730), 1, - sym_subscript, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - STATE(5230), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4318), 3, + STATE(3583), 1, + aux_sym__literal_repeat1, + STATE(1538), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(2154), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + STATE(3533), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2156), 22, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - STATE(5297), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4304), 28, anon_sym_LPAREN_LPAREN, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [81152] = 6, + [82237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5957), 1, - sym__concat, - STATE(1330), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1362), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(1360), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147487,6 +149020,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147499,10 +149034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147513,22 +149049,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81211] = 6, + [82290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(1707), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(6204), 1, + sym__special_character, + STATE(1724), 1, + aux_sym__literal_repeat1, + ACTIONS(5442), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(5440), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147539,7 +149072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147553,9 +149089,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147566,34 +149101,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81270] = 9, + [82347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5840), 1, - sym_variable_name, - STATE(6730), 1, - sym_subscript, - ACTIONS(4318), 2, + ACTIONS(1366), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(4323), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5230), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(5297), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4310), 16, + ACTIONS(1364), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147603,15 +149133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(4304), 18, - anon_sym_LPAREN_LPAREN, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147622,32 +149151,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81335] = 6, + [82400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4910), 1, - aux_sym_concatenation_token1, - ACTIONS(4912), 1, - sym__concat, - STATE(1625), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(5040), 5, sym_file_descriptor, sym_test_operator, sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(5038), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_EQ_TILDE, anon_sym_AMP_GT, @@ -147664,7 +149190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147675,34 +149201,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81394] = 6, + [82453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(5959), 1, - sym__concat, - STATE(1345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(5797), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 37, + ACTIONS(5795), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -147711,12 +149234,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147726,24 +149250,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, - [81453] = 6, + [82506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(5961), 1, - sym__concat, - STATE(1345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1378), 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(1286), 37, + ACTIONS(1376), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147766,10 +149285,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147781,22 +149301,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [81512] = 6, + [82559] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(5609), 1, - sym__concat, - STATE(1713), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(1358), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1356), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147808,6 +149322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147817,12 +149333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147832,19 +149350,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, - [81571] = 3, + [82612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(6161), 1, + sym__special_character, + STATE(1593), 1, + aux_sym__literal_repeat1, + ACTIONS(5442), 5, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(5440), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147855,8 +149375,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147866,13 +149387,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147882,19 +149402,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, - [81624] = 3, + [82669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1354), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 39, + ACTIONS(1352), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -147905,8 +149423,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -147916,13 +149435,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147932,52 +149452,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [81677] = 7, + [82722] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6161), 1, + sym__special_character, + STATE(1593), 1, + aux_sym__literal_repeat1, + ACTIONS(4973), 5, sym_file_descriptor, - ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5851), 12, + aux_sym_heredoc_redirect_token1, + ACTIONS(4971), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -147988,20 +149505,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81738] = 5, + [82779] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5828), 1, + ACTIONS(6161), 1, sym__special_character, - STATE(1669), 1, + STATE(1593), 1, aux_sym__literal_repeat1, - ACTIONS(5167), 5, + ACTIONS(5046), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 38, + ACTIONS(5044), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148029,7 +149546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148040,17 +149557,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81795] = 3, + [82836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(1350), 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(1352), 39, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148061,7 +149579,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -148078,7 +149595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148090,16 +149607,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [81848] = 3, + [82889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1374), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 40, + ACTIONS(1372), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148129,7 +149646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148140,17 +149657,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [81901] = 3, + [82942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1306), 7, sym_file_descriptor, sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148161,7 +149679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -148172,14 +149689,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148189,18 +149705,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, - [81954] = 3, + [82995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(1390), 5, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 39, + ACTIONS(1388), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148211,8 +149727,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148222,14 +149739,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148239,18 +149755,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, - [82007] = 3, + [83048] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, + ACTIONS(6151), 1, + aux_sym_concatenation_token1, + ACTIONS(6200), 1, sym__concat, - sym_variable_name, + STATE(1614), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(5440), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148261,8 +149782,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148272,14 +149794,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148290,18 +149810,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82060] = 3, + [83107] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 7, - sym_file_descriptor, + ACTIONS(6151), 1, + aux_sym_concatenation_token1, + ACTIONS(6200), 1, sym__concat, - sym_variable_name, + STATE(1624), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(5538), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148313,6 +149836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148324,11 +149849,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148338,19 +149862,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, - [82113] = 3, + [83166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1326), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 38, + ACTIONS(1324), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148361,7 +149883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148371,14 +149896,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148389,22 +149913,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82165] = 6, + [83219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - aux_sym_concatenation_token1, - ACTIONS(5965), 1, - sym__concat, - STATE(1728), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1330), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 36, + ACTIONS(1328), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148416,6 +149934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148427,10 +149947,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148440,23 +149961,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, - [82223] = 6, + [83272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5967), 1, - aux_sym_concatenation_token1, - ACTIONS(5970), 1, - sym__concat, - STATE(1728), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 5, + ACTIONS(1378), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 36, + ACTIONS(1376), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148467,7 +149983,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148479,10 +149998,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148493,73 +150013,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82281] = 5, - ACTIONS(71), 1, + [83325] = 3, + ACTIONS(3), 1, sym_comment, - STATE(1917), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5973), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1272), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 25, + ACTIONS(1338), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 40, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [82337] = 6, + sym_word, + [83378] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - aux_sym_concatenation_token1, - ACTIONS(5975), 1, - sym__concat, - STATE(1855), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(1382), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 36, + ACTIONS(1380), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148570,7 +150083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148582,10 +150098,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148596,17 +150113,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82395] = 3, + [83431] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(6206), 1, + sym__special_character, + STATE(1724), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1394), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148617,7 +150136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148630,11 +150152,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148645,17 +150165,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82447] = 3, + [83488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1342), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148683,7 +150204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148694,17 +150215,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82499] = 3, + [83541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1322), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148732,7 +150254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148743,17 +150265,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82551] = 3, + [83594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(1358), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148774,14 +150297,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148791,19 +150313,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, - [82603] = 3, + [83647] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(6211), 2, sym_file_descriptor, - sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(4503), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(4495), 18, anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_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(6209), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -148813,7 +150354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148823,35 +150367,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [82655] = 3, + [83704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(1332), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148862,7 +150387,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148872,14 +150400,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148890,17 +150417,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82707] = 3, + [83757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1338), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1336), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148921,14 +150449,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148938,18 +150465,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, - [82759] = 3, + [83810] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(6178), 1, + sym__special_character, + STATE(1628), 1, + aux_sym__literal_repeat1, + ACTIONS(5527), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 38, + ACTIONS(5525), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -148961,6 +150492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -148970,14 +150503,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -148987,22 +150517,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, - [82811] = 6, + [83867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - aux_sym_concatenation_token1, - ACTIONS(5979), 1, - sym__concat, - STATE(1743), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(1354), 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(1266), 37, + ACTIONS(1352), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149013,7 +150541,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149026,10 +150553,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149039,18 +150567,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, - [82869] = 3, + [83920] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(1346), 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(1324), 38, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149078,7 +150608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149089,21 +150619,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82921] = 6, + [83973] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, + ACTIONS(6017), 1, aux_sym_concatenation_token1, - ACTIONS(5981), 1, + ACTIONS(6213), 1, sym__concat, - STATE(1743), 1, + STATE(1736), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1296), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(1294), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149114,7 +150645,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149125,12 +150655,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149141,17 +150672,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [82979] = 3, + [84032] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(6017), 1, + aux_sym_concatenation_token1, + ACTIONS(6215), 1, sym__concat, + STATE(1736), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 38, + ACTIONS(1314), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149175,11 +150711,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149190,21 +150725,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83031] = 6, + [84091] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5983), 1, + ACTIONS(6217), 1, aux_sym_concatenation_token1, - ACTIONS(5986), 1, + ACTIONS(6220), 1, sym__concat, - STATE(1743), 1, + STATE(1736), 1, aux_sym_concatenation_repeat1, - ACTIONS(1278), 4, + ACTIONS(1306), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1304), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149215,7 +150751,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149226,12 +150761,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149242,17 +150778,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83089] = 3, + [84150] = 28, + ACTIONS(73), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, + anon_sym_LPAREN, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, + sym_ansi_c_string, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(335), 1, + sym_test_operator, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + ACTIONS(6223), 1, + sym__regex_no_space, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3065), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1326), 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(1336), 38, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149280,7 +150892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149291,17 +150903,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83141] = 3, + [84306] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, - sym_file_descriptor, + ACTIONS(6017), 1, + aux_sym_concatenation_token1, + ACTIONS(6019), 1, sym__concat, + STATE(1734), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 38, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149325,11 +150942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149340,17 +150956,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83193] = 3, + [84365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(1382), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1380), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149371,14 +150988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149388,17 +151004,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, - [83245] = 3, + [84418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1370), 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(1296), 39, + ACTIONS(1368), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149409,7 +151028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149420,14 +151038,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149437,22 +151054,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [83297] = 5, - ACTIONS(3), 1, + [84471] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(5989), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1239), 1, + sym_word, + ACTIONS(1241), 1, + anon_sym_BANG, + ACTIONS(1247), 1, + anon_sym_TILDE, + ACTIONS(1249), 1, sym__special_character, - STATE(1820), 1, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(6041), 1, + sym__regex_no_space, + STATE(2546), 1, aux_sym__literal_repeat1, - ACTIONS(5167), 6, + STATE(3426), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1243), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1245), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2777), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [84574] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1386), 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(5165), 36, + ACTIONS(1384), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149475,9 +151165,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149489,17 +151181,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [83353] = 3, + [84627] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, - sym_file_descriptor, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(1606), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 38, + ACTIONS(5440), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149523,11 +151220,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149538,16 +151234,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83405] = 3, + [84686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(1607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(5538), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149558,7 +151260,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149572,11 +151273,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149587,16 +151287,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83457] = 3, + [84745] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(5951), 1, sym__concat, + STATE(1609), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5527), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(5525), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149607,7 +151313,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149618,14 +151323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149635,18 +151338,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, - [83509] = 3, + [84804] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, - sym_file_descriptor, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(5951), 1, sym__concat, + STATE(1610), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5531), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 38, + ACTIONS(5529), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149667,14 +151376,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149684,17 +151391,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, - [83561] = 3, + [84863] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(1607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2156), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, + ACTIONS(2154), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149705,7 +151419,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149719,11 +151432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149734,16 +151446,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83613] = 3, + [84922] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(1606), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(4971), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149754,7 +151472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149768,11 +151485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149783,21 +151499,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83665] = 6, + [84981] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, + ACTIONS(5873), 1, aux_sym_concatenation_token1, - ACTIONS(5991), 1, + ACTIONS(5887), 1, sym__concat, - STATE(1739), 1, + STATE(1607), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(5017), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(5015), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149808,7 +151525,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149819,12 +151535,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149835,16 +151552,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83723] = 3, + [85040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1370), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(1368), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149855,7 +151574,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -149866,14 +151584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149883,18 +151600,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, - [83775] = 3, + [85093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(1362), 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(1356), 38, + ACTIONS(1360), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149915,14 +151634,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149932,18 +151650,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, - [83827] = 3, + [85146] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, - sym_file_descriptor, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(1607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 38, + ACTIONS(2158), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -149967,11 +151691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -149982,17 +151705,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83879] = 3, + [85205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(1606), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, + ACTIONS(5044), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150016,11 +151744,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150031,16 +151758,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83931] = 3, + [85264] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(1607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(5048), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150051,7 +151784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150065,11 +151797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150080,16 +151811,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [83983] = 3, + [85323] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, - sym_file_descriptor, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(1606), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5495), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 39, + ACTIONS(5493), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150100,7 +151837,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150114,11 +151850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150129,16 +151864,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84035] = 3, + [85382] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, - sym_file_descriptor, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(1607), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5501), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 39, + ACTIONS(5499), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150149,7 +151890,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150163,11 +151903,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150178,16 +151917,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84087] = 3, + [85441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, - sym_file_descriptor, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(5951), 1, sym__concat, + STATE(1609), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5495), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 39, + ACTIONS(5493), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150198,7 +151943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150209,14 +151953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150226,17 +151968,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, - [84139] = 3, + [85500] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, - sym_file_descriptor, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(5951), 1, sym__concat, + STATE(1610), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5501), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 39, + ACTIONS(5499), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150247,7 +151996,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150258,14 +152006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150275,17 +152021,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, - [84191] = 3, + [85559] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, - sym_file_descriptor, + ACTIONS(6113), 1, + aux_sym_concatenation_token1, + ACTIONS(6225), 1, sym__concat, + STATE(1767), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 39, + ACTIONS(1294), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150310,11 +152062,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150325,16 +152076,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84243] = 3, + [85618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1330), 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(1340), 39, + ACTIONS(1328), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150345,7 +152098,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150363,7 +152115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150374,16 +152126,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84295] = 3, + [85671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1378), 7, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1376), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150394,7 +152148,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -150412,7 +152165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150423,29 +152176,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84347] = 3, + [85724] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, - sym_file_descriptor, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(5160), 1, sym__concat, + STATE(1622), 1, + aux_sym_concatenation_repeat1, + ACTIONS(286), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 39, + ACTIONS(247), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150457,11 +152215,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150472,16 +152229,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84399] = 3, + [85783] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, - sym_file_descriptor, + ACTIONS(6113), 1, + aux_sym_concatenation_token1, + ACTIONS(6227), 1, sym__concat, + STATE(1767), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 39, + ACTIONS(1314), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150506,11 +152268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150521,29 +152282,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84451] = 3, + [85842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, - sym_file_descriptor, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(5160), 1, sym__concat, + STATE(1623), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(1279), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150555,11 +152321,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150570,29 +152335,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84503] = 3, + [85901] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, - sym_file_descriptor, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(5160), 1, sym__concat, + ACTIONS(6229), 1, + anon_sym_LPAREN, + STATE(1623), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1286), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 39, + ACTIONS(1279), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150604,11 +152375,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150619,16 +152389,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84555] = 3, + [85962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, - sym_file_descriptor, + ACTIONS(6232), 1, + aux_sym_concatenation_token1, + ACTIONS(6235), 1, sym__concat, + STATE(1767), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150653,11 +152428,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150668,178 +152442,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84607] = 27, - ACTIONS(71), 1, + [86021] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(4501), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6106), 1, + sym_variable_name, + STATE(6815), 1, + sym_subscript, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + STATE(5294), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4503), 3, + sym_file_descriptor, sym_test_operator, - ACTIONS(284), 1, sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - ACTIONS(5993), 1, - sym__regex_no_space, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3041), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, + STATE(5344), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4495), 28, anon_sym_LPAREN_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84707] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5995), 1, - sym__regex_no_space, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3152), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [84807] = 5, + sym_word, + [86088] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5997), 1, - sym__special_character, - STATE(1874), 1, - aux_sym__literal_repeat1, - ACTIONS(5317), 6, - sym_file_descriptor, + ACTIONS(6106), 1, sym_variable_name, + STATE(6815), 1, + sym_subscript, + ACTIONS(4503), 2, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, + ACTIONS(4508), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, + STATE(5294), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5344), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4499), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150849,12 +152536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(4495), 18, + anon_sym_LPAREN_LPAREN, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150865,33 +152555,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84863] = 5, + [86153] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5997), 1, - sym__special_character, - STATE(1874), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 6, + ACTIONS(5158), 1, + aux_sym_concatenation_token1, + ACTIONS(5160), 1, + sym__concat, + STATE(1622), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 36, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, + anon_sym_LPAREN, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -150904,8 +152595,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150916,20 +152608,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84919] = 5, + [86212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, - sym__special_character, - STATE(1869), 1, - aux_sym__literal_repeat1, - ACTIONS(5317), 5, + ACTIONS(1326), 6, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 37, + ACTIONS(1324), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150954,9 +152643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -150967,15 +152658,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [84975] = 3, + [86265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1390), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1388), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -150986,10 +152679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -150999,12 +152689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -151014,24 +152706,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [85027] = 6, + [86317] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3229), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - aux_sym_concatenation_token1, - ACTIONS(5975), 1, - sym__concat, - STATE(1855), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 5, + ACTIONS(1338), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 36, + ACTIONS(1336), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151054,10 +152813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -151067,23 +152827,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, + [86469] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, sym_word, - [85085] = 6, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3015), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [86569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - aux_sym_concatenation_token1, - ACTIONS(5975), 1, - sym__concat, - STATE(1727), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5321), 5, + ACTIONS(1354), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 36, + ACTIONS(1352), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151106,10 +152935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -151119,239 +152949,361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [85143] = 27, - ACTIONS(71), 1, + [86621] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(227), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1101), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1171), 1, + ACTIONS(1187), 1, sym_word, - ACTIONS(1173), 1, + ACTIONS(1189), 1, anon_sym_BANG, - ACTIONS(1179), 1, + ACTIONS(1195), 1, anon_sym_TILDE, - ACTIONS(1181), 1, + ACTIONS(1197), 1, sym__special_character, - ACTIONS(1185), 1, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2548), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2958), 1, + STATE(3164), 1, sym__expression, - ACTIONS(1099), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1177), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2530), 9, + STATE(2606), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [85243] = 27, - ACTIONS(71), 1, + [86721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 40, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [86773] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1097), 1, + ACTIONS(1117), 1, sym_word, - ACTIONS(1101), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1103), 1, + ACTIONS(1123), 1, anon_sym_BANG, - ACTIONS(1109), 1, + ACTIONS(1129), 1, anon_sym_TILDE, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + ACTIONS(1159), 1, sym_test_operator, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(3119), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(5833), 1, sym__special_character, - ACTIONS(6001), 1, - sym__regex_no_space, - STATE(2593), 1, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(3075), 1, + STATE(3116), 1, sym__expression, - ACTIONS(1099), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, + ACTIONS(1125), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1107), 2, + ACTIONS(1127), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2554), 9, + STATE(2588), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [85343] = 27, - ACTIONS(71), 1, + [86873] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1097), 1, + ACTIONS(1117), 1, sym_word, - ACTIONS(1101), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1103), 1, + ACTIONS(1123), 1, anon_sym_BANG, - ACTIONS(1109), 1, + ACTIONS(1129), 1, anon_sym_TILDE, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + ACTIONS(1159), 1, sym_test_operator, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(3119), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(5833), 1, sym__special_character, - STATE(2593), 1, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(3008), 1, + STATE(3062), 1, sym__expression, - STATE(6992), 1, - sym__test_command_binary_expression, - ACTIONS(1099), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, + ACTIONS(1125), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1107), 2, + ACTIONS(1127), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2554), 9, + STATE(2588), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [85443] = 5, - ACTIONS(3), 1, + [86973] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(6003), 1, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(5849), 1, sym__special_character, - STATE(1801), 1, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6238), 1, + sym_word, + ACTIONS(6240), 1, + sym_ansi_c_string, + ACTIONS(6242), 1, + sym_test_operator, + STATE(2610), 1, aux_sym__literal_repeat1, - ACTIONS(5509), 4, + STATE(3401), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(2796), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2609), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1382), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5507), 38, + ACTIONS(1380), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151363,8 +153315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151376,9 +153326,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -151390,19 +153342,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [85499] = 5, + [87127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6005), 1, + ACTIONS(1370), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [87179] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, + anon_sym_LPAREN, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, + anon_sym_DOLLAR, + ACTIONS(272), 1, + aux_sym_number_token1, + ACTIONS(274), 1, + aux_sym_number_token2, + ACTIONS(278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, + sym_test_operator, + ACTIONS(292), 1, + sym__brace_start, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - STATE(1785), 1, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, aux_sym__literal_repeat1, - ACTIONS(1362), 4, + STATE(3008), 1, + sym__expression, + ACTIONS(105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2507), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87279] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3027), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87379] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3223), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [87479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1386), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 38, + ACTIONS(1384), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151413,10 +153631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151428,9 +153643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -151440,21 +153657,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, - [85555] = 5, + [87531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6008), 1, - sym__special_character, - STATE(1877), 1, - aux_sym__literal_repeat1, - ACTIONS(5325), 5, + ACTIONS(1338), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5323), 37, + ACTIONS(1336), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151476,11 +153690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -151490,22 +153707,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, - [85611] = 5, + [87583] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, + ACTIONS(6244), 1, sym__special_character, - STATE(1869), 1, + STATE(1967), 1, aux_sym__literal_repeat1, - ACTIONS(5589), 5, + ACTIONS(5442), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 37, + ACTIONS(5440), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151516,7 +153733,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -151532,7 +153748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -151543,15 +153759,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [85667] = 3, + [87639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1362), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 40, + ACTIONS(1360), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151562,10 +153780,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151575,13 +153790,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -151591,29 +153806,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [85719] = 27, - ACTIONS(71), 1, + [87691] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(1101), 1, + ACTIONS(4499), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_PIPE_AMP, + ACTIONS(6248), 1, + anon_sym_LT_LT, + ACTIONS(6250), 1, + anon_sym_LT_LT_DASH, + ACTIONS(6252), 1, + sym_variable_name, + STATE(6826), 1, + sym_subscript, + ACTIONS(6246), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + STATE(5325), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5385), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4503), 21, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [87761] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, ACTIONS(1187), 1, sym_word, @@ -151623,20 +153899,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE, ACTIONS(1197), 1, sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, ACTIONS(1201), 1, sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(5995), 1, - sym__regex_no_space, - STATE(2548), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(3129), 1, + STATE(3030), 1, sym__expression, - ACTIONS(1099), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, ACTIONS(1191), 2, @@ -151645,40 +153921,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2567), 9, + STATE(2606), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [85819] = 5, + [87861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, - sym__special_character, - STATE(1869), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 5, + ACTIONS(1374), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 37, + ACTIONS(1372), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151689,7 +153960,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -151700,12 +153970,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -151715,79 +153986,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [85875] = 12, - ACTIONS(71), 1, + [87913] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4323), 1, - anon_sym_PIPE_AMP, - ACTIONS(6012), 1, - anon_sym_LT_LT, - ACTIONS(6014), 1, - anon_sym_LT_LT_DASH, - ACTIONS(6016), 1, - sym_variable_name, - STATE(6769), 1, - sym_subscript, - ACTIONS(6010), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - STATE(5377), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(5369), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, + anon_sym_LPAREN, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, anon_sym_DOLLAR, + ACTIONS(272), 1, aux_sym_number_token1, + ACTIONS(274), 1, aux_sym_number_token2, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4318), 21, - sym_file_descriptor, + ACTIONS(290), 1, sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1099), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, + ACTIONS(1105), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, sym_ansi_c_string, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1113), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, + aux_sym__literal_repeat1, + STATE(3001), 1, + sym__expression, + ACTIONS(105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [85945] = 5, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2507), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, - sym__special_character, - STATE(1869), 1, - aux_sym__literal_repeat1, - ACTIONS(5595), 5, + ACTIONS(6113), 1, + aux_sym_concatenation_token1, + ACTIONS(6115), 1, + sym__concat, + STATE(1881), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 37, + ACTIONS(5440), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151798,7 +154086,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -151813,8 +154100,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -151825,16 +154113,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86001] = 3, + [88071] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(6113), 1, + aux_sym_concatenation_token1, + ACTIONS(6115), 1, + sym__concat, + STATE(1882), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(5538), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151846,8 +154139,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -151863,7 +154154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -151874,71 +154165,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86053] = 5, - ACTIONS(3), 1, + [88129] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(5929), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4318), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(4304), 18, - anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3225), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - ACTIONS(5927), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [86109] = 5, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, - sym__special_character, - STATE(1869), 1, - aux_sym__literal_repeat1, - ACTIONS(4579), 5, + ACTIONS(1334), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 37, + ACTIONS(1332), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -151949,7 +154259,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -151960,12 +154269,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -151975,21 +154285,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, - [86165] = 5, + [88281] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, + ACTIONS(6244), 1, sym__special_character, - STATE(1869), 1, + STATE(1967), 1, aux_sym__literal_repeat1, - ACTIONS(5167), 5, + ACTIONS(5495), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 37, + ACTIONS(5493), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152000,7 +154312,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -152016,7 +154327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152027,16 +154338,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86221] = 3, + [88337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1366), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1364), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152048,8 +154360,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152061,10 +154371,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152076,16 +154387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86273] = 3, + [88389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1330), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(1328), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152097,8 +154409,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152114,7 +154424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152124,17 +154434,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, - [86325] = 3, + [88441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, - sym_file_descriptor, + ACTIONS(6172), 1, + aux_sym_concatenation_token1, + ACTIONS(6255), 1, sym__concat, + STATE(1645), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1294), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152146,8 +154462,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152159,11 +154473,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152173,17 +154486,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, - [86377] = 3, + [88499] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, + ACTIONS(6172), 1, + aux_sym_concatenation_token1, + ACTIONS(6257), 1, sym__concat, + STATE(1645), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(1314), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152195,8 +154514,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152208,11 +154525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152222,20 +154538,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, - [86429] = 5, + [88557] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6019), 1, - sym__special_character, - STATE(1801), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 4, + ACTIONS(6172), 1, + aux_sym_concatenation_token1, + ACTIONS(6186), 1, + sym__concat, + STATE(1802), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 38, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152247,8 +154566,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152261,8 +154578,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152274,65 +154592,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [86485] = 3, - ACTIONS(3), 1, + [88615] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3092), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [86537] = 3, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88715] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(6244), 1, + sym__special_character, + STATE(1967), 1, + aux_sym__literal_repeat1, + ACTIONS(5901), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(5899), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152344,8 +154691,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152355,13 +154700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152372,16 +154716,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86589] = 3, - ACTIONS(3), 1, + [88771] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1318), 5, - sym_file_descriptor, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3122), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [88871] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6259), 1, + aux_sym_concatenation_token1, + ACTIONS(6261), 1, sym__concat, + STATE(2050), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(5440), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152392,9 +154814,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152406,11 +154827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152421,16 +154841,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86641] = 3, + [88929] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, + ACTIONS(6259), 1, + aux_sym_concatenation_token1, + ACTIONS(6261), 1, sym__concat, + STATE(2054), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(5538), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152441,9 +154866,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -152455,11 +154879,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152470,106 +154893,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86693] = 27, - ACTIONS(71), 1, + [88987] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, + ACTIONS(1117), 1, sym_word, - ACTIONS(295), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(297), 1, + ACTIONS(1123), 1, anon_sym_BANG, - ACTIONS(299), 1, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, + ACTIONS(1159), 1, sym_test_operator, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(5833), 1, sym__special_character, - ACTIONS(6022), 1, - sym__regex_no_space, STATE(2705), 1, aux_sym__literal_repeat1, - STATE(2986), 1, + STATE(3124), 1, sym__expression, - ACTIONS(183), 2, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(1127), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2952), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2509), 9, + STATE(2588), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [86793] = 7, + [89087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1342), 5, sym_file_descriptor, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -152577,15 +154997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152596,33 +155015,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86853] = 7, + [89139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1322), 5, sym_file_descriptor, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 11, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -152630,15 +155046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152649,20 +155064,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [86913] = 5, + [89191] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6008), 1, + ACTIONS(6263), 1, sym__special_character, - STATE(1877), 1, + STATE(1813), 1, aux_sym__literal_repeat1, - ACTIONS(5167), 5, + ACTIONS(1396), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 37, + ACTIONS(1394), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152684,11 +155099,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152698,69 +155114,456 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [86969] = 5, - ACTIONS(3), 1, + [89247] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(6024), 1, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(5849), 1, sym__special_character, - STATE(1810), 1, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6266), 1, + sym_word, + ACTIONS(6268), 1, + sym_ansi_c_string, + ACTIONS(6270), 1, + sym_test_operator, + STATE(2480), 1, aux_sym__literal_repeat1, - ACTIONS(1362), 4, - sym_file_descriptor, + STATE(3401), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(2817), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2479), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89349] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(2686), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89449] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, + anon_sym_LPAREN, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, + anon_sym_DOLLAR, + ACTIONS(272), 1, + aux_sym_number_token1, + ACTIONS(274), 1, + aux_sym_number_token2, + ACTIONS(278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 38, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, + sym__special_character, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, + aux_sym__literal_repeat1, + STATE(3020), 1, + sym__expression, + ACTIONS(105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2507), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89549] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, + ACTIONS(1139), 1, anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3012), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89649] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3127), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89749] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, sym_word, - [87025] = 3, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2807), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [89849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(5501), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 39, + ACTIONS(5499), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152783,13 +155586,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152800,65 +155603,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87077] = 3, - ACTIONS(3), 1, + [89901] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1322), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 38, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2816), 1, + sym__expression, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90001] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3009), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [87129] = 3, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1302), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 39, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -152883,11 +155783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -152897,116 +155796,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [87181] = 3, - ACTIONS(3), 1, + [90153] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1342), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 38, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3160), 1, + sym__expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90253] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1410), 1, + anon_sym_LPAREN, + STATE(2012), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6272), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1279), 15, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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, - [87233] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 6, + ACTIONS(1286), 25, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [87285] = 3, + [90311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1378), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1376), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153033,7 +155960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -153045,29 +155972,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [87337] = 3, + [90363] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, - sym_file_descriptor, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(6274), 1, sym__concat, + STATE(1149), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 38, + ACTIONS(1294), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -153076,13 +156007,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -153092,31 +156023,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, - [87389] = 3, + [90421] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, - sym_file_descriptor, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(6276), 1, sym__concat, + STATE(1149), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 38, + ACTIONS(1314), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -153125,13 +156059,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -153141,31 +156075,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, - [87441] = 3, + [90479] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, - sym_file_descriptor, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, sym__concat, + STATE(1827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, + sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 38, + ACTIONS(1300), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -153174,13 +156111,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -153190,70 +156127,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [87493] = 5, - ACTIONS(3), 1, + [90537] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(6027), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, sym__special_character, - STATE(1820), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 6, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 36, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3016), 1, + sym__expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90637] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3010), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [87549] = 3, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153264,6 +156294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -153274,13 +156305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -153290,19 +156322,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, - [87601] = 3, + [90789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1350), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1348), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153314,6 +156344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -153329,7 +156361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -153339,18 +156371,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, - [87653] = 3, + [90841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 39, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153379,7 +156410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -153390,323 +156421,819 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [87705] = 3, - ACTIONS(3), 1, + [90893] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(311), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(315), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6278), 1, sym_word, - [87757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(6280), 1, + sym_ansi_c_string, + ACTIONS(6282), 1, sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + STATE(2486), 1, + aux_sym__literal_repeat1, + STATE(3401), 1, + sym__expression, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(2835), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2485), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [90995] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, + anon_sym_LPAREN, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(311), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(315), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, sym_ansi_c_string, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(335), 1, + sym_test_operator, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3173), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [87809] = 3, - ACTIONS(3), 1, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91095] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1334), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, + anon_sym_LPAREN, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, + anon_sym_DOLLAR, + ACTIONS(272), 1, + aux_sym_number_token1, + ACTIONS(274), 1, + aux_sym_number_token2, + ACTIONS(278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 38, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, + sym__special_character, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, + aux_sym__literal_repeat1, + STATE(3029), 1, + sym__expression, + ACTIONS(105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2507), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91195] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, sym_word, - [87861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1354), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 38, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3032), 1, + sym__expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91295] = 9, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6252), 1, + sym_variable_name, + STATE(6826), 1, + sym_subscript, + STATE(5325), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + STATE(5488), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4499), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4508), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + ACTIONS(4503), 15, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [91359] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2826), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [87913] = 3, - ACTIONS(3), 1, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91459] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, + anon_sym_LPAREN, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, + anon_sym_DOLLAR, + ACTIONS(272), 1, + aux_sym_number_token1, + ACTIONS(274), 1, + aux_sym_number_token2, + ACTIONS(278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, + sym__special_character, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, + aux_sym__literal_repeat1, + STATE(3003), 1, + sym__expression, + ACTIONS(105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2507), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91559] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(311), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(315), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2829), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [87965] = 3, - ACTIONS(3), 1, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91659] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1346), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 38, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2831), 1, + sym__expression, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91759] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(311), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(315), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2832), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91859] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, sym_word, - [88017] = 3, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2833), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [91959] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -153714,14 +157241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -153731,129 +157259,327 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [88069] = 3, - ACTIONS(3), 1, + [92019] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1310), 6, - sym_file_descriptor, - sym__concat, - sym_test_operator, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2837), 1, + sym__expression, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92119] = 28, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(311), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(315), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6284), 1, + sym_word, + ACTIONS(6286), 1, + sym_ansi_c_string, + ACTIONS(6288), 1, + sym_test_operator, + STATE(2488), 1, + aux_sym__literal_repeat1, + STATE(3401), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [88121] = 3, - ACTIONS(3), 1, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(2852), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2487), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92221] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1302), 6, - sym_file_descriptor, - sym__concat, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, + anon_sym_LPAREN, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, + anon_sym_DOLLAR, + ACTIONS(272), 1, + aux_sym_number_token1, + ACTIONS(274), 1, + aux_sym_number_token2, + ACTIONS(278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, + sym__special_character, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, + aux_sym__literal_repeat1, + STATE(3059), 1, + sym__expression, + ACTIONS(105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2507), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92321] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3080), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [88173] = 3, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92421] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -153861,14 +157587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -153878,19 +157605,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, - [88225] = 3, + [92481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(1344), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153901,6 +157626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -153917,7 +157643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -153929,21 +157655,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [88277] = 6, - ACTIONS(3), 1, + [92533] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(5977), 1, - aux_sym_concatenation_token1, - ACTIONS(5991), 1, - sym__concat, - STATE(1739), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 4, - sym_file_descriptor, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2838), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92633] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2841), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92733] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6290), 1, + sym__special_character, + STATE(1855), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 37, + ACTIONS(1394), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -153968,9 +157839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -153980,22 +157850,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, - [88335] = 6, + [92789] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - aux_sym_concatenation_token1, - ACTIONS(5991), 1, - sym__concat, - STATE(1741), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5321), 4, + ACTIONS(6293), 1, + sym__special_character, + STATE(1856), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 37, + ACTIONS(1394), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154006,7 +157877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -154020,9 +157890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -154032,17 +157901,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, - [88393] = 3, + [92845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(5501), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 39, + ACTIONS(5499), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154067,48 +157937,462 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [92897] = 28, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6296), 1, + sym_word, + ACTIONS(6298), 1, + sym_ansi_c_string, + ACTIONS(6300), 1, + sym_test_operator, + STATE(2490), 1, + aux_sym__literal_repeat1, + STATE(3401), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 2, + sym_ternary_expression, + sym_postfix_expression, + STATE(2856), 4, + sym_binary_expression, + sym_unary_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2489), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [92999] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3130), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [93099] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, sym_ansi_c_string, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3094), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [93199] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2849), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [93299] = 6, + ACTIONS(73), 1, + sym_comment, + STATE(3634), 1, + aux_sym__literal_repeat1, + STATE(3727), 1, + sym_concatenation, + ACTIONS(2544), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + sym_word, + STATE(3509), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2546), 22, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [93357] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, sym_word, - [88445] = 6, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2850), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [93457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1865), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 5, + ACTIONS(1350), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 36, + ACTIONS(1348), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -154117,13 +158401,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -154133,17 +158417,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, - [88503] = 3, + [93509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(1306), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 39, + ACTIONS(1304), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154154,9 +158439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154172,18 +158456,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [93561] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2851), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [93661] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2853), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [93761] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2854), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2525), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [93861] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1117), 1, sym_word, - [88555] = 3, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3095), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [93961] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1354), 5, @@ -154203,9 +158780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154221,7 +158797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -154231,17 +158807,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, - [88607] = 3, + [94013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1362), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 39, + ACTIONS(1360), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154252,9 +158829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154270,7 +158846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -154280,17 +158856,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, - [88659] = 3, + [94065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(6131), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(6129), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154313,13 +158890,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -154330,16 +158907,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88711] = 3, + [94117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(6302), 1, + sym__special_character, + STATE(1813), 1, + aux_sym__literal_repeat1, + ACTIONS(5442), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 39, + ACTIONS(5440), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [94173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6135), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(6133), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154362,13 +158990,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -154379,16 +159007,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [88763] = 3, + [94225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1366), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(1364), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154399,9 +159027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154417,7 +159044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -154427,168 +159054,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [88815] = 27, - ACTIONS(71), 1, + [94277] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(229), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(1171), 1, + ACTIONS(1163), 1, sym_word, - ACTIONS(1173), 1, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, anon_sym_BANG, - ACTIONS(1179), 1, + ACTIONS(1173), 1, anon_sym_TILDE, + ACTIONS(1179), 1, + sym_ansi_c_string, ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, anon_sym_BQUOTE, - STATE(2548), 1, + STATE(2502), 1, aux_sym__literal_repeat1, - STATE(2980), 1, + STATE(2956), 1, sym__expression, - ACTIONS(1099), 2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, + ACTIONS(1169), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1177), 2, + ACTIONS(1171), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + STATE(2984), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2530), 9, + STATE(2525), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [88915] = 27, - ACTIONS(71), 1, + [94377] = 11, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(4497), 1, + anon_sym_LT_LT, + ACTIONS(4499), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_PIPE_AMP, + ACTIONS(6252), 1, + sym_variable_name, + STATE(6826), 1, + sym_subscript, + STATE(5325), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(4501), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT_LT_DASH, + STATE(5488), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4495), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(4503), 21, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [94445] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1187), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1189), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1195), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1197), 1, sym__special_character, - ACTIONS(5884), 1, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(6030), 1, - sym__regex_no_space, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2912), 1, + STATE(3161), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [94545] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, sym_ansi_c_string, - STATE(2884), 6, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3096), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2588), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [89015] = 6, + [94645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, - aux_sym_concatenation_token1, - ACTIONS(6032), 1, - sym__concat, - STATE(1612), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(1346), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 37, + ACTIONS(1344), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154600,6 +159353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -154609,13 +159364,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -154626,21 +159381,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89073] = 6, + [94697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, + ACTIONS(6113), 1, aux_sym_concatenation_token1, - ACTIONS(6034), 1, + ACTIONS(6304), 1, sym__concat, - STATE(1612), 1, + STATE(1767), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1296), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(1294), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154667,7 +159422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -154678,21 +159433,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89131] = 6, + [94755] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, + ACTIONS(6113), 1, aux_sym_concatenation_token1, - ACTIONS(5877), 1, + ACTIONS(6306), 1, sym__concat, - STATE(1847), 1, + STATE(1767), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(1316), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1314), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -154719,7 +159474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -154730,115 +159485,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89189] = 27, - ACTIONS(71), 1, + [94813] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(223), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3014), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [89289] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1917), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5973), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(241), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(278), 25, + ACTIONS(1342), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -154846,206 +159519,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [89345] = 27, - ACTIONS(71), 1, + sym_word, + [94865] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(235), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(1101), 1, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + ACTIONS(1159), 1, sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3063), 1, + ACTIONS(5833), 1, + sym__special_character, + STATE(2686), 1, sym__expression, - ACTIONS(1099), 2, + STATE(2705), 1, + aux_sym__literal_repeat1, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, + ACTIONS(1125), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1177), 2, + ACTIONS(1127), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2530), 9, + STATE(2588), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [89445] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(1919), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5973), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1258), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [89501] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1378), 1, - anon_sym_LPAREN, - STATE(1919), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5973), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1251), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1258), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [89559] = 6, + [94965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5963), 1, - aux_sym_concatenation_token1, - ACTIONS(6036), 1, - sym__concat, - STATE(1728), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1358), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 36, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155056,6 +159627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -155068,10 +159640,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -155081,95 +159654,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, - [89617] = 27, - ACTIONS(71), 1, + [95017] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1097), 1, + ACTIONS(1117), 1, sym_word, - ACTIONS(1101), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1103), 1, + ACTIONS(1123), 1, anon_sym_BANG, - ACTIONS(1109), 1, + ACTIONS(1129), 1, anon_sym_TILDE, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + ACTIONS(1159), 1, sym_test_operator, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(3119), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(5833), 1, sym__special_character, - STATE(2593), 1, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(3078), 1, + STATE(3023), 1, sym__expression, - STATE(7106), 1, - sym__test_command_binary_expression, - ACTIONS(1099), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, + ACTIONS(1125), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1107), 2, + ACTIONS(1127), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2554), 9, + STATE(2588), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [89717] = 6, + [95117] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, - aux_sym_concatenation_token1, - ACTIONS(5877), 1, - sym__concat, - STATE(1847), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 4, + ACTIONS(6308), 1, + sym__special_character, + STATE(1887), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 37, + ACTIONS(1394), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155181,6 +159753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155190,13 +159764,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -155206,22 +159778,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, - [89775] = 6, + [95173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, + ACTIONS(6113), 1, aux_sym_concatenation_token1, - ACTIONS(5877), 1, + ACTIONS(6115), 1, sym__concat, - STATE(1848), 1, + STATE(1881), 1, aux_sym_concatenation_repeat1, - ACTIONS(5321), 4, + ACTIONS(1302), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 37, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155248,7 +159821,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -155259,21 +159832,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [89833] = 6, + [95231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - aux_sym_concatenation_token1, - ACTIONS(6038), 1, - sym__concat, - STATE(1544), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(6131), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 37, + ACTIONS(6129), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155285,6 +159853,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155299,7 +159869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -155311,21 +159881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [89891] = 6, + [95283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - aux_sym_concatenation_token1, - ACTIONS(6040), 1, - sym__concat, - STATE(1544), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1322), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 37, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155336,6 +159901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -155346,12 +159912,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -155361,23 +159929,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, - [89949] = 6, + [95335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - aux_sym_concatenation_token1, - ACTIONS(5865), 1, - sym__concat, - STATE(1859), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(1374), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1372), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155388,6 +159950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -155400,10 +159963,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -155415,158 +159979,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [90007] = 6, - ACTIONS(71), 1, + [95387] = 3, + ACTIONS(3), 1, sym_comment, - STATE(3542), 1, - aux_sym__literal_repeat1, - STATE(1891), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3476), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2167), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2169), 22, + ACTIONS(1390), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1388), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [90065] = 27, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [95439] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1097), 1, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, sym_word, - ACTIONS(1101), 1, + ACTIONS(254), 1, anon_sym_LPAREN, - ACTIONS(1103), 1, + ACTIONS(256), 1, anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + ACTIONS(290), 1, sym_test_operator, - ACTIONS(1139), 1, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - STATE(2593), 1, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(2961), 1, + STATE(3216), 1, sym__expression, - STATE(7393), 1, - sym__test_command_binary_expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, + ACTIONS(105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1107), 2, + ACTIONS(107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2554), 9, + STATE(2507), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [90165] = 6, + [95539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(6042), 1, - sym__concat, - STATE(1071), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(6135), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 36, + ACTIONS(6133), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -155575,13 +160133,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -155591,271 +160148,383 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [90223] = 6, - ACTIONS(3), 1, + [95591] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(6044), 1, - sym__concat, - STATE(1071), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, sym_word, - [90281] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1864), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, - sym_file_descriptor, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 36, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3017), 1, + sym__expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95691] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3028), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [90339] = 27, - ACTIONS(71), 1, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95791] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1097), 1, + ACTIONS(1117), 1, sym_word, - ACTIONS(1101), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1103), 1, + ACTIONS(1123), 1, anon_sym_BANG, - ACTIONS(1109), 1, + ACTIONS(1129), 1, anon_sym_TILDE, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + ACTIONS(1159), 1, sym_test_operator, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(3119), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(5833), 1, sym__special_character, - STATE(2593), 1, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(2982), 1, + STATE(3021), 1, sym__expression, - STATE(7094), 1, - sym__test_command_binary_expression, - ACTIONS(1099), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, + ACTIONS(1125), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1107), 2, + ACTIONS(1127), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2554), 9, + STATE(2588), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [90439] = 27, - ACTIONS(71), 1, + [95891] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, sym__special_character, - STATE(2593), 1, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(3000), 1, + STATE(3163), 1, sym__expression, - STATE(7514), 1, - sym__test_command_binary_expression, - ACTIONS(1099), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1107), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1121), 2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [95991] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(1163), 1, + sym_word, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, + anon_sym_BANG, + ACTIONS(1173), 1, + anon_sym_TILDE, + ACTIONS(1179), 1, sym_ansi_c_string, - ACTIONS(1135), 2, + ACTIONS(1181), 1, + sym_test_operator, + ACTIONS(5849), 1, + sym__special_character, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + STATE(2502), 1, + aux_sym__literal_repeat1, + STATE(2801), 1, + sym__expression, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, + ACTIONS(1169), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1171), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2984), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2554), 9, + STATE(2525), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [90539] = 5, + [96091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6046), 1, - sym__special_character, - STATE(1869), 1, - aux_sym__literal_repeat1, ACTIONS(1362), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 37, + ACTIONS(1360), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -155866,8 +160535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -155877,12 +160547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -155893,89 +160564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90595] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3021), 1, - sym__expression, - STATE(7495), 1, - sym__test_command_binary_expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [90695] = 3, + [96143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 5, + ACTIONS(2156), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 39, + ACTIONS(2154), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156004,7 +160602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -156015,167 +160613,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [90747] = 27, - ACTIONS(71), 1, + [96195] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1097), 1, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, sym_word, - ACTIONS(1101), 1, + ACTIONS(254), 1, anon_sym_LPAREN, - ACTIONS(1103), 1, + ACTIONS(256), 1, anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + ACTIONS(290), 1, sym_test_operator, - ACTIONS(1139), 1, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - STATE(2593), 1, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(3037), 1, + STATE(3004), 1, sym__expression, - STATE(6985), 1, - sym__test_command_binary_expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, + ACTIONS(105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1107), 2, + ACTIONS(107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2554), 9, + STATE(2507), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [90847] = 27, - ACTIONS(71), 1, + [96295] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1097), 1, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, sym_word, - ACTIONS(1101), 1, + ACTIONS(254), 1, anon_sym_LPAREN, - ACTIONS(1103), 1, + ACTIONS(256), 1, anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + ACTIONS(290), 1, sym_test_operator, - ACTIONS(1139), 1, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - STATE(2593), 1, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(3065), 1, + STATE(3005), 1, sym__expression, - STATE(7112), 1, - sym__test_command_binary_expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, + ACTIONS(105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1107), 2, + ACTIONS(107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2554), 9, + STATE(2507), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [90947] = 5, + [96395] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6049), 1, - sym__special_character, - STATE(1874), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 6, + ACTIONS(1366), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 36, + ACTIONS(1364), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156187,6 +160780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156196,12 +160791,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -156212,68 +160808,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [91003] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(3542), 1, - aux_sym__literal_repeat1, - STATE(1891), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3476), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2171), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2173), 22, - 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_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [91061] = 3, + [96447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 39, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156284,7 +160829,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -156301,7 +160845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -156313,20 +160857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [91113] = 5, + [96499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6052), 1, - sym__special_character, - STATE(1877), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, + ACTIONS(1326), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 37, + ACTIONS(1324), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156337,8 +160877,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156350,9 +160891,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -156362,18 +160905,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, - [91169] = 3, + [96551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 5, + ACTIONS(1378), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 39, + ACTIONS(1376), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156398,10 +160940,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -156411,18 +160954,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, - [91221] = 3, + [96603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(2160), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 39, + ACTIONS(2158), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156433,8 +160975,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156444,13 +160987,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -156460,18 +161003,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, - [91273] = 3, + [96655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 39, + ACTIONS(1336), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156482,8 +161024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156499,7 +161042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -156509,116 +161052,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, - [91325] = 3, - ACTIONS(3), 1, + [96707] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1310), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, sym_word, - [91377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5873), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5871), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(3216), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3168), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [91429] = 3, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [96807] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 5, + ACTIONS(6311), 1, + sym__special_character, + STATE(1855), 1, + aux_sym__literal_repeat1, + ACTIONS(5527), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5888), 39, + ACTIONS(5525), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156629,9 +161150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156641,13 +161161,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -156657,17 +161175,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, - [91481] = 3, + [96863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1382), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 39, + ACTIONS(1380), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156678,8 +161197,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156695,7 +161215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -156705,18 +161225,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [91533] = 3, + [96915] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, + anon_sym_LPAREN, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, + sym_ansi_c_string, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(335), 1, + sym_test_operator, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3141), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1378), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 39, + ACTIONS(1376), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156738,13 +161330,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -156754,18 +161347,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, - [91585] = 3, + [97067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5873), 5, + ACTIONS(1322), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5871), 39, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156777,8 +161370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -156790,10 +161381,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -156805,16 +161397,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [91637] = 3, + [97119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 39, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -156825,7 +161418,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -156842,7 +161434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -156854,83 +161446,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [91689] = 3, - ACTIONS(3), 1, + [97171] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(5890), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5888), 39, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3152), 1, + sym__expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97271] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2012), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6272), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1279), 16, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [91741] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 5, + ACTIONS(1286), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 39, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -156938,176 +161562,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [91793] = 27, - ACTIONS(71), 1, + [97327] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, sym__special_character, - ACTIONS(5995), 1, - sym__regex_no_space, - STATE(2593), 1, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(3075), 1, + STATE(3151), 1, sym__expression, - ACTIONS(1099), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1107), 2, + ACTIONS(1193), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2554), 9, + STATE(2606), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [91893] = 22, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6055), 1, - sym_word, - ACTIONS(6061), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6064), 1, - anon_sym_DOLLAR, - ACTIONS(6067), 1, - sym__special_character, - ACTIONS(6070), 1, - anon_sym_DQUOTE, - ACTIONS(6076), 1, - aux_sym_number_token1, - ACTIONS(6079), 1, - aux_sym_number_token2, - ACTIONS(6082), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6085), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6088), 1, - anon_sym_BQUOTE, - ACTIONS(6091), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6097), 1, - sym_test_operator, - ACTIONS(6100), 1, - sym__brace_start, - STATE(3542), 1, - aux_sym__literal_repeat1, - ACTIONS(6058), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6073), 2, sym_raw_string, - sym_ansi_c_string, - ACTIONS(6094), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(1891), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2181), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2183), 8, - sym_file_descriptor, - sym_variable_name, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - STATE(3476), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [91983] = 5, + [97427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5997), 1, + ACTIONS(6244), 1, sym__special_character, - STATE(1874), 1, + STATE(1967), 1, aux_sym__literal_repeat1, - ACTIONS(5595), 6, + ACTIONS(4973), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 36, + ACTIONS(4971), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157133,7 +161683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157144,21 +161694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92039] = 5, + [97483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5989), 1, - sym__special_character, - STATE(1820), 1, - aux_sym__literal_repeat1, - ACTIONS(5325), 6, + ACTIONS(1390), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5323), 36, + ACTIONS(1388), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157169,6 +161714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -157181,9 +161727,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157195,34 +161743,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [92095] = 3, - ACTIONS(3), 1, + [97535] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(2173), 5, + STATE(2005), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6272), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(247), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(286), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 39, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -157230,35 +161786,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [92147] = 5, + [97591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5997), 1, - sym__special_character, - STATE(1874), 1, - aux_sym__literal_repeat1, - ACTIONS(4579), 6, + ACTIONS(1334), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 36, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157270,6 +161815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -157279,12 +161826,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157295,73 +161843,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [92203] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4323), 1, - anon_sym_PIPE_AMP, - ACTIONS(4325), 1, - anon_sym_LT_LT, - ACTIONS(6016), 1, - sym_variable_name, - STATE(6769), 1, - sym_subscript, - STATE(5377), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(4327), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT_LT_DASH, - STATE(5473), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4318), 21, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [92271] = 3, + [97643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 39, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157372,7 +161864,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -157389,7 +161880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157401,16 +161892,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [92323] = 3, + [97695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1382), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 39, + ACTIONS(1380), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157432,13 +161923,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157448,18 +161940,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, - [92375] = 3, + [97747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 39, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157470,7 +161962,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -157487,7 +161978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157499,16 +161990,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [92427] = 3, + [97799] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1159), 1, + sym_test_operator, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3184), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [97899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(1326), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 39, + ACTIONS(1324), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157536,7 +162100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157548,16 +162112,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [92479] = 3, + [97951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 39, + ACTIONS(1328), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157585,7 +162149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157597,19 +162161,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [92531] = 5, + [98003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6103), 1, - sym__special_character, - STATE(1785), 1, - aux_sym__literal_repeat1, - ACTIONS(5317), 4, + ACTIONS(1326), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 38, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157620,10 +162182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -157635,9 +162194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157647,17 +162208,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, - [92587] = 3, + [98055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1358), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 39, + ACTIONS(1356), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157668,8 +162230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -157685,7 +162248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157695,18 +162258,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, - [92639] = 3, + [98107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 39, + ACTIONS(1336), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157734,7 +162296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157746,17 +162308,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [92691] = 3, + [98159] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(6211), 2, sym_file_descriptor, - sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(4503), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 39, + ACTIONS(4495), 18, anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_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(6209), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -157766,8 +162347,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -157777,34 +162359,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [92743] = 3, + [98215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1358), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 39, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157815,7 +162380,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -157832,7 +162396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157844,16 +162408,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [92795] = 3, + [98267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(1332), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157881,7 +162445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157893,16 +162457,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [92847] = 3, + [98319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(6313), 1, + sym__special_character, + STATE(1856), 1, + aux_sym__literal_repeat1, + ACTIONS(5495), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 39, + ACTIONS(5493), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157913,7 +162482,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -157926,11 +162494,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157942,16 +162508,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [92899] = 3, + [98375] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1354), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 39, + ACTIONS(1352), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -157962,8 +162528,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -157979,7 +162546,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -157989,18 +162556,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, - [92951] = 3, + [98427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 5, + ACTIONS(6302), 1, + sym__special_character, + STATE(1813), 1, + aux_sym__literal_repeat1, + ACTIONS(5901), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 39, + ACTIONS(5899), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158011,9 +162581,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158027,9 +162596,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -158040,21 +162608,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93003] = 5, + [98483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5997), 1, + ACTIONS(6315), 1, sym__special_character, - STATE(1874), 1, + STATE(1939), 1, aux_sym__literal_repeat1, - ACTIONS(5167), 6, + ACTIONS(1396), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 36, + ACTIONS(1394), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158065,7 +162631,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158075,12 +162644,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -158091,16 +162659,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93059] = 3, + [98539] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 5, + ACTIONS(1374), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 39, + ACTIONS(1372), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158123,13 +162691,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -158140,94 +162708,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [93111] = 27, - ACTIONS(71), 1, + [98591] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1101), 1, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(290), 1, + sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, anon_sym_BQUOTE, - ACTIONS(5995), 1, - sym__regex_no_space, - STATE(2548), 1, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(3388), 1, + STATE(3093), 1, sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, + ACTIONS(105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1217), 2, + ACTIONS(107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2732), 9, + STATE(2507), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [93211] = 6, + [98691] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, - aux_sym_concatenation_token1, - ACTIONS(5865), 1, - sym__concat, - STATE(1859), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5509), 4, + ACTIONS(6318), 1, + sym__special_character, + STATE(1939), 1, + aux_sym__literal_repeat1, + ACTIONS(5442), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5507), 37, + ACTIONS(5440), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -158238,7 +162804,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -158251,9 +162820,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -158263,401 +162831,249 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [93269] = 6, - ACTIONS(3), 1, + [98747] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(5805), 1, - aux_sym_concatenation_token1, - ACTIONS(5865), 1, - sym__concat, - STATE(1860), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5515), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5513), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [93327] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6016), 1, - sym_variable_name, - STATE(6769), 1, - sym_subscript, - STATE(5377), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - STATE(5473), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4304), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4310), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4323), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - ACTIONS(4318), 15, + ACTIONS(1159), 1, sym_test_operator, + ACTIONS(1161), 1, sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3064), 1, + sym__expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [93391] = 6, - ACTIONS(71), 1, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98847] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(5973), 1, - aux_sym_concatenation_token1, - ACTIONS(6105), 1, - sym__concat, - STATE(1924), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, anon_sym_DOLLAR, + ACTIONS(272), 1, aux_sym_number_token1, + ACTIONS(274), 1, aux_sym_number_token2, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1268), 25, - sym_file_descriptor, + ACTIONS(290), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(292), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1099), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, + ACTIONS(1105), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, sym_ansi_c_string, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [93449] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6107), 1, - sym__special_character, - STATE(1810), 1, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, aux_sym__literal_repeat1, - ACTIONS(5317), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 38, + STATE(3101), 1, + sym__expression, + ACTIONS(105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_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(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [93505] = 6, - ACTIONS(71), 1, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2507), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [98947] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(5973), 1, - aux_sym_concatenation_token1, - ACTIONS(6109), 1, - sym__concat, - STATE(1924), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, anon_sym_DOLLAR, + ACTIONS(272), 1, aux_sym_number_token1, + ACTIONS(274), 1, aux_sym_number_token2, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1288), 25, - sym_file_descriptor, + ACTIONS(290), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(292), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1099), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, + ACTIONS(1105), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, sym_ansi_c_string, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [93563] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1864), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4506), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4504), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(3791), 1, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [93621] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1865), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4523), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4521), 36, + STATE(2653), 1, + aux_sym__literal_repeat1, + STATE(3102), 1, + sym__expression, + ACTIONS(105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [93679] = 6, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2507), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1864), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4502), 5, + ACTIONS(1342), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4500), 36, + ACTIONS(1340), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158666,13 +163082,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -158682,34 +163098,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [93737] = 6, + [99099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1865), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4519), 5, + ACTIONS(1322), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4517), 36, + ACTIONS(1320), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -158718,13 +163131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -158734,275 +163147,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [93795] = 5, - ACTIONS(71), 1, + [99151] = 27, + ACTIONS(73), 1, sym_comment, - STATE(1924), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6111), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1276), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, anon_sym_DOLLAR, + ACTIONS(272), 1, aux_sym_number_token1, + ACTIONS(274), 1, aux_sym_number_token2, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 25, - sym_file_descriptor, + ACTIONS(290), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(292), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1099), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, + ACTIONS(1105), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, sym_ansi_c_string, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [93851] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5997), 1, - sym__special_character, - STATE(1874), 1, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, aux_sym__literal_repeat1, - ACTIONS(5589), 6, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 36, + STATE(3103), 1, + sym__expression, + ACTIONS(105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [93907] = 6, - ACTIONS(3), 1, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2507), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99251] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1864), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 5, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1117), 1, + sym_word, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1123), 1, + anon_sym_BANG, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [93965] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1865), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4513), 5, - sym_file_descriptor, + ACTIONS(1159), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(1161), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 36, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, + aux_sym__literal_repeat1, + STATE(3117), 1, + sym__expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, + ACTIONS(1125), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1127), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2588), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, - sym_ansi_c_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99351] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, + anon_sym_LPAREN, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, + anon_sym_DOLLAR, + ACTIONS(272), 1, aux_sym_number_token1, + ACTIONS(274), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [94023] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5071), 1, - aux_sym_concatenation_token1, - ACTIONS(5073), 1, - sym__concat, - STATE(1864), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 5, - sym_file_descriptor, + ACTIONS(290), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(292), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 36, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1099), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1103), 1, sym__special_character, + ACTIONS(1105), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1113), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, + aux_sym__literal_repeat1, + STATE(3104), 1, + sym__expression, + ACTIONS(105), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(107), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [94081] = 3, + STATE(3167), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2507), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [99451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(1378), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 39, + ACTIONS(1376), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -159013,9 +163388,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -159031,7 +163405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -159041,810 +163415,676 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [94133] = 8, - ACTIONS(3), 1, + [99503] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, - sym_file_descriptor, - ACTIONS(6114), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, + anon_sym_LPAREN, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, + anon_sym_DOLLAR, + ACTIONS(272), 1, + aux_sym_number_token1, + ACTIONS(274), 1, + aux_sym_number_token2, + ACTIONS(278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1099), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1103), 1, sym__special_character, + ACTIONS(1105), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [94194] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(3791), 1, anon_sym_BQUOTE, - STATE(2548), 1, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(3163), 1, + STATE(3105), 1, sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2567), 9, + STATE(2507), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [94291] = 8, - ACTIONS(3), 1, + [99603] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, - sym_file_descriptor, - ACTIONS(6117), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, + anon_sym_LPAREN, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, + anon_sym_DOLLAR, + ACTIONS(272), 1, + aux_sym_number_token1, + ACTIONS(274), 1, + aux_sym_number_token2, + ACTIONS(278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(290), 1, sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1099), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(1103), 1, sym__special_character, + ACTIONS(1105), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [94352] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(3791), 1, anon_sym_BQUOTE, - STATE(2548), 1, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(3138), 1, + STATE(3107), 1, sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2567), 9, + STATE(2507), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [94449] = 26, - ACTIONS(71), 1, + [99703] = 28, + ACTIONS(73), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, + ACTIONS(1165), 1, + anon_sym_LPAREN, + ACTIONS(1167), 1, anon_sym_BANG, - ACTIONS(1195), 1, + ACTIONS(1173), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(5849), 1, sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(5851), 1, anon_sym_BQUOTE, - STATE(2548), 1, + ACTIONS(6320), 1, + sym_word, + ACTIONS(6322), 1, + sym_ansi_c_string, + ACTIONS(6324), 1, + sym_test_operator, + STATE(2524), 1, aux_sym__literal_repeat1, - STATE(3140), 1, + STATE(3401), 1, sym__expression, - ACTIONS(1099), 2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1169), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1171), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, + STATE(2758), 2, sym_ternary_expression, - sym_unary_expression, sym_postfix_expression, + STATE(2979), 4, + sym_binary_expression, + sym_unary_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2567), 9, + STATE(2523), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [94546] = 26, - ACTIONS(71), 1, + [99805] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1101), 1, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(290), 1, + sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, anon_sym_BQUOTE, - STATE(2548), 1, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(3141), 1, + STATE(3118), 1, sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2567), 9, + STATE(2507), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [94643] = 26, - ACTIONS(71), 1, + [99905] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1101), 1, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(290), 1, + sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, anon_sym_BQUOTE, - STATE(2548), 1, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(3143), 1, + STATE(3119), 1, sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2567), 9, + STATE(2507), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [94740] = 26, - ACTIONS(71), 1, + [100005] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1101), 1, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, + sym_word, + ACTIONS(254), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(256), 1, + anon_sym_BANG, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(290), 1, + sym_test_operator, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, anon_sym_BQUOTE, - STATE(2548), 1, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(3145), 1, + STATE(3120), 1, sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2567), 9, + STATE(2507), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [94837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4513), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [94888] = 26, - ACTIONS(71), 1, + [100105] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(109), 1, anon_sym_TILDE, - ACTIONS(286), 1, + ACTIONS(243), 1, sym_word, - ACTIONS(295), 1, + ACTIONS(254), 1, anon_sym_LPAREN, - ACTIONS(297), 1, + ACTIONS(256), 1, anon_sym_BANG, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, + ACTIONS(290), 1, sym_test_operator, - ACTIONS(327), 1, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - STATE(2705), 1, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(3115), 1, + STATE(3121), 1, sym__expression, - ACTIONS(183), 2, + ACTIONS(105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(288), 2, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2952), 6, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2509), 9, + STATE(2507), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [94985] = 26, - ACTIONS(71), 1, + [100205] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(109), 1, anon_sym_TILDE, - ACTIONS(286), 1, + ACTIONS(243), 1, sym_word, - ACTIONS(295), 1, + ACTIONS(254), 1, anon_sym_LPAREN, - ACTIONS(297), 1, + ACTIONS(256), 1, anon_sym_BANG, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, + ACTIONS(290), 1, sym_test_operator, - ACTIONS(327), 1, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - STATE(2705), 1, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(3116), 1, + STATE(3123), 1, sym__expression, - ACTIONS(183), 2, + ACTIONS(105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(288), 2, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2952), 6, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2509), 9, + STATE(2507), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [95082] = 26, - ACTIONS(71), 1, + [100305] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1101), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1187), 1, + ACTIONS(1223), 1, sym_word, - ACTIONS(1189), 1, + ACTIONS(1225), 1, anon_sym_BANG, - ACTIONS(1195), 1, + ACTIONS(1231), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1233), 1, sym__special_character, - ACTIONS(1201), 1, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2548), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(3148), 1, + STATE(3221), 1, sym__expression, - ACTIONS(1099), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1227), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1229), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2567), 9, + STATE(2492), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [95179] = 3, + [100405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(1382), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 38, + ACTIONS(1380), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -159872,7 +164112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -159882,18 +164122,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [100457] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3222), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100557] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, sym_word, - [95230] = 3, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3214), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100657] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5873), 6, + ACTIONS(6302), 1, + sym__special_character, + STATE(1813), 1, + aux_sym__literal_repeat1, + ACTIONS(4973), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5871), 37, + ACTIONS(4971), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -159904,6 +164294,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -159918,9 +164309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -159931,16 +164321,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95281] = 3, + [100713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 5, + ACTIONS(1370), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 38, + ACTIONS(1368), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -159965,10 +164355,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -159979,20 +164370,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95332] = 5, + [100765] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3226), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [100865] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6120), 1, + ACTIONS(6326), 1, sym__special_character, - STATE(2205), 1, + STATE(1967), 1, aux_sym__literal_repeat1, - ACTIONS(5317), 5, + ACTIONS(1396), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 36, + ACTIONS(1394), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160018,7 +164483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -160029,17 +164494,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95387] = 3, + [100921] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(2686), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101021] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3025), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101121] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3162), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 6, + ACTIONS(1386), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 37, + ACTIONS(1384), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160050,6 +164733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -160060,13 +164744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -160077,16 +164762,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95438] = 3, + [101273] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3006), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [101373] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 5, + ACTIONS(1370), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 38, + ACTIONS(1368), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160111,10 +164869,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -160125,16 +164884,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95489] = 3, + [101425] = 6, + ACTIONS(73), 1, + sym_comment, + STATE(3596), 1, + aux_sym__literal_repeat1, + STATE(3665), 1, + sym_concatenation, + ACTIONS(2406), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + STATE(3538), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + ACTIONS(2408), 22, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [101483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 38, + ACTIONS(1328), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160156,13 +164967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -160173,16 +164985,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [95540] = 3, + [101535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 5, + ACTIONS(1370), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 38, + ACTIONS(1368), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160204,13 +165016,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -160220,88 +165032,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, - [95591] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3113), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [95688] = 3, + [101587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1386), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 38, + ACTIONS(1384), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160329,7 +165071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -160339,18 +165081,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, - [95739] = 3, + [101639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 6, + ACTIONS(1370), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 37, + ACTIONS(1368), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160361,6 +165103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -160377,7 +165120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -160387,18 +165130,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, - [95790] = 3, + [101691] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 6, + ACTIONS(6313), 1, + sym__special_character, + STATE(1856), 1, + aux_sym__literal_repeat1, + ACTIONS(5527), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 37, + ACTIONS(5525), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160421,11 +165169,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -160435,160 +165181,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [95841] = 26, - ACTIONS(71), 1, + [101747] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, + ACTIONS(1117), 1, sym_word, - ACTIONS(295), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(297), 1, + ACTIONS(1123), 1, anon_sym_BANG, - ACTIONS(299), 1, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, + ACTIONS(1159), 1, sym_test_operator, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(5833), 1, sym__special_character, STATE(2705), 1, aux_sym__literal_repeat1, - STATE(2954), 1, + STATE(3097), 1, sym__expression, - ACTIONS(183), 2, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(1127), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2952), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2509), 9, + STATE(2588), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [95938] = 26, - ACTIONS(71), 1, + [101847] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, - sym_word, - ACTIONS(295), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(297), 1, - anon_sym_BANG, - ACTIONS(299), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, - sym_test_operator, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, sym__special_character, - STATE(2705), 1, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2986), 1, + STATE(3153), 1, sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2952), 6, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2509), 9, + STATE(2606), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [96035] = 3, + [101947] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(6244), 1, + sym__special_character, + STATE(1967), 1, + aux_sym__literal_repeat1, + ACTIONS(5907), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 37, + ACTIONS(5905), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160609,13 +165364,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -160626,64 +165380,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96086] = 3, - ACTIONS(3), 1, + [102003] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3227), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [96137] = 3, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [102103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1370), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 38, + ACTIONS(1368), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -160694,8 +165473,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -160711,7 +165491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -160722,278 +165502,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96188] = 26, - ACTIONS(71), 1, + [102155] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, - sym_word, - ACTIONS(295), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(297), 1, - anon_sym_BANG, - ACTIONS(299), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, - sym_test_operator, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, sym__special_character, - STATE(2705), 1, - aux_sym__literal_repeat1, - STATE(3001), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, + ACTIONS(1235), 1, sym_ansi_c_string, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2952), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2509), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5175), 6, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1237), 1, sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 37, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3011), 1, + sym__expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [96336] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, - sym_word, - ACTIONS(295), 1, - anon_sym_LPAREN, - ACTIONS(297), 1, - anon_sym_BANG, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, - aux_sym_number_token1, - ACTIONS(313), 1, - aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, - sym_test_operator, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5942), 1, - sym__special_character, - STATE(2705), 1, - aux_sym__literal_repeat1, - STATE(3025), 1, - sym__expression, - ACTIONS(183), 2, + ACTIONS(1227), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(1229), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2952), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2509), 9, + STATE(2492), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [96433] = 26, - ACTIONS(71), 1, + [102255] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(191), 1, anon_sym_TILDE, - ACTIONS(286), 1, + ACTIONS(294), 1, sym_word, - ACTIONS(295), 1, + ACTIONS(303), 1, anon_sym_LPAREN, - ACTIONS(297), 1, + ACTIONS(305), 1, anon_sym_BANG, - ACTIONS(299), 1, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, + sym_ansi_c_string, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, + ACTIONS(335), 1, sym_test_operator, - ACTIONS(327), 1, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(5851), 1, anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(6007), 1, sym__special_character, - STATE(2705), 1, + STATE(2724), 1, aux_sym__literal_repeat1, - STATE(2948), 1, + STATE(3187), 1, sym__expression, - ACTIONS(183), 2, + ACTIONS(187), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(189), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(288), 2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2952), 6, + STATE(3140), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2509), 9, + STATE(2549), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [96530] = 3, + [102355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 6, + ACTIONS(1386), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 37, + ACTIONS(1384), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -161005,6 +165669,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161020,7 +165686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -161031,584 +165697,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [96581] = 26, - ACTIONS(71), 1, + [102407] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, - sym_word, - ACTIONS(295), 1, - anon_sym_LPAREN, - ACTIONS(297), 1, - anon_sym_BANG, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, - aux_sym_number_token1, - ACTIONS(313), 1, - aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, - sym_test_operator, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(6311), 1, sym__special_character, - STATE(2705), 1, + STATE(1855), 1, aux_sym__literal_repeat1, - STATE(2953), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(288), 2, + ACTIONS(5495), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5493), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2952), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2509), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96678] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, - sym_word, - ACTIONS(295), 1, - anon_sym_LPAREN, - ACTIONS(297), 1, - anon_sym_BANG, - ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [102463] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5017), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(327), 1, sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5942), 1, - sym__special_character, - STATE(2705), 1, - aux_sym__literal_repeat1, - STATE(2956), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(288), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5015), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2952), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2509), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96775] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, - sym_word, - ACTIONS(295), 1, - anon_sym_LPAREN, - ACTIONS(297), 1, - anon_sym_BANG, - ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(311), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, - sym_test_operator, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(5942), 1, - sym__special_character, - STATE(2705), 1, - aux_sym__literal_repeat1, - STATE(2957), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2952), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2509), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [96872] = 26, - ACTIONS(71), 1, + sym_word, + [102515] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(187), 1, + ACTIONS(191), 1, anon_sym_TILDE, - ACTIONS(286), 1, + ACTIONS(294), 1, sym_word, - ACTIONS(295), 1, + ACTIONS(303), 1, anon_sym_LPAREN, - ACTIONS(297), 1, + ACTIONS(305), 1, anon_sym_BANG, - ACTIONS(299), 1, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, + sym_ansi_c_string, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, + ACTIONS(335), 1, sym_test_operator, - ACTIONS(327), 1, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(5851), 1, anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(6007), 1, sym__special_character, - STATE(2705), 1, + STATE(2724), 1, aux_sym__literal_repeat1, - STATE(2975), 1, + STATE(3189), 1, sym__expression, - ACTIONS(183), 2, + ACTIONS(187), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(185), 2, + ACTIONS(189), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(288), 2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2952), 6, + STATE(3140), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2509), 9, + STATE(2549), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [96969] = 26, - ACTIONS(71), 1, + [102615] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, - sym_word, - ACTIONS(295), 1, - anon_sym_LPAREN, - ACTIONS(297), 1, - anon_sym_BANG, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, - aux_sym_number_token1, - ACTIONS(313), 1, - aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, - sym_test_operator, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(6302), 1, sym__special_character, - STATE(2705), 1, + STATE(1813), 1, aux_sym__literal_repeat1, - STATE(2977), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(288), 2, + ACTIONS(5907), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5905), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2952), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2509), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97066] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, - sym_word, - ACTIONS(295), 1, - anon_sym_LPAREN, - ACTIONS(297), 1, - anon_sym_BANG, - ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, - sym_test_operator, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(5942), 1, - sym__special_character, - STATE(2705), 1, - aux_sym__literal_repeat1, - STATE(2978), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2952), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2509), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [97163] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, sym_word, - ACTIONS(295), 1, + [102671] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(297), 1, - anon_sym_BANG, - ACTIONS(299), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, - sym_test_operator, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, sym__special_character, - STATE(2705), 1, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(3002), 1, + STATE(3037), 1, sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2952), 6, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2509), 9, + STATE(2492), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [97260] = 26, - ACTIONS(71), 1, + [102771] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, - sym_word, - ACTIONS(295), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(297), 1, - anon_sym_BANG, - ACTIONS(299), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, - sym_test_operator, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5942), 1, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, sym__special_character, - STATE(2705), 1, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(3066), 1, + STATE(3154), 1, sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2952), 6, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2509), 9, + STATE(2606), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [97357] = 3, + [102871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(5050), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 38, + ACTIONS(5048), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -161619,8 +166087,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161630,13 +166099,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -161647,19 +166116,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97408] = 5, - ACTIONS(3), 1, + [102923] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(6122), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, sym__special_character, - STATE(1973), 1, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, aux_sym__literal_repeat1, - ACTIONS(1362), 4, + STATE(3155), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103023] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1370), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 37, + ACTIONS(1368), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -161684,9 +166223,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -161697,17 +166238,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97463] = 3, + [103075] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 6, + ACTIONS(1302), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 37, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -161719,6 +166259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161728,13 +166270,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -161745,64 +166287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97514] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1320), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1322), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [97565] = 3, + [103127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 5, + ACTIONS(1302), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 38, + ACTIONS(1300), 40, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -161813,8 +166306,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161824,12 +166319,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -161839,17 +166335,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, - [97616] = 3, + [103179] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(6302), 1, + sym__special_character, + STATE(1813), 1, + aux_sym__literal_repeat1, + ACTIONS(5046), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(5044), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -161860,9 +166360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -161876,9 +166375,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -161889,87 +166387,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97667] = 26, - ACTIONS(71), 1, + [103235] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1097), 1, + ACTIONS(109), 1, + anon_sym_TILDE, + ACTIONS(243), 1, sym_word, - ACTIONS(1101), 1, + ACTIONS(254), 1, anon_sym_LPAREN, - ACTIONS(1103), 1, + ACTIONS(256), 1, anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + ACTIONS(290), 1, sym_test_operator, - ACTIONS(1139), 1, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1103), 1, sym__special_character, - STATE(2593), 1, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1109), 1, + sym_ansi_c_string, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + STATE(2653), 1, aux_sym__literal_repeat1, - STATE(3127), 1, + STATE(3194), 1, sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, + ACTIONS(105), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1107), 2, + ACTIONS(107), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, + ACTIONS(1097), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, + STATE(3167), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2554), 9, + STATE(2507), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [97764] = 3, + [103335] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5873), 5, + ACTIONS(6302), 1, + sym__special_character, + STATE(1813), 1, + aux_sym__literal_repeat1, + ACTIONS(5495), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5871), 38, + ACTIONS(5493), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -161995,9 +166499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -162008,106 +166511,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [97815] = 3, - ACTIONS(71), 1, + [103391] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, + sym_ansi_c_string, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1326), 27, - sym_file_descriptor, - sym__concat, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(335), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(337), 1, sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3063), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103491] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, + anon_sym_LPAREN, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, sym_ansi_c_string, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [97866] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(335), 1, sym_test_operator, + ACTIONS(337), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 38, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3065), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103591] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, + anon_sym_LPAREN, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(311), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(315), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, sym_ansi_c_string, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(335), 1, + sym_test_operator, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3066), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [97917] = 3, - ACTIONS(71), 1, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103691] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 16, + ACTIONS(6272), 1, + aux_sym_concatenation_token1, + ACTIONS(6329), 1, + sym__concat, + STATE(2016), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -162124,9 +166756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 27, + ACTIONS(1296), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -162143,25 +166774,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [97968] = 3, + [103749] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(6331), 1, + sym__special_character, + STATE(2006), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 38, + ACTIONS(1394), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162172,8 +166805,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -162183,13 +166817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -162200,113 +166833,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98019] = 3, - ACTIONS(3), 1, + [103805] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1274), 6, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, + anon_sym_LPAREN, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(315), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, sym_ansi_c_string, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - [98070] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1316), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1318), 27, - sym_file_descriptor, - sym__concat, + ACTIONS(335), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(337), 1, sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3067), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98121] = 3, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [103905] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 6, + ACTIONS(6334), 1, + sym__special_character, + STATE(2006), 1, + aux_sym__literal_repeat1, + ACTIONS(5442), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 37, + ACTIONS(5440), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162318,6 +166930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -162327,13 +166941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -162344,129 +166957,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98172] = 3, - ACTIONS(71), 1, + [103961] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, + sym_ansi_c_string, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1334), 27, - sym_file_descriptor, - sym__concat, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(335), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(337), 1, sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3068), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104061] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, + anon_sym_LPAREN, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, sym_ansi_c_string, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(335), 1, + sym_test_operator, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3069), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98223] = 26, - ACTIONS(71), 1, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104161] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1101), 1, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, + sym_ansi_c_string, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + ACTIONS(335), 1, sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, anon_sym_BQUOTE, - STATE(2548), 1, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, aux_sym__literal_repeat1, - STATE(3151), 1, + STATE(3070), 1, sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, + ACTIONS(187), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1177), 2, + ACTIONS(189), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3140), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2530), 9, + STATE(2549), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [98320] = 3, - ACTIONS(71), 1, + [104261] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 16, + ACTIONS(6272), 1, + aux_sym_concatenation_token1, + ACTIONS(6336), 1, + sym__concat, + STATE(2016), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 16, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -162483,9 +167202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 27, + ACTIONS(1316), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -162502,99 +167220,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98371] = 26, - ACTIONS(71), 1, + [104319] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1101), 1, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, + sym_ansi_c_string, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + ACTIONS(335), 1, sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, anon_sym_BQUOTE, - STATE(2548), 1, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, aux_sym__literal_repeat1, - STATE(3152), 1, + STATE(3071), 1, sym__expression, - ACTIONS(1099), 2, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104419] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, + anon_sym_LPAREN, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, + sym_ansi_c_string, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(335), 1, + sym_test_operator, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3074), 1, + sym__expression, + ACTIONS(187), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1177), 2, + ACTIONS(189), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3140), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2530), 9, + STATE(2549), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [98468] = 5, + [104519] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6125), 1, - sym__special_character, - STATE(1991), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 4, + ACTIONS(6338), 1, + aux_sym_concatenation_token1, + ACTIONS(6340), 1, + sym__concat, + STATE(2020), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 37, + ACTIONS(5440), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162605,7 +167400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -162616,12 +167410,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -162632,64 +167426,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98523] = 3, - ACTIONS(3), 1, + [104577] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(5873), 5, + STATE(2016), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6342), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5871), 38, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [98574] = 3, + [104633] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, - sym_file_descriptor, + ACTIONS(6338), 1, + aux_sym_concatenation_token1, + ACTIONS(6340), 1, sym__concat, + STATE(2021), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 38, + ACTIONS(5538), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162700,7 +167503,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -162713,11 +167515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -162728,16 +167529,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98625] = 3, + [104691] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, + anon_sym_LPAREN, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, + sym_ansi_c_string, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(335), 1, + sym_test_operator, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3075), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104791] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, + anon_sym_LPAREN, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, + sym_ansi_c_string, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(335), 1, + sym_test_operator, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3076), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [104891] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 5, + ACTIONS(6338), 1, + aux_sym_concatenation_token1, + ACTIONS(6345), 1, + sym__concat, + STATE(2022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5888), 38, + ACTIONS(1294), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162748,7 +167701,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -162764,7 +167716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -162774,18 +167726,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, - [98676] = 3, + [104949] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, - sym_file_descriptor, + ACTIONS(6338), 1, + aux_sym_concatenation_token1, + ACTIONS(6347), 1, sym__concat, + STATE(2022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 38, + ACTIONS(1314), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162796,7 +167753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -162809,11 +167765,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -162824,16 +167779,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98727] = 3, + [105007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, - sym_file_descriptor, + ACTIONS(6349), 1, + aux_sym_concatenation_token1, + ACTIONS(6352), 1, sym__concat, + STATE(2022), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 5, + sym_file_descriptor, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 38, + ACTIONS(1304), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162844,7 +167805,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -162857,11 +167817,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -162872,68 +167831,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98778] = 3, - ACTIONS(3), 1, + [105065] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1334), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, + anon_sym_LPAREN, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, + sym_ansi_c_string, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(335), 1, sym_test_operator, + ACTIONS(337), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 38, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3077), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105165] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2005), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6272), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 16, anon_sym_PIPE, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [105221] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(191), 1, + anon_sym_TILDE, + ACTIONS(294), 1, + sym_word, + ACTIONS(303), 1, + anon_sym_LPAREN, + ACTIONS(305), 1, + anon_sym_BANG, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(319), 1, sym_ansi_c_string, + ACTIONS(321), 1, aux_sym_number_token1, + ACTIONS(323), 1, aux_sym_number_token2, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(335), 1, + sym_test_operator, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(6007), 1, + sym__special_character, + STATE(2724), 1, + aux_sym__literal_repeat1, + STATE(3078), 1, + sym__expression, + ACTIONS(187), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(189), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [98829] = 5, + STATE(3140), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2549), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [105321] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6128), 1, - sym__special_character, - STATE(1998), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, + ACTIONS(6338), 1, + aux_sym_concatenation_token1, + ACTIONS(6340), 1, + sym__concat, + STATE(2020), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 36, + ACTIONS(1300), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162957,8 +168067,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -162968,18 +168079,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, - [98884] = 3, + [105379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(1346), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 38, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -162990,7 +168101,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -163001,13 +168111,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -163018,38 +168129,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [98935] = 3, - ACTIONS(71), 1, + [105431] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1338), 27, + ACTIONS(1350), 6, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -163058,24 +168164,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [98986] = 3, + sym_word, + [105483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, + ACTIONS(1306), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 38, + ACTIONS(1304), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -163086,7 +168199,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -163097,13 +168209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -163114,16 +168227,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99037] = 3, + [105535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, + ACTIONS(1354), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 38, + ACTIONS(1352), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -163134,7 +168248,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -163145,13 +168258,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -163162,16 +168276,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99088] = 3, + [105587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 5, + ACTIONS(1362), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5888), 38, + ACTIONS(1360), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -163182,7 +168297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -163196,10 +168310,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -163210,17 +168325,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99139] = 3, + [105639] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 6, + ACTIONS(6355), 1, + sym__special_character, + STATE(1887), 1, + aux_sym__literal_repeat1, + ACTIONS(5789), 4, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 37, + ACTIONS(5787), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -163232,6 +168349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -163243,11 +168362,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -163257,39 +168374,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [99190] = 3, - ACTIONS(71), 1, + [105695] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1342), 27, + ACTIONS(1366), 6, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1364), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -163298,27 +168411,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99241] = 5, + sym_word, + [105747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6131), 1, - sym__special_character, - STATE(1991), 1, - aux_sym__literal_repeat1, - ACTIONS(5317), 4, + ACTIONS(1358), 6, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 37, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -163329,7 +168446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -163343,9 +168459,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -163356,91 +168474,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [99296] = 5, - ACTIONS(71), 1, + [105799] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2231), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4426), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4428), 25, + ACTIONS(1374), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1372), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [99351] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2236), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4511), 15, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4513), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -163448,1579 +168508,1036 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [99406] = 26, - ACTIONS(71), 1, + sym_word, + [105851] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1239), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1241), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1247), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1249), 1, sym__special_character, - ACTIONS(5884), 1, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, + sym_test_operator, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2812), 1, + STATE(3425), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1243), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1245), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [99503] = 26, - ACTIONS(71), 1, + [105951] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1239), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1241), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1247), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1249), 1, sym__special_character, - ACTIONS(5884), 1, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, + sym_test_operator, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2813), 1, + STATE(3426), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1243), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1245), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [99600] = 26, - ACTIONS(71), 1, + [106051] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1101), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1187), 1, + ACTIONS(1239), 1, sym_word, - ACTIONS(1189), 1, + ACTIONS(1241), 1, anon_sym_BANG, - ACTIONS(1195), 1, + ACTIONS(1247), 1, anon_sym_TILDE, - ACTIONS(1197), 1, + ACTIONS(1249), 1, sym__special_character, - ACTIONS(1201), 1, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, sym_test_operator, - ACTIONS(3119), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2548), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2965), 1, + STATE(3428), 1, sym__expression, - ACTIONS(1099), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, + ACTIONS(1243), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1193), 2, + ACTIONS(1245), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2567), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [99697] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, - sym_file_descriptor, - ACTIONS(6135), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [99758] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2231), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4577), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4579), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [99813] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2236), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4593), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4595), 25, - sym_file_descriptor, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [99868] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 38, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [99919] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, - sym_word, - ACTIONS(295), 1, - anon_sym_LPAREN, - ACTIONS(297), 1, - anon_sym_BANG, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, - aux_sym_number_token1, - ACTIONS(313), 1, - aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, - sym_test_operator, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(5942), 1, - sym__special_character, - STATE(2705), 1, - aux_sym__literal_repeat1, - STATE(3112), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2952), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2509), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100016] = 26, - ACTIONS(71), 1, + [106151] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1239), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1241), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1247), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1249), 1, sym__special_character, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - STATE(2503), 1, - aux_sym__literal_repeat1, - STATE(2903), 1, - sym__expression, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1081), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1083), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, + ACTIONS(1251), 1, sym_ansi_c_string, - STATE(2884), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2556), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100113] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, - aux_sym_number_token1, - ACTIONS(313), 1, - aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(1073), 1, - sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_BANG, - ACTIONS(1085), 1, - anon_sym_TILDE, - ACTIONS(1095), 1, + ACTIONS(1253), 1, sym_test_operator, - ACTIONS(5882), 1, - sym__special_character, - ACTIONS(5884), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2912), 1, + STATE(3429), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1243), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1245), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100210] = 26, - ACTIONS(71), 1, + [106251] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1239), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1241), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1247), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1249), 1, sym__special_character, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - STATE(2503), 1, - aux_sym__literal_repeat1, - STATE(2924), 1, - sym__expression, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1081), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1083), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, + ACTIONS(1251), 1, sym_ansi_c_string, - STATE(2884), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2556), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100307] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, - aux_sym_number_token1, - ACTIONS(313), 1, - aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(1073), 1, - sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_BANG, - ACTIONS(1085), 1, - anon_sym_TILDE, - ACTIONS(1095), 1, + ACTIONS(1253), 1, sym_test_operator, - ACTIONS(5882), 1, - sym__special_character, - ACTIONS(5884), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2737), 1, + STATE(3430), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1243), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1245), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100404] = 26, - ACTIONS(71), 1, + [106351] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1239), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1241), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1247), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1249), 1, sym__special_character, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - STATE(2503), 1, - aux_sym__literal_repeat1, - STATE(2930), 1, - sym__expression, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1081), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1083), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, + ACTIONS(1251), 1, sym_ansi_c_string, - STATE(2884), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2556), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [100501] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, - aux_sym_number_token1, - ACTIONS(313), 1, - aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(1073), 1, - sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_BANG, - ACTIONS(1085), 1, - anon_sym_TILDE, - ACTIONS(1095), 1, + ACTIONS(1253), 1, sym_test_operator, - ACTIONS(5882), 1, - sym__special_character, - ACTIONS(5884), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2743), 1, + STATE(3431), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1243), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1245), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100598] = 26, - ACTIONS(71), 1, + [106451] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1239), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1241), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1247), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1249), 1, sym__special_character, - ACTIONS(5884), 1, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, + sym_test_operator, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2759), 1, + STATE(3432), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1243), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1245), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100695] = 26, - ACTIONS(71), 1, + [106551] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1239), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1241), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1247), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1249), 1, sym__special_character, - ACTIONS(5884), 1, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, + sym_test_operator, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2820), 1, + STATE(3434), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1243), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1245), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100792] = 26, - ACTIONS(71), 1, + [106651] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1239), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1241), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1247), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1249), 1, sym__special_character, - ACTIONS(5884), 1, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, + sym_test_operator, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2885), 1, + STATE(3435), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1243), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1245), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100889] = 26, - ACTIONS(71), 1, + [106751] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1239), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1241), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1247), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1249), 1, sym__special_character, - ACTIONS(5884), 1, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, + sym_test_operator, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2896), 1, + STATE(3436), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1243), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1245), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [100986] = 26, - ACTIONS(71), 1, + [106851] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1239), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1241), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1247), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1249), 1, sym__special_character, - ACTIONS(5884), 1, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, + sym_test_operator, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2899), 1, + STATE(3437), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1243), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1245), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101083] = 26, - ACTIONS(71), 1, + [106951] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1239), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1241), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1247), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1249), 1, sym__special_character, - ACTIONS(5884), 1, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, + sym_test_operator, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2902), 1, + STATE(3438), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1243), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1245), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101180] = 26, - ACTIONS(71), 1, + [107051] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(1073), 1, + ACTIONS(1239), 1, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, + ACTIONS(1241), 1, anon_sym_BANG, - ACTIONS(1085), 1, + ACTIONS(1247), 1, anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(1249), 1, sym__special_character, - ACTIONS(5884), 1, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, + sym_test_operator, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2503), 1, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(2916), 1, + STATE(3440), 1, sym__expression, - ACTIONS(288), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, + ACTIONS(1243), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(1083), 2, + ACTIONS(1245), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2556), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101277] = 26, - ACTIONS(71), 1, + [107151] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, - aux_sym_number_token1, - ACTIONS(313), 1, - aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(1073), 1, - sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_BANG, - ACTIONS(1085), 1, - anon_sym_TILDE, - ACTIONS(1095), 1, - sym_test_operator, - ACTIONS(5882), 1, + ACTIONS(6244), 1, sym__special_character, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - STATE(2503), 1, + STATE(1967), 1, aux_sym__literal_repeat1, - STATE(2822), 1, - sym__expression, - ACTIONS(288), 2, + ACTIONS(5046), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5044), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1081), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1083), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2556), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101374] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(187), 1, - anon_sym_TILDE, - ACTIONS(286), 1, - sym_word, - ACTIONS(295), 1, - anon_sym_LPAREN, - ACTIONS(297), 1, - anon_sym_BANG, - ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(325), 1, - sym_test_operator, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(5942), 1, - sym__special_character, - STATE(2705), 1, - aux_sym__literal_repeat1, - STATE(2969), 1, - sym__expression, - ACTIONS(183), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(185), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(309), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(323), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2952), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2509), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101471] = 6, + sym_word, + [107207] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, + ACTIONS(6259), 1, aux_sym_concatenation_token1, - ACTIONS(6138), 1, + ACTIONS(6357), 1, sym__concat, - STATE(1743), 1, + STATE(2056), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(1296), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 36, + ACTIONS(1294), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -165031,6 +169548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -165046,7 +169564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -165057,21 +169575,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101528] = 6, + [107265] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, + ACTIONS(6172), 1, aux_sym_concatenation_token1, - ACTIONS(6140), 1, + ACTIONS(6186), 1, sym__concat, - STATE(1743), 1, + STATE(1802), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(5789), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 36, + ACTIONS(5787), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -165097,7 +169615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -165107,65 +169625,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [101585] = 3, - ACTIONS(71), 1, + [107323] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1294), 27, - sym_file_descriptor, + ACTIONS(6172), 1, + aux_sym_concatenation_token1, + ACTIONS(6186), 1, sym__concat, + STATE(1803), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5793), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5791), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101636] = 3, + aux_sym__simple_variable_name_token1, + sym_word, + [107381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1326), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 38, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -165176,7 +169700,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -165187,13 +169710,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -165204,21 +169728,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101687] = 6, + [107433] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, + ACTIONS(6259), 1, aux_sym_concatenation_token1, - ACTIONS(5991), 1, + ACTIONS(6359), 1, sym__concat, - STATE(2032), 1, + STATE(2056), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(1316), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 36, + ACTIONS(1314), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -165229,6 +169753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -165244,7 +169769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -165255,260 +169780,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [101744] = 3, - ACTIONS(71), 1, + [107491] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 16, + ACTIONS(1330), 6, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(1350), 27, - sym_file_descriptor, + [107543] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6361), 1, + aux_sym_concatenation_token1, + ACTIONS(6364), 1, sym__concat, + STATE(2056), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [101795] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + [107601] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 6, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(284), 1, sym__brace_start, - ACTIONS(1155), 1, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1165), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3076), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [101892] = 26, - ACTIONS(71), 1, + sym_word, + [107653] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, + ACTIONS(1117), 1, sym_word, - ACTIONS(248), 1, + ACTIONS(1121), 1, anon_sym_LPAREN, - ACTIONS(250), 1, + ACTIONS(1123), 1, anon_sym_BANG, - ACTIONS(258), 1, + ACTIONS(1129), 1, + anon_sym_TILDE, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1143), 1, + sym_ansi_c_string, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR_BQUOTE, ACTIONS(1159), 1, - sym__special_character, + sym_test_operator, ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + sym__brace_start, + ACTIONS(3216), 1, anon_sym_BQUOTE, - STATE(2623), 1, + ACTIONS(5833), 1, + sym__special_character, + STATE(2705), 1, aux_sym__literal_repeat1, - STATE(3126), 1, + STATE(3100), 1, sym__expression, - ACTIONS(103), 2, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1125), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(105), 2, + ACTIONS(1127), 2, anon_sym_DASH2, anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2976), 6, + STATE(2758), 6, sym_binary_expression, sym_ternary_expression, sym_unary_expression, sym_postfix_expression, sym_parenthesized_expression, sym_concatenation, - STATE(2498), 9, + STATE(2588), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [101989] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, - sym_file_descriptor, - ACTIONS(6142), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [102050] = 3, + [107753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 6, + ACTIONS(1390), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 37, + ACTIONS(1388), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -165520,6 +170024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -165535,7 +170041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -165546,185 +170052,321 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102101] = 3, - ACTIONS(71), 1, + [107805] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(1121), 1, anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1239), 1, sym_word, - ACTIONS(1354), 27, - sym_file_descriptor, - sym__concat, + ACTIONS(1241), 1, + anon_sym_BANG, + ACTIONS(1247), 1, + anon_sym_TILDE, + ACTIONS(1249), 1, + sym__special_character, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, sym_test_operator, - sym__bare_dollar, - sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(2686), 1, + sym__expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102152] = 8, - ACTIONS(3), 1, + ACTIONS(1243), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1245), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2777), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [107905] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, - sym_file_descriptor, - ACTIONS(6145), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1239), 1, sym_word, - [102213] = 6, - ACTIONS(71), 1, - sym_comment, - STATE(3531), 1, + ACTIONS(1241), 1, + anon_sym_BANG, + ACTIONS(1247), 1, + anon_sym_TILDE, + ACTIONS(1249), 1, + sym__special_character, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, aux_sym__literal_repeat1, - STATE(3546), 1, + STATE(3504), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1243), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1245), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, sym_concatenation, - STATE(3477), 9, + STATE(2777), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - ACTIONS(2301), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + [108005] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, sym_word, - ACTIONS(2303), 22, - sym_file_descriptor, - sym_variable_name, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, sym_test_operator, - sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3156), 1, + sym__expression, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108105] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1239), 1, + sym_word, + ACTIONS(1241), 1, + anon_sym_BANG, + ACTIONS(1247), 1, + anon_sym_TILDE, + ACTIONS(1249), 1, + sym__special_character, + ACTIONS(1251), 1, + sym_ansi_c_string, + ACTIONS(1253), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3503), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [102270] = 8, + ACTIONS(1243), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1245), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2777), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1334), 6, sym_file_descriptor, - ACTIONS(6148), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165732,15 +170374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -165751,16 +170393,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102331] = 3, + [108257] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1223), 1, + sym_word, + ACTIONS(1225), 1, + anon_sym_BANG, + ACTIONS(1231), 1, + anon_sym_TILDE, + ACTIONS(1233), 1, + sym__special_character, + ACTIONS(1235), 1, + sym_ansi_c_string, + ACTIONS(1237), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3206), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1227), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1229), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2492), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1342), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -165771,7 +170487,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -165782,13 +170497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -165799,33 +170515,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102382] = 8, + [108409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1330), 5, sym_file_descriptor, - ACTIONS(6151), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165833,15 +170546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -165852,33 +170564,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102443] = 8, + [108461] = 27, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3157), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [108561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1322), 6, sym_file_descriptor, - ACTIONS(6154), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165886,15 +170667,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -165905,33 +170686,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102504] = 8, + [108613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1346), 5, sym_file_descriptor, - ACTIONS(6157), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165939,15 +170716,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -165958,33 +170735,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102565] = 8, + [108665] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1378), 6, sym_file_descriptor, - ACTIONS(6160), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1376), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -165992,15 +170765,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166011,33 +170784,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102626] = 8, + [108717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1350), 5, sym_file_descriptor, - ACTIONS(6163), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166045,15 +170814,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166064,33 +170833,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102687] = 8, + [108769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1306), 5, sym_file_descriptor, - ACTIONS(6166), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166098,15 +170863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166117,33 +170882,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102748] = 8, + [108821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1354), 5, sym_file_descriptor, - ACTIONS(6169), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166151,15 +170912,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166170,33 +170931,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102809] = 8, + [108873] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1382), 6, sym_file_descriptor, - ACTIONS(6172), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1380), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166204,15 +170961,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166223,33 +170980,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102870] = 8, + [108925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1362), 5, sym_file_descriptor, - ACTIONS(6175), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166257,15 +171010,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166276,33 +171029,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102931] = 8, + [108977] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, + sym__concat, + STATE(1827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5036), 5, sym_file_descriptor, - ACTIONS(6178), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(5034), 36, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166310,15 +171063,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166329,33 +171081,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [102992] = 8, + [109035] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, + sym__concat, + STATE(1828), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5040), 5, sym_file_descriptor, - ACTIONS(6181), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(5038), 36, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166363,15 +171115,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166382,16 +171133,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103053] = 3, + [109093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1366), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 38, + ACTIONS(1364), 39, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -166413,13 +171164,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166430,33 +171182,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103104] = 8, + [109145] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6259), 1, + aux_sym_concatenation_token1, + ACTIONS(6261), 1, + sym__concat, + STATE(2050), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 4, sym_file_descriptor, - ACTIONS(6184), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166464,15 +171217,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166483,33 +171234,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103165] = 8, + [109203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1358), 5, sym_file_descriptor, - ACTIONS(6187), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166517,15 +171264,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166536,33 +171283,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103226] = 8, + [109255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1370), 6, sym_file_descriptor, - ACTIONS(6190), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166570,15 +171313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166589,33 +171332,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103287] = 8, + [109307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1386), 6, sym_file_descriptor, - ACTIONS(6193), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1384), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166623,15 +171362,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166642,33 +171381,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103348] = 8, + [109359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1370), 6, sym_file_descriptor, - ACTIONS(6196), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166676,15 +171411,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166695,33 +171430,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103409] = 8, + [109411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, + sym__concat, + STATE(1827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5149), 5, sym_file_descriptor, - ACTIONS(6199), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(5147), 36, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166729,15 +171464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166748,33 +171482,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103470] = 8, + [109469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, + sym__concat, + STATE(1828), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4902), 5, sym_file_descriptor, - ACTIONS(6202), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(4900), 36, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166782,15 +171516,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166801,33 +171534,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103531] = 8, + [109527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1374), 5, sym_file_descriptor, - ACTIONS(6205), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1372), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166835,15 +171564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166854,86 +171583,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103592] = 8, - ACTIONS(3), 1, + [109579] = 27, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, - sym_file_descriptor, - ACTIONS(6208), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, - sym_test_operator, - sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1121), 1, + anon_sym_LPAREN, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(1139), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, + ACTIONS(1147), 1, aux_sym_number_token2, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(1187), 1, + sym_word, + ACTIONS(1189), 1, + anon_sym_BANG, + ACTIONS(1195), 1, + anon_sym_TILDE, + ACTIONS(1197), 1, + sym__special_character, + ACTIONS(1199), 1, + sym_ansi_c_string, + ACTIONS(1201), 1, + sym_test_operator, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + STATE(2546), 1, + aux_sym__literal_repeat1, + STATE(3158), 1, + sym__expression, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [103653] = 8, + ACTIONS(1191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(1193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2758), 6, + sym_binary_expression, + sym_ternary_expression, + sym_unary_expression, + sym_postfix_expression, + sym_parenthesized_expression, + sym_concatenation, + STATE(2606), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [109679] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, + sym__concat, + STATE(1827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 5, sym_file_descriptor, - ACTIONS(6211), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(4971), 36, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166941,15 +171690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -166960,33 +171708,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103714] = 8, + [109737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, + sym__concat, + STATE(1828), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 5, sym_file_descriptor, - ACTIONS(6214), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(5015), 36, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -166994,15 +171742,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167013,33 +171760,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103775] = 8, + [109795] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, + sym__concat, + STATE(1827), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 5, sym_file_descriptor, - ACTIONS(6217), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(5044), 36, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167047,15 +171794,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167066,33 +171812,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103836] = 8, + [109853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(5516), 1, + aux_sym_concatenation_token1, + ACTIONS(5518), 1, + sym__concat, + STATE(1828), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 5, sym_file_descriptor, - ACTIONS(6220), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(5048), 36, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167100,15 +171846,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167119,33 +171864,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103897] = 8, + [109911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1390), 5, sym_file_descriptor, - ACTIONS(6223), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1388), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167153,15 +171894,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167172,33 +171913,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [103958] = 8, + [109963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1326), 5, sym_file_descriptor, - ACTIONS(6226), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 39, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167206,15 +171943,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167225,33 +171962,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104019] = 8, + [110015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1370), 6, sym_file_descriptor, - ACTIONS(6229), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167259,15 +171992,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167277,21 +172009,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, - [104080] = 8, + [110067] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6232), 1, + ACTIONS(6367), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167301,7 +172034,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -167313,14 +172046,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167331,33 +172064,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104141] = 8, + [110128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6211), 2, sym_file_descriptor, - ACTIONS(6235), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, + aux_sym_heredoc_redirect_token1, + ACTIONS(4503), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(4495), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_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(6209), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + [110183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6135), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(6133), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167365,15 +172144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167383,34 +172160,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [104202] = 8, + [110234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1386), 5, sym_file_descriptor, - ACTIONS(6238), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1384), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167418,15 +172192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167437,20 +172210,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104263] = 8, + [110285] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6241), 1, + ACTIONS(6370), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167460,7 +172233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -167472,14 +172245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167490,20 +172263,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104324] = 8, + [110346] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6244), 1, + ACTIONS(6373), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167513,7 +172286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -167525,14 +172298,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167543,20 +172316,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104385] = 8, + [110407] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6247), 1, + ACTIONS(6376), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167566,7 +172339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -167578,14 +172351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167596,20 +172369,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104446] = 8, + [110468] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6250), 1, + ACTIONS(6379), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167619,7 +172392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -167631,14 +172404,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167649,33 +172422,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104507] = 8, + [110529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(5017), 6, sym_file_descriptor, - ACTIONS(6253), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5015), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167683,15 +172452,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167702,86 +172470,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104568] = 8, - ACTIONS(3), 1, + [110580] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1344), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1346), 27, sym_file_descriptor, - ACTIONS(6256), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [110631] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2266), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6382), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5044), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5046), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [104629] = 8, + [110686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6131), 6, sym_file_descriptor, - ACTIONS(6259), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6129), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167789,15 +172598,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167808,20 +172616,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104690] = 8, + [110737] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6262), 1, + ACTIONS(6384), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167831,7 +172639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -167843,14 +172651,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167861,33 +172669,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104751] = 8, + [110798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1370), 5, sym_file_descriptor, - ACTIONS(6265), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -167895,15 +172699,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -167914,73 +172717,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104812] = 8, - ACTIONS(3), 1, + [110849] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + STATE(2272), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6382), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5048), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5050), 25, sym_file_descriptor, - ACTIONS(6268), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [104873] = 8, + [110904] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6271), 1, + ACTIONS(6387), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -167990,7 +172790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168002,14 +172802,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168020,20 +172820,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104934] = 8, + [110965] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6274), 1, + ACTIONS(6390), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168043,7 +172843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168055,14 +172855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168073,86 +172873,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [104995] = 8, - ACTIONS(3), 1, + [111026] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1348), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1350), 27, sym_file_descriptor, - ACTIONS(6277), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111077] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1304), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [105056] = 8, + [111128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(2156), 6, sym_file_descriptor, - ACTIONS(6280), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2154), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168160,15 +172999,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168179,20 +173017,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105117] = 8, + [111179] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6283), 1, + ACTIONS(6393), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168202,7 +173040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168214,14 +173052,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168232,73 +173070,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105178] = 8, - ACTIONS(3), 1, + [111240] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1352), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 27, sym_file_descriptor, - ACTIONS(6286), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [105239] = 8, + [111291] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6289), 1, + ACTIONS(6396), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168308,7 +173141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168320,14 +173153,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168338,73 +173171,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105300] = 8, - ACTIONS(3), 1, + [111352] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1360), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1362), 27, sym_file_descriptor, - ACTIONS(6292), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [105361] = 8, + [111403] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6295), 1, + ACTIONS(6399), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168414,7 +173242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168426,14 +173254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168444,20 +173272,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105422] = 8, + [111464] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6298), 1, + ACTIONS(6402), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168467,7 +173295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168479,14 +173307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168497,86 +173325,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105483] = 8, - ACTIONS(3), 1, + [111525] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1364), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1366), 27, sym_file_descriptor, - ACTIONS(6301), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111576] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2266), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6382), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1302), 25, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [105544] = 8, + [111631] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6405), 1, + sym__special_character, + STATE(2217), 1, + aux_sym__literal_repeat1, + ACTIONS(5789), 5, sym_file_descriptor, - ACTIONS(6304), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5787), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168584,15 +173456,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168602,34 +173471,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [105605] = 8, + [111686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1346), 6, sym_file_descriptor, - ACTIONS(6307), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168637,15 +173503,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168656,20 +173521,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105666] = 8, + [111737] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6310), 1, + ACTIONS(6407), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168679,7 +173544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168691,14 +173556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168709,33 +173574,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105727] = 8, + [111798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1350), 6, sym_file_descriptor, - ACTIONS(6313), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168743,15 +173604,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168762,33 +173622,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105788] = 8, + [111849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1306), 6, sym_file_descriptor, - ACTIONS(6316), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168796,15 +173652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168815,86 +173670,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105849] = 8, - ACTIONS(3), 1, + [111900] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + STATE(2266), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6382), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5147), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5149), 25, sym_file_descriptor, - ACTIONS(6319), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, + anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [111955] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1356), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 27, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [105910] = 8, + [112006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1354), 6, sym_file_descriptor, - ACTIONS(6322), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -168902,15 +173798,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168921,20 +173816,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [105971] = 8, + [112057] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6325), 1, + ACTIONS(6410), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168944,7 +173839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -168956,14 +173851,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -168974,20 +173869,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106032] = 8, + [112118] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6328), 1, + ACTIONS(6413), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -168997,7 +173892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169009,14 +173904,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169027,86 +173922,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106093] = 8, - ACTIONS(3), 1, + [112179] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + STATE(2272), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6382), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4900), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4902), 25, sym_file_descriptor, - ACTIONS(6331), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [106154] = 8, + [112234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1362), 6, sym_file_descriptor, - ACTIONS(6334), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169114,15 +174002,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169133,20 +174020,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106215] = 8, + [112285] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6337), 1, + ACTIONS(6416), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169156,7 +174043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169168,14 +174055,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169186,73 +174073,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106276] = 8, - ACTIONS(3), 1, + [112346] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1372), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1374), 27, sym_file_descriptor, - ACTIONS(6340), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [106337] = 8, + [112397] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6343), 1, + ACTIONS(6419), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169262,7 +174144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169274,14 +174156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169292,33 +174174,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106398] = 8, + [112458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1366), 6, sym_file_descriptor, - ACTIONS(6346), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1364), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169326,15 +174204,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169345,20 +174222,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106459] = 8, + [112509] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6349), 1, + ACTIONS(6422), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169368,7 +174245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169380,14 +174257,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169398,33 +174275,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106520] = 8, + [112570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1358), 6, sym_file_descriptor, - ACTIONS(6352), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169432,15 +174305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169451,20 +174323,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106581] = 8, + [112621] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6355), 1, + ACTIONS(6425), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169474,7 +174346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169486,14 +174358,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169504,33 +174376,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106642] = 8, + [112682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1374), 6, sym_file_descriptor, - ACTIONS(6358), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1372), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169538,15 +174406,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169557,33 +174424,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106703] = 8, + [112733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1302), 6, sym_file_descriptor, - ACTIONS(6361), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169591,15 +174454,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169610,33 +174472,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106764] = 8, + [112784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6259), 1, + aux_sym_concatenation_token1, + ACTIONS(6428), 1, + sym__concat, + STATE(2056), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 4, sym_file_descriptor, - ACTIONS(6364), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(1294), 36, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169644,15 +174506,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169663,73 +174523,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106825] = 8, - ACTIONS(3), 1, + [112841] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(1388), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1390), 27, sym_file_descriptor, - ACTIONS(6367), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [106886] = 8, + [112892] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(6370), 1, + ACTIONS(6430), 1, anon_sym_RPAREN, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -169739,7 +174594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -169751,14 +174606,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169769,33 +174624,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [106947] = 8, + [112953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(5017), 5, sym_file_descriptor, - ACTIONS(6373), 1, - anon_sym_RPAREN, - ACTIONS(5861), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(5015), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169803,15 +174654,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169822,26 +174672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107008] = 6, - ACTIONS(71), 1, + [113004] = 3, + ACTIONS(73), 1, sym_comment, - STATE(3535), 1, - aux_sym__literal_repeat1, - STATE(3552), 1, - sym_concatenation, - STATE(3461), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - ACTIONS(2305), 10, + ACTIONS(1324), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -169849,53 +174690,63 @@ 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(2307), 22, + ACTIONS(1326), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [107065] = 3, + [113055] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6433), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 38, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -169903,14 +174754,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -169921,235 +174773,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107116] = 27, - ACTIONS(71), 1, + [113116] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1328), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_BANG, - ACTIONS(1085), 1, - anon_sym_TILDE, - ACTIONS(5882), 1, - sym__special_character, - ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(6376), 1, sym_word, - ACTIONS(6380), 1, + ACTIONS(1330), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - STATE(2463), 1, - aux_sym__literal_repeat1, - STATE(3426), 1, - sym__expression, - ACTIONS(288), 2, + sym__bare_dollar, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1081), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1083), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6378), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2762), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2462), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107215] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(2964), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107312] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3153), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107409] = 6, + [113167] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, - aux_sym_concatenation_token1, - ACTIONS(5991), 1, - sym__concat, - STATE(2032), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 4, + ACTIONS(6436), 1, + sym__special_character, + STATE(2152), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 36, + ACTIONS(1394), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -170161,6 +174845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -170173,9 +174859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -170186,21 +174871,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107466] = 6, + [113222] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5977), 1, + ACTIONS(6259), 1, aux_sym_concatenation_token1, - ACTIONS(5991), 1, + ACTIONS(6439), 1, sym__concat, - STATE(2033), 1, + STATE(2056), 1, aux_sym_concatenation_repeat1, - ACTIONS(5321), 4, + ACTIONS(1316), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 36, + ACTIONS(1314), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -170226,7 +174911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -170237,1225 +174922,566 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [107523] = 26, - ACTIONS(71), 1, + [113279] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6441), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(284), 1, sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3040), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107620] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3075), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107717] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, sym_word, - ACTIONS(248), 1, + [113340] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1336), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(284), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1155), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1165), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3045), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107814] = 26, - ACTIONS(71), 1, + [113391] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1382), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1380), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, + [113442] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6444), 1, sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, + STATE(2157), 1, aux_sym__literal_repeat1, - STATE(2685), 1, - sym__expression, - ACTIONS(1099), 2, + ACTIONS(1396), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1394), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [107911] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + [113497] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6447), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3096), 1, - sym__expression, - ACTIONS(1099), 2, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108008] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(311), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_BANG, - ACTIONS(1085), 1, - anon_sym_TILDE, - ACTIONS(5882), 1, - sym__special_character, - ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(6382), 1, - sym_word, - ACTIONS(6386), 1, - sym_test_operator, - STATE(2471), 1, - aux_sym__literal_repeat1, - STATE(3426), 1, - sym__expression, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1083), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6384), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2858), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2470), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108107] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, sym_word, - ACTIONS(248), 1, + [113558] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1332), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1334), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(284), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1155), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1165), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3124), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108204] = 26, - ACTIONS(71), 1, + [113609] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6450), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, + [113670] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6453), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2968), 1, - sym__expression, - ACTIONS(1099), 2, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108301] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2995), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108398] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, sym_word, - ACTIONS(248), 1, + [113731] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1340), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(284), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1155), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1165), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3046), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108495] = 26, - ACTIONS(71), 1, + [113782] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, + ACTIONS(1320), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(284), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1155), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1165), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3048), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108592] = 26, - ACTIONS(71), 1, + [113833] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, + ACTIONS(1376), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(270), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3049), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108689] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(1378), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3050), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108786] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, - aux_sym_number_token1, - ACTIONS(313), 1, - aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_BANG, - ACTIONS(1085), 1, - anon_sym_TILDE, - ACTIONS(5882), 1, - sym__special_character, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(6388), 1, - sym_word, - ACTIONS(6392), 1, - sym_test_operator, - STATE(2484), 1, - aux_sym__literal_repeat1, - STATE(3426), 1, - sym__expression, - ACTIONS(288), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1081), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1083), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6390), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2889), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2483), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108885] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(2983), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [108982] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2988), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109079] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3051), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109176] = 3, + [113884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(6131), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(6129), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -171483,7 +175509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -171494,753 +175520,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [109227] = 26, - ACTIONS(71), 1, + [113935] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, + ACTIONS(1380), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3053), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109324] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_BANG, - ACTIONS(1085), 1, - anon_sym_TILDE, - ACTIONS(5882), 1, - sym__special_character, - ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(6394), 1, sym_word, - ACTIONS(6398), 1, + ACTIONS(1382), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - STATE(2489), 1, - aux_sym__literal_repeat1, - STATE(3426), 1, - sym__expression, - ACTIONS(288), 2, + sym__bare_dollar, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1081), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1083), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6396), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2917), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2488), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109423] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3003), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109520] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3007), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109617] = 26, - ACTIONS(71), 1, + [113986] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6456), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(284), 1, sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3054), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109714] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3056), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109811] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_BANG, - ACTIONS(1085), 1, - anon_sym_TILDE, - ACTIONS(5882), 1, - sym__special_character, - ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(6400), 1, - sym_word, - ACTIONS(6404), 1, - sym_test_operator, - STATE(2491), 1, - aux_sym__literal_repeat1, - STATE(3426), 1, - sym__expression, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1081), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1083), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6402), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2933), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2490), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [109910] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3029), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110007] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3057), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110104] = 26, - ACTIONS(71), 1, + [114047] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6459), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(284), 1, sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3058), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110201] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2231), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4504), 15, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(4506), 25, + [114108] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5048), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -172248,75 +175708,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110256] = 5, - ACTIONS(71), 1, + sym_word, + [114159] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2236), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4521), 15, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6462), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(4523), 25, + [114220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1390), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1388), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [110311] = 3, + sym_word, + [114271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 6, + ACTIONS(1326), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1324), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -172337,13 +175854,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -172354,17 +175871,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110362] = 3, + [114322] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 6, + ACTIONS(1330), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 37, + ACTIONS(1328), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -172391,7 +175908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -172402,158 +175919,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [110413] = 26, - ACTIONS(71), 1, + [114373] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, + ACTIONS(6465), 1, sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, + STATE(2174), 1, aux_sym__literal_repeat1, - STATE(3154), 1, - sym__expression, - ACTIONS(1099), 2, + ACTIONS(1396), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1394), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110510] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3155), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110607] = 3, + sym_word, + [114428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1338), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1336), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -172564,7 +175990,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -172577,10 +176002,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -172590,447 +176016,364 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [110658] = 26, - ACTIONS(71), 1, + [114479] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1101), 1, + ACTIONS(1368), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, + anon_sym_BQUOTE, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + ACTIONS(1370), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3157), 1, - sym__expression, - ACTIONS(1099), 2, + sym__bare_dollar, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110755] = 26, - ACTIONS(71), 1, + [114530] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1101), 1, + ACTIONS(1384), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, + anon_sym_BQUOTE, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + ACTIONS(1386), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3158), 1, - sym__expression, - ACTIONS(1099), 2, + sym__bare_dollar, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110852] = 26, - ACTIONS(71), 1, + [114581] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1101), 1, + ACTIONS(1368), 16, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, + anon_sym_BQUOTE, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + ACTIONS(1370), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3159), 1, - sym__expression, - ACTIONS(1099), 2, + sym__bare_dollar, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [110949] = 26, - ACTIONS(71), 1, + [114632] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6468), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + [114693] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3160), 1, - sym__expression, - ACTIONS(1099), 2, + sym__brace_start, + ACTIONS(6023), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111046] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + [114752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2955), 1, - sym__expression, - ACTIONS(1099), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111143] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, + [114803] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6471), 1, sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, + STATE(2157), 1, aux_sym__literal_repeat1, - STATE(2979), 1, - sym__expression, - ACTIONS(1099), 2, + ACTIONS(5789), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5787), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111240] = 5, + aux_sym__simple_variable_name_token1, + sym_word, + [114858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 4, + ACTIONS(1302), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 37, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -173055,8 +176398,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -173068,18 +176412,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [111295] = 7, + [114909] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(5861), 3, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 10, + ACTIONS(6023), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -173090,7 +176434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173102,14 +176446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -173120,171 +176464,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111354] = 26, - ACTIONS(71), 1, + [114968] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6473), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [115029] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6476), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(1139), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3074), 1, - sym__expression, - ACTIONS(1099), 2, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111451] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(264), 1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(270), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [115090] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6479), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(284), 1, sym__brace_start, - ACTIONS(1155), 1, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(1161), 1, anon_sym_DQUOTE, - ACTIONS(1165), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3041), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111548] = 7, + sym_word, + [115151] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(5861), 3, + ACTIONS(6482), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 10, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_LT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -173296,14 +176658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -173314,1011 +176676,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [111607] = 26, - ACTIONS(71), 1, + [115212] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(6259), 1, + aux_sym_concatenation_token1, + ACTIONS(6261), 1, + sym__concat, + STATE(2145), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, + [115269] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6131), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2984), 1, - sym__expression, - ACTIONS(1099), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(6129), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111704] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [115320] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6485), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(1139), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3079), 1, - sym__expression, - ACTIONS(1099), 2, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111801] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3080), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111898] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2989), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [111995] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3081), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112092] = 26, - ACTIONS(71), 1, + [115381] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(6488), 1, sym__special_character, - STATE(2593), 1, + STATE(2174), 1, aux_sym__literal_repeat1, - STATE(3082), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112189] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + ACTIONS(5442), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(1139), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3083), 1, - sym__expression, - ACTIONS(1099), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5440), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112286] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3084), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112383] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3088), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112480] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3089), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112577] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3004), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112674] = 26, - ACTIONS(71), 1, + [115436] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6490), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(1139), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3090), 1, - sym__expression, - ACTIONS(1099), 2, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112771] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3091), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112868] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3092), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [112965] = 3, + sym_word, + [115497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 6, + ACTIONS(1334), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 37, + ACTIONS(1332), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -174345,7 +176968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -174356,88 +176979,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113016] = 26, - ACTIONS(71), 1, + [115548] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6493), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3015), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113113] = 3, + sym_word, + [115609] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 6, + ACTIONS(6135), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 37, + ACTIONS(6133), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -174464,7 +177069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -174475,17 +177080,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113164] = 3, + [115660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5873), 6, + ACTIONS(1342), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5871), 37, + ACTIONS(1340), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -174508,10 +177113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -174521,19 +177127,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, - [113215] = 3, + [115711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 6, + ACTIONS(1322), 6, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 37, + ACTIONS(1320), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -174560,7 +177165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -174571,17 +177176,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113266] = 3, + [115762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 6, + ACTIONS(1378), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 37, + ACTIONS(1376), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -174602,13 +177207,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -174619,17 +177224,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113317] = 3, + [115813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 6, + ACTIONS(1382), 6, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 37, + ACTIONS(1380), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -174650,13 +177255,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -174667,29 +177272,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113368] = 3, + [115864] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 6, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, + ACTIONS(6496), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5888), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -174697,13 +177306,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -174713,19 +177324,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, - [113419] = 3, + [115925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 6, + ACTIONS(5501), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5888), 37, + ACTIONS(5499), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -174736,6 +177345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -174746,13 +177356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -174762,130 +177371,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [113470] = 5, - ACTIONS(71), 1, + [115976] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2231), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4500), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4502), 25, + ACTIONS(1378), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1376), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [113525] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2236), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4517), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(4519), 25, + [116027] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, + ACTIONS(6499), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [113580] = 3, + sym_word, + [116088] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 6, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, + ACTIONS(6502), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -174893,14 +177508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -174911,90 +177527,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113631] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, - aux_sym_number_token1, - ACTIONS(266), 1, - aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, - anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(2951), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [113728] = 7, + [116149] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 1, - sym_file_descriptor, - ACTIONS(5856), 2, - ts_builtin_sym_end, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5861), 3, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6505), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -175004,7 +177550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -175016,14 +177562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -175034,19 +177580,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113787] = 7, + [116210] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5858), 1, - sym_file_descriptor, - ACTIONS(5856), 2, - ts_builtin_sym_end, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5861), 3, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6508), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -175056,7 +177603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 11, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -175068,14 +177615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - ACTIONS(5849), 17, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -175086,36 +177633,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113846] = 5, - ACTIONS(3), 1, + [116271] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6409), 1, - sym__special_character, - STATE(2205), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, + STATE(2272), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6382), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5015), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5017), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -175123,30 +177675,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [113901] = 3, + [116326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 6, + ACTIONS(1346), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 37, + ACTIONS(1344), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -175157,6 +177703,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -175173,7 +177720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -175184,25 +177731,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [113952] = 5, + [116377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 2, + ACTIONS(2160), 6, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4318), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4304), 18, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(2158), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -175213,7 +177779,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(5927), 20, + [116428] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5501), 6, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5499), 37, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -175223,7 +177800,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -175234,517 +177810,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [114007] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1356), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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(1358), 27, - sym_file_descriptor, + [116479] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6259), 1, + aux_sym_concatenation_token1, + ACTIONS(6261), 1, sym__concat, + STATE(2145), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 4, + sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5440), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114058] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1344), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1346), 27, + [116536] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6511), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114109] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3105), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114206] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, - sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, - sym_test_operator, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(2685), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114303] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1097), 1, sym_word, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1103), 1, - anon_sym_BANG, - ACTIONS(1109), 1, - anon_sym_TILDE, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1137), 1, + [116597] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6514), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(1139), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - sym__special_character, - STATE(2593), 1, - aux_sym__literal_repeat1, - STATE(3139), 1, - sym__expression, - ACTIONS(1099), 2, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1105), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1107), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1121), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2554), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114400] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1171), 1, - sym_word, - ACTIONS(1173), 1, - anon_sym_BANG, - ACTIONS(1179), 1, - anon_sym_TILDE, - ACTIONS(1181), 1, - sym__special_character, - ACTIONS(1185), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3144), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1175), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1177), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1183), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114497] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1356), 16, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 27, + [116658] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6517), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [114548] = 27, - ACTIONS(71), 1, - sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, aux_sym_number_token1, - ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_BANG, - ACTIONS(1085), 1, - anon_sym_TILDE, - ACTIONS(5882), 1, - sym__special_character, - ACTIONS(5884), 1, anon_sym_BQUOTE, - ACTIONS(6412), 1, - sym_word, - ACTIONS(6416), 1, - sym_test_operator, - STATE(2576), 1, - aux_sym__literal_repeat1, - STATE(3426), 1, - sym__expression, - ACTIONS(288), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1081), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1083), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(6414), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 2, - sym_ternary_expression, - sym_postfix_expression, - STATE(2922), 4, - sym_binary_expression, - sym_unary_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2564), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114647] = 3, + sym_word, + [116719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 6, + ACTIONS(1302), 6, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 37, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -175767,11 +178070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -175781,879 +178083,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [114698] = 26, - ACTIONS(71), 1, + [116770] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, + ACTIONS(6520), 1, sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, + STATE(2217), 1, aux_sym__literal_repeat1, - STATE(3387), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114795] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + ACTIONS(1396), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3388), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114892] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3390), 1, - sym__expression, - ACTIONS(1099), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1394), 36, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [114989] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3391), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115086] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3392), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115183] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3393), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115280] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3394), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115377] = 26, - ACTIONS(71), 1, + [116825] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6523), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3396), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115474] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3397), 1, - sym__expression, - ACTIONS(1099), 2, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115571] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3398), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115668] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + [116886] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6526), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3399), 1, - sym__expression, - ACTIONS(1099), 2, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115765] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3400), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [115862] = 5, + sym_word, + [116947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4318), 3, - sym_variable_name, + ACTIONS(1350), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, - ACTIONS(5929), 3, - sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4304), 18, + ACTIONS(1348), 38, anon_sym_LPAREN_LPAREN, - anon_sym_LT_LT_LT, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -176664,7 +178289,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - ACTIONS(5927), 19, + [116998] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 38, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -176674,6 +178309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -176684,222 +178320,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [115917] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + [117049] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6529), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3401), 1, - sym__expression, - ACTIONS(1099), 2, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116014] = 6, - ACTIONS(71), 1, + sym_word, + [117110] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6133), 1, - aux_sym_concatenation_token1, - ACTIONS(6418), 1, - sym__concat, - STATE(2239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 15, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6532), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(1268), 25, + [117171] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, + ACTIONS(6535), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116071] = 26, - ACTIONS(71), 1, + sym_word, + [117232] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6538), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(311), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(313), 1, aux_sym_number_token2, - ACTIONS(315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(1073), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1075), 1, - anon_sym_LPAREN, - ACTIONS(1077), 1, - anon_sym_BANG, - ACTIONS(1085), 1, - anon_sym_TILDE, - ACTIONS(1095), 1, + [117293] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6541), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(5882), 1, - sym__special_character, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - STATE(2503), 1, - aux_sym__literal_repeat1, - STATE(2809), 1, - sym__expression, - ACTIONS(288), 2, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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(1081), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1083), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1091), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2884), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2556), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116168] = 3, + sym_word, + [117354] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 6, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6544), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -176907,14 +178636,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -176925,19 +178655,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116219] = 5, + [117415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6420), 1, - sym__special_character, - STATE(1973), 1, - aux_sym__literal_repeat1, - ACTIONS(5317), 4, + ACTIONS(1302), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 37, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -176948,9 +178675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -176960,11 +178686,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -176975,208 +178703,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116274] = 26, - ACTIONS(71), 1, + [117466] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(1354), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2685), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116371] = 6, - ACTIONS(71), 1, + sym_word, + [117517] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6133), 1, - aux_sym_concatenation_token1, - ACTIONS(6422), 1, + ACTIONS(1370), 6, + sym_file_descriptor, sym__concat, - STATE(2239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 15, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(1288), 25, + [117568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1386), 6, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1384), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [116428] = 26, - ACTIONS(71), 1, + sym_word, + [117619] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, + ACTIONS(4503), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6211), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4495), 18, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2966), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116525] = 3, + sym_word, + ACTIONS(6209), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [117674] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1370), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 39, + ACTIONS(1368), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -177187,10 +178917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -177202,10 +178930,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -177216,141 +178945,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [116576] = 5, - ACTIONS(71), 1, + [117725] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2239), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6424), 2, + ACTIONS(1370), 6, + sym_file_descriptor, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1276), 15, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1278), 25, + [117776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1362), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [116631] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(107), 1, - anon_sym_TILDE, - ACTIONS(237), 1, - sym_word, - ACTIONS(248), 1, - anon_sym_LPAREN, - ACTIONS(250), 1, - anon_sym_BANG, - ACTIONS(258), 1, - anon_sym_DOLLAR, - ACTIONS(264), 1, aux_sym_number_token1, - ACTIONS(266), 1, aux_sym_number_token2, - ACTIONS(270), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(282), 1, - sym_test_operator, - ACTIONS(284), 1, - sym__brace_start, - ACTIONS(1155), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1159), 1, - sym__special_character, - ACTIONS(1161), 1, - anon_sym_DQUOTE, - ACTIONS(1165), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - STATE(2623), 1, - aux_sym__literal_repeat1, - STATE(3059), 1, - sym__expression, - ACTIONS(103), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(105), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1153), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1163), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(1169), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2976), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2498), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116728] = 5, + sym_word, + [117827] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6427), 1, - sym__special_character, - STATE(1998), 1, - aux_sym__literal_repeat1, - ACTIONS(5509), 5, + ACTIONS(6259), 1, + aux_sym_concatenation_token1, + ACTIONS(6261), 1, + sym__concat, + STATE(2153), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5507), 36, + ACTIONS(5538), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -177374,8 +179079,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -177385,252 +179091,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [116783] = 26, - ACTIONS(71), 1, + [117884] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + ACTIONS(2160), 5, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2685), 1, - sym__expression, - ACTIONS(1099), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2158), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116880] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, + [117935] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6028), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3450), 1, - sym__expression, - ACTIONS(1099), 2, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [116977] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1211), 1, - sym_word, - ACTIONS(1213), 1, - anon_sym_BANG, - ACTIONS(1219), 1, - anon_sym_TILDE, - ACTIONS(1221), 1, - sym__special_character, - ACTIONS(1225), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3449), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1215), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1217), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1223), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2732), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117074] = 8, + sym_word, + [117994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6431), 1, - anon_sym_DQUOTE, - ACTIONS(6435), 1, - sym_variable_name, - STATE(3505), 1, - sym_string, - ACTIONS(6433), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1235), 3, + ACTIONS(6131), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(6429), 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(1227), 26, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6129), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -177638,11 +179222,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -177652,38 +179238,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - [117135] = 8, + [118045] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6431), 1, - anon_sym_DQUOTE, - ACTIONS(6435), 1, - sym_variable_name, - STATE(3505), 1, - sym_string, - ACTIONS(6433), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1241), 3, + ACTIONS(2156), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(6429), 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(1239), 26, + aux_sym_heredoc_redirect_token1, + ACTIONS(2154), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -177691,11 +179270,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -177706,29 +179288,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [117196] = 3, + [118096] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 6, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6547), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -177736,14 +179322,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -177754,17 +179341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [117247] = 3, + [118157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 6, + ACTIONS(1366), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 37, + ACTIONS(1364), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -177775,6 +179361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -177791,7 +179378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -177802,80 +179389,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [117298] = 3, - ACTIONS(71), 1, + [118208] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 16, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6550), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1298), 27, + [118269] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6553), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117349] = 5, + sym_word, + [118330] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6437), 1, - sym__special_character, - STATE(2171), 1, - aux_sym__literal_repeat1, - ACTIONS(5509), 4, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, + ACTIONS(6556), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5507), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -177883,12 +179529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -177898,18 +179547,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, - [117404] = 3, + [118391] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 5, + ACTIONS(6559), 1, + sym__special_character, + STATE(2283), 1, + aux_sym__literal_repeat1, + ACTIONS(5442), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 38, + ACTIONS(5440), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -177935,9 +179586,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -177948,29 +179598,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [117455] = 3, + [118446] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 6, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6561), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -177978,14 +179632,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -177996,29 +179651,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [117506] = 3, + [118507] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 6, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, + ACTIONS(6564), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 37, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -178026,14 +179685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -178044,206 +179704,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [117557] = 3, - ACTIONS(71), 1, + [118568] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 16, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6567), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1306), 27, + [118629] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [117608] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3128), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117705] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3129), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117802] = 3, - ACTIONS(71), 1, + sym_word, + [118680] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 16, + STATE(2272), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6382), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5038), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -178254,9 +179829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 27, + ACTIONS(5040), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -178273,598 +179847,549 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [117853] = 26, - ACTIONS(71), 1, + [118735] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6570), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3130), 1, - sym__expression, - ACTIONS(1099), 2, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [117950] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3131), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118047] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, - anon_sym_DOLLAR, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, - aux_sym_number_token1, - ACTIONS(1125), 1, - aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, + [118796] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6573), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3132), 1, - sym__expression, - ACTIONS(1099), 2, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118144] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, + [118857] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6576), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3133), 1, - sym__expression, - ACTIONS(1099), 2, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118241] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, + [118918] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6579), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(2942), 1, - sym__expression, - ACTIONS(1099), 2, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118338] = 26, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1101), 1, - anon_sym_LPAREN, - ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(1123), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(1125), 1, aux_sym_number_token2, - ACTIONS(1127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(1187), 1, - sym_word, - ACTIONS(1189), 1, - anon_sym_BANG, - ACTIONS(1195), 1, - anon_sym_TILDE, - ACTIONS(1197), 1, - sym__special_character, - ACTIONS(1201), 1, - sym_test_operator, - ACTIONS(3119), 1, anon_sym_BQUOTE, - STATE(2548), 1, - aux_sym__literal_repeat1, - STATE(3136), 1, - sym__expression, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(1191), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(1193), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - ACTIONS(1199), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2674), 6, - sym_binary_expression, - sym_ternary_expression, - sym_unary_expression, - sym_postfix_expression, - sym_parenthesized_expression, - sym_concatenation, - STATE(2567), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [118435] = 3, - ACTIONS(71), 1, + sym_word, + [118979] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 16, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6582), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1310), 27, + [119040] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6585), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118486] = 3, - ACTIONS(71), 1, + sym_word, + [119101] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 16, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6588), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1314), 27, + [119162] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6591), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118537] = 5, - ACTIONS(71), 1, + sym_word, + [119223] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2231), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6133), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1272), 15, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6594), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1274), 25, + [119284] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 5, sym_file_descriptor, + sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118592] = 3, + sym_word, + [119335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 6, + ACTIONS(5050), 5, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 37, + ACTIONS(5048), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -178875,6 +180400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -178885,13 +180411,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -178902,10 +180428,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [118643] = 3, - ACTIONS(71), 1, + [119386] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 15, + STATE(2266), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6382), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4971), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -178921,9 +180452,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 27, + ACTIONS(4973), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -178940,71 +180470,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118693] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1320), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1322), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [118743] = 3, + [119441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(6135), 6, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(6133), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -179015,7 +180499,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -179031,7 +180514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -179043,151 +180526,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [118793] = 3, - ACTIONS(71), 1, + [119492] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1346), 28, + ACTIONS(1374), 5, + sym_file_descriptor, sym__concat, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1372), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [118843] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1356), 15, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1358), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118893] = 3, - ACTIONS(71), 1, + sym_word, + [119543] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + ACTIONS(6382), 1, aux_sym_concatenation_token1, - [118943] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1344), 15, + ACTIONS(6597), 1, + sym__concat, + STATE(2276), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -179203,9 +180599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1346), 27, + ACTIONS(1296), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -179222,168 +180617,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [118993] = 3, - ACTIONS(71), 1, + [119600] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1338), 28, - sym__concat, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6599), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [119043] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 15, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1294), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119093] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6439), 1, - sym__special_character, - STATE(2290), 1, - aux_sym__literal_repeat1, - ACTIONS(241), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(278), 25, + [119661] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, + ACTIONS(6602), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119147] = 3, + sym_word, + [119722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(5501), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(5499), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -179394,6 +180751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -179410,7 +180768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -179421,137 +180779,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [119197] = 5, - ACTIONS(71), 1, + [119773] = 5, + ACTIONS(3), 1, sym_comment, - STATE(2279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6441), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1276), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1278), 25, + ACTIONS(6605), 1, + sym__special_character, + STATE(2152), 1, + aux_sym__literal_repeat1, + ACTIONS(5442), 4, + sym_file_descriptor, 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5440), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [119251] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1332), 15, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(1334), 27, + [119828] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6607), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119301] = 6, - ACTIONS(71), 1, + sym_word, + [119889] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(6444), 1, + ACTIONS(6382), 1, aux_sym_concatenation_token1, - ACTIONS(6446), 1, + ACTIONS(6610), 1, sym__concat, - STATE(2283), 1, + STATE(2276), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 14, + ACTIONS(1314), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1268), 25, + ACTIONS(1316), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -179560,163 +180925,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119357] = 6, - ACTIONS(71), 1, + [119946] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6444), 1, - aux_sym_concatenation_token1, - ACTIONS(6448), 1, - sym__concat, - STATE(2283), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1288), 25, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, + ACTIONS(6612), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119413] = 5, - ACTIONS(71), 1, + sym_word, + [120007] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2283), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6450), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1276), 14, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6615), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1278), 25, + [120068] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, + ACTIONS(6618), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119467] = 3, - ACTIONS(71), 1, + sym_word, + [120129] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1326), 28, + STATE(2276), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6621), 2, sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, aux_sym_concatenation_token1, - [119517] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1356), 15, + ACTIONS(1304), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -179732,9 +181116,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 27, + ACTIONS(1306), 25, sym_file_descriptor, - sym__concat, sym_test_operator, sym__bare_dollar, sym__brace_start, @@ -179751,50 +181134,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119567] = 5, - ACTIONS(71), 1, + [120184] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2281), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6444), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1272), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 25, + ACTIONS(5501), 6, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5499), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -179802,27 +181176,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119621] = 5, + sym_word, + [120235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6453), 1, - sym__special_character, - STATE(2296), 1, - aux_sym__literal_repeat1, - ACTIONS(5317), 5, + ACTIONS(6135), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 35, + ACTIONS(6133), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -179833,6 +181210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -179843,11 +181221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -179858,136 +181238,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [119675] = 3, - ACTIONS(71), 1, + [120286] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1320), 15, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6624), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(1322), 27, + [120347] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6627), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119725] = 5, - ACTIONS(71), 1, + sym_word, + [120408] = 8, + ACTIONS(3), 1, sym_comment, - STATE(2282), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6444), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2171), 14, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6630), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(2173), 25, + [120469] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, + ACTIONS(6633), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119779] = 5, - ACTIONS(71), 1, + sym_word, + [120530] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, + ACTIONS(6636), 1, sym__special_character, - STATE(2290), 1, + STATE(2283), 1, aux_sym__literal_repeat1, - ACTIONS(1360), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1362), 25, + ACTIONS(1396), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1394), 37, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -179995,83 +181487,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119833] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1348), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 27, + [120585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1390), 5, sym_file_descriptor, sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1388), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [119883] = 7, + sym_word, + [120636] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, - sym_file_descriptor, - ACTIONS(5861), 3, + ACTIONS(6641), 1, + anon_sym_DQUOTE, + ACTIONS(6645), 1, sym_variable_name, + STATE(3555), 1, + sym_string, + ACTIONS(6643), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1269), 3, + sym_file_descriptor, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5853), 12, + ACTIONS(6639), 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(1267), 26, + anon_sym_LPAREN_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -180083,36 +181587,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - ACTIONS(5849), 16, - anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [119941] = 7, + [120697] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5856), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(5858), 1, + ACTIONS(6030), 1, sym_file_descriptor, - ACTIONS(5861), 3, + ACTIONS(6028), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(5851), 9, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -180122,7 +181623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(5853), 12, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -180134,146 +181635,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - ACTIONS(5849), 16, + ACTIONS(6021), 17, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [119999] = 3, - ACTIONS(71), 1, + [120756] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1328), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, + ACTIONS(6641), 1, + anon_sym_DQUOTE, + ACTIONS(6645), 1, + sym_variable_name, + STATE(3555), 1, + sym_string, + ACTIONS(6643), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1263), 3, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ACTIONS(6639), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1330), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, + anon_sym_BANG, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [120049] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2281), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6444), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4577), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4579), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1255), 26, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, + sym__special_character, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120103] = 5, + sym_word, + [120817] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6458), 1, - sym__special_character, - STATE(2296), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 5, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, + ACTIONS(6647), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 35, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180281,12 +181740,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -180297,79 +181759,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [120157] = 5, - ACTIONS(71), 1, + [120878] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2282), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6444), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4593), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4595), 25, + ACTIONS(1326), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120211] = 6, + sym_word, + [120929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(6461), 1, - sym__concat, - STATE(1330), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1330), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 34, + ACTIONS(1328), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -180379,13 +181838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -180396,30 +181855,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [120267] = 6, + [120980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(6463), 1, - sym__concat, - STATE(1330), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(1338), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 34, + ACTIONS(1336), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -180429,13 +181886,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -180446,30 +181903,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [120323] = 6, + [121031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(2298), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(1334), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 34, + ACTIONS(1332), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -180479,13 +181934,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -180496,40 +181951,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [120379] = 5, - ACTIONS(71), 1, + [121082] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2281), 1, + STATE(2266), 1, aux_sym_concatenation_repeat1, - ACTIONS(6444), 2, + ACTIONS(6382), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5315), 14, + ACTIONS(5034), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5317), 25, + ACTIONS(5036), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -180538,86 +181993,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120433] = 5, - ACTIONS(71), 1, + [121137] = 3, + ACTIONS(3), 1, sym_comment, - STATE(2282), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6444), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5319), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5321), 25, + ACTIONS(1342), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120487] = 6, + sym_word, + [121188] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(6465), 1, - sym__concat, - STATE(1345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 5, + ACTIONS(1322), 5, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 34, + ACTIONS(1320), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -180629,10 +182082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -180642,33 +182096,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, - [120543] = 6, + [121239] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(6467), 1, - sym__concat, - STATE(1345), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 5, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, + ACTIONS(6650), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 34, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -180676,13 +182131,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -180692,32 +182149,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [120599] = 6, + [121300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(5609), 1, - sym__concat, - STATE(2303), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 5, + ACTIONS(1302), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 34, + ACTIONS(1300), 39, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -180727,12 +182181,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -180742,47 +182197,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [120655] = 5, + [121351] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 2, - sym_file_descriptor, + ACTIONS(6028), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4318), 3, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6653), 1, + anon_sym_RPAREN, + ACTIONS(6033), 3, sym_variable_name, sym_test_operator, sym__brace_start, - ACTIONS(4304), 17, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, + ACTIONS(6021), 17, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, anon_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(5927), 20, - anon_sym_SEMI, + [121412] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6656), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 25, + sym_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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [121466] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(5951), 1, + sym__concat, + STATE(2358), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5495), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5493), 34, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -180792,20 +182333,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [120709] = 5, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + [121522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6469), 1, + ACTIONS(6659), 1, sym__special_character, - STATE(2345), 1, + STATE(2379), 1, aux_sym__literal_repeat1, - ACTIONS(5317), 4, + ACTIONS(5442), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 36, + ACTIONS(5440), 36, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -180831,7 +182388,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -180842,16 +182399,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [120763] = 3, + [121576] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(1302), 5, sym_file_descriptor, sym_test_operator, sym__brace_start, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -180877,7 +182434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -180889,104 +182446,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [120813] = 3, - ACTIONS(71), 1, + [121626] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6669), 1, + anon_sym_esac, + ACTIONS(6671), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, anon_sym_DOLLAR, + ACTIONS(6677), 1, + sym__special_character, + ACTIONS(6679), 1, + anon_sym_DQUOTE, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 27, - sym_file_descriptor, - sym__concat, + ACTIONS(6693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7565), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120863] = 3, - ACTIONS(71), 1, + STATE(3033), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6665), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [121724] = 27, + ACTIONS(3), 1, sym_comment, - ACTIONS(1276), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, anon_sym_DOLLAR, + ACTIONS(6677), 1, + sym__special_character, + ACTIONS(6679), 1, + anon_sym_DQUOTE, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 27, - sym_file_descriptor, - sym__concat, + ACTIONS(6693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, sym_test_operator, - sym__bare_dollar, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, + ACTIONS(6705), 1, + anon_sym_esac, + ACTIONS(6707), 1, + aux_sym_heredoc_redirect_token1, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7120), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(6695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [120913] = 3, - ACTIONS(71), 1, + STATE(3131), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6703), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [121822] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 14, + ACTIONS(1388), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -181001,7 +182606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1350), 28, + ACTIONS(1390), 28, sym__concat, sym_test_operator, anon_sym_RPAREN_RPAREN, @@ -181030,130 +182635,189 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [120963] = 3, - ACTIONS(71), 1, + [121872] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1324), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1326), 27, + ACTIONS(1302), 4, sym_file_descriptor, - sym__concat, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121013] = 3, - ACTIONS(71), 1, + sym_word, + [121922] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1308), 15, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, + sym_file_descriptor, + ACTIONS(6033), 3, + sym_variable_name, + sym_test_operator, + sym__brace_start, + ACTIONS(6023), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 12, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + ACTIONS(6021), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1310), 27, + [121980] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6028), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(6030), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6033), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6023), 9, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6025), 12, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + ACTIONS(6021), 16, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, 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, - [121063] = 3, - ACTIONS(71), 1, + sym_word, + [122038] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 15, + STATE(2324), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6709), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5440), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 27, + ACTIONS(5442), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -181162,45 +182826,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121113] = 3, - ACTIONS(71), 1, + [122092] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 15, + STATE(2325), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6709), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5538), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 27, + ACTIONS(5540), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -181209,118 +182875,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121163] = 3, - ACTIONS(71), 1, + [122146] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 15, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 27, + ACTIONS(6211), 2, sym_file_descriptor, - sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(4503), 3, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + ACTIONS(4495), 17, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, 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, - [121213] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1352), 15, + sym_word, + ACTIONS(6209), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1354), 27, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [121263] = 3, + anon_sym_BQUOTE, + [122200] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1302), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + ACTIONS(1300), 38, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_PIPE_PIPE, @@ -181331,9 +182950,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -181348,7 +182966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -181358,16 +182976,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, - [121313] = 5, - ACTIONS(71), 1, + [122250] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2282), 1, + STATE(2325), 1, aux_sym_concatenation_repeat1, - ACTIONS(6444), 2, + ACTIONS(6709), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2167), 14, + ACTIONS(2154), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -181382,7 +183001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(2169), 25, + ACTIONS(2156), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -181402,21 +183021,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121367] = 5, - ACTIONS(71), 1, + [122304] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2281), 1, + STATE(2324), 1, aux_sym_concatenation_repeat1, - ACTIONS(6444), 2, + ACTIONS(6709), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4426), 14, + ACTIONS(4971), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -181431,7 +183050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4428), 25, + ACTIONS(4973), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -181451,21 +183070,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121421] = 5, - ACTIONS(71), 1, + [122358] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2282), 1, + STATE(2325), 1, aux_sym_concatenation_repeat1, - ACTIONS(6444), 2, + ACTIONS(6709), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4511), 14, + ACTIONS(5015), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -181480,7 +183099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4513), 25, + ACTIONS(5017), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -181500,14 +183119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [121475] = 3, - ACTIONS(71), 1, + [122412] = 3, + ACTIONS(73), 1, sym_comment, ACTIONS(1340), 14, anon_sym_EQ, @@ -181553,85 +183172,229 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [121525] = 6, - ACTIONS(3), 1, + [122462] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5539), 1, + ACTIONS(1320), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1322), 28, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, - ACTIONS(5541), 1, + [122512] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1324), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1326), 28, sym__concat, - STATE(2298), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 5, - sym_file_descriptor, - sym_variable_name, sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 34, - anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [122562] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1328), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1330), 28, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [122612] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1376), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1378), 28, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [122662] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2325), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6709), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2158), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [121581] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(2299), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5321), 5, + ACTIONS(2160), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -181639,196 +183402,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [121637] = 6, - ACTIONS(3), 1, + [122716] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(5609), 1, - sym__concat, - STATE(2303), 1, + STATE(2324), 1, aux_sym_concatenation_repeat1, - ACTIONS(5325), 5, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5323), 34, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6709), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5044), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [121693] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(5609), 1, - sym__concat, - STATE(2304), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5329), 5, + ACTIONS(5046), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5327), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_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, - [121749] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 28, - sym__concat, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [121799] = 6, - ACTIONS(3), 1, + [122770] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(2299), 1, + STATE(2325), 1, aux_sym_concatenation_repeat1, - ACTIONS(2169), 5, + ACTIONS(6709), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5048), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5050), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -181836,49 +183500,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [121855] = 6, - ACTIONS(3), 1, + [122824] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(5539), 1, + ACTIONS(6709), 1, aux_sym_concatenation_token1, - ACTIONS(5541), 1, + ACTIONS(6711), 1, sym__concat, - STATE(2298), 1, + STATE(2330), 1, aux_sym_concatenation_repeat1, - ACTIONS(4428), 5, + ACTIONS(1294), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1296), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -181886,49 +183550,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [121911] = 6, - ACTIONS(3), 1, + [122880] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(5539), 1, + ACTIONS(6709), 1, aux_sym_concatenation_token1, - ACTIONS(5541), 1, + ACTIONS(6713), 1, sym__concat, - STATE(2299), 1, + STATE(2330), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 5, + ACTIONS(1314), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1316), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -181936,149 +183600,332 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [122936] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, anon_sym_DOLLAR, + ACTIONS(6677), 1, sym__special_character, + ACTIONS(6679), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6687), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, anon_sym_BQUOTE, + ACTIONS(6693), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6717), 1, + anon_sym_esac, + ACTIONS(6719), 1, + aux_sym_heredoc_redirect_token1, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7510), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [121967] = 6, + STATE(3053), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6715), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123034] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(2299), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2173), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + sym__special_character, + ACTIONS(6679), 1, + anon_sym_DQUOTE, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, + anon_sym_BQUOTE, + ACTIONS(6693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, + ACTIONS(6723), 1, + anon_sym_esac, + ACTIONS(6725), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 34, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7561), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3054), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6721), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123132] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, anon_sym_DOLLAR, + ACTIONS(6677), 1, sym__special_character, + ACTIONS(6679), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6687), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, anon_sym_BQUOTE, + ACTIONS(6693), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6729), 1, + anon_sym_esac, + ACTIONS(6731), 1, + aux_sym_heredoc_redirect_token1, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7122), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [122023] = 6, + STATE(3055), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6727), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123230] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(2298), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + sym__special_character, + ACTIONS(6679), 1, + anon_sym_DQUOTE, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, + anon_sym_BQUOTE, + ACTIONS(6693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, + ACTIONS(6735), 1, + anon_sym_esac, + ACTIONS(6737), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 34, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7394), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3056), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6733), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123328] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2330), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6739), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [122079] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(2299), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 5, + ACTIONS(1306), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -182086,197 +183933,615 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [123382] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, anon_sym_DOLLAR, + ACTIONS(6677), 1, sym__special_character, + ACTIONS(6679), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6687), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, anon_sym_BQUOTE, + ACTIONS(6693), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6744), 1, + anon_sym_esac, + ACTIONS(6746), 1, + aux_sym_heredoc_redirect_token1, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7644), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [122135] = 6, + STATE(3082), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6742), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123480] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(2298), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5167), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + sym__special_character, + ACTIONS(6679), 1, + anon_sym_DQUOTE, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, + anon_sym_BQUOTE, + ACTIONS(6693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, + ACTIONS(6750), 1, + anon_sym_esac, + ACTIONS(6752), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 34, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7730), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3083), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6748), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123578] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, anon_sym_DOLLAR, + ACTIONS(6677), 1, sym__special_character, + ACTIONS(6679), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6687), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, anon_sym_BQUOTE, + ACTIONS(6693), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6756), 1, + anon_sym_esac, + ACTIONS(6758), 1, + aux_sym_heredoc_redirect_token1, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7001), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [122191] = 6, + STATE(3085), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6754), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123676] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5539), 1, - aux_sym_concatenation_token1, - ACTIONS(5541), 1, - sym__concat, - STATE(2299), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5175), 5, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + sym__special_character, + ACTIONS(6679), 1, + anon_sym_DQUOTE, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, + anon_sym_BQUOTE, + ACTIONS(6693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, + ACTIONS(6762), 1, + anon_sym_esac, + ACTIONS(6764), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 34, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7022), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3086), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6760), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123774] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, anon_sym_DOLLAR, + ACTIONS(6677), 1, sym__special_character, + ACTIONS(6679), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6687), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, anon_sym_BQUOTE, + ACTIONS(6693), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6768), 1, + anon_sym_esac, + ACTIONS(6770), 1, + aux_sym_heredoc_redirect_token1, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7142), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [122247] = 3, + STATE(3109), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6766), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123872] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + sym__special_character, + ACTIONS(6679), 1, + anon_sym_DQUOTE, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, + anon_sym_BQUOTE, + ACTIONS(6693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, + ACTIONS(6774), 1, + anon_sym_esac, + ACTIONS(6776), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 38, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7173), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3110), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6772), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [123970] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, anon_sym_DOLLAR, + ACTIONS(6677), 1, sym__special_character, + ACTIONS(6679), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6687), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, anon_sym_BQUOTE, + ACTIONS(6693), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6780), 1, + anon_sym_esac, + ACTIONS(6782), 1, + aux_sym_heredoc_redirect_token1, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7215), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + STATE(3112), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6778), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124068] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + sym__special_character, + ACTIONS(6679), 1, + anon_sym_DQUOTE, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, + anon_sym_BQUOTE, + ACTIONS(6693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6786), 1, + anon_sym_esac, + ACTIONS(6788), 1, + aux_sym_heredoc_redirect_token1, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7219), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, sym_word, - [122297] = 3, - ACTIONS(71), 1, + ACTIONS(6663), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3113), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6784), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124166] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 15, + STATE(2324), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6709), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 27, + ACTIONS(1302), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -182285,39 +184550,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [124220] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, sym__special_character, + ACTIONS(6679), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6687), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, + anon_sym_BQUOTE, + ACTIONS(6693), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6792), 1, + anon_sym_esac, + ACTIONS(6794), 1, + aux_sym_heredoc_redirect_token1, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7371), 1, + sym_last_case_item, + ACTIONS(6661), 2, sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3149), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6790), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124318] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6677), 1, + sym__special_character, + ACTIONS(6679), 1, + anon_sym_DQUOTE, + ACTIONS(6681), 1, + anon_sym_SQUOTE, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6687), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6691), 1, + anon_sym_BQUOTE, + ACTIONS(6693), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6798), 1, + anon_sym_esac, + ACTIONS(6800), 1, + aux_sym_heredoc_redirect_token1, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7519), 1, + sym_last_case_item, + ACTIONS(6661), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(6663), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6695), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122347] = 6, + STATE(3165), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + ACTIONS(6796), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [124416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, - aux_sym_concatenation_token1, - ACTIONS(5609), 1, - sym__concat, - STATE(2303), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5167), 5, + ACTIONS(6802), 1, + sym__special_character, + STATE(2372), 1, + aux_sym__literal_repeat1, + ACTIONS(5442), 5, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 34, + ACTIONS(5440), 35, anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -182330,9 +184736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -182342,24 +184747,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [122403] = 6, + [124470] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1336), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1338), 28, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [124520] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5579), 1, + ACTIONS(5889), 1, aux_sym_concatenation_token1, - ACTIONS(5609), 1, + ACTIONS(5951), 1, sym__concat, - STATE(2304), 1, + STATE(2359), 1, aux_sym_concatenation_repeat1, - ACTIONS(5175), 5, + ACTIONS(5501), 5, sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 34, + ACTIONS(5499), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -182382,7 +184833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -182394,57 +184845,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - [122459] = 3, - ACTIONS(71), 1, + [124576] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 15, + ACTIONS(1368), 14, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1342), 27, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1370), 28, sym__concat, sym_test_operator, - sym__bare_dollar, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [122509] = 3, - ACTIONS(71), 1, + [124626] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(1384), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182459,7 +184910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1334), 28, + ACTIONS(1386), 28, sym__concat, sym_test_operator, anon_sym_RPAREN_RPAREN, @@ -182488,10 +184939,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [122559] = 3, - ACTIONS(71), 1, + [124676] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(1368), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -182506,7 +184957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1354), 28, + ACTIONS(1370), 28, sym__concat, sym_test_operator, anon_sym_RPAREN_RPAREN, @@ -182535,10 +184986,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [122609] = 3, - ACTIONS(71), 1, + [124726] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 15, + ACTIONS(1344), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -182554,7 +185005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 27, + ACTIONS(1346), 27, sym_file_descriptor, sym__concat, sym_test_operator, @@ -182576,121 +185027,116 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122659] = 3, - ACTIONS(71), 1, + [124776] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, - anon_sym_EQ, + ACTIONS(1348), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 28, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1350), 27, + sym_file_descriptor, sym__concat, sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [122709] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6471), 1, sym__special_character, - STATE(2345), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 4, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [124826] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1304), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 27, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 36, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [122763] = 5, - ACTIONS(71), 1, + [124876] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2413), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6474), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5315), 13, + ACTIONS(1352), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -182700,10 +185146,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5317), 25, + ACTIONS(1354), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -182718,117 +185165,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122816] = 26, - ACTIONS(3), 1, + [124926] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6484), 1, - anon_sym_esac, - ACTIONS(6486), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(6488), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, + ACTIONS(1360), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6492), 1, - sym__special_character, - ACTIONS(6494), 1, - anon_sym_DQUOTE, - ACTIONS(6496), 1, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, anon_sym_BQUOTE, - ACTIONS(6506), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, + sym_word, + ACTIONS(1362), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, + sym__bare_dollar, sym__brace_start, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6931), 1, - sym_last_case_item, - ACTIONS(6478), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3377), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6480), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [122911] = 6, - ACTIONS(71), 1, + [124976] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6516), 1, - aux_sym_concatenation_token1, - ACTIONS(6518), 1, - sym__concat, - STATE(2422), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 14, + ACTIONS(1364), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1268), 24, + ACTIONS(1366), 27, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -182837,72 +185259,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [122966] = 3, - ACTIONS(71), 1, + [125026] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 14, - anon_sym_EQ, + ACTIONS(1356), 15, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1306), 27, - 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [123015] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2413), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6474), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5165), 13, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -182912,10 +185287,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5167), 25, + ACTIONS(1358), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -182930,35 +185306,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123068] = 3, + [125076] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 5, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(6804), 1, + sym__concat, + STATE(1382), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 36, + ACTIONS(1294), 34, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -182968,12 +185348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -182984,36 +185365,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [123117] = 3, - ACTIONS(71), 1, + [125132] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1251), 15, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(6806), 1, + sym__concat, + STATE(1382), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1258), 26, + [125188] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, + sym__concat, + STATE(2355), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -183021,36 +185451,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123166] = 3, + sym_word, + [125244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(6808), 1, + sym__concat, + STATE(1397), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 37, + ACTIONS(1294), 34, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -183065,7 +185503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -183075,158 +185513,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, - [123215] = 26, + [125300] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(6810), 1, + sym__concat, + STATE(1397), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6492), 1, sym__special_character, - ACTIONS(6494), 1, anon_sym_DQUOTE, - ACTIONS(6496), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, anon_sym_BQUOTE, - ACTIONS(6506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(6522), 1, - anon_sym_esac, - ACTIONS(6524), 1, - aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7523), 1, - sym_last_case_item, - ACTIONS(6478), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3332), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(6520), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123310] = 26, + [125356] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(5951), 1, + sym__concat, + STATE(2358), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6492), 1, sym__special_character, - ACTIONS(6494), 1, anon_sym_DQUOTE, - ACTIONS(6496), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, anon_sym_BQUOTE, - ACTIONS(6506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(6528), 1, - anon_sym_esac, - ACTIONS(6530), 1, - aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7284), 1, - sym_last_case_item, - ACTIONS(6478), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3333), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(6526), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123405] = 5, - ACTIONS(71), 1, + [125412] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2417), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6532), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5323), 14, + ACTIONS(1372), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -183235,12 +185633,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(5325), 24, + ACTIONS(1374), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -183252,29 +185650,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123458] = 5, - ACTIONS(71), 1, + [125462] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2418), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6532), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5327), 14, + ACTIONS(1388), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -183283,12 +185680,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(5329), 24, + ACTIONS(1390), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -183300,46 +185697,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123511] = 3, - ACTIONS(71), 1, + [125512] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(1324), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1334), 27, + ACTIONS(1326), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -183349,110 +185748,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123560] = 26, - ACTIONS(3), 1, + [125562] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, + ACTIONS(1328), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6492), 1, - sym__special_character, - ACTIONS(6494), 1, - anon_sym_DQUOTE, - ACTIONS(6496), 1, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, anon_sym_BQUOTE, - ACTIONS(6506), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, + sym_word, + ACTIONS(1330), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(6536), 1, - anon_sym_esac, - ACTIONS(6538), 1, - aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7316), 1, - sym_last_case_item, - ACTIONS(6478), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3402), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6534), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123655] = 6, - ACTIONS(3), 1, + [125612] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(5875), 1, - aux_sym_concatenation_token1, - ACTIONS(5877), 1, - sym__concat, - STATE(2378), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 4, + ACTIONS(6812), 1, + sym__special_character, + STATE(2365), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_LPAREN, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1396), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -183460,48 +185844,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [123710] = 6, - ACTIONS(3), 1, + [125666] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5875), 1, - aux_sym_concatenation_token1, - ACTIONS(5877), 1, - sym__concat, - STATE(2388), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5321), 4, + ACTIONS(1336), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 27, sym_file_descriptor, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -183509,33 +185890,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [123765] = 5, - ACTIONS(71), 1, + [125716] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2414), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6474), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5319), 13, + ACTIONS(1332), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -183545,10 +185918,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5321), 25, + ACTIONS(1334), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -183563,27 +185937,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123818] = 5, - ACTIONS(71), 1, + [125766] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2414), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6474), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5173), 13, + ACTIONS(1340), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -183593,10 +185965,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5175), 25, + ACTIONS(1342), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -183611,87 +185984,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [123871] = 26, - ACTIONS(3), 1, + [125816] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, + ACTIONS(1320), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6492), 1, - sym__special_character, - ACTIONS(6494), 1, - anon_sym_DQUOTE, - ACTIONS(6496), 1, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, anon_sym_BQUOTE, - ACTIONS(6506), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, + sym_word, + ACTIONS(1322), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(6542), 1, - anon_sym_esac, - ACTIONS(6544), 1, - aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7203), 1, - sym_last_case_item, - ACTIONS(6478), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3443), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6540), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [123966] = 3, - ACTIONS(71), 1, + [125866] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(1332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -183706,10 +186058,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1278), 27, + ACTIONS(1334), 28, sym__concat, sym_test_operator, anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -183734,84 +186087,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_COLON, aux_sym_concatenation_token1, - [124015] = 5, - ACTIONS(71), 1, + [125916] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2512), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, + ACTIONS(1376), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1378), 27, + sym_file_descriptor, sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(1272), 14, - anon_sym_EQ, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [125966] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6815), 1, + sym__special_character, + STATE(2372), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 5, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1394), 35, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 24, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [126020] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1380), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1382), 27, + sym_file_descriptor, + sym__concat, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, - [124068] = 3, - ACTIONS(71), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [126070] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1368), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 27, + ACTIONS(1370), 27, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -183821,26 +186269,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124117] = 5, - ACTIONS(71), 1, + [126120] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2417), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6532), 2, + ACTIONS(1384), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1386), 27, + sym_file_descriptor, sym__concat, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(1272), 14, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [126170] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 15, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -183849,12 +186342,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1274), 24, + ACTIONS(1370), 27, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -183866,78 +186359,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124170] = 6, - ACTIONS(71), 1, + [126220] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1376), 1, + ACTIONS(1302), 5, + sym_file_descriptor, sym_test_operator, - STATE(2528), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(6548), 14, - anon_sym_EQ, + sym__brace_start, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 37, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6546), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [124225] = 5, - ACTIONS(71), 1, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [126270] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6550), 1, + ACTIONS(6818), 1, sym__special_character, - STATE(2370), 1, + STATE(2365), 1, aux_sym__literal_repeat1, - ACTIONS(1360), 14, + ACTIONS(247), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -183947,7 +186441,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1362), 25, + ACTIONS(286), 25, sym_file_descriptor, sym_test_operator, sym__bare_dollar, @@ -183966,96 +186460,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124278] = 5, - ACTIONS(71), 1, + [126324] = 5, + ACTIONS(3), 1, sym_comment, - STATE(2480), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1157), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1272), 14, - anon_sym_EQ, + ACTIONS(6820), 1, + sym__special_character, + STATE(2379), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1394), 36, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 24, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [126378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 4, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 38, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - [124331] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6516), 1, - aux_sym_concatenation_token1, - ACTIONS(6553), 1, - sym__concat, - STATE(2422), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(1288), 24, + [126428] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, + sym__concat, + STATE(2355), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5440), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -184063,145 +186599,186 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124386] = 5, - ACTIONS(71), 1, + sym_word, + [126484] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2348), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6516), 2, - sym__concat, + ACTIONS(5873), 1, aux_sym_concatenation_token1, - ACTIONS(5315), 14, + ACTIONS(5887), 1, + sym__concat, + STATE(2356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5538), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(5317), 24, + [126540] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(5951), 1, + sym__concat, + STATE(2358), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5527), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5525), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124439] = 26, + aux_sym__simple_variable_name_token1, + sym_word, + [126596] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(5889), 1, + aux_sym_concatenation_token1, + ACTIONS(5951), 1, + sym__concat, + STATE(2359), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5531), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5529), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6492), 1, sym__special_character, - ACTIONS(6494), 1, anon_sym_DQUOTE, - ACTIONS(6496), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, anon_sym_BQUOTE, - ACTIONS(6506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(6557), 1, - anon_sym_esac, - ACTIONS(6559), 1, - aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7226), 1, - sym_last_case_item, - ACTIONS(6478), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3446), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(6555), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [124534] = 6, + [126652] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, + ACTIONS(5873), 1, aux_sym_concatenation_token1, - ACTIONS(6561), 1, + ACTIONS(5887), 1, sym__concat, - STATE(1544), 1, + STATE(2356), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(2156), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 34, + ACTIONS(2154), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -184219,12 +186796,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -184234,39 +186812,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [124589] = 3, - ACTIONS(71), 1, + [126708] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, + sym__concat, + STATE(2355), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(4971), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(1342), 27, - sym_file_descriptor, + [126764] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(2356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5015), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -184274,45 +186899,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124638] = 3, - ACTIONS(71), 1, + sym_word, + [126820] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, + sym__concat, + STATE(2356), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 5, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(2158), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1294), 27, - sym_file_descriptor, + [126876] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5873), 1, + aux_sym_concatenation_token1, + ACTIONS(5887), 1, sym__concat, + STATE(2355), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 5, + sym_file_descriptor, sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5044), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, @@ -184320,29 +186999,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124687] = 6, + sym_word, + [126932] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, + ACTIONS(5873), 1, aux_sym_concatenation_token1, - ACTIONS(6563), 1, + ACTIONS(5887), 1, sym__concat, - STATE(1612), 1, + STATE(2356), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(5050), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 34, + ACTIONS(5048), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -184366,7 +187052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -184377,21 +187063,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [124742] = 6, + [126988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, + ACTIONS(5873), 1, aux_sym_concatenation_token1, - ACTIONS(6565), 1, + ACTIONS(5887), 1, sym__concat, - STATE(1544), 1, + STATE(2355), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(5495), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 34, + ACTIONS(5493), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -184409,12 +187096,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -184424,23 +187112,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, - [124797] = 6, + [127044] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, + ACTIONS(5873), 1, aux_sym_concatenation_token1, - ACTIONS(5865), 1, + ACTIONS(5887), 1, sym__concat, - STATE(2375), 1, + STATE(2356), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(5501), 5, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 34, + ACTIONS(5499), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -184458,12 +187146,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -184473,17 +187162,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [124852] = 5, - ACTIONS(71), 1, + [127100] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2372), 1, + ACTIONS(1380), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1382), 28, + sym__concat, + sym_test_operator, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [127150] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2448), 1, aux_sym_concatenation_repeat1, - ACTIONS(6516), 2, + ACTIONS(6823), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5319), 14, + ACTIONS(4971), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(4973), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127203] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1340), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184498,8 +187276,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5321), 24, + ACTIONS(1342), 27, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -184516,17 +187296,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124905] = 3, - ACTIONS(71), 1, + [127252] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 14, + ACTIONS(1320), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -184541,7 +187322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 27, + ACTIONS(1322), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -184563,26 +187344,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [124954] = 5, - ACTIONS(71), 1, + [127301] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6567), 1, - sym__special_character, - STATE(2370), 1, - aux_sym__literal_repeat1, - ACTIONS(4577), 14, + STATE(2449), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6823), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5499), 13, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -184590,11 +187370,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4579), 25, + ACTIONS(5501), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -184609,46 +187390,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125007] = 5, - ACTIONS(71), 1, + [127354] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6567), 1, + ACTIONS(1376), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, sym__special_character, - STATE(2370), 1, - aux_sym__literal_repeat1, - ACTIONS(4500), 14, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1378), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127403] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1348), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4502), 25, + ACTIONS(1350), 27, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -184657,18 +187482,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [127452] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1304), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125060] = 3, - ACTIONS(71), 1, + [127501] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 14, + STATE(2478), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -184683,8 +187559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1314), 27, - sym__concat, + ACTIONS(1302), 24, sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, @@ -184706,200 +187581,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [125109] = 26, - ACTIONS(3), 1, + sym__special_character, + [127554] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, + ACTIONS(1380), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6492), 1, sym__special_character, - ACTIONS(6494), 1, - anon_sym_DQUOTE, - ACTIONS(6496), 1, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, anon_sym_BQUOTE, - ACTIONS(6506), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, + sym_word, + ACTIONS(1382), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, sym__brace_start, - ACTIONS(6571), 1, - anon_sym_esac, - ACTIONS(6573), 1, - aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6875), 1, - sym_last_case_item, - ACTIONS(6478), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3344), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6569), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125204] = 26, - ACTIONS(3), 1, + [127603] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6492), 1, + ACTIONS(6825), 1, sym__special_character, - ACTIONS(6494), 1, - anon_sym_DQUOTE, - ACTIONS(6496), 1, + STATE(2421), 1, + aux_sym__literal_repeat1, + ACTIONS(4971), 14, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, - anon_sym_BQUOTE, - ACTIONS(6506), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, + sym_word, + ACTIONS(4973), 25, + sym_file_descriptor, sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(6577), 1, - anon_sym_esac, - ACTIONS(6579), 1, - aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6887), 1, - sym_last_case_item, - ACTIONS(6478), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3352), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6575), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [125299] = 6, - ACTIONS(3), 1, + [127656] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(5875), 1, - aux_sym_concatenation_token1, - ACTIONS(6581), 1, - sym__concat, - STATE(1612), 1, + STATE(2441), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(6827), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5499), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5501), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [125354] = 3, - ACTIONS(71), 1, + [127709] = 3, + ACTIONS(73), 1, sym_comment, ACTIONS(1352), 14, anon_sym_PIPE, @@ -184938,27 +187766,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125403] = 6, + [127758] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5875), 1, + ACTIONS(6113), 1, aux_sym_concatenation_token1, - ACTIONS(5877), 1, + ACTIONS(6115), 1, sym__concat, - STATE(2378), 1, + STATE(2424), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(5442), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 34, + ACTIONS(5440), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -184982,7 +187810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -184993,58 +187821,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [125458] = 5, - ACTIONS(71), 1, + [127813] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2417), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6532), 2, - sym__concat, + ACTIONS(6113), 1, aux_sym_concatenation_token1, - ACTIONS(5165), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(5167), 24, + ACTIONS(6115), 1, + sym__concat, + STATE(2426), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 4, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5538), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125511] = 3, - ACTIONS(71), 1, + sym_word, + [127868] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1360), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185059,7 +187888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 27, + ACTIONS(1362), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -185081,69 +187910,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125560] = 5, - ACTIONS(71), 1, + [127917] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2418), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6532), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5173), 14, + ACTIONS(1348), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(5175), 24, - sym_file_descriptor, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1350), 27, + sym__concat, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [125613] = 5, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [127966] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2413), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6474), 2, + ACTIONS(1304), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 27, sym__concat, + sym_test_operator, + anon_sym_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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, - ACTIONS(4426), 13, + [128015] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1364), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185152,13 +188020,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4428), 25, + ACTIONS(1366), 27, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -185167,6 +188037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -185175,22 +188046,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125666] = 5, - ACTIONS(71), 1, + [128064] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1087), 1, - aux_sym_concatenation_token1, - STATE(2456), 1, + STATE(2510), 1, aux_sym_concatenation_repeat1, - ACTIONS(1272), 15, + ACTIONS(1175), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185206,8 +188078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, sym__special_character, - ACTIONS(1274), 24, - sym__concat, + ACTIONS(1302), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -185231,19 +188102,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [125719] = 5, - ACTIONS(71), 1, + [128117] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2414), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6474), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4511), 13, + ACTIONS(6825), 1, + sym__special_character, + STATE(2421), 1, + aux_sym__literal_repeat1, + ACTIONS(5044), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -185251,12 +188123,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(4513), 25, + ACTIONS(5046), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -185271,163 +188142,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125772] = 3, - ACTIONS(71), 1, + [128170] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(6172), 1, + aux_sym_concatenation_token1, + ACTIONS(6829), 1, + sym__concat, + STATE(1645), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1294), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 27, - sym_file_descriptor, + [128225] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6172), 1, + aux_sym_concatenation_token1, + ACTIONS(6831), 1, sym__concat, - sym_variable_name, + STATE(1645), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125821] = 5, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [128280] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2485), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, + ACTIONS(6172), 1, aux_sym_concatenation_token1, - ACTIONS(1272), 14, - anon_sym_EQ, + ACTIONS(6186), 1, + sym__concat, + STATE(2414), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 24, - 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, - [125874] = 3, - ACTIONS(71), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_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, + [128335] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, + ACTIONS(1368), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 27, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1370), 27, + sym_file_descriptor, sym__concat, + sym_variable_name, 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [125923] = 5, - ACTIONS(71), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [128384] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2414), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6474), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2171), 13, + ACTIONS(1384), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185436,13 +188355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(2173), 25, + ACTIONS(1386), 27, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -185451,6 +188372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -185459,18 +188381,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [125976] = 3, - ACTIONS(71), 1, + [128433] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1368), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185485,7 +188407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 27, + ACTIONS(1370), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -185507,23 +188429,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126025] = 3, - ACTIONS(71), 1, + [128482] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 15, + STATE(2449), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6823), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2154), 13, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_LPAREN, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -185531,11 +188455,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 26, + ACTIONS(2156), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -185552,43 +188477,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126074] = 3, - ACTIONS(71), 1, + [128535] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(6833), 1, + sym__special_character, + STATE(2421), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 27, + ACTIONS(1396), 25, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -185597,23 +188523,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126123] = 5, - ACTIONS(71), 1, + [128588] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2510), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1087), 2, - sym__concat, + ACTIONS(1175), 1, aux_sym_concatenation_token1, - ACTIONS(1272), 15, + STATE(2532), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1300), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -185629,7 +188554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, sym__special_character, - ACTIONS(1274), 23, + ACTIONS(1302), 24, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -185653,39 +188579,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [126176] = 5, - ACTIONS(71), 1, + [128641] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2348), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6516), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1272), 14, + ACTIONS(6825), 1, + sym__special_character, + STATE(2421), 1, + aux_sym__literal_repeat1, + ACTIONS(5147), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 24, + ACTIONS(5149), 25, sym_file_descriptor, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -185695,165 +188620,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126229] = 26, + [128694] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, + ACTIONS(6113), 1, + aux_sym_concatenation_token1, + ACTIONS(6836), 1, + sym__concat, + STATE(1767), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1294), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6492), 1, sym__special_character, - ACTIONS(6494), 1, anon_sym_DQUOTE, - ACTIONS(6496), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, anon_sym_BQUOTE, - ACTIONS(6506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(6585), 1, - anon_sym_esac, - ACTIONS(6587), 1, - aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7459), 1, - sym_last_case_item, - ACTIONS(6478), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3239), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(6583), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126324] = 26, - ACTIONS(3), 1, + [128749] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6482), 1, + ACTIONS(1300), 15, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, + anon_sym_EQ_TILDE, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6492), 1, - sym__special_character, - ACTIONS(6494), 1, - anon_sym_DQUOTE, - ACTIONS(6496), 1, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, - anon_sym_BQUOTE, - ACTIONS(6506), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, + sym_word, + ACTIONS(1302), 26, + sym_file_descriptor, sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, + sym__bare_dollar, sym__brace_start, - ACTIONS(6591), 1, - anon_sym_esac, - ACTIONS(6593), 1, - aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7290), 1, - sym_last_case_item, - ACTIONS(6478), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3188), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6589), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126419] = 6, + [128798] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, + ACTIONS(6113), 1, aux_sym_concatenation_token1, - ACTIONS(5865), 1, + ACTIONS(6838), 1, sym__concat, - STATE(2375), 1, + STATE(1767), 1, aux_sym_concatenation_repeat1, - ACTIONS(5509), 4, + ACTIONS(1316), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5507), 34, + ACTIONS(1314), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -185871,12 +188754,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -185886,23 +188770,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, - [126474] = 6, + [128853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5805), 1, + ACTIONS(6113), 1, aux_sym_concatenation_token1, - ACTIONS(5865), 1, + ACTIONS(6115), 1, sym__concat, - STATE(2379), 1, + STATE(2424), 1, aux_sym_concatenation_repeat1, - ACTIONS(5515), 4, + ACTIONS(1302), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5513), 34, + ACTIONS(1300), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -185920,12 +188803,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -185935,17 +188819,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - [126529] = 5, - ACTIONS(71), 1, + [128908] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2413), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6474), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4577), 13, + ACTIONS(1356), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -185954,13 +188832,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4579), 25, + ACTIONS(1358), 27, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -185969,6 +188849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -185977,188 +188858,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126582] = 3, - ACTIONS(71), 1, + [128957] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 14, + ACTIONS(1372), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1318), 27, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1374), 27, sym__concat, - sym_variable_name, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [126631] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6492), 1, - sym__special_character, - ACTIONS(6494), 1, - anon_sym_DQUOTE, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, - anon_sym_BQUOTE, - ACTIONS(6506), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(6597), 1, - anon_sym_esac, - ACTIONS(6599), 1, - aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7373), 1, - sym_last_case_item, - ACTIONS(6478), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3278), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6595), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126726] = 6, - ACTIONS(71), 1, + [129006] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6474), 1, - aux_sym_concatenation_token1, - ACTIONS(6601), 1, - sym__concat, - STATE(2423), 1, + STATE(2613), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 13, + ACTIONS(1101), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1268), 25, - sym_file_descriptor, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1302), 24, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [126781] = 6, - ACTIONS(71), 1, + [129059] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6474), 1, - aux_sym_concatenation_token1, - ACTIONS(6603), 1, - sym__concat, - STATE(2423), 1, + STATE(2453), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 13, + ACTIONS(6840), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5440), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186167,14 +188977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1288), 25, + ACTIONS(5442), 24, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -186182,6 +188992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -186190,18 +189001,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126836] = 3, - ACTIONS(71), 1, + [129112] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1344), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1346), 27, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [129161] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2455), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6840), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5538), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186216,10 +189077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 27, + ACTIONS(5540), 24, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -186236,142 +189095,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [126885] = 26, + [129214] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6492), 1, - sym__special_character, - ACTIONS(6494), 1, - anon_sym_DQUOTE, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, - anon_sym_BQUOTE, - ACTIONS(6506), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, + ACTIONS(1302), 5, + sym_file_descriptor, sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, sym__brace_start, - ACTIONS(6607), 1, - anon_sym_esac, - ACTIONS(6609), 1, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7296), 1, - sym_last_case_item, - ACTIONS(6478), 2, + ACTIONS(1300), 36, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3189), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6605), 3, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [126980] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6532), 1, - aux_sym_concatenation_token1, - ACTIONS(6611), 1, - sym__concat, - STATE(2420), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1268), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127035] = 6, - ACTIONS(71), 1, + sym_word, + [129263] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6532), 1, - aux_sym_concatenation_token1, - ACTIONS(6613), 1, - sym__concat, - STATE(2420), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, + ACTIONS(1372), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186380,14 +189160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1288), 24, + ACTIONS(1374), 27, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -186396,78 +189177,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127090] = 5, - ACTIONS(71), 1, + [129312] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2414), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6474), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4593), 13, + ACTIONS(1364), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4595), 25, - sym_file_descriptor, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1366), 27, + sym__concat, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [127143] = 5, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [129361] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2420), 1, + STATE(2476), 1, aux_sym_concatenation_repeat1, - ACTIONS(6615), 2, + ACTIONS(6827), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1276), 14, + ACTIONS(5493), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186482,7 +189263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 24, + ACTIONS(5495), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -186501,16 +189282,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127196] = 3, - ACTIONS(71), 1, + [129414] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 14, + ACTIONS(1403), 1, + sym_test_operator, + STATE(2548), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6844), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186525,10 +189313,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1318), 27, - sym__concat, - sym_test_operator, + ACTIONS(6842), 23, anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -186548,20 +189335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [127245] = 5, - ACTIONS(71), 1, + [129469] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2422), 1, + STATE(2449), 1, aux_sym_concatenation_repeat1, - ACTIONS(6618), 2, + ACTIONS(6823), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1276), 14, + ACTIONS(5015), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186570,14 +189354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 24, + ACTIONS(5017), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -186585,7 +189369,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -186594,22 +189377,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127298] = 5, - ACTIONS(71), 1, + [129522] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2423), 1, + STATE(2448), 1, aux_sym_concatenation_repeat1, - ACTIONS(6621), 2, + ACTIONS(6823), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1276), 13, + ACTIONS(5044), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -186623,7 +189407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 25, + ACTIONS(5046), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -186643,21 +189427,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [129575] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6827), 1, + aux_sym_concatenation_token1, + ACTIONS(6846), 1, + sym__concat, + STATE(2446), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1316), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127351] = 5, - ACTIONS(71), 1, + [129630] = 6, + ACTIONS(73), 1, sym_comment, - STATE(2507), 1, + ACTIONS(1403), 1, + sym_test_operator, + STATE(2548), 1, aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, + ACTIONS(1133), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1272), 15, + ACTIONS(6850), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186672,9 +189507,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1274), 23, - sym_test_operator, + ACTIONS(6848), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -186694,22 +189529,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [127404] = 5, - ACTIONS(71), 1, + [129685] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6567), 1, - sym__special_character, - STATE(2370), 1, - aux_sym__literal_repeat1, - ACTIONS(4504), 14, + ACTIONS(1279), 15, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_LPAREN, anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, @@ -186719,7 +189550,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4506), 25, + ACTIONS(1286), 26, sym_file_descriptor, sym_test_operator, sym__bare_dollar, @@ -186737,94 +189568,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [127457] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6492), 1, sym__special_character, - ACTIONS(6494), 1, anon_sym_DQUOTE, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, anon_sym_BQUOTE, - ACTIONS(6506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(6626), 1, - anon_sym_esac, - ACTIONS(6628), 1, - aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6905), 1, - sym_last_case_item, - ACTIONS(6478), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3440), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6624), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127552] = 6, - ACTIONS(71), 1, + [129734] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1376), 1, - sym_test_operator, - STATE(2528), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(6632), 14, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -186839,9 +189595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6630), 23, + ACTIONS(1358), 27, + sym__concat, + sym_test_operator, anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -186861,150 +189618,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [127607] = 26, + anon_sym_COLON, + aux_sym_concatenation_token1, + [129783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6492), 1, - sym__special_character, - ACTIONS(6494), 1, - anon_sym_DQUOTE, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, - anon_sym_BQUOTE, - ACTIONS(6506), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, + ACTIONS(1302), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, sym__brace_start, - ACTIONS(6636), 1, - anon_sym_esac, - ACTIONS(6638), 1, aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7345), 1, - sym_last_case_item, - ACTIONS(6478), 2, + ACTIONS(1300), 37, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3190), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6634), 3, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127702] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6492), 1, sym__special_character, - ACTIONS(6494), 1, anon_sym_DQUOTE, - ACTIONS(6496), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, anon_sym_BQUOTE, - ACTIONS(6506), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(6642), 1, - anon_sym_esac, - ACTIONS(6644), 1, - aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7352), 1, - sym_last_case_item, - ACTIONS(6478), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3191), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, sym_word, - ACTIONS(6640), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [127797] = 3, - ACTIONS(71), 1, + [129832] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + STATE(2446), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6852), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187013,15 +189686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1358), 27, + ACTIONS(1306), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -187030,27 +189702,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127846] = 3, - ACTIONS(71), 1, + [129885] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 14, + STATE(2508), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 15, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + sym__special_character, + ACTIONS(1302), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [129938] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6823), 1, + aux_sym_concatenation_token1, + ACTIONS(6855), 1, + sym__concat, + STATE(2451), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187059,15 +189783,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1346), 27, + ACTIONS(1296), 25, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -187076,7 +189798,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -187085,23 +189806,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127895] = 5, - ACTIONS(71), 1, + [129993] = 6, + ACTIONS(73), 1, sym_comment, - STATE(2413), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6474), 2, - sym__concat, + ACTIONS(6823), 1, aux_sym_concatenation_token1, - ACTIONS(1272), 13, + ACTIONS(6857), 1, + sym__concat, + STATE(2451), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187115,7 +189837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 25, + ACTIONS(1316), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -187135,62 +189857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [127948] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1296), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1298), 27, - sym__concat, - sym_test_operator, - anon_sym_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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [127997] = 3, - ACTIONS(71), 1, + [130048] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(1388), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187205,7 +189881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 27, + ACTIONS(1390), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -187227,26 +189903,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128046] = 5, - ACTIONS(71), 1, + [130097] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6567), 1, - sym__special_character, - STATE(2370), 1, - aux_sym__literal_repeat1, - ACTIONS(4426), 14, + STATE(2451), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6859), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 13, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -187254,11 +189929,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4428), 25, + ACTIONS(1306), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -187273,18 +189949,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128099] = 3, - ACTIONS(71), 1, + [130150] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + STATE(2448), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6823), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187293,15 +189974,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 27, + ACTIONS(1302), 25, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -187310,7 +189989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -187319,87 +189997,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128148] = 26, - ACTIONS(3), 1, + [130203] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6488), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(6490), 1, + ACTIONS(6840), 1, + aux_sym_concatenation_token1, + ACTIONS(6862), 1, + sym__concat, + STATE(2457), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6492), 1, sym__special_character, - ACTIONS(6494), 1, - anon_sym_DQUOTE, - ACTIONS(6496), 1, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6500), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6504), 1, anon_sym_BQUOTE, - ACTIONS(6506), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(6510), 1, + sym_word, + ACTIONS(1296), 24, + sym_file_descriptor, sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, sym__brace_start, - ACTIONS(6648), 1, - anon_sym_esac, - ACTIONS(6650), 1, - aux_sym_heredoc_redirect_token1, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6978), 1, - sym_last_case_item, - ACTIONS(6478), 2, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(6508), 2, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3441), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - ACTIONS(6476), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(6646), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [128243] = 3, - ACTIONS(71), 1, + [130258] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 14, + STATE(2476), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6827), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5525), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187408,15 +190071,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1326), 27, + ACTIONS(5527), 24, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -187425,27 +190087,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128292] = 3, - ACTIONS(71), 1, + [130311] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 14, + ACTIONS(6840), 1, + aux_sym_concatenation_token1, + ACTIONS(6864), 1, + sym__concat, + STATE(2457), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187460,10 +190126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 27, + ACTIONS(1316), 24, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -187480,69 +190144,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128341] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1310), 27, - sym__concat, - sym_test_operator, - anon_sym_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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - aux_sym_concatenation_token1, - [128390] = 5, - ACTIONS(71), 1, + [130366] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2414), 1, + STATE(2441), 1, aux_sym_concatenation_repeat1, - ACTIONS(6474), 2, + ACTIONS(6827), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2167), 13, + ACTIONS(5529), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187555,8 +190172,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(2169), 25, + ACTIONS(5531), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -187571,21 +190189,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128443] = 3, - ACTIONS(71), 1, + [130419] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 14, + STATE(2457), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6866), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187600,10 +190222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 27, + ACTIONS(1306), 24, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -187620,18 +190240,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128492] = 3, - ACTIONS(71), 1, + [130472] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 14, + STATE(2453), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6840), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187646,9 +190270,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 26, + ACTIONS(1302), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -187665,43 +190288,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128540] = 3, - ACTIONS(71), 1, + [130525] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 14, + STATE(2516), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1302), 24, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + sym__special_character, + [130578] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6825), 1, + sym__special_character, + STATE(2421), 1, + aux_sym__literal_repeat1, + ACTIONS(5034), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 26, + ACTIONS(5036), 25, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -187710,18 +190383,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128588] = 3, - ACTIONS(71), 1, + [130631] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(1324), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187736,9 +190409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1342), 26, + ACTIONS(1326), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -187757,16 +190431,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128636] = 3, - ACTIONS(71), 1, + [130680] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1328), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187781,9 +190455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 26, + ACTIONS(1330), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -187802,16 +190477,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128684] = 3, - ACTIONS(71), 1, + [130729] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 14, + STATE(2449), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6823), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5048), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187820,15 +190500,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 26, + ACTIONS(5050), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -187836,7 +190515,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -187845,18 +190523,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128732] = 3, - ACTIONS(71), 1, + [130782] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 14, + STATE(2448), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6823), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5440), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187869,11 +190552,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1294), 26, + ACTIONS(5442), 25, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -187887,66 +190568,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128780] = 3, - ACTIONS(71), 1, + [130835] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(6172), 1, + aux_sym_concatenation_token1, + ACTIONS(6186), 1, + sym__concat, + STATE(2414), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5789), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5787), 34, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_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(1354), 26, - sym_file_descriptor, + [130890] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6172), 1, + aux_sym_concatenation_token1, + ACTIONS(6186), 1, sym__concat, + STATE(2415), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5793), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5791), 34, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128828] = 3, - ACTIONS(71), 1, + aux_sym__simple_variable_name_token1, + sym_word, + [130945] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1352), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1354), 27, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + aux_sym_concatenation_token1, + [130994] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1336), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -187961,9 +190741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 26, + ACTIONS(1338), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -187982,16 +190763,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128876] = 3, - ACTIONS(71), 1, + [131043] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 14, + STATE(2449), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6823), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5538), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188000,15 +190786,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1346), 26, + ACTIONS(5540), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -188016,7 +190801,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -188025,18 +190809,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128924] = 3, - ACTIONS(71), 1, + [131096] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1344), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188051,9 +190835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 26, + ACTIONS(1346), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -188072,16 +190857,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [128972] = 3, - ACTIONS(71), 1, + [131145] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 14, + STATE(2448), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6823), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5493), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188094,11 +190884,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1350), 26, + ACTIONS(5495), 25, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -188112,27 +190900,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129020] = 6, - ACTIONS(71), 1, + [131198] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6652), 1, - aux_sym_concatenation_token1, - ACTIONS(6654), 1, - sym__concat, - STATE(2458), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 13, + ACTIONS(1332), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188141,13 +190923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1268), 24, + ACTIONS(1334), 27, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -188155,6 +190940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -188163,24 +190949,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129074] = 6, - ACTIONS(71), 1, + [131247] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6652), 1, - aux_sym_concatenation_token1, - ACTIONS(6656), 1, - sym__concat, - STATE(2458), 1, + STATE(2449), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 13, + ACTIONS(6823), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2158), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188194,8 +190979,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1288), 24, + ACTIONS(2160), 25, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -188213,22 +190999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129128] = 6, - ACTIONS(71), 1, + [131300] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1087), 1, - aux_sym_concatenation_token1, - ACTIONS(6658), 1, - sym__concat, - STATE(2467), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 14, + ACTIONS(1360), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188243,8 +191023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1268), 23, + ACTIONS(1362), 27, + sym__concat, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -188264,19 +191046,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [129182] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + aux_sym_concatenation_token1, + [131349] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(4511), 14, + STATE(2476), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6827), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -188284,11 +191071,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4513), 26, + ACTIONS(1302), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -188300,27 +191089,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129230] = 5, - ACTIONS(71), 1, + [131402] = 6, + ACTIONS(73), 1, sym_comment, - STATE(2458), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6660), 2, - sym__concat, + ACTIONS(6827), 1, aux_sym_concatenation_token1, - ACTIONS(1276), 13, + ACTIONS(6869), 1, + sym__concat, + STATE(2446), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -188333,9 +191121,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(1278), 24, + ACTIONS(1296), 24, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -188348,27 +191138,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129282] = 6, - ACTIONS(71), 1, + [131457] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1087), 1, + ACTIONS(1133), 1, aux_sym_concatenation_token1, - ACTIONS(6663), 1, + ACTIONS(6871), 1, sym__concat, - STATE(2467), 1, + STATE(2299), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, + ACTIONS(1314), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188383,7 +191172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1288), 23, + ACTIONS(1316), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -188404,113 +191193,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [129336] = 5, - ACTIONS(71), 1, + [131511] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(6665), 1, - sym__special_character, - STATE(2540), 1, - aux_sym__literal_repeat1, - ACTIONS(5593), 12, + ACTIONS(1133), 1, + aux_sym_concatenation_token1, + ACTIONS(6873), 1, + sym__concat, + STATE(2299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5595), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [129388] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1352), 14, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1354), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1296), 23, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [129436] = 7, - ACTIONS(71), 1, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131565] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(1087), 1, + ACTIONS(1175), 1, aux_sym_concatenation_token1, - ACTIONS(6667), 1, + ACTIONS(6875), 1, anon_sym_RBRACK, - ACTIONS(6669), 1, + ACTIONS(6877), 1, sym__concat, - STATE(2459), 1, + STATE(2540), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 14, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188525,7 +191270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1376), 22, + ACTIONS(1403), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -188548,18 +191293,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [129492] = 7, - ACTIONS(71), 1, + [131621] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(1207), 1, + ACTIONS(1219), 1, anon_sym_RBRACK, - ACTIONS(6671), 1, + ACTIONS(6879), 1, sym__special_character, - ACTIONS(6673), 1, + ACTIONS(6881), 1, sym__concat, - STATE(2487), 1, + STATE(2617), 1, aux_sym__literal_repeat1, - ACTIONS(243), 14, + ACTIONS(249), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188574,7 +191319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(290), 22, + ACTIONS(298), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -188597,152 +191342,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [129548] = 3, - ACTIONS(71), 1, + [131677] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 14, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_EQ_TILDE, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4595), 26, + ACTIONS(6259), 1, + aux_sym_concatenation_token1, + ACTIONS(6883), 1, + sym__concat, + STATE(2056), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 4, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1294), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129596] = 5, - ACTIONS(71), 1, + sym_word, + [131731] = 6, + ACTIONS(3), 1, sym_comment, - STATE(2454), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6652), 2, - sym__concat, + ACTIONS(6259), 1, aux_sym_concatenation_token1, - ACTIONS(1272), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 24, + ACTIONS(6885), 1, + sym__concat, + STATE(2056), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129648] = 3, - ACTIONS(71), 1, + sym_word, + [131785] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 13, + STATE(2483), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6887), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1298), 27, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [131837] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6259), 1, + aux_sym_concatenation_token1, + ACTIONS(6261), 1, sym__concat, - sym_variable_name, + STATE(2481), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [129696] = 5, - ACTIONS(71), 1, + sym_word, + [131891] = 7, + ACTIONS(73), 1, sym_comment, - STATE(2467), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6675), 2, - sym__concat, + ACTIONS(1175), 1, aux_sym_concatenation_token1, - ACTIONS(1276), 14, + ACTIONS(6890), 1, + anon_sym_RBRACK, + ACTIONS(6892), 1, + sym__concat, + STATE(2540), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188757,7 +191559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1278), 23, + ACTIONS(1403), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -188778,13 +191580,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [129748] = 3, - ACTIONS(71), 1, + [131947] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(1183), 1, + anon_sym_RBRACK, + ACTIONS(6879), 1, + sym__special_character, + ACTIONS(6894), 1, + sym__concat, + STATE(2617), 1, + aux_sym__literal_repeat1, + ACTIONS(249), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188799,10 +191608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1326), 26, + ACTIONS(298), 22, sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -188822,14 +191629,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [129796] = 3, - ACTIONS(71), 1, + [132003] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 14, + ACTIONS(1175), 1, + aux_sym_concatenation_token1, + ACTIONS(6896), 1, + anon_sym_RBRACK, + ACTIONS(6898), 1, + sym__concat, + STATE(2540), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188844,10 +191657,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1350), 26, + ACTIONS(1403), 22, sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -188867,22 +191678,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [129844] = 7, - ACTIONS(71), 1, + [132059] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(1087), 1, - aux_sym_concatenation_token1, - ACTIONS(6678), 1, + ACTIONS(1203), 1, anon_sym_RBRACK, - ACTIONS(6680), 1, + ACTIONS(6879), 1, + sym__special_character, + ACTIONS(6900), 1, sym__concat, - STATE(2459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 14, + STATE(2617), 1, + aux_sym__literal_repeat1, + ACTIONS(249), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188897,7 +191706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1376), 22, + ACTIONS(298), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -188920,18 +191729,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [129900] = 7, - ACTIONS(71), 1, + [132115] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(1141), 1, + ACTIONS(1175), 1, + aux_sym_concatenation_token1, + ACTIONS(6902), 1, anon_sym_RBRACK, - ACTIONS(6671), 1, - sym__special_character, - ACTIONS(6682), 1, + ACTIONS(6904), 1, sym__concat, - STATE(2487), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, + STATE(2540), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -188946,7 +191755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(290), 22, + ACTIONS(1403), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -188969,55 +191778,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [129956] = 3, - ACTIONS(71), 1, + [132171] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(1215), 1, + anon_sym_RBRACK, + ACTIONS(6879), 1, + sym__special_character, + ACTIONS(6906), 1, + sym__concat, + STATE(2617), 1, + aux_sym__literal_repeat1, + ACTIONS(249), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 27, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(298), 22, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [130004] = 3, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [132227] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(1344), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189030,8 +191843,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 27, + ACTIONS(1346), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -189047,22 +191861,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130052] = 3, - ACTIONS(71), 1, + [132275] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + STATE(2548), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189077,9 +191895,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1334), 26, + ACTIONS(1403), 23, sym_test_operator, - sym_extglob_pattern, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -189100,14 +191917,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [130100] = 3, - ACTIONS(71), 1, + [132327] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(6908), 1, + sym__special_character, + STATE(2493), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1396), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132379] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189122,7 +191984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1354), 26, + ACTIONS(1370), 26, sym_test_operator, sym_extglob_pattern, anon_sym_RPAREN_RPAREN, @@ -189149,205 +192011,335 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [130148] = 6, - ACTIONS(3), 1, + [132427] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5977), 1, - aux_sym_concatenation_token1, - ACTIONS(6684), 1, - sym__concat, - STATE(1743), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(1348), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1350), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132475] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_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(1306), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [130202] = 6, - ACTIONS(3), 1, + [132523] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5977), 1, - aux_sym_concatenation_token1, - ACTIONS(6686), 1, - sym__concat, - STATE(1743), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1352), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1354), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132571] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1360), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_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(1362), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132619] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1364), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1366), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [130256] = 6, - ACTIONS(3), 1, + [132667] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(5977), 1, + ACTIONS(6911), 1, aux_sym_concatenation_token1, - ACTIONS(5991), 1, + ACTIONS(6913), 1, sym__concat, - STATE(2476), 1, + STATE(2503), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(1294), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1296), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [130310] = 3, - ACTIONS(71), 1, + [132721] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 14, - anon_sym_EQ, + ACTIONS(6911), 1, + aux_sym_concatenation_token1, + ACTIONS(6915), 1, + sym__concat, + STATE(2503), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1338), 26, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1316), 23, + sym_file_descriptor, sym_test_operator, - sym_extglob_pattern, - 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [130358] = 6, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [132775] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1157), 1, - aux_sym_concatenation_token1, - ACTIONS(6688), 1, - sym__concat, - STATE(2492), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 14, + ACTIONS(6879), 1, + sym__special_character, + STATE(2617), 1, + aux_sym__literal_repeat1, + ACTIONS(249), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189362,7 +192354,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1268), 23, + ACTIONS(298), 24, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -189383,18 +192376,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [130412] = 5, - ACTIONS(71), 1, + [132827] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2501), 1, + STATE(2503), 1, aux_sym_concatenation_repeat1, - ACTIONS(6690), 2, + ACTIONS(6917), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5315), 14, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189403,13 +192396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5317), 23, + ACTIONS(1306), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -189418,7 +192411,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -189426,22 +192418,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130464] = 5, - ACTIONS(71), 1, + [132879] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2502), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6690), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5319), 14, + ACTIONS(1356), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -189450,14 +192438,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5321), 23, + ACTIONS(1358), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -189465,7 +192455,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -189473,25 +192462,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [130516] = 7, - ACTIONS(71), 1, + [132927] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1087), 1, - aux_sym_concatenation_token1, - ACTIONS(6692), 1, - anon_sym_RBRACK, - ACTIONS(6694), 1, - sym__concat, - STATE(2459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 14, + ACTIONS(1384), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189506,8 +192489,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1376), 22, + ACTIONS(1386), 26, sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -189527,67 +192512,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [130572] = 7, - ACTIONS(71), 1, + anon_sym_COLON, + [132975] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1079), 1, - anon_sym_RBRACK, - ACTIONS(6671), 1, - sym__special_character, - ACTIONS(6696), 1, - sym__concat, - STATE(2487), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, - anon_sym_EQ, + ACTIONS(1372), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(290), 22, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1374), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130628] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1113), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(6698), 1, - sym__concat, - STATE(2279), 1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133023] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2616), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 14, + ACTIONS(1101), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189602,9 +192584,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1268), 23, + ACTIONS(1403), 23, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -189624,18 +192605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [130682] = 6, - ACTIONS(71), 1, + [133075] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1157), 1, + ACTIONS(1133), 1, aux_sym_concatenation_token1, - ACTIONS(6700), 1, + ACTIONS(6920), 1, sym__concat, - STATE(2492), 1, + STATE(2299), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, + ACTIONS(1294), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189650,7 +192632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1288), 23, + ACTIONS(1296), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -189671,17 +192653,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [130736] = 5, - ACTIONS(71), 1, + [133129] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6702), 1, - sym__special_character, - STATE(2487), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 14, + ACTIONS(1376), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189696,9 +192674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1362), 24, - sym__concat, + ACTIONS(1378), 26, sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -189718,21 +192697,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [130788] = 7, - ACTIONS(71), 1, + anon_sym_COLON, + [133177] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1087), 1, + ACTIONS(1175), 1, aux_sym_concatenation_token1, - ACTIONS(6705), 1, - anon_sym_RBRACK, - ACTIONS(6707), 1, + ACTIONS(6922), 1, sym__concat, - STATE(2459), 1, + STATE(2563), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 14, + ACTIONS(1294), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189747,7 +192725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1376), 22, + ACTIONS(1296), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -189768,20 +192746,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [130844] = 7, - ACTIONS(71), 1, + [133231] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1149), 1, - anon_sym_RBRACK, - ACTIONS(6671), 1, - sym__special_character, - ACTIONS(6709), 1, + ACTIONS(1175), 1, + aux_sym_concatenation_token1, + ACTIONS(6924), 1, sym__concat, - STATE(2487), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, + STATE(2563), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189796,7 +192773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(290), 22, + ACTIONS(1316), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -189817,157 +192794,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [130900] = 7, - ACTIONS(71), 1, + [133285] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1087), 1, - aux_sym_concatenation_token1, - ACTIONS(6711), 1, - anon_sym_RBRACK, - ACTIONS(6713), 1, - sym__concat, - STATE(2459), 1, + STATE(2500), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 14, - anon_sym_EQ, + ACTIONS(6911), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1376), 22, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1302), 23, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [130956] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1145), 1, - anon_sym_RBRACK, - ACTIONS(6671), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, - ACTIONS(6715), 1, - sym__concat, - STATE(2487), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, - anon_sym_EQ, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133337] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1388), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(290), 22, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1390), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131012] = 5, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133385] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2492), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6717), 2, + ACTIONS(1324), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1326), 26, + sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(1276), 14, - anon_sym_EQ, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133433] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1328), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1278), 23, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1330), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131064] = 3, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [133481] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1133), 1, + aux_sym_concatenation_token1, + ACTIONS(6926), 1, + sym__concat, + STATE(2299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -189982,10 +193003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 26, + ACTIONS(1296), 23, sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190005,14 +193024,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [131112] = 3, - ACTIONS(71), 1, + [133535] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(1133), 1, + aux_sym_concatenation_token1, + ACTIONS(6928), 1, + sym__concat, + STATE(2299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190027,10 +193051,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1346), 26, + ACTIONS(1316), 23, sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190050,14 +193072,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [131160] = 3, - ACTIONS(71), 1, + [133589] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1403), 1, + sym_test_operator, + STATE(2616), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1101), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(6844), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190072,10 +193100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 26, - sym_test_operator, - sym_extglob_pattern, - anon_sym_RPAREN_RPAREN, + ACTIONS(6842), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190095,14 +193120,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [131208] = 3, - ACTIONS(71), 1, + [133643] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(1336), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190115,8 +193139,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 27, + ACTIONS(1338), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -190132,72 +193157,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131256] = 3, - ACTIONS(71), 1, + [133691] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(6259), 1, + aux_sym_concatenation_token1, + ACTIONS(6261), 1, + sym__concat, + STATE(2481), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5440), 33, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1314), 27, - sym_file_descriptor, + [133745] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6259), 1, + aux_sym_concatenation_token1, + ACTIONS(6261), 1, sym__concat, - sym_variable_name, + STATE(2482), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5540), 4, + sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5538), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131304] = 5, - ACTIONS(71), 1, + sym_word, + [133799] = 6, + ACTIONS(73), 1, sym_comment, - STATE(2486), 1, + ACTIONS(1403), 1, + sym_test_operator, + STATE(2616), 1, aux_sym_concatenation_repeat1, - ACTIONS(1157), 2, + ACTIONS(1101), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1253), 14, + ACTIONS(6850), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190212,8 +193289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1376), 23, - sym_test_operator, + ACTIONS(6848), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190236,17 +193312,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [131356] = 6, - ACTIONS(71), 1, + [133853] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(1376), 1, - sym_test_operator, - STATE(2486), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1157), 2, - sym__concat, + ACTIONS(1175), 1, aux_sym_concatenation_token1, - ACTIONS(6632), 14, + ACTIONS(6930), 1, + anon_sym_RBRACK, + ACTIONS(6932), 1, + sym__concat, + STATE(2540), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190261,7 +193338,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6630), 22, + ACTIONS(1403), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190281,20 +193359,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [131410] = 6, - ACTIONS(71), 1, + [133909] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(1376), 1, - sym_test_operator, - STATE(2486), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1157), 2, + ACTIONS(1211), 1, + anon_sym_RBRACK, + ACTIONS(6879), 1, + sym__special_character, + ACTIONS(6934), 1, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(6548), 14, + STATE(2617), 1, + aux_sym__literal_repeat1, + ACTIONS(249), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190309,7 +193387,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6546), 22, + ACTIONS(298), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190329,19 +193408,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [131464] = 6, - ACTIONS(71), 1, + [133965] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6690), 1, + ACTIONS(1175), 1, aux_sym_concatenation_token1, - ACTIONS(6720), 1, - sym__concat, - STATE(2504), 1, + STATE(2540), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 14, + ACTIONS(1281), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1403), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [134017] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1332), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190350,14 +193469,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1268), 23, + ACTIONS(1334), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190365,7 +193486,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190373,23 +193493,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131518] = 6, - ACTIONS(71), 1, + [134065] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6690), 1, - aux_sym_concatenation_token1, - ACTIONS(6722), 1, - sym__concat, - STATE(2504), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, + ACTIONS(1340), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190398,14 +193514,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1288), 23, + ACTIONS(1342), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190413,7 +193531,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190421,69 +193538,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131572] = 5, - ACTIONS(71), 1, + [134113] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6671), 1, - sym__special_character, - STATE(2487), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, - anon_sym_EQ, + ACTIONS(1320), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(290), 24, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1322), 26, + sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131624] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2504), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6724), 2, - sym__concat, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(1276), 14, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134161] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1376), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190492,14 +193604,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 23, + ACTIONS(1378), 26, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190507,7 +193621,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -190515,21 +193628,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131676] = 3, - ACTIONS(71), 1, + [134209] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 13, + ACTIONS(1300), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -190537,13 +193654,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 27, + ACTIONS(1302), 26, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -190558,19 +193673,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131724] = 3, - ACTIONS(71), 1, + [134257] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(1380), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190583,8 +193698,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 27, + ACTIONS(1382), 26, sym_file_descriptor, sym__concat, sym_variable_name, @@ -190600,28 +193716,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [131772] = 6, - ACTIONS(71), 1, + [134305] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(1175), 1, aux_sym_concatenation_token1, - ACTIONS(6727), 1, + ACTIONS(6936), 1, sym__concat, - STATE(2279), 1, + STATE(2563), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 14, + ACTIONS(1294), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190636,7 +193751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1268), 23, + ACTIONS(1296), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -190657,114 +193772,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [131826] = 6, - ACTIONS(71), 1, + [134359] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6729), 1, - sym__concat, - STATE(2279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, - anon_sym_EQ, + ACTIONS(6938), 1, + sym__special_character, + STATE(2493), 1, + aux_sym__literal_repeat1, + ACTIONS(5440), 12, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1288), 23, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5442), 26, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134411] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5015), 14, + anon_sym_PIPE, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131880] = 5, - ACTIONS(71), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5017), 26, + sym_file_descriptor, + sym_test_operator, + sym__bare_dollar, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134459] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2511), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1087), 2, + ACTIONS(1368), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1370), 26, + sym_file_descriptor, sym__concat, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(1253), 14, - anon_sym_EQ, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134507] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1384), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1376), 23, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1386), 26, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [131932] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1087), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(6731), 1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134555] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1370), 26, + sym_file_descriptor, sym__concat, - STATE(2467), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 14, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134603] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190779,8 +194020,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1268), 23, + ACTIONS(1370), 26, sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190800,67 +194043,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [131986] = 6, - ACTIONS(71), 1, + anon_sym_COLON, + [134651] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1087), 1, - aux_sym_concatenation_token1, - ACTIONS(6733), 1, - sym__concat, - STATE(2467), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, - anon_sym_EQ, + ACTIONS(6938), 1, + sym__special_character, + STATE(2493), 1, + aux_sym__literal_repeat1, + ACTIONS(5899), 12, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1288), 23, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5901), 26, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [132040] = 6, - ACTIONS(71), 1, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [134703] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1113), 1, + ACTIONS(1175), 1, aux_sym_concatenation_token1, - ACTIONS(6735), 1, + ACTIONS(6940), 1, sym__concat, - STATE(2279), 1, + STATE(2563), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 14, + ACTIONS(1314), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190875,7 +194118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1268), 23, + ACTIONS(1316), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -190896,19 +194139,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [132094] = 6, - ACTIONS(71), 1, + [134757] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6737), 1, - sym__concat, - STATE(2279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -190923,8 +194160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1288), 23, + ACTIONS(1338), 26, sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -190944,18 +194183,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [132148] = 5, - ACTIONS(71), 1, + [134805] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6739), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5507), 14, + ACTIONS(6938), 1, + sym__special_character, + STATE(2493), 1, + aux_sym__literal_repeat1, + ACTIONS(4971), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -190967,11 +194206,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5509), 23, + ACTIONS(4973), 26, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -190979,126 +194217,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132200] = 6, - ACTIONS(3), 1, + [134857] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(5977), 1, - aux_sym_concatenation_token1, - ACTIONS(5991), 1, - sym__concat, - STATE(2476), 1, + STATE(2602), 1, aux_sym_concatenation_repeat1, - ACTIONS(5317), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 33, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6942), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5440), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [132254] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5977), 1, - aux_sym_concatenation_token1, - ACTIONS(5991), 1, - sym__concat, - STATE(2477), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5321), 4, + ACTIONS(5442), 24, sym_file_descriptor, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 33, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [132308] = 5, - ACTIONS(71), 1, + [134909] = 5, + ACTIONS(73), 1, sym_comment, - STATE(2550), 1, + STATE(2603), 1, aux_sym_concatenation_repeat1, - ACTIONS(6739), 2, + ACTIONS(6942), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5513), 14, + ACTIONS(5538), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191111,9 +194302,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5515), 23, + ACTIONS(5540), 24, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -191127,137 +194317,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132360] = 5, - ACTIONS(71), 1, + [134961] = 4, + ACTIONS(73), 1, sym_comment, - STATE(2501), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6690), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1272), 14, + ACTIONS(6948), 1, + sym_extglob_pattern, + ACTIONS(6946), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1274), 23, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6944), 25, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [132412] = 3, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135011] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(6950), 1, + sym__special_character, + STATE(2608), 1, + aux_sym__literal_repeat1, + ACTIONS(249), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1338), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(298), 24, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [132460] = 3, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135063] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(5048), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 26, + ACTIONS(5050), 26, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -191266,114 +194457,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132508] = 3, - ACTIONS(71), 1, + [135111] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(1133), 1, + aux_sym_concatenation_token1, + ACTIONS(6952), 1, + sym__concat, + STATE(2299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1346), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1316), 23, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [132556] = 3, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [135165] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + STATE(2511), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1175), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1281), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1358), 26, - sym_file_descriptor, - sym__concat, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1403), 23, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [132604] = 3, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [135217] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4521), 14, + ACTIONS(1332), 14, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_EQ_EQ, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1334), 26, + sym_test_operator, + sym_extglob_pattern, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [135265] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1344), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -191381,11 +194621,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4523), 26, + ACTIONS(1346), 27, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -191400,23 +194642,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132652] = 5, - ACTIONS(71), 1, + [135313] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6665), 1, + ACTIONS(6938), 1, sym__special_character, - STATE(2540), 1, + STATE(2493), 1, aux_sym__literal_repeat1, - ACTIONS(4577), 12, + ACTIONS(5905), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191429,7 +194671,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4579), 26, + ACTIONS(5907), 26, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -191449,17 +194691,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132704] = 3, - ACTIONS(71), 1, + [135365] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5401), 14, + ACTIONS(4900), 14, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_LT, @@ -191474,7 +194716,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5403), 26, + ACTIONS(4902), 26, sym_file_descriptor, sym_test_operator, sym__bare_dollar, @@ -191494,17 +194736,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132752] = 3, - ACTIONS(71), 1, + [135413] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191513,15 +194755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1306), 26, + ACTIONS(1306), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -191529,7 +194771,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -191539,17 +194780,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132800] = 3, - ACTIONS(71), 1, + [135461] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(1352), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191558,15 +194800,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 26, + ACTIONS(1354), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -191574,7 +194816,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -191584,71 +194825,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132848] = 6, - ACTIONS(71), 1, + [135509] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6741), 1, - sym__concat, - STATE(2279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1288), 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [132902] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 14, + ACTIONS(1360), 13, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -191656,11 +194848,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 26, + ACTIONS(1362), 27, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -191675,71 +194869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [132950] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2528), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1253), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1376), 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [133002] = 5, - ACTIONS(71), 1, + [135557] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2454), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6652), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5315), 13, + ACTIONS(1364), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191753,8 +194895,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5317), 24, + ACTIONS(1366), 27, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -191770,23 +194914,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133054] = 5, - ACTIONS(71), 1, + [135605] = 6, + ACTIONS(73), 1, sym_comment, - STATE(2455), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6652), 2, - sym__concat, + ACTIONS(6954), 1, aux_sym_concatenation_token1, - ACTIONS(5319), 13, + ACTIONS(6956), 1, + sym__concat, + STATE(2560), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191795,12 +194941,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5321), 24, + ACTIONS(1296), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -191809,118 +194956,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133106] = 3, - ACTIONS(71), 1, + [135659] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(4517), 14, + ACTIONS(6954), 1, + aux_sym_concatenation_token1, + ACTIONS(6958), 1, + sym__concat, + STATE(2560), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 14, anon_sym_PIPE, - anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4519), 26, + ACTIONS(1316), 23, sym_file_descriptor, sym_test_operator, - sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133154] = 5, - ACTIONS(71), 1, + [135713] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6743), 1, - sym__special_character, - STATE(2534), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1362), 24, - 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [133206] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 14, + STATE(2560), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6960), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191935,9 +195042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 26, + ACTIONS(1306), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -191951,21 +195057,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133254] = 3, - ACTIONS(71), 1, + [135765] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 14, + ACTIONS(1356), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -191974,15 +195078,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 26, + ACTIONS(1358), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -191990,7 +195094,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -192000,17 +195103,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133302] = 3, - ACTIONS(71), 1, + [135813] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(1372), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192023,9 +195127,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1342), 26, + ACTIONS(1374), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -192041,21 +195144,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133350] = 3, - ACTIONS(71), 1, + [135861] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 14, + STATE(2563), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6963), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1306), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [135913] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2558), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6954), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192064,16 +195220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1298), 26, + ACTIONS(1302), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192081,6 +195235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -192088,19 +195243,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133398] = 3, - ACTIONS(71), 1, + [135965] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1344), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192115,7 +195268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 26, + ACTIONS(1346), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -192136,20 +195289,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133446] = 5, - ACTIONS(71), 1, + [136013] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6746), 1, + ACTIONS(6938), 1, sym__special_character, - STATE(2540), 1, + STATE(2493), 1, aux_sym__literal_repeat1, - ACTIONS(1360), 12, + ACTIONS(5044), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192162,7 +195315,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1362), 26, + ACTIONS(5046), 26, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -192182,17 +195335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133498] = 3, - ACTIONS(71), 1, + [136065] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1348), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192201,16 +195354,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 26, + ACTIONS(1350), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192218,26 +195370,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133546] = 3, - ACTIONS(71), 1, + [136113] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(1304), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192246,16 +195399,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 26, + ACTIONS(1306), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192263,26 +195415,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133594] = 3, - ACTIONS(71), 1, + [136161] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 13, + ACTIONS(1352), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192291,15 +195444,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 27, + ACTIONS(1354), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192307,6 +195460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -192316,18 +195470,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133642] = 3, - ACTIONS(71), 1, + [136209] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 14, + STATE(2500), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6911), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5787), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192342,10 +195500,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 26, + ACTIONS(5789), 23, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192360,19 +195516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133690] = 3, - ACTIONS(71), 1, + [136261] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(1360), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192381,16 +195536,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1314), 26, + ACTIONS(1362), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192398,32 +195552,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133738] = 6, - ACTIONS(71), 1, + [136309] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6739), 1, - aux_sym_concatenation_token1, - ACTIONS(6749), 1, - sym__concat, - STATE(2552), 1, + STATE(2501), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 14, + ACTIONS(6911), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5791), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192438,7 +195592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1268), 23, + ACTIONS(5793), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -192456,109 +195610,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133792] = 4, - ACTIONS(71), 1, + [136361] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6755), 1, - sym_extglob_pattern, - ACTIONS(6753), 14, - anon_sym_EQ, + ACTIONS(1364), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6751), 25, - 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [133842] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6757), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, sym__special_character, - STATE(2534), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(290), 24, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1366), 26, + sym_file_descriptor, + 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [133894] = 3, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136409] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 13, + ACTIONS(1356), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192567,15 +195673,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 27, + ACTIONS(1358), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192583,6 +195689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -192592,24 +195699,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133942] = 6, - ACTIONS(71), 1, + [136457] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6739), 1, - aux_sym_concatenation_token1, - ACTIONS(6759), 1, - sym__concat, - STATE(2552), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, + ACTIONS(1372), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192618,14 +195718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1288), 23, + ACTIONS(1374), 26, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192633,25 +195734,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [133996] = 3, - ACTIONS(71), 1, + [136505] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 13, + ACTIONS(1388), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192665,7 +195768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 27, + ACTIONS(1390), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -192687,21 +195790,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134044] = 5, - ACTIONS(71), 1, + [136553] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2552), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6761), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1276), 14, + ACTIONS(1324), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192714,10 +195812,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(1278), 23, + ACTIONS(1326), 27, sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -192730,20 +195829,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134096] = 3, - ACTIONS(71), 1, + [136601] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 14, + ACTIONS(1328), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192756,9 +195857,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1318), 26, + ACTIONS(1330), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -192774,66 +195874,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134144] = 5, - ACTIONS(71), 1, + [136649] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2508), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1253), 14, - anon_sym_EQ, + ACTIONS(1336), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1376), 23, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 27, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134196] = 3, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [136697] = 3, + ACTIONS(73), 1, sym_comment, ACTIONS(1332), 13, anon_sym_PIPE, @@ -192871,63 +195970,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134244] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1087), 1, - aux_sym_concatenation_token1, - STATE(2459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1253), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1376), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [134296] = 3, - ACTIONS(71), 1, + [136745] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1340), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192940,9 +195992,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 26, + ACTIONS(1342), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -192958,21 +196009,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134344] = 3, - ACTIONS(71), 1, + [136793] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 13, + ACTIONS(1320), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -192986,7 +196038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 27, + ACTIONS(1322), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -193008,16 +196060,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134392] = 3, - ACTIONS(71), 1, + [136841] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 13, + ACTIONS(1376), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193031,7 +196083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1342), 27, + ACTIONS(1378), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -193053,20 +196105,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134440] = 5, - ACTIONS(71), 1, + [136889] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6665), 1, - sym__special_character, - STATE(2540), 1, - aux_sym__literal_repeat1, - ACTIONS(5315), 12, + ACTIONS(1380), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193078,9 +196126,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(5317), 26, + ACTIONS(1382), 27, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -193089,7 +196139,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -193098,18 +196147,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134492] = 3, - ACTIONS(71), 1, + [136937] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(1368), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193123,7 +196173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 27, + ACTIONS(1370), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -193145,16 +196195,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134540] = 3, - ACTIONS(71), 1, + [136985] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 13, + ACTIONS(1384), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193168,7 +196218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 27, + ACTIONS(1386), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -193190,16 +196240,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134588] = 3, - ACTIONS(71), 1, + [137033] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 13, + ACTIONS(1368), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193213,7 +196263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1354), 27, + ACTIONS(1370), 27, sym_file_descriptor, sym__concat, sym_variable_name, @@ -193235,24 +196285,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134636] = 7, - ACTIONS(71), 1, + [137081] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1087), 1, - aux_sym_concatenation_token1, - ACTIONS(6764), 1, - anon_sym_RBRACK, - ACTIONS(6766), 1, - sym__concat, - STATE(2459), 1, + STATE(2477), 1, aux_sym_concatenation_repeat1, - ACTIONS(1253), 14, + ACTIONS(1133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -193267,7 +196314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1376), 22, + ACTIONS(1403), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -193288,17 +196335,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [134692] = 5, - ACTIONS(71), 1, + [137133] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2546), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6739), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1272), 14, + ACTIONS(1388), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193307,14 +196350,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1274), 23, + ACTIONS(1390), 26, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193322,25 +196366,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134744] = 3, - ACTIONS(71), 1, + [137181] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(1324), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193349,16 +196395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1322), 26, + ACTIONS(1326), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193366,124 +196411,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134792] = 5, - ACTIONS(71), 1, + [137229] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2513), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1253), 14, - anon_sym_EQ, + ACTIONS(1328), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1376), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [134844] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(2637), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1330), 26, + sym_file_descriptor, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1272), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1274), 23, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - sym__special_character, - [134896] = 5, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137277] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6665), 1, - sym__special_character, - STATE(2540), 1, - aux_sym__literal_repeat1, - ACTIONS(5587), 12, + ACTIONS(1336), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193492,13 +196485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5589), 26, + ACTIONS(1338), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193515,18 +196510,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134948] = 3, - ACTIONS(71), 1, + [137325] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(1332), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193535,16 +196530,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1326), 26, + ACTIONS(1334), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193552,26 +196546,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [134996] = 3, - ACTIONS(71), 1, + [137373] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 14, + ACTIONS(1340), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193580,16 +196575,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1330), 26, + ACTIONS(1342), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193597,30 +196591,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135044] = 5, - ACTIONS(71), 1, + [137421] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6665), 1, - sym__special_character, - STATE(2540), 1, - aux_sym__literal_repeat1, - ACTIONS(4426), 12, + ACTIONS(1320), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193629,13 +196620,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(4428), 26, + ACTIONS(1322), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193652,18 +196645,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135096] = 3, - ACTIONS(71), 1, + [137469] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(1376), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193672,15 +196665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 27, + ACTIONS(1378), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193688,6 +196681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -193697,18 +196691,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135144] = 3, - ACTIONS(71), 1, + [137517] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 13, + ACTIONS(1380), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193717,15 +196710,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1346), 27, + ACTIONS(1382), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193733,6 +196726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -193742,18 +196736,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135192] = 3, - ACTIONS(71), 1, + [137565] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(1368), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193762,15 +196755,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 27, + ACTIONS(1370), 26, sym_file_descriptor, sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193778,6 +196771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -193787,67 +196781,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135240] = 7, - ACTIONS(71), 1, + [137613] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1203), 1, - anon_sym_RBRACK, - ACTIONS(6671), 1, - sym__special_character, - ACTIONS(6768), 1, - sym__concat, - STATE(2487), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, - anon_sym_EQ, + ACTIONS(1384), 14, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(290), 22, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1386), 26, + sym_file_descriptor, + sym__concat, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [135296] = 3, - ACTIONS(71), 1, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [137661] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(1368), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193862,7 +196851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 26, + ACTIONS(1370), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -193883,20 +196872,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135344] = 3, - ACTIONS(71), 1, + [137709] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(5038), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, @@ -193904,14 +196895,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(1334), 26, + ACTIONS(5040), 26, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, @@ -193923,21 +196911,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135392] = 3, - ACTIONS(71), 1, + [137757] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(6942), 1, + aux_sym_concatenation_token1, + ACTIONS(6966), 1, + sym__concat, + STATE(2605), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193946,15 +196941,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 26, + ACTIONS(1296), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -193962,7 +196955,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -193971,18 +196963,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135440] = 3, - ACTIONS(71), 1, + [137811] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 14, + ACTIONS(6942), 1, + aux_sym_concatenation_token1, + ACTIONS(6968), 1, + sym__concat, + STATE(2605), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -193991,15 +196989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 26, + ACTIONS(1316), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194007,7 +197003,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -194016,43 +197011,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135488] = 3, - ACTIONS(71), 1, + [137865] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(5795), 14, anon_sym_PIPE, + anon_sym_EQ_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_EQ_TILDE, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1334), 26, + ACTIONS(5797), 26, sym_file_descriptor, - sym__concat, sym_test_operator, + sym__bare_dollar, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -194061,18 +197055,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135536] = 3, - ACTIONS(71), 1, + [137913] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + STATE(2605), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6970), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194085,12 +197085,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1358), 26, + ACTIONS(1306), 24, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194103,25 +197100,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135584] = 5, - ACTIONS(71), 1, + [137965] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6770), 1, - sym__special_character, - STATE(2583), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 14, + STATE(2517), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194136,7 +197134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1362), 23, + ACTIONS(1403), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -194157,13 +197155,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [135635] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [138017] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 14, + STATE(2740), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1133), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194178,8 +197181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1318), 25, - sym__concat, + ACTIONS(1302), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -194200,62 +197202,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [135682] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5851), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(5853), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5856), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(5849), 6, - anon_sym_DOLLAR, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5858), 7, - sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5861), 14, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [135737] = 3, - ACTIONS(71), 1, + [138069] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(6973), 1, + sym__special_character, + STATE(2608), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194270,9 +197227,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1310), 25, - sym__concat, + ACTIONS(1396), 24, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -194292,62 +197249,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [135784] = 7, - ACTIONS(71), 1, + anon_sym_COLON, + [138121] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(5851), 2, + ACTIONS(1175), 1, + aux_sym_concatenation_token1, + ACTIONS(6976), 1, + anon_sym_RBRACK, + ACTIONS(6978), 1, + sym__concat, + STATE(2540), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1281), 14, + anon_sym_EQ, anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(5853), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5856), 5, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1403), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [138177] = 7, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1207), 1, anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(5849), 6, - anon_sym_DOLLAR, + ACTIONS(6879), 1, sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5858), 7, - sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5861), 14, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [135839] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 14, + ACTIONS(6980), 1, + sym__concat, + STATE(2617), 1, + aux_sym__literal_repeat1, + ACTIONS(249), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194362,8 +197327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1302), 25, - sym__concat, + ACTIONS(298), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -194384,16 +197348,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [135886] = 4, - ACTIONS(71), 1, + [138233] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6773), 1, - sym_extglob_pattern, - ACTIONS(6753), 14, + ACTIONS(1380), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194408,9 +197368,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6751), 24, - sym__concat, + ACTIONS(1382), 26, sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -194430,13 +197391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [135935] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [138281] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + STATE(2602), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6942), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194449,11 +197416,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1334), 25, + ACTIONS(1302), 24, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194466,123 +197431,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [135982] = 8, - ACTIONS(3), 1, + [138333] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(2727), 1, - anon_sym_DQUOTE, - ACTIONS(6779), 1, - sym_variable_name, - STATE(4341), 1, - sym_string, - ACTIONS(6777), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6775), 9, + ACTIONS(1101), 1, + aux_sym_concatenation_token1, + ACTIONS(6982), 1, + sym__concat, + STATE(2483), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 24, - anon_sym_SEMI, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1296), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [138387] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2558), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6954), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5440), 14, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5442), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [136039] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(2727), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - ACTIONS(6779), 1, - sym_variable_name, - STATE(4341), 1, - sym_string, - ACTIONS(6777), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(6775), 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(1239), 24, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138439] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2559), 1, + aux_sym_concatenation_repeat1, + ACTIONS(6954), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5538), 14, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5540), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [136096] = 5, - ACTIONS(71), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [138491] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1101), 1, + aux_sym_concatenation_token1, + ACTIONS(6984), 1, + sym__concat, + STATE(2483), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1316), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [138545] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6781), 1, + ACTIONS(6986), 1, sym__special_character, - STATE(2728), 1, + STATE(2617), 1, aux_sym__literal_repeat1, - ACTIONS(243), 14, + ACTIONS(1394), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1396), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [138597] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -194597,8 +197697,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(290), 23, + ACTIONS(1326), 26, sym_test_operator, + sym_extglob_pattern, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -194621,10 +197723,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [136147] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [138645] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 13, + ACTIONS(1348), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194638,9 +197741,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 26, + ACTIONS(1350), 27, sym_file_descriptor, sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194659,16 +197763,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136194] = 3, - ACTIONS(71), 1, + [138693] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 13, + ACTIONS(1364), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194682,7 +197786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 26, + ACTIONS(1366), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -194703,16 +197807,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136241] = 3, - ACTIONS(71), 1, + [138740] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1368), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194721,13 +197825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1298), 25, + ACTIONS(1370), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -194737,32 +197840,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136288] = 6, - ACTIONS(71), 1, + [138787] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6783), 1, - aux_sym_concatenation_token1, - ACTIONS(6785), 1, - sym__concat, - STATE(2630), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 13, + ACTIONS(1328), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194776,8 +197874,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1268), 23, + ACTIONS(1330), 26, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194790,20 +197889,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136341] = 3, - ACTIONS(71), 1, + [138834] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1352), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194812,13 +197913,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 25, + ACTIONS(1354), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -194828,7 +197929,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -194837,17 +197937,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136388] = 3, - ACTIONS(71), 1, + [138881] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6991), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6989), 25, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [138928] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1380), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1382), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [138975] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1344), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1346), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [139022] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(2154), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194860,11 +198093,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(1278), 25, + ACTIONS(2156), 26, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194878,20 +198110,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136435] = 3, - ACTIONS(71), 1, + [139069] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 14, + ACTIONS(6997), 1, + sym__concat, + ACTIONS(6995), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6993), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [139118] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1340), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194904,9 +198182,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1350), 25, + ACTIONS(1342), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -194921,21 +198198,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136482] = 3, - ACTIONS(71), 1, + [139165] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(6999), 1, + sym__special_character, + STATE(2676), 1, + aux_sym__literal_repeat1, + ACTIONS(5044), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194947,11 +198229,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(1306), 26, + ACTIONS(5046), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -194967,19 +198248,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136529] = 3, - ACTIONS(71), 1, + [139216] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1360), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -194988,13 +198268,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 25, + ACTIONS(1362), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -195004,7 +198284,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -195013,17 +198292,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136576] = 3, - ACTIONS(71), 1, + [139263] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(7005), 1, + sym__concat, + ACTIONS(7003), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195038,9 +198320,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1314), 25, - sym__concat, - sym_test_operator, + ACTIONS(7001), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -195060,14 +198342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [136623] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [139312] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(5015), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195076,14 +198357,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 26, + ACTIONS(5017), 26, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195091,6 +198372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -195099,19 +198381,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136670] = 3, - ACTIONS(71), 1, + [139359] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195126,7 +198407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1322), 25, + ACTIONS(1358), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -195148,14 +198429,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [136717] = 3, - ACTIONS(71), 1, + [139406] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(1368), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195164,13 +198445,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1314), 25, + ACTIONS(1370), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -195180,7 +198461,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -195189,21 +198469,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136764] = 5, - ACTIONS(71), 1, + [139453] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6787), 1, - sym__special_character, - STATE(2699), 1, - aux_sym__literal_repeat1, - ACTIONS(5315), 12, + ACTIONS(1384), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195215,9 +198492,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(5317), 25, + ACTIONS(1386), 25, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195225,27 +198505,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136815] = 3, - ACTIONS(71), 1, + [139500] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 13, + ACTIONS(1368), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195258,8 +198537,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1342), 26, + ACTIONS(1370), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -195274,22 +198554,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136862] = 3, - ACTIONS(71), 1, + [139547] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(6999), 1, + sym__special_character, + STATE(2676), 1, + aux_sym__literal_repeat1, + ACTIONS(5905), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195301,11 +198584,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 26, + ACTIONS(5907), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195321,25 +198603,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136909] = 6, - ACTIONS(71), 1, + [139598] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6783), 1, + ACTIONS(1336), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1338), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, aux_sym_concatenation_token1, - ACTIONS(6789), 1, + [139645] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1370), 25, sym__concat, - STATE(2630), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 13, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [139692] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1384), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1386), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [139739] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1372), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1374), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [139786] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1370), 25, + sym__concat, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [139833] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1364), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195352,9 +198847,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(1288), 23, + ACTIONS(1366), 25, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195369,64 +198866,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [136962] = 5, - ACTIONS(71), 1, + [139880] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(6791), 1, - sym__special_character, - STATE(2631), 1, - aux_sym__literal_repeat1, - ACTIONS(4426), 12, + ACTIONS(6023), 2, anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(6025), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(6028), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(6021), 6, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4428), 25, + ACTIONS(6030), 7, sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6033), 14, sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [139935] = 7, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6023), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(6025), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6028), 5, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(6021), 6, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(6030), 7, + sym_file_descriptor, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + ACTIONS(6033), 14, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137013] = 3, - ACTIONS(71), 1, + [139990] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195441,7 +198989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 25, + ACTIONS(1334), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -195467,10 +199015,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [137060] = 3, - ACTIONS(71), 1, + [140037] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(1320), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140084] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7009), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195485,9 +199077,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1326), 25, - sym__concat, + ACTIONS(7007), 25, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -195507,12 +199099,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [137107] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [140131] = 3, + ACTIONS(73), 1, sym_comment, ACTIONS(1324), 14, anon_sym_EQ, @@ -195555,10 +199147,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [137154] = 3, - ACTIONS(71), 1, + [140178] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 14, + ACTIONS(6999), 1, + sym__special_character, + STATE(2676), 1, + aux_sym__literal_repeat1, + ACTIONS(5899), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5901), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140229] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7013), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195573,9 +199211,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1330), 25, - sym__concat, + ACTIONS(7011), 25, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -195595,14 +199233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [137201] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [140276] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 14, + ACTIONS(7015), 1, + sym__special_character, + STATE(2738), 1, + aux_sym__literal_repeat1, + ACTIONS(249), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195617,10 +199259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1350), 25, - sym__concat, + ACTIONS(298), 23, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -195640,13 +199280,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [137248] = 3, - ACTIONS(71), 1, + [140327] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 14, + ACTIONS(1348), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195661,9 +199301,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6793), 25, + ACTIONS(1350), 25, + sym__concat, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -195683,14 +199323,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [137295] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [140374] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(6999), 1, + sym__special_character, + STATE(2676), 1, + aux_sym__literal_repeat1, + ACTIONS(5440), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195702,12 +199346,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1358), 25, + ACTIONS(5442), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -195720,21 +199362,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137342] = 3, - ACTIONS(71), 1, + [140425] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4593), 13, + ACTIONS(2158), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -195748,7 +199390,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4595), 26, + ACTIONS(2160), 26, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -195768,17 +199410,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137389] = 3, - ACTIONS(71), 1, + [140472] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(1340), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195793,10 +199435,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1334), 25, + ACTIONS(1342), 25, sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -195819,10 +199460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [137436] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [140519] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(1320), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195837,10 +199479,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1354), 25, + ACTIONS(1322), 25, sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -195863,60 +199504,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [137483] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6791), 1, - sym__special_character, - STATE(2631), 1, - aux_sym__literal_repeat1, - ACTIONS(4577), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(4579), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [137534] = 5, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [140566] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6797), 1, - sym__special_character, - STATE(2583), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, + ACTIONS(7021), 1, + sym__concat, + ACTIONS(7019), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195931,8 +199525,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(290), 23, - sym_test_operator, + ACTIONS(7017), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -195952,13 +199547,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [137585] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [140615] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 14, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -195973,7 +199568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1318), 25, + ACTIONS(1306), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -195995,14 +199590,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [137632] = 3, - ACTIONS(71), 1, + [140662] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(1376), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196017,7 +199612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1334), 25, + ACTIONS(1378), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -196043,10 +199638,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [137679] = 3, - ACTIONS(71), 1, + [140709] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(7023), 1, + sym__special_character, + STATE(2662), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1396), 24, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140760] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7030), 1, + sym__concat, + ACTIONS(7028), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196061,10 +199704,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1338), 25, - sym__concat, - sym_test_operator, - sym_extglob_pattern, + ACTIONS(7026), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -196084,57 +199726,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [137726] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [140809] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 14, - anon_sym_EQ, + ACTIONS(1324), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1302), 25, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140856] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1344), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1346), 25, + sym_file_descriptor, sym__concat, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [137773] = 3, - ACTIONS(71), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [140903] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1376), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196149,9 +199835,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1338), 25, + ACTIONS(1378), 25, sym__concat, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -196174,15 +199861,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [137820] = 5, - ACTIONS(71), 1, + [140950] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6799), 1, - sym__special_character, - STATE(2712), 1, - aux_sym__literal_repeat1, - ACTIONS(5323), 13, + ACTIONS(1348), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196191,14 +199873,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(5325), 24, + ACTIONS(1350), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196206,6 +199889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -196213,23 +199897,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137871] = 5, - ACTIONS(71), 1, + [140997] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2630), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6801), 2, + ACTIONS(1304), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 25, + sym_file_descriptor, sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(1276), 13, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141044] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1356), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196242,9 +199965,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(1278), 23, + ACTIONS(1358), 25, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196259,22 +199984,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137922] = 5, - ACTIONS(71), 1, + [141091] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6804), 1, - sym__special_character, - STATE(2631), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 12, + ACTIONS(1380), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196286,10 +200008,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(1362), 25, + ACTIONS(1382), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196305,18 +200028,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141138] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1352), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [137973] = 3, - ACTIONS(71), 1, + [141185] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 14, + ACTIONS(1360), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196331,7 +200099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 25, + ACTIONS(1362), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -196351,20 +200119,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138020] = 5, - ACTIONS(71), 1, + [141232] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(7032), 1, sym__special_character, - STATE(2631), 1, + STATE(2701), 1, aux_sym__literal_repeat1, - ACTIONS(5315), 12, + ACTIONS(5440), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196377,9 +200145,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5317), 25, + ACTIONS(5442), 25, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -196387,6 +200154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -196396,17 +200164,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138071] = 3, - ACTIONS(71), 1, + [141283] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1364), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196421,7 +200189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 25, + ACTIONS(1366), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -196441,16 +200209,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138118] = 3, - ACTIONS(71), 1, + [141330] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(1380), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196465,7 +200233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1342), 25, + ACTIONS(1382), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -196491,10 +200259,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [138165] = 3, - ACTIONS(71), 1, + [141377] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7034), 1, + sym__special_character, + STATE(2676), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1396), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141428] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1356), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141475] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1372), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1374), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141522] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1388), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196509,7 +200411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 25, + ACTIONS(1390), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -196531,20 +200433,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [138212] = 6, - ACTIONS(71), 1, + [141569] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1113), 1, - aux_sym_concatenation_token1, - ACTIONS(6807), 1, - sym__concat, - STATE(2279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 14, + ACTIONS(5048), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5050), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [141616] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(2654), 1, + anon_sym_DQUOTE, + ACTIONS(7041), 1, + sym_variable_name, + STATE(4413), 1, + sym_string, + ACTIONS(7039), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7037), 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(1267), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [141673] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196559,7 +200548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1268), 22, + ACTIONS(1326), 25, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -196580,18 +200570,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [138265] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1113), 1, aux_sym_concatenation_token1, - ACTIONS(6809), 1, - sym__concat, - STATE(2279), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 14, + [141720] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7043), 1, + sym__special_character, + STATE(2683), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196606,7 +200596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1288), 22, + ACTIONS(1396), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -196627,12 +200617,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [138318] = 3, - ACTIONS(71), 1, + [141771] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(2654), 1, + anon_sym_DQUOTE, + ACTIONS(7041), 1, + sym_variable_name, + STATE(4413), 1, + sym_string, + ACTIONS(7039), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7037), 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(1255), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [141828] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1372), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196647,7 +200687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1354), 25, + ACTIONS(1374), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -196667,60 +200707,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138365] = 3, - ACTIONS(71), 1, + [141875] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1350), 25, - sym__concat, - sym_test_operator, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [138412] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1356), 14, + ACTIONS(7048), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196735,12 +200734,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 25, - sym__concat, + ACTIONS(7046), 23, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196758,13 +200754,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [138459] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [141924] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(1328), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196779,10 +200776,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1346), 25, + ACTIONS(1330), 25, sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -196802,13 +200798,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [138506] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [141971] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1368), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -196823,10 +200820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 25, + ACTIONS(1370), 25, sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -196846,17 +200842,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [138553] = 5, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [142018] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6799), 1, + ACTIONS(7052), 1, sym__special_character, - STATE(2712), 1, + STATE(2662), 1, aux_sym__literal_repeat1, - ACTIONS(5165), 13, + ACTIONS(5525), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -196870,7 +200867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5167), 24, + ACTIONS(5527), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -196888,105 +200885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138604] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1296), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1298), 26, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [138651] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1352), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1354), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [138698] = 3, - ACTIONS(71), 1, + [142069] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 13, + ACTIONS(1388), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197000,7 +200909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 26, + ACTIONS(1390), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -197021,16 +200930,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138745] = 3, - ACTIONS(71), 1, + [142116] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 13, + ACTIONS(1376), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197044,7 +200953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 26, + ACTIONS(1378), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -197065,16 +200974,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138792] = 3, - ACTIONS(71), 1, + [142163] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6813), 14, + ACTIONS(7054), 1, + sym_extglob_pattern, + ACTIONS(6946), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197089,9 +201000,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6811), 25, + ACTIONS(6944), 24, + sym__concat, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -197111,60 +201022,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [138839] = 3, - ACTIONS(71), 1, + [142212] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 14, - anon_sym_EQ, + ACTIONS(1300), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1322), 25, - sym__concat, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1302), 26, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [138886] = 4, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142259] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6815), 1, - anon_sym_LBRACK, - ACTIONS(6632), 14, + ACTIONS(1356), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197179,9 +201087,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6630), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1358), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -197201,13 +201109,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [138935] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [142306] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 13, + ACTIONS(1332), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197221,7 +201130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 26, + ACTIONS(1334), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -197242,16 +201151,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [138982] = 3, - ACTIONS(71), 1, + [142353] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1348), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1350), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [142400] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(1384), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197266,7 +201219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1326), 25, + ACTIONS(1386), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -197292,10 +201245,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [139029] = 3, - ACTIONS(71), 1, + [142447] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 14, + ACTIONS(1304), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197310,7 +201263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1330), 25, + ACTIONS(1306), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -197336,10 +201289,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [139076] = 3, - ACTIONS(71), 1, + [142494] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 13, + ACTIONS(6999), 1, + sym__special_character, + STATE(2676), 1, + aux_sym__literal_repeat1, + ACTIONS(4971), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197351,11 +201308,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(1302), 26, + ACTIONS(4973), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -197371,19 +201327,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139123] = 3, - ACTIONS(71), 1, + [142545] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(1352), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197398,7 +201353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 25, + ACTIONS(1354), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -197420,14 +201375,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [139170] = 3, - ACTIONS(71), 1, + [142592] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(7056), 1, + sym__special_character, + STATE(2701), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1396), 25, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [142643] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1360), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197442,7 +201443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1334), 25, + ACTIONS(1362), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -197468,10 +201469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [139217] = 3, - ACTIONS(71), 1, + [142690] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1372), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197486,7 +201487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 25, + ACTIONS(1374), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -197512,10 +201513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [139264] = 3, - ACTIONS(71), 1, + [142737] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(1388), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197530,7 +201531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1346), 25, + ACTIONS(1390), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -197556,10 +201557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [139311] = 3, - ACTIONS(71), 1, + [142784] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(7059), 1, + sym__special_character, + STATE(2683), 1, + aux_sym__literal_repeat1, + ACTIONS(249), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197574,8 +201579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 25, - sym__concat, + ACTIONS(298), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -197596,14 +201600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [139358] = 3, - ACTIONS(71), 1, + [142835] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197618,7 +201621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1338), 25, + ACTIONS(1326), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -197640,65 +201643,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [139405] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6791), 1, - sym__special_character, - STATE(2631), 1, - aux_sym__literal_repeat1, - ACTIONS(5165), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5167), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [139456] = 5, - ACTIONS(71), 1, + [142882] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6783), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5315), 13, + ACTIONS(1324), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197707,13 +201659,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5317), 23, + ACTIONS(1326), 25, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -197721,6 +201675,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -197728,23 +201683,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139507] = 5, - ACTIONS(71), 1, + [142929] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2610), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6783), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5319), 13, + ACTIONS(1328), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197753,13 +201703,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5321), 23, + ACTIONS(1330), 25, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -197767,6 +201719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -197774,151 +201727,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139558] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1340), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1342), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [139605] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1292), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1294), 25, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - aux_sym_concatenation_token1, - [139652] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6821), 1, - sym__concat, - ACTIONS(6819), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6817), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [139701] = 3, - ACTIONS(71), 1, + [142976] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(1364), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -197933,7 +201753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1354), 25, + ACTIONS(1366), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -197959,10 +201779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [139748] = 3, - ACTIONS(71), 1, + [143023] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(1336), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -197971,13 +201791,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1322), 25, + ACTIONS(1338), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -197987,6 +201807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -197995,18 +201816,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139795] = 3, - ACTIONS(71), 1, + [143070] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198021,9 +201841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1278), 25, + ACTIONS(1338), 25, sym__concat, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -198046,15 +201867,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [139842] = 5, - ACTIONS(71), 1, + [143117] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6791), 1, - sym__special_character, - STATE(2631), 1, - aux_sym__literal_repeat1, - ACTIONS(5587), 12, + ACTIONS(1332), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198063,13 +201879,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(5589), 25, + ACTIONS(1334), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -198077,26 +201895,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139893] = 3, - ACTIONS(71), 1, + [143164] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 13, + ACTIONS(1340), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198105,12 +201923,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 26, + ACTIONS(1342), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198120,27 +201939,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139940] = 3, - ACTIONS(71), 1, + [143211] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 13, + ACTIONS(1320), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198149,12 +201967,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 26, + ACTIONS(1322), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198164,71 +201983,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [139987] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1253), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1376), 25, - 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_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [140034] = 3, - ACTIONS(71), 1, + [143258] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 13, + ACTIONS(1376), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198237,12 +202011,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1334), 26, + ACTIONS(1378), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198252,27 +202027,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140081] = 3, - ACTIONS(71), 1, + [143305] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 13, + ACTIONS(1380), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198281,12 +202055,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1354), 26, + ACTIONS(1382), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198296,27 +202071,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140128] = 3, - ACTIONS(71), 1, + [143352] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198331,7 +202105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 25, + ACTIONS(1338), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -198357,10 +202131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [140175] = 3, - ACTIONS(71), 1, + [143399] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(1380), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198375,9 +202149,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1346), 25, + ACTIONS(1382), 25, sym__concat, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -198397,14 +202172,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [140222] = 3, - ACTIONS(71), 1, + [143446] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1368), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198419,7 +202193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 25, + ACTIONS(1370), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -198441,58 +202215,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [140269] = 3, - ACTIONS(71), 1, + [143493] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 13, + ACTIONS(1384), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1338), 26, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1386), 25, sym__concat, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + aux_sym_concatenation_token1, + [143540] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1370), 25, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [140316] = 3, - ACTIONS(71), 1, + [143587] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(1332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198507,9 +202325,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1274), 25, + ACTIONS(1334), 25, + sym__concat, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -198529,14 +202347,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - sym__special_character, - [140363] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [143634] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1344), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198551,7 +202369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1358), 25, + ACTIONS(1346), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198571,20 +202389,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140410] = 5, - ACTIONS(71), 1, + [143681] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6823), 1, + ACTIONS(7061), 1, sym__special_character, - STATE(2683), 1, + STATE(2770), 1, aux_sym__literal_repeat1, - ACTIONS(1360), 14, + ACTIONS(249), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198599,7 +202417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1362), 23, + ACTIONS(298), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -198623,10 +202441,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [140461] = 3, - ACTIONS(71), 1, + [143732] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1368), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198635,13 +202453,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1338), 25, + ACTIONS(1370), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198651,6 +202469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -198659,63 +202478,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140508] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6828), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6826), 23, - sym_test_operator, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [140557] = 3, - ACTIONS(71), 1, + [143779] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(1384), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198724,13 +202497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, + sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1346), 25, + ACTIONS(1386), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -198740,6 +202513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -198748,18 +202522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140604] = 3, - ACTIONS(71), 1, + [143826] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(1368), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198772,10 +202545,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(1274), 26, + ACTIONS(1370), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -198789,21 +202563,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140651] = 3, - ACTIONS(71), 1, + [143873] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198818,9 +202591,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1310), 25, + ACTIONS(1334), 25, sym__concat, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -198843,11 +202617,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [140698] = 3, - ACTIONS(71), 1, + [143920] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(7065), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7063), 25, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [143967] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(2735), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7067), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5440), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198860,11 +202682,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1342), 25, + ACTIONS(5442), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -198879,19 +202699,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140745] = 3, - ACTIONS(71), 1, + [144018] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(1328), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -198906,7 +202725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1314), 25, + ACTIONS(1330), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -198932,54 +202751,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, aux_sym_concatenation_token1, - [140792] = 3, - ACTIONS(71), 1, + [144065] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(1368), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1298), 25, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1370), 25, sym__concat, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + 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, - [140839] = 3, - ACTIONS(71), 1, + [144112] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1388), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -198994,7 +202813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1294), 25, + ACTIONS(1390), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199014,16 +202833,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140886] = 3, - ACTIONS(71), 1, + [144159] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(6999), 1, + sym__special_character, + STATE(2676), 1, + aux_sym__literal_repeat1, + ACTIONS(5493), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199035,11 +202858,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(1358), 26, + ACTIONS(5495), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -199055,19 +202877,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140933] = 3, - ACTIONS(71), 1, + [144210] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 13, + ACTIONS(7067), 1, + aux_sym_concatenation_token1, + ACTIONS(7069), 1, + sym__concat, + STATE(2737), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199081,9 +202908,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1346), 26, + ACTIONS(1296), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -199096,22 +202922,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [140980] = 3, - ACTIONS(71), 1, + [144263] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(7067), 1, + aux_sym_concatenation_token1, + ACTIONS(7071), 1, + sym__concat, + STATE(2737), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199124,11 +202954,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1306), 25, + ACTIONS(1316), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -199143,19 +202971,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141027] = 3, - ACTIONS(71), 1, + [144316] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 14, + STATE(2737), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7073), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199168,11 +203000,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1278), 25, + ACTIONS(1306), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -199187,65 +203017,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141074] = 5, - ACTIONS(71), 1, + [144367] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6791), 1, + ACTIONS(7076), 1, sym__special_character, - STATE(2631), 1, + STATE(2738), 1, aux_sym__literal_repeat1, - ACTIONS(5593), 12, + ACTIONS(1394), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5595), 25, - sym_file_descriptor, - sym_variable_name, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1396), 23, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141125] = 3, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [144418] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(1324), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199258,8 +203087,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1358), 26, + ACTIONS(1326), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199274,68 +203104,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141172] = 5, - ACTIONS(71), 1, + [144465] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(6832), 1, - sym__special_character, - STATE(2699), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 12, + ACTIONS(1133), 1, + aux_sym_concatenation_token1, + ACTIONS(7079), 1, + sym__concat, + STATE(2299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1362), 25, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1296), 22, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [144518] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7081), 1, + anon_sym_LBRACK, + ACTIONS(6844), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141223] = 3, - ACTIONS(71), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6842), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [144567] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1133), 1, + aux_sym_concatenation_token1, + ACTIONS(7083), 1, + sym__concat, + STATE(2299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1316), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [144620] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(2171), 13, + STATE(2735), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7067), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199344,14 +203271,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(2173), 26, + ACTIONS(1302), 23, sym_file_descriptor, - sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -199359,27 +203285,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141270] = 3, - ACTIONS(71), 1, + [144671] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 14, + ACTIONS(1328), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199394,7 +203318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1310), 25, + ACTIONS(1330), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199414,21 +203338,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141317] = 5, - ACTIONS(71), 1, + [144718] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2597), 1, - aux_sym_concatenation_repeat1, - ACTIONS(6783), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1272), 13, + ACTIONS(1336), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199442,8 +203361,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 23, + ACTIONS(1338), 26, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -199456,65 +203376,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141368] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6839), 1, - sym__concat, - ACTIONS(6837), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6835), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [141417] = 3, - ACTIONS(71), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [144765] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 14, + ACTIONS(1368), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199527,9 +203404,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1314), 25, + ACTIONS(1370), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199544,67 +203420,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141464] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6841), 1, - sym__special_character, - STATE(2683), 1, - aux_sym__literal_repeat1, - ACTIONS(243), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(290), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [141515] = 3, - ACTIONS(71), 1, + [144812] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(1348), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199613,13 +203444,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 25, + ACTIONS(1350), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199629,26 +203459,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141562] = 3, - ACTIONS(71), 1, + [144859] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(1304), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199657,13 +203488,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 25, + ACTIONS(1306), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199673,26 +203503,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141609] = 3, - ACTIONS(71), 1, + [144906] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 14, + STATE(2736), 1, + aux_sym_concatenation_repeat1, + ACTIONS(7067), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5538), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199701,15 +203537,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1330), 25, + ACTIONS(5540), 23, sym_file_descriptor, - sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -199717,7 +203551,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -199725,18 +203558,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141656] = 3, - ACTIONS(71), 1, + [144957] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(1336), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199745,13 +203578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1334), 25, + ACTIONS(1338), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199761,7 +203594,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -199770,17 +203602,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141703] = 3, - ACTIONS(71), 1, + [145004] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 14, + ACTIONS(7013), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -199795,9 +203628,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1298), 25, - sym__concat, + ACTIONS(7011), 25, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -199817,14 +203650,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [141750] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [145051] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1384), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199833,13 +203666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 25, + ACTIONS(1386), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199849,72 +203681,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141797] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6843), 1, sym__special_character, - STATE(2712), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1362), 24, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141848] = 3, - ACTIONS(71), 1, + [145098] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(1344), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -199927,9 +203714,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1326), 25, + ACTIONS(1346), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -199944,65 +203730,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141895] = 3, - ACTIONS(71), 1, + [145145] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 14, + ACTIONS(1300), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1318), 25, - sym_file_descriptor, - sym__concat, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1302), 25, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [141942] = 3, - ACTIONS(71), 1, + [145192] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 14, + ACTIONS(1332), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200017,7 +203804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1302), 25, + ACTIONS(1334), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200037,16 +203824,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [141989] = 3, - ACTIONS(71), 1, + [145239] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6848), 14, + ACTIONS(1352), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200061,9 +203848,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6846), 25, + ACTIONS(1354), 25, + sym__concat, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200083,14 +203870,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [142036] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [145286] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 15, + ACTIONS(1360), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200105,8 +203892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1274), 24, + ACTIONS(1362), 25, sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, @@ -200131,54 +203917,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [142083] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [145333] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(1281), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1342), 25, - sym_file_descriptor, - sym__concat, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1403), 25, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + 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_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [142130] = 3, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [145380] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1348), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200187,13 +203974,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1294), 25, + ACTIONS(1350), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200203,7 +203990,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -200212,17 +203998,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142177] = 3, - ACTIONS(71), 1, + [145427] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(2167), 13, + ACTIONS(1360), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200231,14 +204018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(2169), 26, + ACTIONS(1362), 26, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -200246,7 +204033,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -200255,18 +204041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142224] = 3, - ACTIONS(71), 1, + [145474] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 14, + ACTIONS(1340), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200275,13 +204062,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1350), 25, + ACTIONS(1342), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200291,7 +204078,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -200300,17 +204086,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142271] = 3, - ACTIONS(71), 1, + [145521] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6852), 14, + ACTIONS(1364), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200325,9 +204112,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6850), 25, + ACTIONS(1366), 25, + sym__concat, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200347,14 +204134,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [142318] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [145568] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(4511), 13, + ACTIONS(7052), 1, + sym__special_character, + STATE(2662), 1, + aux_sym__literal_repeat1, + ACTIONS(5493), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200363,12 +204154,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(4513), 26, + ACTIONS(5495), 24, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -200378,27 +204169,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142365] = 3, - ACTIONS(71), 1, + [145619] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 14, + ACTIONS(1320), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200413,7 +204202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1330), 25, + ACTIONS(1322), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200433,60 +204222,60 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142412] = 3, - ACTIONS(71), 1, + [145666] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(1340), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1354), 25, - sym_file_descriptor, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1342), 25, sym__concat, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, 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, - [142459] = 3, - ACTIONS(71), 1, + [145713] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 14, + ACTIONS(1320), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200501,9 +204290,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6793), 25, + ACTIONS(1322), 25, + sym__concat, sym_test_operator, - anon_sym_RPAREN_RPAREN, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200523,14 +204312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [142506] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [145760] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(1376), 14, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200539,13 +204328,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1346), 25, + ACTIONS(1378), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200555,7 +204344,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -200564,21 +204352,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142553] = 5, - ACTIONS(71), 1, + [145807] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6854), 1, + ACTIONS(1304), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1306), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, - STATE(2728), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 14, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [145854] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1344), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200593,7 +204422,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1362), 23, + ACTIONS(1346), 25, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -200614,13 +204444,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [142604] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [145901] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 14, + ACTIONS(7085), 1, + sym__special_character, + STATE(2770), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200635,8 +204470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1306), 25, - sym__concat, + ACTIONS(1396), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -200657,14 +204491,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [142651] = 3, - ACTIONS(71), 1, + [145952] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1356), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200673,13 +204506,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 25, + ACTIONS(1358), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200689,26 +204521,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142698] = 3, - ACTIONS(71), 1, + [145999] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(1352), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -200717,13 +204550,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_DOLLAR, - sym__special_character, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 25, + ACTIONS(1354), 26, sym_file_descriptor, sym__concat, sym_test_operator, @@ -200733,31 +204565,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [142745] = 5, - ACTIONS(71), 1, + [146046] = 3, + ACTIONS(73), 1, sym_comment, - STATE(2638), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1113), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1253), 14, + ACTIONS(1300), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200772,7 +204600,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1376), 22, + sym__special_character, + ACTIONS(1302), 24, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -200793,14 +204623,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [142796] = 4, - ACTIONS(71), 1, + [146093] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6861), 1, - sym__concat, - ACTIONS(6859), 14, + ACTIONS(1376), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200815,9 +204644,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6857), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1378), 25, + sym__concat, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200837,15 +204666,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [142845] = 4, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [146140] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1372), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1374), 26, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146187] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1380), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(1382), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146234] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6867), 1, + STATE(2742), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1133), 2, sym__concat, - ACTIONS(6865), 14, + aux_sym_concatenation_token1, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200860,9 +204781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6863), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1403), 22, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200884,11 +204804,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [142894] = 3, - ACTIONS(71), 1, + [146285] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1388), 14, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1390), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146332] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5499), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5501), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [146378] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 14, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200903,9 +204909,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1278), 25, - sym__concat, + ACTIONS(1338), 24, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200928,11 +204934,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [142941] = 3, - ACTIONS(71), 1, + [146424] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 14, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(3503), 1, + anon_sym_DQUOTE, + ACTIONS(7092), 1, + sym_variable_name, + STATE(4582), 1, + sym_string, + ACTIONS(7090), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7088), 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(1267), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [146480] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(3503), 1, + anon_sym_DQUOTE, + ACTIONS(7092), 1, + sym_variable_name, + STATE(4582), 1, + sym_string, + ACTIONS(7090), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7088), 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(1255), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [146536] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1380), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -200947,9 +205048,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1350), 25, - sym__concat, + ACTIONS(1382), 24, sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -200972,48 +205073,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - aux_sym_concatenation_token1, - [142988] = 16, - ACTIONS(71), 1, + [146582] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(1332), 14, anon_sym_EQ, - ACTIONS(6871), 1, - anon_sym_AMP_AMP, - ACTIONS(6873), 1, anon_sym_PIPE, - ACTIONS(6875), 1, anon_sym_CARET, - ACTIONS(6877), 1, anon_sym_AMP, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6893), 1, - sym_test_operator, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6879), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6881), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6883), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6885), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6887), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6889), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 16, - sym__concat, + anon_sym_STAR_STAR, + ACTIONS(1334), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201026,74 +205108,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143060] = 21, - ACTIONS(71), 1, + [146628] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6895), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(7096), 1, + anon_sym_DQUOTE, + ACTIONS(7100), 1, + sym_variable_name, + STATE(4426), 1, + sym_string, + ACTIONS(7098), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7094), 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(1267), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - STATE(6694), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [146684] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(7096), 1, + anon_sym_DQUOTE, + ACTIONS(7100), 1, + sym_variable_name, + STATE(4426), 1, + sym_string, + ACTIONS(7098), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7094), 9, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [143142] = 3, - ACTIONS(71), 1, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1255), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [146740] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 13, + ACTIONS(1388), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -201107,7 +205229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1318), 25, + ACTIONS(1390), 25, sym_file_descriptor, sym__concat, sym_test_operator, @@ -201127,139 +205249,152 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143188] = 21, - ACTIONS(71), 1, + [146786] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(3621), 1, + anon_sym_DQUOTE, + ACTIONS(7106), 1, + sym_variable_name, + STATE(4658), 1, + sym_string, + ACTIONS(7104), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7102), 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(1267), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6933), 1, - anon_sym_RPAREN_RPAREN, - STATE(6698), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [143270] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1300), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1302), 25, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [146842] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(3621), 1, + anon_sym_DQUOTE, + ACTIONS(7106), 1, + sym_variable_name, + STATE(4658), 1, + sym_string, + ACTIONS(7104), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7102), 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(1255), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [143316] = 3, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [146898] = 17, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(7110), 1, anon_sym_EQ, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1326), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7108), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201271,53 +205406,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [143362] = 14, - ACTIONS(71), 1, + anon_sym_COLON, + [146972] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6875), 1, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6877), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6891), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6893), 1, - sym_test_operator, - ACTIONS(6795), 2, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7140), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(6869), 2, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + STATE(6751), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6879), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6881), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6883), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6885), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6887), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6889), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 17, - sym__concat, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201329,34 +205469,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [147054] = 18, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [143430] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1348), 14, - anon_sym_EQ, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1350), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7108), 14, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201368,65 +205526,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [143476] = 21, - ACTIONS(71), 1, + anon_sym_COLON, + [147130] = 15, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(7110), 1, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6935), 1, - anon_sym_RPAREN_RPAREN, - STATE(6703), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7108), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201438,10 +205578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [143558] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [147200] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(7009), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -201456,9 +205600,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1334), 24, + ACTIONS(7007), 24, + sym__concat, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -201478,32 +205622,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143604] = 3, - ACTIONS(71), 1, + [147246] = 14, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(7110), 1, anon_sym_EQ, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1354), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7108), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201517,17 +205676,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143650] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [147314] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(6976), 1, + anon_sym_RBRACK, + ACTIONS(7150), 1, + sym__concat, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -201542,9 +205701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1338), 24, + ACTIONS(1403), 22, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -201564,32 +205722,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [143696] = 3, - ACTIONS(71), 1, + [147364] = 13, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 14, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7110), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1322), 24, + ACTIONS(7108), 18, 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, @@ -201603,63 +205774,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [143742] = 21, - ACTIONS(71), 1, + [147430] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7160), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6937), 1, - anon_sym_RPAREN_RPAREN, - STATE(6706), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7162), 1, + sym_test_operator, + ACTIONS(7152), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7154), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7156), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7048), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7046), 21, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201671,10 +205817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [143824] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [147488] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5888), 13, + ACTIONS(1328), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -201686,11 +205841,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, + anon_sym_BQUOTE, sym_word, - ACTIONS(5890), 25, + ACTIONS(1330), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -201705,50 +205860,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [147534] = 26, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6729), 1, + anon_sym_esac, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, sym_ansi_c_string, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, anon_sym_BQUOTE, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7122), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143870] = 11, - ACTIONS(71), 1, + STATE(3055), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [147626] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(6927), 1, + ACTIONS(7160), 1, anon_sym_STAR_STAR, - ACTIONS(6901), 2, + ACTIONS(7152), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7154), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7156), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6941), 4, + ACTIONS(7048), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6939), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7046), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201762,104 +205976,298 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [143932] = 5, - ACTIONS(71), 1, + [147682] = 26, + ACTIONS(73), 1, sym_comment, - ACTIONS(6943), 1, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6735), 1, + anon_sym_esac, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, sym__special_character, - STATE(2920), 1, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, aux_sym__literal_repeat1, - ACTIONS(5507), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + STATE(7394), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3056), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [147774] = 26, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, anon_sym_DOLLAR, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(5509), 23, - sym_file_descriptor, + ACTIONS(6697), 1, sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7184), 1, + anon_sym_esac, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7402), 1, + sym_last_case_item, + ACTIONS(7164), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3057), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [147866] = 26, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, sym_ansi_c_string, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, anon_sym_BQUOTE, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(7186), 1, + anon_sym_esac, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7416), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [143982] = 21, - ACTIONS(71), 1, + STATE(3058), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [147958] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(7122), 1, + anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7110), 3, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7108), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_TILDE, - ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6945), 1, - anon_sym_RPAREN_RPAREN, - STATE(6708), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + anon_sym_COLON, + [148022] = 11, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7110), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7108), 18, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201871,10 +206279,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144064] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [148084] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6848), 14, + ACTIONS(7152), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7048), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -201889,11 +206305,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6846), 24, + ACTIONS(7046), 22, 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, @@ -201914,99 +206328,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [144110] = 3, - ACTIONS(71), 1, + [148132] = 10, + ACTIONS(73), 1, sym_comment, - ACTIONS(5173), 13, - anon_sym_PIPE, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(5175), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [144156] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7110), 4, anon_sym_EQ, - ACTIONS(6905), 1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7108), 20, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [148192] = 8, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7130), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7110), 6, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7108), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, - ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6947), 1, - anon_sym_RPAREN_RPAREN, - STATE(6710), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + anon_sym_COLON, + [148248] = 7, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7110), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7108), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [148302] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7110), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7108), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [148354] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7110), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7108), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202018,56 +206555,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144238] = 21, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [148404] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(6949), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7188), 1, anon_sym_RPAREN_RPAREN, - STATE(6712), 1, + STATE(6663), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202079,43 +206625,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144320] = 13, - ACTIONS(71), 1, + [148486] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6877), 1, - anon_sym_AMP, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6893), 1, - sym_test_operator, - ACTIONS(6869), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6879), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6881), 2, + ACTIONS(7110), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6883), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6885), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6887), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6795), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(6889), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 17, - sym__concat, + anon_sym_STAR_STAR, + ACTIONS(7108), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202129,59 +206662,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [144386] = 21, - ACTIONS(71), 1, + anon_sym_COLON, + [148534] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(1300), 15, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6951), 1, - anon_sym_RPAREN_RPAREN, - STATE(6718), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + anon_sym_STAR_STAR, + sym__special_character, + ACTIONS(1302), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202193,34 +206703,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144468] = 8, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [148580] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(6927), 1, + ACTIONS(7160), 1, anon_sym_STAR_STAR, - ACTIONS(6901), 2, + ACTIONS(7152), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6921), 2, + ACTIONS(7154), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7156), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6955), 6, + ACTIONS(7048), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6953), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7046), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202238,17 +206757,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [144524] = 5, - ACTIONS(71), 1, + [148636] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6667), 1, + ACTIONS(6875), 1, anon_sym_RBRACK, - ACTIONS(6957), 1, + ACTIONS(7190), 1, sym__concat, - ACTIONS(1253), 14, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -202263,7 +206782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1376), 22, + ACTIONS(1403), 22, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -202286,56 +206805,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [144574] = 21, - ACTIONS(71), 1, + [148686] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(1324), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [148732] = 8, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6959), 1, - anon_sym_RPAREN_RPAREN, - STATE(6723), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7194), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7192), 22, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202347,90 +206887,416 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [144656] = 21, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [148788] = 26, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6792), 1, + anon_sym_esac, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7371), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3149), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [148880] = 26, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6756), 1, + anon_sym_esac, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7001), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3085), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [148972] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1376), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1378), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [149018] = 26, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6762), 1, + anon_sym_esac, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7022), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3086), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [149110] = 26, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7196), 1, + anon_sym_esac, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7163), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3087), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [149202] = 26, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7198), 1, + anon_sym_esac, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7184), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3088), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [149294] = 8, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7160), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6961), 1, - anon_sym_RPAREN_RPAREN, - STATE(6548), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7152), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7154), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7156), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [144738] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1324), 14, + ACTIONS(7013), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1326), 24, + ACTIONS(7011), 22, + sym__concat, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202451,10 +207317,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [144784] = 3, - ACTIONS(71), 1, + [149350] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6813), 14, + ACTIONS(1388), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -202469,9 +207335,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6811), 24, - sym__concat, - sym_test_operator, + ACTIONS(1390), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -202491,134 +207357,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [144830] = 10, - ACTIONS(71), 1, + anon_sym_COLON, + [149396] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6917), 2, + ACTIONS(1336), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6941), 4, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [149442] = 18, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7013), 1, anon_sym_EQ, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7162), 1, + sym_test_operator, + ACTIONS(7200), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7202), 1, + anon_sym_AMP_AMP, + ACTIONS(7204), 1, anon_sym_PIPE, + ACTIONS(7206), 1, anon_sym_CARET, + ACTIONS(7208), 1, anon_sym_AMP, - ACTIONS(6939), 20, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, + ACTIONS(7216), 1, anon_sym_QMARK, - anon_sym_COLON, - [144890] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6901), 2, + ACTIONS(7152), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6921), 2, + ACTIONS(7154), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7156), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6941), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6939), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7210), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7212), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7214), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [144946] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6941), 8, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6939), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7011), 14, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202630,65 +207459,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [145000] = 21, - ACTIONS(71), 1, + [149518] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(6963), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7218), 1, anon_sym_RPAREN_RPAREN, - STATE(6553), 1, + STATE(6790), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202700,77 +207522,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145082] = 6, - ACTIONS(71), 1, + [149600] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6927), 1, + ACTIONS(7160), 1, anon_sym_STAR_STAR, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6941), 10, - anon_sym_EQ, + ACTIONS(7162), 1, + sym_test_operator, + ACTIONS(7200), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7202), 1, + anon_sym_AMP_AMP, + ACTIONS(7204), 1, anon_sym_PIPE, + ACTIONS(7206), 1, anon_sym_CARET, + ACTIONS(7208), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7216), 1, + anon_sym_QMARK, + ACTIONS(7220), 1, + anon_sym_EQ, + ACTIONS(7222), 1, + anon_sym_EQ_TILDE, + ACTIONS(7152), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7154), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7156), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6939), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7210), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [145134] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6941), 13, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7212), 2, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7214), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7011), 13, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202782,39 +207580,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [145184] = 4, - ACTIONS(71), 1, + anon_sym_RBRACK, + [149678] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6941), 14, + ACTIONS(7013), 1, anon_sym_EQ, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7162), 1, + sym_test_operator, + ACTIONS(7202), 1, + anon_sym_AMP_AMP, + ACTIONS(7204), 1, anon_sym_PIPE, + ACTIONS(7206), 1, anon_sym_CARET, + ACTIONS(7208), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7152), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7154), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7156), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7210), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7212), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7214), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6939), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7011), 16, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202827,64 +207634,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [145232] = 21, - ACTIONS(71), 1, + [149750] = 15, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(7013), 1, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7162), 1, + sym_test_operator, + ACTIONS(7204), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7206), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7208), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6965), 1, - anon_sym_RPAREN_RPAREN, - STATE(6560), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7152), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7154), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7156), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7210), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7212), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7214), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7011), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202896,10 +207687,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145314] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [149820] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 14, + ACTIONS(1380), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1382), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [149866] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6890), 1, + anon_sym_RBRACK, + ACTIONS(7224), 1, + sym__concat, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -202914,9 +207757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1350), 24, + ACTIONS(1403), 22, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -202936,13 +207778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [145360] = 3, - ACTIONS(71), 1, + [149916] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6969), 14, + ACTIONS(1368), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -202957,9 +207798,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6967), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1370), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -202979,120 +207820,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [145406] = 21, - ACTIONS(71), 1, + [149962] = 14, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7162), 1, + sym_test_operator, + ACTIONS(7206), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7208), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6971), 1, - anon_sym_RPAREN_RPAREN, - STATE(6566), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7013), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7152), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7154), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7156), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [145488] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6973), 1, - anon_sym_RPAREN_RPAREN, - STATE(6571), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7210), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7212), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7214), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7011), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203104,56 +207872,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145570] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6975), 1, - anon_sym_RPAREN_RPAREN, - STATE(6577), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + [150030] = 13, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7162), 1, + sym_test_operator, + ACTIONS(7208), 1, + anon_sym_AMP, + ACTIONS(7152), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7154), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7156), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7210), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7212), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7214), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7013), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7011), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203165,10 +207925,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145652] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [150096] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6969), 14, + ACTIONS(1384), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -203183,9 +207948,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6967), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1386), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -203205,104 +207970,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [145698] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6977), 1, - sym__special_character, - STATE(2781), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1362), 24, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [145748] = 21, - ACTIONS(71), 1, + [150142] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(1368), 14, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6980), 1, - anon_sym_RPAREN_RPAREN, - STATE(6651), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + anon_sym_STAR_STAR, + ACTIONS(1370), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203314,160 +208007,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [145830] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6982), 1, - anon_sym_RPAREN_RPAREN, - STATE(6578), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [145912] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1324), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1326), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [145958] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6984), 1, - anon_sym_RPAREN_RPAREN, - STATE(6669), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + [150188] = 12, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7162), 1, + sym_test_operator, + ACTIONS(7152), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7154), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7156), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7210), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7212), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7214), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7013), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7011), 17, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203479,111 +208063,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146040] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6986), 1, - anon_sym_RPAREN_RPAREN, - STATE(6583), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + [150252] = 11, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7162), 1, + sym_test_operator, + ACTIONS(7152), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7154), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7156), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [146122] = 17, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6941), 1, - anon_sym_EQ, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7212), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7214), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7013), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7011), 19, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203595,206 +208112,281 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_COLON, - [146196] = 3, - ACTIONS(71), 1, + anon_sym_QMARK, + [150314] = 26, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, anon_sym_DOLLAR, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1350), 25, - sym_file_descriptor, - sym__concat, + ACTIONS(6697), 1, sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6780), 1, + anon_sym_esac, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(7168), 1, sym__special_character, + ACTIONS(7170), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, sym_ansi_c_string, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7215), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146242] = 3, - ACTIONS(71), 1, + STATE(3112), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [150406] = 26, + ACTIONS(73), 1, sym_comment, - ACTIONS(2167), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, anon_sym_DOLLAR, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2169), 26, - sym_file_descriptor, - sym_variable_name, + ACTIONS(6697), 1, sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(6786), 1, + anon_sym_esac, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, sym__special_character, + ACTIONS(7170), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, sym_ansi_c_string, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, anon_sym_BQUOTE, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7219), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146288] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6988), 1, - anon_sym_RPAREN_RPAREN, - STATE(6587), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [146370] = 7, - ACTIONS(71), 1, + STATE(3113), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [150498] = 26, + ACTIONS(73), 1, sym_comment, - ACTIONS(5851), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(5856), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5849), 5, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, anon_sym_DOLLAR, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5853), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5858), 7, - sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5861), 15, - sym_variable_name, + ACTIONS(6697), 1, sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7226), 1, + anon_sym_esac, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7285), 1, + sym_last_case_item, + ACTIONS(7164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3114), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [150590] = 26, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, sym__special_character, + ACTIONS(7170), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, sym_ansi_c_string, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, anon_sym_BQUOTE, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(7228), 1, + anon_sym_esac, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7311), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146424] = 3, - ACTIONS(71), 1, + STATE(3115), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [150682] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5173), 12, + ACTIONS(1332), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -203806,10 +208398,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(5175), 26, + ACTIONS(1334), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -203822,68 +208415,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [146470] = 21, - ACTIONS(71), 1, + [150728] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(6990), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7230), 1, anon_sym_RPAREN_RPAREN, - STATE(6592), 1, + STATE(6726), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203895,29 +208487,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146552] = 3, - ACTIONS(71), 1, + [150810] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7162), 1, + sym_test_operator, + ACTIONS(7152), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7154), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7156), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7158), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7013), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7011), 21, + sym__concat, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [150868] = 7, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7152), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7156), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1334), 24, + ACTIONS(7013), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7011), 22, + sym__concat, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203938,56 +208583,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146598] = 21, - ACTIONS(71), 1, + [150922] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7152), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7158), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7013), 10, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(6992), 1, - anon_sym_RPAREN_RPAREN, - STATE(6598), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7011), 22, + sym__concat, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203999,10 +208620,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146680] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [150974] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(6896), 1, + anon_sym_RBRACK, + ACTIONS(7232), 1, + sym__concat, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204017,9 +208651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1354), 24, + ACTIONS(1403), 22, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -204039,99 +208672,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146726] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1332), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1334), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [146772] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1352), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1354), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [146818] = 3, - ACTIONS(71), 1, + [151024] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7152), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7013), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204145,12 +208696,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 24, + ACTIONS(7011), 22, + sym__concat, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204168,13 +208716,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146864] = 3, - ACTIONS(71), 1, + [151074] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7152), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7013), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204188,12 +208741,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1346), 24, + ACTIONS(7011), 22, + sym__concat, sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204211,59 +208761,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [146910] = 21, - ACTIONS(71), 1, + [151124] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(6994), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7234), 1, anon_sym_RPAREN_RPAREN, - STATE(6605), 1, + STATE(6664), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204275,57 +208825,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [146992] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5851), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(5856), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(5849), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5853), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5858), 7, - sym_file_descriptor, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - ACTIONS(5861), 15, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [147046] = 3, - ACTIONS(71), 1, + [151206] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(6902), 1, + anon_sym_RBRACK, + ACTIONS(7236), 1, + sym__concat, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -204340,9 +208847,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 24, + ACTIONS(1403), 22, sym_test_operator, - sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -204362,59 +208868,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147092] = 21, - ACTIONS(71), 1, + [151256] = 26, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(6798), 1, + anon_sym_esac, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7519), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3165), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [151348] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(6996), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7238), 1, anon_sym_RPAREN_RPAREN, - STATE(6609), 1, + STATE(6689), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204426,56 +208997,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147174] = 21, - ACTIONS(71), 1, + [151430] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(6998), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7240), 1, anon_sym_RPAREN_RPAREN, - STATE(6613), 1, + STATE(6762), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204487,56 +209058,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147256] = 21, - ACTIONS(71), 1, + [151512] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7000), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7242), 1, anon_sym_RPAREN_RPAREN, - STATE(6620), 1, + STATE(6666), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204548,29 +209119,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147338] = 3, - ACTIONS(71), 1, + [151594] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 14, - anon_sym_EQ, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7244), 1, + anon_sym_RPAREN_RPAREN, + STATE(6754), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1338), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204582,44 +209180,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [151676] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, + ACTIONS(7118), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, + anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7246), 1, + anon_sym_RPAREN_RPAREN, + STATE(6684), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7126), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [147384] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6893), 1, - sym_test_operator, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6885), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6887), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6889), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6826), 21, - sym__concat, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204631,43 +209241,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [151758] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, + ACTIONS(7118), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, + anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7248), 1, + anon_sym_RPAREN_RPAREN, + STATE(6775), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7126), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [147442] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6885), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6887), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6889), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, + ACTIONS(7146), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [151840] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7065), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6826), 22, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7063), 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, @@ -204688,56 +209345,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [147498] = 21, - ACTIONS(71), 1, + [151886] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7002), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7250), 1, anon_sym_RPAREN_RPAREN, - STATE(6627), 1, + STATE(6780), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204749,73 +209406,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147580] = 3, - ACTIONS(71), 1, + [151968] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1338), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [147626] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6828), 14, - anon_sym_EQ, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7252), 1, + anon_sym_RPAREN_RPAREN, + STATE(6781), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6826), 22, - sym__concat, - sym_test_operator, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204827,43 +209467,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [152050] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, + ACTIONS(7118), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, + anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7254), 1, + anon_sym_RPAREN_RPAREN, + STATE(6706), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7126), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [147674] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6885), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6887), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6889), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, - anon_sym_EQ, + ACTIONS(7146), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [152132] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7256), 1, + anon_sym_RPAREN_RPAREN, + STATE(6735), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6826), 22, - sym__concat, - sym_test_operator, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204875,65 +209589,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [152214] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, + ACTIONS(7118), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, + anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7258), 1, + anon_sym_RPAREN_RPAREN, + STATE(6634), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7126), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [147730] = 21, - ACTIONS(71), 1, + ACTIONS(7130), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7146), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [152296] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7004), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7260), 1, anon_sym_RPAREN_RPAREN, - STATE(6633), 1, + STATE(6675), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -204945,104 +209711,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147812] = 8, - ACTIONS(3), 1, + [152378] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(7008), 1, - anon_sym_DQUOTE, - ACTIONS(7012), 1, - sym_variable_name, - STATE(4270), 1, - sym_string, - ACTIONS(7010), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7006), 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(1227), 23, - anon_sym_SEMI, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7262), 1, + anon_sym_RPAREN_RPAREN, + STATE(6732), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [147868] = 21, - ACTIONS(71), 1, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7146), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [152460] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7014), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7264), 1, anon_sym_RPAREN_RPAREN, - STATE(6637), 1, + STATE(6774), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205054,56 +209833,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [147950] = 21, - ACTIONS(71), 1, + [152542] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7016), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7266), 1, anon_sym_RPAREN_RPAREN, - STATE(6641), 1, + STATE(6621), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205115,14 +209894,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148032] = 5, - ACTIONS(71), 1, + [152624] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7018), 1, + ACTIONS(7268), 1, sym__special_character, - STATE(2852), 1, + STATE(2971), 1, aux_sym__literal_repeat1, - ACTIONS(5315), 12, + ACTIONS(5440), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -205135,7 +209914,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5317), 24, + ACTIONS(5442), 24, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -205144,46 +209923,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [148082] = 4, - ACTIONS(71), 1, + [152674] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(7020), 1, - sym_extglob_pattern, - ACTIONS(6753), 14, - anon_sym_EQ, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7270), 1, + anon_sym_RPAREN_RPAREN, + STATE(6653), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6751), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205195,51 +210000,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [152756] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [148130] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6891), 1, + ACTIONS(7118), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, + anon_sym_AMP, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6893), 1, - sym_test_operator, - ACTIONS(6869), 2, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7272), 1, + anon_sym_RPAREN_RPAREN, + STATE(6694), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6879), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6881), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6883), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6885), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6887), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6889), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6793), 17, - sym__concat, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205251,61 +210061,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [148194] = 21, - ACTIONS(71), 1, + [152838] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7022), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7274), 1, anon_sym_RPAREN_RPAREN, - STATE(6646), 1, + STATE(6733), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205317,49 +210122,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148276] = 17, - ACTIONS(71), 1, + [152920] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6871), 1, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6873), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6875), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6877), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6891), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6893), 1, - sym_test_operator, - ACTIONS(7024), 1, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, anon_sym_EQ, - ACTIONS(7028), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6869), 2, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7276), 1, + anon_sym_RPAREN_RPAREN, + STATE(6749), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6879), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6881), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6883), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6885), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6887), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6889), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 15, - sym__concat, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205371,102 +210183,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [148350] = 3, - ACTIONS(71), 1, + [153002] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 13, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, + anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7278), 1, + anon_sym_RPAREN_RPAREN, + STATE(6773), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1342), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [148396] = 21, - ACTIONS(71), 1, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7146), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [153084] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7030), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7280), 1, anon_sym_RPAREN_RPAREN, - STATE(6636), 1, + STATE(6618), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205478,29 +210305,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148478] = 3, - ACTIONS(71), 1, + [153166] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 14, - anon_sym_EQ, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7282), 1, + anon_sym_RPAREN_RPAREN, + STATE(6633), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7146), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [153248] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, + anon_sym_AMP, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(1342), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7284), 1, + anon_sym_RPAREN_RPAREN, + STATE(6647), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205512,65 +210427,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [148524] = 21, - ACTIONS(71), 1, + [153330] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7032), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7286), 1, anon_sym_RPAREN_RPAREN, - STATE(6649), 1, + STATE(6662), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205582,203 +210488,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148606] = 3, - ACTIONS(71), 1, + [153412] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(6023), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6028), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(6021), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [148652] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1356), 13, - anon_sym_PIPE, + ACTIONS(6025), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1358), 25, + ACTIONS(6030), 7, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6033), 15, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [148698] = 21, - ACTIONS(71), 1, + [153466] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7034), 1, - anon_sym_RPAREN_RPAREN, - STATE(6655), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [148780] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(7144), 1, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, + ACTIONS(7148), 1, anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7036), 1, + ACTIONS(7288), 1, anon_sym_RPAREN_RPAREN, - STATE(6659), 1, + STATE(6672), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205790,56 +210596,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148862] = 21, - ACTIONS(71), 1, + [153548] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7038), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7290), 1, anon_sym_RPAREN_RPAREN, - STATE(6547), 1, + STATE(6682), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -205851,158 +210657,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [148944] = 3, - ACTIONS(71), 1, + [153630] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(5871), 12, + ACTIONS(6023), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5873), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(6028), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [148990] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1344), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6021), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, sym_word, - ACTIONS(1346), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [149036] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1356), 13, - anon_sym_PIPE, + ACTIONS(6025), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1358), 25, + ACTIONS(6030), 7, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + ACTIONS(6033), 15, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [149082] = 3, - ACTIONS(71), 1, + [153684] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6852), 14, - anon_sym_EQ, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7292), 1, + anon_sym_RPAREN_RPAREN, + STATE(6688), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6850), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206014,61 +210765,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149128] = 18, - ACTIONS(71), 1, + [153766] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(6901), 2, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7294), 1, + anon_sym_RPAREN_RPAREN, + STATE(6696), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 14, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206080,30 +210826,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_COLON, - [149204] = 3, - ACTIONS(71), 1, + [153848] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(7042), 14, - anon_sym_EQ, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7296), 1, + anon_sym_RPAREN_RPAREN, + STATE(6712), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7040), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206115,38 +210887,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [153930] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [149250] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7046), 14, - anon_sym_EQ, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7298), 1, + anon_sym_RPAREN_RPAREN, + STATE(6719), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7044), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206158,65 +210948,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [154012] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, + ACTIONS(7118), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, + anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7300), 1, + anon_sym_RPAREN_RPAREN, + STATE(6734), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7126), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [149296] = 21, - ACTIONS(71), 1, + ACTIONS(7130), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7146), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [154094] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7048), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7302), 1, anon_sym_RPAREN_RPAREN, - STATE(6664), 1, + STATE(6748), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206228,56 +211070,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149378] = 21, - ACTIONS(71), 1, + [154176] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7050), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7304), 1, anon_sym_RPAREN_RPAREN, - STATE(6667), 1, + STATE(6758), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206289,10 +211131,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149460] = 3, - ACTIONS(71), 1, + [154258] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7194), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -206307,11 +211152,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 24, + ACTIONS(7192), 22, 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, @@ -206332,29 +211175,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [149506] = 3, - ACTIONS(71), 1, + [154306] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 14, - anon_sym_EQ, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7306), 1, + anon_sym_RPAREN_RPAREN, + STATE(6768), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6793), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206366,38 +211236,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [154388] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149552] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6795), 14, - anon_sym_EQ, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7308), 1, + anon_sym_RPAREN_RPAREN, + STATE(6778), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6793), 24, - sym__concat, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206409,39 +211297,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [154470] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149598] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6955), 14, - anon_sym_EQ, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7310), 1, + anon_sym_RPAREN_RPAREN, + STATE(6785), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6953), 22, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206453,19 +211358,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [149646] = 3, - ACTIONS(71), 1, + [154552] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7054), 14, + ACTIONS(1376), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -206480,9 +211376,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7052), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1378), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -206502,59 +211398,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [149692] = 21, - ACTIONS(71), 1, + [154598] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7056), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7312), 1, anon_sym_RPAREN_RPAREN, - STATE(6720), 1, + STATE(6651), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206566,29 +211462,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [149774] = 3, - ACTIONS(71), 1, + [154680] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 15, - anon_sym_EQ, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7314), 1, + anon_sym_RPAREN_RPAREN, + STATE(6635), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1274), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206600,19 +211523,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [149820] = 3, - ACTIONS(71), 1, + [154762] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -206627,9 +211541,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1338), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1326), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -206649,45 +211563,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [149866] = 12, - ACTIONS(71), 1, + [154808] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6913), 1, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6901), 2, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7316), 1, + anon_sym_RPAREN_RPAREN, + STATE(6650), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6941), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(6939), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206699,61 +211627,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [149930] = 21, - ACTIONS(71), 1, + [154890] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7058), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7318), 1, anon_sym_RPAREN_RPAREN, - STATE(6670), 1, + STATE(6725), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206765,62 +211688,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150012] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(7008), 1, - anon_sym_DQUOTE, - ACTIONS(7012), 1, - sym_variable_name, - STATE(4270), 1, - sym_string, - ACTIONS(7010), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7006), 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(1239), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [150068] = 5, - ACTIONS(71), 1, + [154972] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7060), 1, - sym__special_character, - STATE(2852), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 12, + ACTIONS(2154), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -206833,8 +211704,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(1362), 24, + ACTIONS(2156), 26, sym_file_descriptor, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -206850,64 +211722,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [150118] = 21, - ACTIONS(71), 1, + [155018] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7063), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7320), 1, anon_sym_RPAREN_RPAREN, - STATE(6674), 1, + STATE(6707), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206919,30 +211792,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150200] = 4, - ACTIONS(71), 1, + [155100] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(7065), 1, - sym_extglob_pattern, - ACTIONS(6753), 14, - anon_sym_EQ, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7322), 1, + anon_sym_RPAREN_RPAREN, + STATE(6670), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6751), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -206954,65 +211853,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150248] = 21, - ACTIONS(71), 1, + [155182] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7067), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7324), 1, anon_sym_RPAREN_RPAREN, - STATE(6679), 1, + STATE(6772), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207024,72 +211914,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150330] = 3, - ACTIONS(71), 1, + [155264] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 24, - sym_test_operator, - sym_extglob_pattern, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150376] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1324), 14, + ACTIONS(7194), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1326), 24, + ACTIONS(7192), 22, 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, @@ -207110,117 +211962,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [150422] = 5, - ACTIONS(71), 1, + [155320] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6678), 1, - anon_sym_RBRACK, - ACTIONS(7069), 1, - sym__concat, - ACTIONS(1253), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1376), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150472] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1328), 14, - anon_sym_EQ, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(1330), 24, - anon_sym_RPAREN_RPAREN, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7326), 1, + anon_sym_RPAREN_RPAREN, + STATE(6687), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [150518] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7073), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7071), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207232,19 +212023,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [150564] = 3, - ACTIONS(71), 1, + [155402] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 14, + ACTIONS(1376), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -207259,9 +212041,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1350), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1378), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -207281,142 +212063,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [150610] = 3, - ACTIONS(71), 1, + [155448] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1298), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [150656] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1344), 14, - anon_sym_EQ, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(1346), 24, - sym_test_operator, - sym_extglob_pattern, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7328), 1, + anon_sym_RPAREN_RPAREN, + STATE(6645), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [150702] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [150748] = 3, - ACTIONS(71), 1, + ACTIONS(7126), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7146), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [155530] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(7332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -207431,9 +212145,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 24, - sym_test_operator, - sym_extglob_pattern, + ACTIONS(7330), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -207453,59 +212167,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [150794] = 21, - ACTIONS(71), 1, + anon_sym_COLON, + [155576] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7075), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7334), 1, anon_sym_RPAREN_RPAREN, - STATE(6687), 1, + STATE(6743), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207517,82 +212231,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [150876] = 8, - ACTIONS(3), 1, + [155658] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(3135), 1, - anon_sym_DQUOTE, - ACTIONS(7081), 1, - sym_variable_name, - STATE(4523), 1, - sym_string, - ACTIONS(7079), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7077), 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(1227), 23, - anon_sym_SEMI, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [150932] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6901), 2, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7336), 1, + anon_sym_RPAREN_RPAREN, + STATE(6691), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6921), 2, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6955), 6, + ACTIONS(7146), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [155740] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1340), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6953), 22, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1342), 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, @@ -207613,99 +212335,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [150988] = 3, - ACTIONS(71), 1, + [155786] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, + anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7338), 1, + anon_sym_RPAREN_RPAREN, + STATE(6769), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - sym__special_character, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1274), 25, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [151034] = 21, - ACTIONS(71), 1, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7146), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [155868] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7083), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7340), 1, anon_sym_RPAREN_RPAREN, - STATE(6696), 1, + STATE(6636), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207717,104 +212457,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151116] = 8, - ACTIONS(3), 1, + [155950] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(3135), 1, - anon_sym_DQUOTE, - ACTIONS(7081), 1, - sym_variable_name, - STATE(4523), 1, - sym_string, - ACTIONS(7079), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7077), 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(1239), 23, - anon_sym_SEMI, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7342), 1, + anon_sym_RPAREN_RPAREN, + STATE(6679), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [151172] = 21, - ACTIONS(71), 1, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7146), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [156032] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7085), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7344), 1, anon_sym_RPAREN_RPAREN, - STATE(6707), 1, + STATE(6760), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207826,56 +212579,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151254] = 21, - ACTIONS(71), 1, + [156114] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7087), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7346), 1, anon_sym_RPAREN_RPAREN, - STATE(6711), 1, + STATE(6699), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207887,99 +212640,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151336] = 3, - ACTIONS(71), 1, + [156196] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(2171), 12, + ACTIONS(1320), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2173), 26, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1322), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [151382] = 21, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [156242] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7089), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7348), 1, anon_sym_RPAREN_RPAREN, - STATE(6724), 1, + STATE(6777), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -207991,56 +212744,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151464] = 21, - ACTIONS(71), 1, + [156324] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7091), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7350), 1, anon_sym_RPAREN_RPAREN, - STATE(6676), 1, + STATE(6627), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208052,39 +212805,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151546] = 11, - ACTIONS(71), 1, + [156406] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6891), 1, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, + anon_sym_AMP, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6893), 1, - sym_test_operator, - ACTIONS(6869), 2, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7352), 1, + anon_sym_RPAREN_RPAREN, + STATE(6721), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6881), 2, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6883), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6885), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6887), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6889), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6793), 19, - sym__concat, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208096,63 +212866,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [151608] = 21, - ACTIONS(71), 1, + [156488] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7093), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7354), 1, anon_sym_RPAREN_RPAREN, - STATE(6557), 1, + STATE(6629), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208164,89 +212927,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151690] = 3, - ACTIONS(71), 1, + [156570] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 25, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [151736] = 15, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6941), 1, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, anon_sym_EQ, - ACTIONS(6901), 2, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7356), 1, + anon_sym_RPAREN_RPAREN, + STATE(6646), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208258,60 +212988,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [151806] = 21, - ACTIONS(71), 1, + [156652] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7095), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7358), 1, anon_sym_RPAREN_RPAREN, - STATE(6568), 1, + STATE(6698), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208323,44 +213049,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [151888] = 14, - ACTIONS(71), 1, + [156734] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6909), 1, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6941), 1, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, anon_sym_EQ, - ACTIONS(6901), 2, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7360), 1, + anon_sym_RPAREN_RPAREN, + STATE(6776), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 18, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208372,61 +213110,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [151956] = 21, - ACTIONS(71), 1, + [156816] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, + ACTIONS(7138), 1, anon_sym_QMARK, - ACTIONS(7097), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7362), 1, anon_sym_RPAREN_RPAREN, - STATE(6579), 1, + STATE(6631), 1, aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208438,10 +213171,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152038] = 3, - ACTIONS(71), 1, + [156898] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1253), 14, + ACTIONS(1324), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -208456,9 +213189,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1376), 24, - sym__concat, - sym_test_operator, + ACTIONS(1326), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -208478,38 +213211,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152084] = 9, - ACTIONS(71), 1, + anon_sym_COLON, + [156944] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6893), 1, + ACTIONS(1368), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1370), 25, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6885), 2, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [156990] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1384), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1386), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, - ACTIONS(6887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6889), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6795), 6, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [157036] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1370), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [157082] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1336), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6793), 21, - sym__concat, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1338), 24, + sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -208530,56 +213386,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152142] = 21, - ACTIONS(71), 1, + [157128] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(1328), 14, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7099), 1, - anon_sym_RPAREN_RPAREN, - STATE(6590), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + anon_sym_STAR_STAR, + ACTIONS(1330), 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, @@ -208591,10 +213420,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152224] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157174] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(6129), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(6131), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [157220] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1380), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -208609,9 +213490,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1334), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1382), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -208631,13 +213512,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [152270] = 3, - ACTIONS(71), 1, + [157266] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 13, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -208649,11 +213530,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(1322), 25, + ACTIONS(1302), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -208668,23 +213549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152316] = 5, - ACTIONS(71), 1, + [157312] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6692), 1, - anon_sym_RBRACK, - ACTIONS(7101), 1, - sym__concat, - ACTIONS(1253), 14, + ACTIONS(1376), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -208699,7 +213576,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1376), 22, + ACTIONS(1378), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [157358] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6991), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6989), 24, + sym__concat, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -208720,12 +213641,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152366] = 3, - ACTIONS(71), 1, + [157404] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(1332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -208740,9 +213662,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1354), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1334), 24, + sym_test_operator, + sym_extglob_pattern, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -208762,17 +213684,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [152412] = 5, - ACTIONS(71), 1, + [157450] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7103), 1, + ACTIONS(7364), 1, sym__special_character, - STATE(2781), 1, + STATE(2943), 1, aux_sym__literal_repeat1, - ACTIONS(5315), 12, + ACTIONS(1394), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -208784,8 +213706,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5317), 24, + ACTIONS(1396), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -208794,7 +213717,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, @@ -208803,17 +213725,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [157500] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1340), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1342), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [157546] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5015), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5017), 26, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [157592] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1320), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [157638] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5499), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, + sym_word, + ACTIONS(5501), 25, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152462] = 3, - ACTIONS(71), 1, + [157684] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1300), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1302), 24, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + sym__special_character, + [157730] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 13, + ACTIONS(2158), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -208825,11 +213962,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(1306), 25, + ACTIONS(2160), 26, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -208842,21 +213978,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152508] = 3, - ACTIONS(71), 1, + [157776] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4511), 12, + ACTIONS(5048), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -208869,7 +214006,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4513), 26, + ACTIONS(5050), 26, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -208889,17 +214026,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [152554] = 3, - ACTIONS(71), 1, + [157822] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(7369), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -208914,7 +214051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 24, + ACTIONS(7367), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -208939,56 +214076,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [152600] = 21, - ACTIONS(71), 1, + [157868] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(7013), 14, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7105), 1, - anon_sym_RPAREN_RPAREN, - STATE(6603), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + anon_sym_STAR_STAR, + ACTIONS(7011), 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, @@ -209000,22 +214110,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152682] = 7, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [157914] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6889), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6795), 8, + ACTIONS(7371), 1, + sym_extglob_pattern, + ACTIONS(6946), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -209024,9 +214133,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6793), 22, - sym__concat, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6944), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209044,59 +214160,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152736] = 21, - ACTIONS(71), 1, + [157962] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(7013), 14, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7107), 1, - anon_sym_RPAREN_RPAREN, - STATE(6614), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + anon_sym_STAR_STAR, + ACTIONS(7011), 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, @@ -209108,62 +214197,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152818] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, - sym_word, - ACTIONS(1274), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [152864] = 6, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [158008] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6889), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6795), 10, + ACTIONS(1368), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -209174,9 +214220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6793), 22, - sym__concat, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1370), 24, sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209197,56 +214249,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [152916] = 21, - ACTIONS(71), 1, + [158054] = 17, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7162), 1, + sym_test_operator, + ACTIONS(7200), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7202), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7204), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7206), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7208), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7109), 1, - anon_sym_RPAREN_RPAREN, - STATE(6628), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7373), 1, + anon_sym_EQ, + ACTIONS(7152), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7154), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7156), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7210), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7212), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7214), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7375), 15, + sym__concat, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209258,63 +214303,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [152998] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(3354), 1, - anon_sym_DQUOTE, - ACTIONS(7115), 1, - sym_variable_name, - STATE(4471), 1, - sym_string, - ACTIONS(7113), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7111), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [153054] = 5, - ACTIONS(71), 1, + [158128] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6795), 13, + ACTIONS(1384), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -209328,9 +214323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 22, - sym__concat, + anon_sym_STAR_STAR, + ACTIONS(1386), 24, sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209351,34 +214349,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153104] = 8, - ACTIONS(71), 1, + [158174] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6885), 2, + ACTIONS(1368), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6887), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6889), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6793), 22, - sym__concat, + anon_sym_STAR_STAR, + ACTIONS(1370), 24, sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -209399,10 +214392,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [153160] = 3, - ACTIONS(71), 1, + [158220] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(6995), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -209417,7 +214410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1346), 24, + ACTIONS(6993), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -209442,56 +214435,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [153206] = 21, - ACTIONS(71), 1, + [158266] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(7003), 14, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7117), 1, - anon_sym_RPAREN_RPAREN, - STATE(6558), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + anon_sym_STAR_STAR, + ACTIONS(7001), 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, @@ -209503,58 +214469,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [153288] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(3354), 1, - anon_sym_DQUOTE, - ACTIONS(7115), 1, - sym_variable_name, - STATE(4471), 1, - sym_string, - ACTIONS(7113), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7111), 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(1239), 23, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [153344] = 3, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [158312] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 14, + ACTIONS(7379), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -209569,8 +214496,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1274), 24, - sym_test_operator, + ACTIONS(7377), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -209590,52 +214518,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - sym__special_character, - [153390] = 16, - ACTIONS(71), 1, + anon_sym_COLON, + [158358] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7383), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(7121), 1, - anon_sym_EQ, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7119), 16, + anon_sym_STAR_STAR, + ACTIONS(7381), 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, @@ -209647,74 +214555,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [153462] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7123), 1, - anon_sym_RPAREN_RPAREN, - STATE(6640), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [153544] = 3, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [158404] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 13, + ACTIONS(6133), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -209726,11 +214579,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(1330), 25, + ACTIONS(6135), 26, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -209743,67 +214595,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [158450] = 26, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7385), 1, + anon_sym_esac, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7183), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3211), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [158542] = 26, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, sym_ansi_c_string, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(7387), 1, + anon_sym_esac, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7277), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [153590] = 21, - ACTIONS(71), 1, + STATE(3215), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [158634] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(1336), 14, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7125), 1, - anon_sym_RPAREN_RPAREN, - STATE(6650), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + anon_sym_STAR_STAR, + ACTIONS(1338), 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, @@ -209815,68 +214773,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [153672] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6795), 1, - anon_sym_EQ, - ACTIONS(6871), 1, - anon_sym_AMP_AMP, - ACTIONS(6873), 1, - anon_sym_PIPE, - ACTIONS(6875), 1, - anon_sym_CARET, - ACTIONS(6877), 1, - anon_sym_AMP, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6893), 1, - sym_test_operator, - ACTIONS(7028), 1, anon_sym_PIPE_PIPE, - ACTIONS(7127), 1, - anon_sym_QMARK, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6879), 2, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6881), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6883), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6885), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6889), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6793), 14, - sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, - [153748] = 3, - ACTIONS(71), 1, + anon_sym_QMARK, + anon_sym_COLON, + [158680] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(7389), 1, + sym_extglob_pattern, + ACTIONS(6946), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -209891,9 +214802,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(6944), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -209913,13 +214823,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [153794] = 3, - ACTIONS(71), 1, + [158728] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(4495), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(6209), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6211), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + ACTIONS(4503), 16, + sym_variable_name, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [158778] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4593), 12, + ACTIONS(1300), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -209932,7 +214887,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(4595), 26, + ACTIONS(1302), 26, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -209952,17 +214907,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [153840] = 3, - ACTIONS(71), 1, + [158824] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6837), 14, + ACTIONS(1300), 15, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -209977,9 +214932,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6835), 24, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + sym__special_character, + ACTIONS(1302), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -209999,103 +214954,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [153886] = 5, - ACTIONS(71), 1, + [158870] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6795), 13, - anon_sym_EQ, + ACTIONS(7391), 1, + sym__special_character, + STATE(2971), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 12, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6793), 22, - sym__concat, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1396), 24, + sym_file_descriptor, sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [153936] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6705), 1, - anon_sym_RBRACK, - ACTIONS(7129), 1, - sym__concat, - ACTIONS(1253), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1376), 22, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [153986] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [158920] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7133), 14, + ACTIONS(1380), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -210110,7 +215020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7131), 24, + ACTIONS(1382), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -210135,75 +215045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [154032] = 21, - ACTIONS(71), 1, + [158966] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7135), 1, - anon_sym_RPAREN_RPAREN, - STATE(6660), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [154114] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7137), 1, + ACTIONS(7394), 1, sym__special_character, - STATE(2920), 1, + STATE(2943), 1, aux_sym__literal_repeat1, - ACTIONS(1360), 13, + ACTIONS(5787), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -210217,7 +215066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1362), 23, + ACTIONS(5789), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -210234,82 +215083,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [154164] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7140), 1, - anon_sym_RPAREN_RPAREN, - STATE(6665), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [154246] = 5, - ACTIONS(71), 1, + [159016] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6764), 1, - anon_sym_RBRACK, - ACTIONS(7142), 1, - sym__concat, - ACTIONS(1253), 14, + ACTIONS(1368), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -210324,8 +215108,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1376), 22, - sym_test_operator, + ACTIONS(1370), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -210347,10 +215132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [154296] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [159062] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6819), 14, + ACTIONS(1384), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -210365,7 +215151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6817), 24, + ACTIONS(1386), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -210390,130 +215176,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [154342] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6871), 1, - anon_sym_AMP_AMP, - ACTIONS(6873), 1, - anon_sym_PIPE, - ACTIONS(6875), 1, - anon_sym_CARET, - ACTIONS(6877), 1, - anon_sym_AMP, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6893), 1, - sym_test_operator, - ACTIONS(7028), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7127), 1, - anon_sym_QMARK, - ACTIONS(7144), 1, - anon_sym_EQ, - ACTIONS(7146), 1, - anon_sym_EQ_TILDE, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6879), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6881), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6883), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6885), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6889), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6793), 13, - sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RBRACK, - [154420] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7148), 1, - anon_sym_RPAREN_RPAREN, - STATE(6671), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [154502] = 3, - ACTIONS(71), 1, + [159108] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7152), 14, + ACTIONS(1368), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -210528,7 +215194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7150), 24, + ACTIONS(1370), 24, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -210553,71 +215219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [154548] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7154), 1, - anon_sym_RPAREN_RPAREN, - STATE(6615), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [154630] = 3, - ACTIONS(71), 1, + [159154] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 15, + ACTIONS(7398), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -210632,9 +215237,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - sym__special_character, - ACTIONS(1274), 23, - sym_test_operator, + ACTIONS(7396), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -210654,19 +215259,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [154676] = 5, - ACTIONS(71), 1, + anon_sym_COLON, + [159200] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4304), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(5927), 7, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -210674,139 +215273,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5929), 10, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1302), 25, sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(4318), 16, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [154726] = 15, - ACTIONS(71), 1, + [159246] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, - anon_sym_EQ, - ACTIONS(6873), 1, - anon_sym_PIPE, - ACTIONS(6875), 1, - anon_sym_CARET, - ACTIONS(6877), 1, - anon_sym_AMP, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6893), 1, - sym_test_operator, - ACTIONS(6869), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6879), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6881), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6883), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6885), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6887), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6889), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6793), 17, - sym__concat, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(6930), 1, anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [154796] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(7400), 1, + sym__concat, + ACTIONS(1281), 14, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7156), 1, - anon_sym_RPAREN_RPAREN, - STATE(6681), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + anon_sym_STAR_STAR, + ACTIONS(1403), 22, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -210818,75 +215342,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [154878] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7158), 1, - anon_sym_RPAREN_RPAREN, - STATE(6686), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [154960] = 5, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159296] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6711), 1, - anon_sym_RBRACK, - ACTIONS(7160), 1, - sym__concat, - ACTIONS(1253), 14, + ACTIONS(7332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -210901,8 +215368,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1376), 22, - sym_test_operator, + ACTIONS(7330), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -210924,10 +215392,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [155010] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [159342] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5871), 13, + ACTIONS(6129), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -210941,49 +215410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5873), 25, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [155056] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1274), 26, + ACTIONS(6131), 25, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -210998,116 +215425,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [155102] = 21, - ACTIONS(71), 1, + [159388] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, + ACTIONS(1332), 14, anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7162), 1, - anon_sym_RPAREN_RPAREN, - STATE(6690), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [155184] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, anon_sym_STAR_STAR, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6941), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6939), 18, + ACTIONS(1334), 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, @@ -211121,17 +215472,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [155250] = 4, + [159434] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7166), 1, + ACTIONS(7404), 1, anon_sym_EQ, - ACTIONS(7168), 1, + ACTIONS(7406), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7164), 36, + ACTIONS(7402), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -211168,10 +215523,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [155298] = 3, - ACTIONS(71), 1, + [159482] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1281), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1403), 24, + sym__concat, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [159528] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 13, + ACTIONS(6133), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -211183,11 +215581,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(1278), 25, + ACTIONS(6135), 25, sym_file_descriptor, - sym__concat, + sym_variable_name, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -211202,65 +215600,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [155344] = 21, - ACTIONS(71), 1, + [159574] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, + ACTIONS(7114), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + ACTIONS(7116), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7118), 1, anon_sym_PIPE, - ACTIONS(6911), 1, + ACTIONS(7120), 1, anon_sym_CARET, - ACTIONS(6913), 1, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(6927), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7170), 1, - anon_sym_RPAREN_RPAREN, - STATE(6695), 1, - aux_sym_arithmetic_expansion_repeat1, - ACTIONS(6901), 2, + ACTIONS(7410), 1, + anon_sym_EQ, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7408), 16, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211272,10 +215662,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [155426] = 3, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [159646] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5888), 12, + ACTIONS(1348), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -211287,10 +215680,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(5890), 26, + ACTIONS(1350), 25, sym_file_descriptor, - sym_variable_name, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, @@ -211303,377 +215697,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [155472] = 13, - ACTIONS(71), 1, + [159692] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7172), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(7188), 1, - sym_test_operator, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7176), 2, + ACTIONS(1304), 13, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7180), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7182), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6795), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7184), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6793), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [155537] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3630), 1, - anon_sym_DQUOTE, - ACTIONS(7194), 1, - sym_variable_name, - STATE(4297), 1, - sym_string, - ACTIONS(1235), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7192), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7190), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 21, - anon_sym_SEMI, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [155592] = 25, - ACTIONS(71), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [159738] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, + ACTIONS(1344), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6496), 1, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1346), 25, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, sym__brace_start, - ACTIONS(7198), 1, - anon_sym_esac, - ACTIONS(7200), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7489), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3357), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [155681] = 8, - ACTIONS(3), 1, + [159784] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(3630), 1, - anon_sym_DQUOTE, - ACTIONS(7194), 1, - sym_variable_name, - STATE(4297), 1, - sym_string, - ACTIONS(1241), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7192), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7190), 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(1239), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1360), 13, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [155736] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, anon_sym_DOLLAR, - ACTIONS(6496), 1, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1362), 25, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, sym__brace_start, - ACTIONS(7200), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, + aux_sym_concatenation_token1, sym__special_character, - ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7216), 1, - anon_sym_esac, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7494), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3360), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [155825] = 8, - ACTIONS(3), 1, + [159830] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(3630), 1, - anon_sym_DQUOTE, - ACTIONS(7194), 1, - sym_variable_name, - STATE(4297), 1, - sym_string, - ACTIONS(7192), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7190), 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(1227), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1364), 13, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1366), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [155880] = 15, - ACTIONS(71), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [159876] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(7414), 14, anon_sym_EQ, - ACTIONS(7220), 1, anon_sym_PIPE, - ACTIONS(7222), 1, anon_sym_CARET, - ACTIONS(7224), 1, anon_sym_AMP, - ACTIONS(7238), 1, - anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(7218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7230), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 16, + anon_sym_STAR_STAR, + ACTIONS(7412), 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, @@ -211687,164 +215916,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [155949] = 8, - ACTIONS(3), 1, + anon_sym_COLON, + [159922] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(3630), 1, - anon_sym_DQUOTE, - ACTIONS(7194), 1, - sym_variable_name, - STATE(4297), 1, - sym_string, - ACTIONS(7192), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7190), 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(1239), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1356), 13, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [156004] = 9, - ACTIONS(71), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [159968] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, - anon_sym_STAR_STAR, - ACTIONS(7252), 1, - sym_test_operator, - ACTIONS(7242), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7248), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 6, - anon_sym_EQ, + ACTIONS(1352), 13, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6826), 20, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1354), 25, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156061] = 17, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [160014] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7024), 1, - anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_STAR_STAR, - ACTIONS(7252), 1, + ACTIONS(1372), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1374), 25, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(7254), 1, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - ACTIONS(7256), 1, anon_sym_AMP_AMP, - ACTIONS(7258), 1, - anon_sym_PIPE, - ACTIONS(7260), 1, - anon_sym_CARET, - ACTIONS(7262), 1, - anon_sym_AMP, - ACTIONS(7242), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7244), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7264), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7266), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7268), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7248), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7026), 14, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156134] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [160060] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1253), 14, + ACTIONS(7418), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -211859,8 +216070,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1376), 23, - sym_test_operator, + ACTIONS(7416), 24, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -211880,89 +216092,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [156179] = 14, - ACTIONS(71), 1, + anon_sym_COLON, + [160106] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7222), 1, - anon_sym_CARET, - ACTIONS(7224), 1, - anon_sym_AMP, - ACTIONS(7238), 1, - anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(6795), 2, - anon_sym_EQ, + ACTIONS(7420), 1, + sym__special_character, + STATE(2999), 1, + aux_sym__literal_repeat1, + ACTIONS(5440), 12, anon_sym_PIPE, - ACTIONS(7218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7230), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7232), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7236), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6793), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5442), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156246] = 8, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [160156] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7238), 1, - anon_sym_STAR_STAR, - ACTIONS(7218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7232), 2, + ACTIONS(1324), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6793), 21, + anon_sym_STAR_STAR, + ACTIONS(1326), 24, sym_test_operator, + sym_extglob_pattern, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -211980,93 +216180,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [156301] = 9, - ACTIONS(71), 1, + [160202] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, - sym_test_operator, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7272), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7274), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6795), 6, - anon_sym_EQ, + ACTIONS(7422), 1, + sym__special_character, + STATE(2999), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 12, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6793), 20, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1396), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156358] = 13, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [160252] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(7224), 1, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, - ACTIONS(7238), 1, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(7218), 2, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7425), 1, + anon_sym_RPAREN_RPAREN, + STATE(6731), 1, + aux_sym_arithmetic_expansion_repeat1, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7226), 2, + ACTIONS(7124), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7228), 2, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7230), 2, + ACTIONS(7128), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7232), 2, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6795), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7236), 3, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 16, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212078,46 +216289,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [160334] = 18, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7013), 1, + anon_sym_EQ, + ACTIONS(7429), 1, anon_sym_PIPE_PIPE, + ACTIONS(7431), 1, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156423] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7238), 1, + ACTIONS(7433), 1, + anon_sym_PIPE, + ACTIONS(7435), 1, + anon_sym_CARET, + ACTIONS(7437), 1, + anon_sym_AMP, + ACTIONS(7451), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(7453), 1, + anon_sym_QMARK, + ACTIONS(7455), 1, sym_test_operator, - ACTIONS(7218), 2, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7226), 2, + ACTIONS(7439), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7228), 2, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7230), 2, + ACTIONS(7443), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7232), 2, + ACTIONS(7445), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, + ACTIONS(7447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6793), 16, + ACTIONS(7011), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212129,59 +216344,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [156486] = 20, - ACTIONS(71), 1, + [160409] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, - sym_test_operator, - ACTIONS(7280), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(7282), 1, + ACTIONS(7457), 1, anon_sym_EQ, - ACTIONS(7286), 1, + ACTIONS(7461), 1, anon_sym_PIPE_PIPE, - ACTIONS(7288), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7290), 1, + ACTIONS(7465), 1, anon_sym_PIPE, - ACTIONS(7292), 1, + ACTIONS(7467), 1, anon_sym_CARET, - ACTIONS(7294), 1, + ACTIONS(7469), 1, anon_sym_AMP, - ACTIONS(7302), 1, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7485), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7487), 1, anon_sym_EQ_TILDE, - ACTIONS(7304), 1, + ACTIONS(7489), 1, anon_sym_QMARK, - ACTIONS(6830), 2, + ACTIONS(7491), 1, + sym_test_operator, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7272), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7296), 2, + ACTIONS(7471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7298), 2, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7300), 2, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7274), 3, + ACTIONS(7477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7284), 11, + ACTIONS(7459), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212193,96 +216405,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156565] = 3, - ACTIONS(71), 1, + [160488] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 12, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7451), 1, + anon_sym_STAR_STAR, + ACTIONS(7427), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7445), 2, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1274), 25, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [156610] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7220), 1, + ACTIONS(7447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7449), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7048), 6, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7222), 1, anon_sym_CARET, - ACTIONS(7224), 1, anon_sym_AMP, - ACTIONS(7238), 1, - anon_sym_STAR_STAR, - ACTIONS(7240), 1, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7046), 21, sym_test_operator, - ACTIONS(7280), 1, - anon_sym_RBRACK, - ACTIONS(7306), 1, - anon_sym_EQ, - ACTIONS(7310), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - ACTIONS(7312), 1, anon_sym_AMP_AMP, - ACTIONS(7314), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - ACTIONS(7316), 1, anon_sym_QMARK, - ACTIONS(7218), 2, + [160543] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7228), 2, + ACTIONS(7048), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7230), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7308), 11, + anon_sym_STAR_STAR, + ACTIONS(7046), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212294,54 +216486,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156689] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7280), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(7318), 1, - anon_sym_EQ, - ACTIONS(7322), 1, anon_sym_PIPE_PIPE, - ACTIONS(7324), 1, anon_sym_AMP_AMP, - ACTIONS(7326), 1, - anon_sym_PIPE, - ACTIONS(7328), 1, - anon_sym_CARET, - ACTIONS(7330), 1, - anon_sym_AMP, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(7348), 1, - anon_sym_QMARK, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7332), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7334), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7336), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7338), 2, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [160590] = 8, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7451), 1, + anon_sym_STAR_STAR, + ACTIONS(7427), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7445), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, + ACTIONS(7447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7320), 11, + ACTIONS(7048), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7046), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212353,38 +216533,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156768] = 11, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [160645] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(7238), 1, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(7501), 1, sym_test_operator, - ACTIONS(7218), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7228), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7230), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7232), 2, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 4, + ACTIONS(7013), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6793), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7011), 20, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212400,37 +216586,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [156829] = 9, - ACTIONS(71), 1, + [160702] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(7186), 1, + ACTIONS(7509), 1, anon_sym_STAR_STAR, - ACTIONS(7188), 1, + ACTIONS(7511), 1, sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7180), 2, + ACTIONS(7503), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, + ACTIONS(7505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7184), 3, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, + ACTIONS(7048), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6826), 20, + ACTIONS(7046), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212451,54 +216638,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [156886] = 20, - ACTIONS(71), 1, + [160759] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, - anon_sym_STAR_STAR, - ACTIONS(7252), 1, - sym_test_operator, - ACTIONS(7254), 1, + ACTIONS(7429), 1, anon_sym_PIPE_PIPE, - ACTIONS(7256), 1, + ACTIONS(7431), 1, anon_sym_AMP_AMP, - ACTIONS(7258), 1, + ACTIONS(7433), 1, anon_sym_PIPE, - ACTIONS(7260), 1, + ACTIONS(7435), 1, anon_sym_CARET, - ACTIONS(7262), 1, + ACTIONS(7437), 1, anon_sym_AMP, - ACTIONS(7352), 1, + ACTIONS(7451), 1, + anon_sym_STAR_STAR, + ACTIONS(7453), 1, + anon_sym_QMARK, + ACTIONS(7455), 1, + sym_test_operator, + ACTIONS(7513), 1, anon_sym_EQ, - ACTIONS(7356), 1, + ACTIONS(7517), 1, anon_sym_RPAREN, - ACTIONS(7358), 1, + ACTIONS(7519), 1, anon_sym_EQ_TILDE, - ACTIONS(7360), 1, - anon_sym_QMARK, - ACTIONS(7242), 2, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7264), 2, + ACTIONS(7439), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7268), 2, + ACTIONS(7443), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7248), 3, + ACTIONS(7445), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7354), 11, + ACTIONS(7515), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212510,32 +216697,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [156965] = 8, - ACTIONS(71), 1, + [160838] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7186), 1, + ACTIONS(7509), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7180), 2, + ACTIONS(7503), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, + ACTIONS(7505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7184), 3, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, + ACTIONS(7048), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6826), 21, + ACTIONS(7046), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -212557,32 +216744,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [157020] = 8, - ACTIONS(71), 1, + [160893] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7186), 1, + ACTIONS(7509), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7180), 2, + ACTIONS(7503), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, + ACTIONS(7505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7184), 3, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, + ACTIONS(7048), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6826), 21, + ACTIONS(7046), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -212604,28 +216791,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_TILDE, anon_sym_QMARK, anon_sym_COLON, - [157075] = 3, - ACTIONS(71), 1, + [160948] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7499), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6793), 23, + ACTIONS(7048), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7046), 21, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212643,57 +216836,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157120] = 20, - ACTIONS(71), 1, + [161003] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7172), 1, - anon_sym_AMP, - ACTIONS(7186), 1, + ACTIONS(7509), 1, anon_sym_STAR_STAR, - ACTIONS(7188), 1, + ACTIONS(7511), 1, sym_test_operator, - ACTIONS(7362), 1, + ACTIONS(7521), 1, anon_sym_EQ, - ACTIONS(7366), 1, + ACTIONS(7525), 1, anon_sym_PIPE_PIPE, - ACTIONS(7368), 1, + ACTIONS(7527), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(7529), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(7531), 1, anon_sym_CARET, - ACTIONS(7374), 1, + ACTIONS(7533), 1, + anon_sym_AMP, + ACTIONS(7541), 1, anon_sym_EQ_TILDE, - ACTIONS(7376), 1, + ACTIONS(7543), 1, anon_sym_QMARK, - ACTIONS(7378), 1, + ACTIONS(7545), 1, anon_sym_COLON, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7174), 2, + ACTIONS(7503), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7535), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7176), 2, + ACTIONS(7537), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, + ACTIONS(7539), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7182), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7184), 3, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7364), 11, + ACTIONS(7523), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212705,48 +216897,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [157199] = 17, - ACTIONS(71), 1, + [161082] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7024), 1, + ACTIONS(7547), 1, anon_sym_EQ, - ACTIONS(7220), 1, + ACTIONS(7553), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7555), 1, + anon_sym_AMP_AMP, + ACTIONS(7557), 1, anon_sym_PIPE, - ACTIONS(7222), 1, + ACTIONS(7559), 1, anon_sym_CARET, - ACTIONS(7224), 1, + ACTIONS(7561), 1, anon_sym_AMP, - ACTIONS(7238), 1, + ACTIONS(7575), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(7577), 1, + anon_sym_RBRACK, + ACTIONS(7579), 1, + anon_sym_EQ_TILDE, + ACTIONS(7581), 1, + anon_sym_QMARK, + ACTIONS(7583), 1, sym_test_operator, - ACTIONS(7310), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 2, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7226), 2, + ACTIONS(7563), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7228), 2, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7230), 2, + ACTIONS(7567), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7232), 2, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 14, + ACTIONS(7551), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212758,96 +216956,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [157272] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(6542), 1, - anon_sym_esac, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7203), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3443), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [157361] = 4, - ACTIONS(71), 1, + [161161] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7380), 1, - anon_sym_LBRACK, - ACTIONS(6632), 14, + ACTIONS(7457), 1, anon_sym_EQ, + ACTIONS(7461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, anon_sym_PIPE, + ACTIONS(7467), 1, anon_sym_CARET, + ACTIONS(7469), 1, anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7487), 1, + anon_sym_EQ_TILDE, + ACTIONS(7489), 1, + anon_sym_QMARK, + ACTIONS(7491), 1, + sym_test_operator, + ACTIONS(7577), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7471), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7475), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6630), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7459), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -212859,235 +217015,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [157408] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(6557), 1, - anon_sym_esac, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7226), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3446), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [157497] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7382), 1, - anon_sym_esac, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6796), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3451), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [157586] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7384), 1, - anon_sym_esac, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6822), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3455), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [157675] = 9, - ACTIONS(71), 1, + [161240] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(7238), 1, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(7218), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7232), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 2, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 6, + ACTIONS(7013), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6793), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7011), 21, + sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213105,13 +217059,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157732] = 3, - ACTIONS(71), 1, + [161293] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1253), 14, + ACTIONS(7499), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7497), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7013), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -213122,14 +217084,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1376), 23, + ACTIONS(7011), 21, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213147,25 +217104,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157777] = 7, - ACTIONS(71), 1, + [161344] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7238), 1, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(7218), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7234), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7236), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6795), 8, + ACTIONS(7013), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -213174,8 +217123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6793), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7011), 21, sym_test_operator, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213193,22 +217148,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157830] = 6, - ACTIONS(71), 1, + [161393] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7238), 1, - anon_sym_STAR_STAR, - ACTIONS(7218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7236), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6795), 10, + ACTIONS(6991), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -213219,8 +217164,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6793), 21, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(6989), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213238,36 +217189,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157881] = 7, - ACTIONS(71), 1, + [161438] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, + ACTIONS(7483), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7491), 1, + sym_test_operator, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7272), 2, + ACTIONS(7477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7274), 3, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 8, + ACTIONS(7048), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6793), 21, - sym_test_operator, - anon_sym_RPAREN_RPAREN, + ACTIONS(7046), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213285,56 +217237,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [157934] = 20, - ACTIONS(71), 1, + [161495] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, - sym_test_operator, - ACTIONS(7282), 1, - anon_sym_EQ, - ACTIONS(7286), 1, + ACTIONS(7429), 1, anon_sym_PIPE_PIPE, - ACTIONS(7288), 1, + ACTIONS(7431), 1, anon_sym_AMP_AMP, - ACTIONS(7290), 1, + ACTIONS(7433), 1, anon_sym_PIPE, - ACTIONS(7292), 1, + ACTIONS(7435), 1, anon_sym_CARET, - ACTIONS(7294), 1, + ACTIONS(7437), 1, anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_EQ_TILDE, - ACTIONS(7304), 1, + ACTIONS(7451), 1, + anon_sym_STAR_STAR, + ACTIONS(7453), 1, anon_sym_QMARK, - ACTIONS(7386), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6830), 2, + ACTIONS(7455), 1, + sym_test_operator, + ACTIONS(7513), 1, + anon_sym_EQ, + ACTIONS(7519), 1, + anon_sym_EQ_TILDE, + ACTIONS(7585), 1, + anon_sym_RPAREN, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7272), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7296), 2, + ACTIONS(7439), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7298), 2, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7300), 2, + ACTIONS(7443), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7274), 3, + ACTIONS(7445), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7284), 11, + ACTIONS(7515), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213346,54 +217299,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158013] = 20, - ACTIONS(71), 1, + [161574] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7220), 1, - anon_sym_PIPE, - ACTIONS(7222), 1, - anon_sym_CARET, - ACTIONS(7224), 1, - anon_sym_AMP, - ACTIONS(7238), 1, + ACTIONS(7483), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(7306), 1, - anon_sym_EQ, - ACTIONS(7310), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_EQ_TILDE, - ACTIONS(7316), 1, - anon_sym_QMARK, - ACTIONS(7386), 1, - anon_sym_RBRACK, - ACTIONS(7218), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7228), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7230), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7232), 2, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7308), 11, + ACTIONS(7048), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7046), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213405,54 +217337,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158092] = 20, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161629] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7318), 1, + ACTIONS(7499), 1, + anon_sym_STAR_STAR, + ACTIONS(7501), 1, + sym_test_operator, + ACTIONS(7587), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7589), 1, anon_sym_EQ, - ACTIONS(7322), 1, + ACTIONS(7593), 1, anon_sym_PIPE_PIPE, - ACTIONS(7324), 1, + ACTIONS(7595), 1, anon_sym_AMP_AMP, - ACTIONS(7326), 1, + ACTIONS(7597), 1, anon_sym_PIPE, - ACTIONS(7328), 1, + ACTIONS(7599), 1, anon_sym_CARET, - ACTIONS(7330), 1, + ACTIONS(7601), 1, anon_sym_AMP, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7346), 1, + ACTIONS(7609), 1, anon_sym_EQ_TILDE, - ACTIONS(7348), 1, + ACTIONS(7611), 1, anon_sym_QMARK, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(7386), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7332), 2, + ACTIONS(7493), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7603), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7334), 2, + ACTIONS(7605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, + ACTIONS(7607), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7338), 2, + ACTIONS(7497), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7591), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [161708] = 8, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7320), 11, + ACTIONS(7048), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7046), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213464,54 +217443,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158171] = 20, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [161763] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, - anon_sym_STAR_STAR, - ACTIONS(7252), 1, - sym_test_operator, - ACTIONS(7254), 1, + ACTIONS(7547), 1, + anon_sym_EQ, + ACTIONS(7553), 1, anon_sym_PIPE_PIPE, - ACTIONS(7256), 1, + ACTIONS(7555), 1, anon_sym_AMP_AMP, - ACTIONS(7258), 1, + ACTIONS(7557), 1, anon_sym_PIPE, - ACTIONS(7260), 1, + ACTIONS(7559), 1, anon_sym_CARET, - ACTIONS(7262), 1, + ACTIONS(7561), 1, anon_sym_AMP, - ACTIONS(7352), 1, - anon_sym_EQ, - ACTIONS(7358), 1, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7579), 1, anon_sym_EQ_TILDE, - ACTIONS(7360), 1, + ACTIONS(7581), 1, anon_sym_QMARK, - ACTIONS(7388), 1, - anon_sym_RPAREN, - ACTIONS(7242), 2, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7587), 1, + anon_sym_RBRACK, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7264), 2, + ACTIONS(7563), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7268), 2, + ACTIONS(7567), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7248), 3, + ACTIONS(7569), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7354), 11, + ACTIONS(7551), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213523,30 +217511,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158250] = 6, - ACTIONS(71), 1, + [161842] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7274), 3, + ACTIONS(7493), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 10, + ACTIONS(7048), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6793), 21, + ACTIONS(7046), 21, sym_test_operator, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, @@ -213568,92 +217558,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158301] = 3, - ACTIONS(3), 1, + [161897] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(1322), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(7457), 1, + anon_sym_EQ, + ACTIONS(7461), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7465), 1, anon_sym_PIPE, + ACTIONS(7467), 1, anon_sym_CARET, + ACTIONS(7469), 1, anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7487), 1, + anon_sym_EQ_TILDE, + ACTIONS(7489), 1, + anon_sym_QMARK, + ACTIONS(7491), 1, + sym_test_operator, + ACTIONS(7587), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [158346] = 18, - ACTIONS(71), 1, + ACTIONS(7459), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [161976] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, - anon_sym_EQ, - ACTIONS(7220), 1, - anon_sym_PIPE, - ACTIONS(7222), 1, - anon_sym_CARET, - ACTIONS(7224), 1, - anon_sym_AMP, - ACTIONS(7238), 1, + ACTIONS(7509), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(7511), 1, sym_test_operator, - ACTIONS(7310), 1, + ACTIONS(7521), 1, + anon_sym_EQ, + ACTIONS(7525), 1, anon_sym_PIPE_PIPE, - ACTIONS(7312), 1, + ACTIONS(7527), 1, anon_sym_AMP_AMP, - ACTIONS(7316), 1, + ACTIONS(7529), 1, + anon_sym_PIPE, + ACTIONS(7531), 1, + anon_sym_CARET, + ACTIONS(7533), 1, + anon_sym_AMP, + ACTIONS(7541), 1, + anon_sym_EQ_TILDE, + ACTIONS(7543), 1, anon_sym_QMARK, - ACTIONS(7218), 2, + ACTIONS(7613), 1, + anon_sym_COLON, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7226), 2, + ACTIONS(7503), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7535), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7228), 2, + ACTIONS(7537), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7230), 2, + ACTIONS(7539), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7232), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7236), 3, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 13, + ACTIONS(7523), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213665,12 +217676,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [158421] = 3, - ACTIONS(71), 1, + [162055] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6852), 14, + ACTIONS(7499), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7013), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -213684,11 +217698,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6850), 23, + ACTIONS(7011), 21, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213706,57 +217718,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158466] = 20, - ACTIONS(71), 1, + [162104] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7172), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(7188), 1, - sym_test_operator, - ACTIONS(7362), 1, - anon_sym_EQ, - ACTIONS(7366), 1, + ACTIONS(7429), 1, anon_sym_PIPE_PIPE, - ACTIONS(7368), 1, + ACTIONS(7431), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(7433), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(7435), 1, anon_sym_CARET, - ACTIONS(7374), 1, - anon_sym_EQ_TILDE, - ACTIONS(7376), 1, + ACTIONS(7437), 1, + anon_sym_AMP, + ACTIONS(7451), 1, + anon_sym_STAR_STAR, + ACTIONS(7453), 1, anon_sym_QMARK, - ACTIONS(7390), 1, - anon_sym_COLON, - ACTIONS(6830), 2, + ACTIONS(7455), 1, + sym_test_operator, + ACTIONS(7513), 1, + anon_sym_EQ, + ACTIONS(7519), 1, + anon_sym_EQ_TILDE, + ACTIONS(7615), 1, + anon_sym_RPAREN, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7174), 2, + ACTIONS(7439), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7176), 2, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, + ACTIONS(7443), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7180), 2, + ACTIONS(7445), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, + ACTIONS(7447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7184), 3, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7364), 11, + ACTIONS(7515), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213768,15 +217779,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158545] = 5, - ACTIONS(71), 1, + [162183] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, + ACTIONS(7509), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7511), 1, + sym_test_operator, + ACTIONS(7521), 1, + anon_sym_EQ, + ACTIONS(7525), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7527), 1, + anon_sym_AMP_AMP, + ACTIONS(7529), 1, + anon_sym_PIPE, + ACTIONS(7531), 1, + anon_sym_CARET, + ACTIONS(7533), 1, + anon_sym_AMP, + ACTIONS(7541), 1, + anon_sym_EQ_TILDE, + ACTIONS(7543), 1, + anon_sym_QMARK, + ACTIONS(7617), 1, + anon_sym_COLON, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6795), 13, + ACTIONS(7503), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7535), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7537), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7539), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7523), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [162262] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7619), 1, + anon_sym_LBRACK, + ACTIONS(6844), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -213790,9 +217857,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 21, - sym_test_operator, - anon_sym_RPAREN_RPAREN, + anon_sym_STAR_STAR, + ACTIONS(6842), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213810,52 +217878,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [158594] = 16, - ACTIONS(3), 1, + [162309] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7402), 1, + ACTIONS(7509), 1, + anon_sym_STAR_STAR, + ACTIONS(7511), 1, + sym_test_operator, + ACTIONS(7521), 1, + anon_sym_EQ, + ACTIONS(7525), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7527), 1, + anon_sym_AMP_AMP, + ACTIONS(7529), 1, anon_sym_PIPE, - ACTIONS(7404), 1, + ACTIONS(7531), 1, anon_sym_CARET, - ACTIONS(7406), 1, + ACTIONS(7533), 1, anon_sym_AMP, - ACTIONS(7418), 1, - anon_sym_STAR_STAR, - ACTIONS(7420), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7392), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(7394), 2, + ACTIONS(7541), 1, + anon_sym_EQ_TILDE, + ACTIONS(7543), 1, + anon_sym_QMARK, + ACTIONS(7621), 1, + anon_sym_COLON, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7398), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7400), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7408), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7412), 2, + ACTIONS(7503), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7414), 2, + ACTIONS(7505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7416), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7410), 4, + ACTIONS(7535), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7537), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7539), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7396), 11, + ACTIONS(7507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7523), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -213867,290 +217940,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [158665] = 25, - ACTIONS(71), 1, + [162388] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(6476), 1, + ACTIONS(6661), 1, sym_word, - ACTIONS(6482), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6490), 1, + ACTIONS(6675), 1, anon_sym_DOLLAR, - ACTIONS(6496), 1, + ACTIONS(6683), 1, aux_sym_number_token1, - ACTIONS(6498), 1, + ACTIONS(6685), 1, aux_sym_number_token2, - ACTIONS(6502), 1, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, + ACTIONS(6697), 1, sym_test_operator, - ACTIONS(6512), 1, + ACTIONS(6699), 1, sym_extglob_pattern, - ACTIONS(6514), 1, + ACTIONS(6701), 1, sym__brace_start, - ACTIONS(6636), 1, - anon_sym_esac, - ACTIONS(7200), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, + ACTIONS(7168), 1, sym__special_character, - ACTIONS(7204), 1, + ACTIONS(7170), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7345), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3190), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [158754] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(6642), 1, - anon_sym_esac, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, + ACTIONS(7178), 1, anon_sym_BQUOTE, - ACTIONS(7212), 1, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, + STATE(6541), 1, aux_sym__literal_repeat1, - STATE(7352), 1, + STATE(7371), 1, sym_last_case_item, - ACTIONS(7196), 2, + ACTIONS(7164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3191), 2, + STATE(3309), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6638), 2, + STATE(6737), 2, sym_concatenation, sym__extglob_blob, - STATE(6312), 9, + STATE(6331), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [158843] = 25, - ACTIONS(71), 1, + [162477] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(4044), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7422), 1, - anon_sym_esac, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7385), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3192), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7627), 1, + sym_variable_name, + STATE(4859), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [158932] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, + ACTIONS(7625), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7623), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1267), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [162532] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(4044), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7424), 1, - anon_sym_esac, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7389), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3193), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(7627), 1, + sym_variable_name, + STATE(4859), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [159021] = 8, - ACTIONS(71), 1, + ACTIONS(7625), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7623), 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(1255), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [162587] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, + anon_sym_AMP, + ACTIONS(7136), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7112), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7272), 2, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7274), 3, + ACTIONS(7629), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6826), 21, - sym_test_operator, - anon_sym_RPAREN_RPAREN, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214162,24 +218156,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + [162664] = 12, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7499), 1, + anon_sym_STAR_STAR, + ACTIONS(7501), 1, + sym_test_operator, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7493), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7603), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7605), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7607), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [159076] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1326), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7497), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7013), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7011), 16, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214192,18 +218204,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162727] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7013), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -214212,54 +218225,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [159121] = 20, - ACTIONS(71), 1, + ACTIONS(7011), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [162772] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(7278), 1, + ACTIONS(7501), 1, sym_test_operator, - ACTIONS(7282), 1, + ACTIONS(7589), 1, anon_sym_EQ, - ACTIONS(7286), 1, + ACTIONS(7593), 1, anon_sym_PIPE_PIPE, - ACTIONS(7288), 1, + ACTIONS(7595), 1, anon_sym_AMP_AMP, - ACTIONS(7290), 1, + ACTIONS(7597), 1, anon_sym_PIPE, - ACTIONS(7292), 1, + ACTIONS(7599), 1, anon_sym_CARET, - ACTIONS(7294), 1, + ACTIONS(7601), 1, anon_sym_AMP, - ACTIONS(7302), 1, + ACTIONS(7609), 1, anon_sym_EQ_TILDE, - ACTIONS(7304), 1, + ACTIONS(7611), 1, anon_sym_QMARK, - ACTIONS(7426), 1, + ACTIONS(7631), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7272), 2, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7296), 2, + ACTIONS(7603), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7298), 2, + ACTIONS(7605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7300), 2, + ACTIONS(7607), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7274), 3, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7284), 11, + ACTIONS(7591), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214271,96 +218308,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159200] = 3, + [162851] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 36, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(7635), 1, + anon_sym_DQUOTE, + ACTIONS(7639), 1, + sym_variable_name, + STATE(4571), 1, + sym_string, + ACTIONS(7637), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7633), 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(1267), 22, anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [162906] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(7635), 1, + anon_sym_DQUOTE, + ACTIONS(7639), 1, + sym_variable_name, + STATE(4571), 1, + sym_string, + ACTIONS(7637), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7633), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [159245] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7220), 1, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1255), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(7222), 1, - anon_sym_CARET, - ACTIONS(7224), 1, anon_sym_AMP, - ACTIONS(7238), 1, - anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(7306), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [162961] = 20, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7547), 1, anon_sym_EQ, - ACTIONS(7310), 1, + ACTIONS(7553), 1, anon_sym_PIPE_PIPE, - ACTIONS(7312), 1, + ACTIONS(7555), 1, anon_sym_AMP_AMP, - ACTIONS(7314), 1, + ACTIONS(7557), 1, + anon_sym_PIPE, + ACTIONS(7559), 1, + anon_sym_CARET, + ACTIONS(7561), 1, + anon_sym_AMP, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7579), 1, anon_sym_EQ_TILDE, - ACTIONS(7316), 1, + ACTIONS(7581), 1, anon_sym_QMARK, - ACTIONS(7426), 1, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7631), 1, anon_sym_RBRACK, - ACTIONS(7218), 2, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7226), 2, + ACTIONS(7563), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7228), 2, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7230), 2, + ACTIONS(7567), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7232), 2, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7308), 11, + ACTIONS(7551), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214372,54 +218461,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159324] = 20, - ACTIONS(71), 1, + [163040] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7318), 1, + ACTIONS(7457), 1, anon_sym_EQ, - ACTIONS(7322), 1, + ACTIONS(7461), 1, anon_sym_PIPE_PIPE, - ACTIONS(7324), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7326), 1, + ACTIONS(7465), 1, anon_sym_PIPE, - ACTIONS(7328), 1, + ACTIONS(7467), 1, anon_sym_CARET, - ACTIONS(7330), 1, + ACTIONS(7469), 1, anon_sym_AMP, - ACTIONS(7344), 1, + ACTIONS(7483), 1, anon_sym_STAR_STAR, - ACTIONS(7346), 1, + ACTIONS(7487), 1, anon_sym_EQ_TILDE, - ACTIONS(7348), 1, + ACTIONS(7489), 1, anon_sym_QMARK, - ACTIONS(7350), 1, + ACTIONS(7491), 1, sym_test_operator, - ACTIONS(7426), 1, + ACTIONS(7631), 1, anon_sym_RBRACK_RBRACK, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7332), 2, + ACTIONS(7471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7334), 2, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7338), 2, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7320), 11, + ACTIONS(7459), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214431,52 +218520,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159403] = 19, - ACTIONS(71), 1, + [163119] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7643), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7641), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7222), 1, anon_sym_CARET, - ACTIONS(7224), 1, anon_sym_AMP, - ACTIONS(7238), 1, - anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(7306), 1, - anon_sym_EQ, - ACTIONS(7310), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_EQ_TILDE, - ACTIONS(7316), 1, - anon_sym_QMARK, - ACTIONS(7218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7226), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7228), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7230), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 12, + anon_sym_STAR_STAR, + [163164] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7653), 1, + anon_sym_PIPE, + ACTIONS(7655), 1, + anon_sym_CARET, + ACTIONS(7657), 1, + anon_sym_AMP, + ACTIONS(7669), 1, + anon_sym_STAR_STAR, + ACTIONS(7671), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7649), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7651), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7659), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7663), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7665), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7667), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7661), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7645), 13, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214488,31 +218616,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - [159480] = 5, - ACTIONS(71), 1, + [163233] = 14, + ACTIONS(3), 1, sym_comment, - ACTIONS(7238), 1, - anon_sym_STAR_STAR, - ACTIONS(7218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6795), 13, - anon_sym_EQ, + ACTIONS(7653), 1, anon_sym_PIPE, + ACTIONS(7655), 1, anon_sym_CARET, + ACTIONS(7657), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7669), 1, + anon_sym_STAR_STAR, + ACTIONS(7671), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7651), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7659), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7663), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7665), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7667), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 21, - sym_test_operator, + ACTIONS(7661), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7645), 15, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214525,62 +218668,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [159529] = 20, - ACTIONS(71), 1, + anon_sym_DASHo, + [163300] = 11, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(7252), 1, + ACTIONS(7501), 1, sym_test_operator, - ACTIONS(7254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7256), 1, - anon_sym_AMP_AMP, - ACTIONS(7258), 1, - anon_sym_PIPE, - ACTIONS(7260), 1, - anon_sym_CARET, - ACTIONS(7262), 1, - anon_sym_AMP, - ACTIONS(7352), 1, - anon_sym_EQ, - ACTIONS(7358), 1, - anon_sym_EQ_TILDE, - ACTIONS(7360), 1, - anon_sym_QMARK, - ACTIONS(7428), 1, - anon_sym_RPAREN, - ACTIONS(7242), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7246), 2, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7264), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7268), 2, + ACTIONS(7607), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7248), 3, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7354), 11, + ACTIONS(7013), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7011), 18, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214592,31 +218713,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159608] = 5, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163361] = 13, + ACTIONS(3), 1, sym_comment, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6795), 13, - anon_sym_EQ, + ACTIONS(7653), 1, anon_sym_PIPE, + ACTIONS(7655), 1, anon_sym_CARET, + ACTIONS(7657), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7669), 1, + anon_sym_STAR_STAR, + ACTIONS(7671), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7659), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7663), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7665), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7667), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 21, - sym_test_operator, - anon_sym_RPAREN_RPAREN, + ACTIONS(7661), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7645), 17, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214629,74 +218768,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + [163426] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7655), 1, + anon_sym_CARET, + ACTIONS(7657), 1, + anon_sym_AMP, + ACTIONS(7669), 1, + anon_sym_STAR_STAR, + ACTIONS(7671), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7659), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [159657] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7443), 1, - anon_sym_LT_LT_LT, - ACTIONS(7446), 1, - sym_file_descriptor, - ACTIONS(7449), 1, - sym_variable_name, - STATE(6731), 1, - sym_subscript, - ACTIONS(7440), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(3005), 2, - sym_variable_assignment, - aux_sym_command_repeat1, - STATE(3591), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(7437), 3, + ACTIONS(7663), 2, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(7430), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(7434), 5, + ACTIONS(7665), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7667), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7661), 4, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(7432), 14, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [159720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 36, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7645), 18, 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, @@ -214713,14 +218822,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_DASHa, anon_sym_PIPE, + [163489] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7673), 1, + sym__concat, + ACTIONS(7019), 14, + anon_sym_EQ, + anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -214729,54 +218842,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [159765] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7172), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(7188), 1, - sym_test_operator, - ACTIONS(7362), 1, - anon_sym_EQ, - ACTIONS(7366), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7368), 1, - anon_sym_AMP_AMP, - ACTIONS(7370), 1, - anon_sym_PIPE, - ACTIONS(7372), 1, - anon_sym_CARET, - ACTIONS(7374), 1, - anon_sym_EQ_TILDE, - ACTIONS(7376), 1, - anon_sym_QMARK, - ACTIONS(7452), 1, - anon_sym_COLON, - ACTIONS(6830), 2, + ACTIONS(7017), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7176), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7178), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7182), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7184), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7364), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214788,54 +218856,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159844] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7318), 1, - anon_sym_EQ, - ACTIONS(7322), 1, anon_sym_PIPE_PIPE, - ACTIONS(7324), 1, anon_sym_AMP_AMP, - ACTIONS(7326), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163536] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7675), 1, + sym__concat, + ACTIONS(7028), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7328), 1, anon_sym_CARET, - ACTIONS(7330), 1, anon_sym_AMP, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(7348), 1, - anon_sym_QMARK, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(7454), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7332), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7320), 11, + anon_sym_STAR_STAR, + ACTIONS(7026), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -214847,110 +218899,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [159923] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(3852), 1, - anon_sym_DQUOTE, - ACTIONS(7460), 1, - sym_variable_name, - STATE(4863), 1, - sym_string, - ACTIONS(7458), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7456), 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(1227), 22, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [163583] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7657), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7669), 1, + anon_sym_STAR_STAR, + ACTIONS(7671), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7659), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7663), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [159978] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(3852), 1, - anon_sym_DQUOTE, - ACTIONS(7460), 1, - sym_variable_name, - STATE(4863), 1, - sym_string, - ACTIONS(7458), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7456), 9, + ACTIONS(7665), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7667), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7661), 4, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [160033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 36, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7645), 19, 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, @@ -214968,383 +218958,438 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHa, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [160078] = 3, - ACTIONS(71), 1, + [163644] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 13, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1274), 24, - sym_file_descriptor, + ACTIONS(6697), 1, sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, sym_ansi_c_string, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, anon_sym_BQUOTE, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7122), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [160123] = 25, - ACTIONS(71), 1, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [163733] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(6476), 1, + ACTIONS(6661), 1, sym_word, - ACTIONS(6482), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6484), 1, - anon_sym_esac, - ACTIONS(6490), 1, + ACTIONS(6675), 1, anon_sym_DOLLAR, - ACTIONS(6496), 1, + ACTIONS(6683), 1, aux_sym_number_token1, - ACTIONS(6498), 1, + ACTIONS(6685), 1, aux_sym_number_token2, - ACTIONS(6502), 1, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, + ACTIONS(6697), 1, sym_test_operator, - ACTIONS(6512), 1, + ACTIONS(6699), 1, sym_extglob_pattern, - ACTIONS(6514), 1, + ACTIONS(6701), 1, sym__brace_start, - ACTIONS(7200), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, + ACTIONS(7168), 1, sym__special_character, - ACTIONS(7204), 1, + ACTIONS(7170), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, + ACTIONS(7178), 1, anon_sym_BQUOTE, - ACTIONS(7212), 1, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, + STATE(6541), 1, aux_sym__literal_repeat1, - STATE(6931), 1, + STATE(7394), 1, sym_last_case_item, - ACTIONS(7196), 2, + ACTIONS(7164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3377), 2, + STATE(3309), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6638), 2, + STATE(6737), 2, sym_concatenation, sym__extglob_blob, - STATE(6312), 9, + STATE(6331), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [160212] = 20, - ACTIONS(71), 1, + [163822] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, sym_test_operator, - ACTIONS(7282), 1, - anon_sym_EQ, - ACTIONS(7286), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7288), 1, - anon_sym_AMP_AMP, - ACTIONS(7290), 1, - anon_sym_PIPE, - ACTIONS(7292), 1, - anon_sym_CARET, - ACTIONS(7294), 1, - anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_EQ_TILDE, - ACTIONS(7304), 1, - anon_sym_QMARK, - ACTIONS(7462), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7272), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7296), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7298), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7300), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7274), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7284), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [160291] = 20, - ACTIONS(71), 1, - sym_comment, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, ACTIONS(7172), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(7188), 1, - sym_test_operator, - ACTIONS(7362), 1, - anon_sym_EQ, - ACTIONS(7366), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7368), 1, - anon_sym_AMP_AMP, - ACTIONS(7370), 1, - anon_sym_PIPE, - ACTIONS(7372), 1, - anon_sym_CARET, - ACTIONS(7374), 1, - anon_sym_EQ_TILDE, - ACTIONS(7376), 1, - anon_sym_QMARK, - ACTIONS(7464), 1, - anon_sym_COLON, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7176), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7178), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7402), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, ACTIONS(7182), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7184), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7364), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [160370] = 6, - ACTIONS(3), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [163911] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(7466), 1, - aux_sym_concatenation_token1, - ACTIONS(7468), 1, - sym__concat, - STATE(3134), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 4, - sym_file_descriptor, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(7168), 1, sym__special_character, + ACTIONS(7170), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, anon_sym_BQUOTE, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7416), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [160421] = 6, - ACTIONS(3), 1, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [164000] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(7466), 1, - aux_sym_concatenation_token1, - ACTIONS(7468), 1, - sym__concat, - STATE(3146), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5321), 4, - sym_file_descriptor, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(7168), 1, sym__special_character, + ACTIONS(7170), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7692), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [164089] = 25, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, aux_sym_number_token1, + ACTIONS(6685), 1, aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + ACTIONS(7178), 1, anon_sym_BQUOTE, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(6887), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [160472] = 20, - ACTIONS(71), 1, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [164178] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7220), 1, + ACTIONS(7429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7431), 1, + anon_sym_AMP_AMP, + ACTIONS(7433), 1, anon_sym_PIPE, - ACTIONS(7222), 1, + ACTIONS(7435), 1, anon_sym_CARET, - ACTIONS(7224), 1, + ACTIONS(7437), 1, anon_sym_AMP, - ACTIONS(7238), 1, + ACTIONS(7451), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(7453), 1, + anon_sym_QMARK, + ACTIONS(7455), 1, sym_test_operator, - ACTIONS(7306), 1, + ACTIONS(7513), 1, anon_sym_EQ, - ACTIONS(7310), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7314), 1, + ACTIONS(7519), 1, anon_sym_EQ_TILDE, - ACTIONS(7316), 1, - anon_sym_QMARK, - ACTIONS(7462), 1, - anon_sym_RBRACK, - ACTIONS(7218), 2, + ACTIONS(7677), 1, + anon_sym_RPAREN, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7226), 2, + ACTIONS(7439), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7228), 2, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7230), 2, + ACTIONS(7443), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7232), 2, + ACTIONS(7445), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, + ACTIONS(7447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7308), 11, + ACTIONS(7515), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215356,16 +219401,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160551] = 3, - ACTIONS(3), 1, + [164257] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(1342), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7451), 1, + anon_sym_STAR_STAR, + ACTIONS(7455), 1, + sym_test_operator, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7445), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7449), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7048), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7046), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215378,18 +219441,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164314] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6991), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -215398,14 +219467,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [160596] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(6989), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -215420,74 +219483,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164359] = 8, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7013), 6, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + ACTIONS(7011), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164414] = 8, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7549), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [160641] = 20, - ACTIONS(71), 1, + ACTIONS(7013), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7011), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164469] = 18, + ACTIONS(73), 1, sym_comment, - ACTIONS(7318), 1, + ACTIONS(7013), 1, anon_sym_EQ, - ACTIONS(7322), 1, + ACTIONS(7461), 1, anon_sym_PIPE_PIPE, - ACTIONS(7324), 1, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7326), 1, + ACTIONS(7465), 1, anon_sym_PIPE, - ACTIONS(7328), 1, + ACTIONS(7467), 1, anon_sym_CARET, - ACTIONS(7330), 1, + ACTIONS(7469), 1, anon_sym_AMP, - ACTIONS(7344), 1, + ACTIONS(7483), 1, anon_sym_STAR_STAR, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(7348), 1, + ACTIONS(7489), 1, anon_sym_QMARK, - ACTIONS(7350), 1, + ACTIONS(7491), 1, sym_test_operator, - ACTIONS(7462), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7332), 2, + ACTIONS(7471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7334), 2, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7338), 2, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7320), 11, + ACTIONS(7011), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215499,16 +219640,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [160720] = 3, - ACTIONS(3), 1, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + [164544] = 18, + ACTIONS(73), 1, sym_comment, - ACTIONS(1350), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7013), 1, + anon_sym_EQ, + ACTIONS(7553), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7555), 1, + anon_sym_AMP_AMP, + ACTIONS(7557), 1, + anon_sym_PIPE, + ACTIONS(7559), 1, + anon_sym_CARET, + ACTIONS(7561), 1, + anon_sym_AMP, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7581), 1, + anon_sym_QMARK, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7563), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7565), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7567), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7569), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7573), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7011), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215520,82 +219697,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + [164619] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7547), 1, + anon_sym_EQ, + ACTIONS(7553), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7555), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7557), 1, anon_sym_PIPE, + ACTIONS(7559), 1, anon_sym_CARET, + ACTIONS(7561), 1, anon_sym_AMP, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7579), 1, + anon_sym_EQ_TILDE, + ACTIONS(7581), 1, + anon_sym_QMARK, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7549), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7563), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7567), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [160765] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7466), 1, - aux_sym_concatenation_token1, - ACTIONS(7468), 1, - sym__concat, - STATE(3134), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [160816] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7472), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7470), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7011), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215607,67 +219756,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, + anon_sym_RBRACK, + [164696] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7013), 1, + anon_sym_EQ, + ACTIONS(7555), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7557), 1, anon_sym_PIPE, + ACTIONS(7559), 1, anon_sym_CARET, + ACTIONS(7561), 1, anon_sym_AMP, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7549), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7563), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7567), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [160861] = 16, - ACTIONS(71), 1, + ACTIONS(7011), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164767] = 15, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(7013), 1, anon_sym_EQ, - ACTIONS(7220), 1, + ACTIONS(7557), 1, anon_sym_PIPE, - ACTIONS(7222), 1, + ACTIONS(7559), 1, anon_sym_CARET, - ACTIONS(7224), 1, + ACTIONS(7561), 1, anon_sym_AMP, - ACTIONS(7238), 1, + ACTIONS(7575), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(7583), 1, sym_test_operator, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7218), 2, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7226), 2, + ACTIONS(7563), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7228), 2, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7230), 2, + ACTIONS(7567), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7232), 2, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 15, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215680,113 +219862,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [160932] = 8, - ACTIONS(3), 1, + [164836] = 14, + ACTIONS(73), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(7476), 1, - anon_sym_DQUOTE, - ACTIONS(7480), 1, - sym_variable_name, - STATE(4510), 1, - sym_string, - ACTIONS(7478), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7474), 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(1227), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(7559), 1, + anon_sym_CARET, + ACTIONS(7561), 1, anon_sym_AMP, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7013), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7549), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7563), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7567), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [160987] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(7476), 1, - anon_sym_DQUOTE, - ACTIONS(7480), 1, - sym_variable_name, - STATE(4510), 1, - sym_string, - ACTIONS(7478), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7474), 9, + ACTIONS(7571), 2, + anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7573), 3, anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [161042] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1354), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215799,74 +219915,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [164903] = 13, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7561), 1, anon_sym_AMP, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7549), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7563), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7567), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7013), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [161087] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7172), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(7188), 1, - sym_test_operator, - ACTIONS(7362), 1, - anon_sym_EQ, - ACTIONS(7366), 1, + ACTIONS(7011), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - ACTIONS(7368), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, - anon_sym_PIPE, - ACTIONS(7372), 1, - anon_sym_CARET, - ACTIONS(7374), 1, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - ACTIONS(7376), 1, anon_sym_QMARK, - ACTIONS(7482), 1, - anon_sym_COLON, - ACTIONS(6830), 2, + [164968] = 12, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7174), 2, + ACTIONS(7563), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7176), 2, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, + ACTIONS(7567), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7180), 2, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7184), 3, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7364), 11, + ACTIONS(7013), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215878,53 +220017,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161166] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - ACTIONS(6931), 1, anon_sym_QMARK, - ACTIONS(6901), 2, + [165031] = 11, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, + ACTIONS(7567), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7484), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(6925), 3, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + ACTIONS(7013), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7011), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -215936,12 +220065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161243] = 4, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165092] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7486), 1, - sym__concat, - ACTIONS(6859), 14, + ACTIONS(7013), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -215956,7 +220090,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6857), 22, + ACTIONS(7011), 23, + sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -215976,32 +220111,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [161290] = 4, - ACTIONS(71), 1, + [165137] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(7488), 1, - sym__concat, - ACTIONS(6865), 14, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7549), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7569), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7573), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7013), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, + ACTIONS(7011), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165194] = 7, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7549), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7013), 8, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7011), 21, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165247] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7575), 1, anon_sym_STAR_STAR, - ACTIONS(6863), 22, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7573), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7013), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7011), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216019,15 +220250,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [161337] = 4, - ACTIONS(71), 1, + [165298] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7490), 1, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7549), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7013), 13, anon_sym_EQ, - ACTIONS(7164), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -216040,12 +220275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7168), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7011), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216058,61 +220289,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [161384] = 20, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165347] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, + ACTIONS(7575), 1, anon_sym_STAR_STAR, - ACTIONS(7278), 1, - sym_test_operator, - ACTIONS(7282), 1, + ACTIONS(7549), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7013), 13, anon_sym_EQ, - ACTIONS(7286), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7288), 1, - anon_sym_AMP_AMP, - ACTIONS(7290), 1, anon_sym_PIPE, - ACTIONS(7292), 1, anon_sym_CARET, - ACTIONS(7294), 1, anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_EQ_TILDE, - ACTIONS(7304), 1, - anon_sym_QMARK, - ACTIONS(7492), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7296), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7298), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7300), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7284), 11, + ACTIONS(7011), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216124,14 +220332,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161463] = 5, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165396] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7494), 1, - sym__special_character, - STATE(3147), 1, - aux_sym__literal_repeat1, - ACTIONS(5315), 12, + ACTIONS(1300), 13, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -216143,8 +220356,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(5317), 23, + ACTIONS(1302), 24, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -216160,62 +220374,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [161512] = 20, - ACTIONS(71), 1, + [165441] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7220), 1, - anon_sym_PIPE, - ACTIONS(7222), 1, - anon_sym_CARET, - ACTIONS(7224), 1, - anon_sym_AMP, - ACTIONS(7238), 1, + ACTIONS(7509), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(7511), 1, sym_test_operator, - ACTIONS(7306), 1, + ACTIONS(7521), 1, anon_sym_EQ, - ACTIONS(7310), 1, + ACTIONS(7525), 1, anon_sym_PIPE_PIPE, - ACTIONS(7312), 1, + ACTIONS(7527), 1, anon_sym_AMP_AMP, - ACTIONS(7314), 1, + ACTIONS(7529), 1, + anon_sym_PIPE, + ACTIONS(7531), 1, + anon_sym_CARET, + ACTIONS(7533), 1, + anon_sym_AMP, + ACTIONS(7541), 1, anon_sym_EQ_TILDE, - ACTIONS(7316), 1, + ACTIONS(7543), 1, anon_sym_QMARK, - ACTIONS(7492), 1, - anon_sym_RBRACK, - ACTIONS(7218), 2, + ACTIONS(7679), 1, + anon_sym_COLON, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7226), 2, + ACTIONS(7503), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7535), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7228), 2, + ACTIONS(7537), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7230), 2, + ACTIONS(7539), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7232), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7236), 3, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7308), 11, + ACTIONS(7523), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216227,54 +220442,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161591] = 20, - ACTIONS(71), 1, + [165520] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7318), 1, + ACTIONS(7013), 14, anon_sym_EQ, - ACTIONS(7322), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7324), 1, - anon_sym_AMP_AMP, - ACTIONS(7326), 1, anon_sym_PIPE, - ACTIONS(7328), 1, anon_sym_CARET, - ACTIONS(7330), 1, anon_sym_AMP, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(7348), 1, - anon_sym_QMARK, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(7492), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7332), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7320), 11, + anon_sym_STAR_STAR, + ACTIONS(7011), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216286,54 +220475,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161670] = 20, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165565] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, sym_test_operator, - ACTIONS(7282), 1, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7001), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [165654] = 25, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7022), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [165743] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7681), 1, + sym__concat, + ACTIONS(7019), 14, anon_sym_EQ, - ACTIONS(7286), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7288), 1, - anon_sym_AMP_AMP, - ACTIONS(7290), 1, anon_sym_PIPE, - ACTIONS(7292), 1, anon_sym_CARET, - ACTIONS(7294), 1, anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_EQ_TILDE, - ACTIONS(7304), 1, - anon_sym_QMARK, - ACTIONS(7454), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7296), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7298), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7300), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7274), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7284), 11, + anon_sym_STAR_STAR, + ACTIONS(7017), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216345,54 +220646,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161749] = 20, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [165790] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, sym_test_operator, - ACTIONS(7282), 1, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7163), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [165879] = 25, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7184), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [165968] = 25, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7251), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [166057] = 25, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7253), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [166146] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7683), 1, anon_sym_EQ, - ACTIONS(7286), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7288), 1, - anon_sym_AMP_AMP, - ACTIONS(7290), 1, + ACTIONS(7402), 13, anon_sym_PIPE, - ACTIONS(7292), 1, anon_sym_CARET, - ACTIONS(7294), 1, anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_EQ_TILDE, - ACTIONS(7304), 1, - anon_sym_QMARK, - ACTIONS(7496), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7272), 2, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7296), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7298), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7300), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7274), 3, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7284), 11, + anon_sym_STAR_STAR, + ACTIONS(7406), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216404,33 +220945,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [161828] = 8, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [166193] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, - anon_sym_STAR_STAR, - ACTIONS(7242), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7244), 2, + ACTIONS(7685), 1, + sym__concat, + ACTIONS(7028), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7248), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6793), 21, - sym_test_operator, + anon_sym_STAR_STAR, + ACTIONS(7026), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216451,50 +220997,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [161883] = 18, - ACTIONS(71), 1, + [166240] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, - anon_sym_EQ, - ACTIONS(7250), 1, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(7252), 1, + ACTIONS(7501), 1, sym_test_operator, - ACTIONS(7254), 1, + ACTIONS(7589), 1, + anon_sym_EQ, + ACTIONS(7593), 1, anon_sym_PIPE_PIPE, - ACTIONS(7256), 1, + ACTIONS(7595), 1, anon_sym_AMP_AMP, - ACTIONS(7258), 1, + ACTIONS(7597), 1, anon_sym_PIPE, - ACTIONS(7260), 1, + ACTIONS(7599), 1, anon_sym_CARET, - ACTIONS(7262), 1, + ACTIONS(7601), 1, anon_sym_AMP, - ACTIONS(7360), 1, + ACTIONS(7609), 1, + anon_sym_EQ_TILDE, + ACTIONS(7611), 1, anon_sym_QMARK, - ACTIONS(7242), 2, + ACTIONS(7687), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7246), 2, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7264), 2, + ACTIONS(7603), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7268), 2, + ACTIONS(7607), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7248), 3, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 13, + ACTIONS(7591), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216506,60 +221056,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - [161958] = 3, - ACTIONS(3), 1, + [166319] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(7461), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7465), 1, anon_sym_PIPE, + ACTIONS(7467), 1, anon_sym_CARET, + ACTIONS(7469), 1, anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7487), 1, + anon_sym_EQ_TILDE, + ACTIONS(7489), 1, + anon_sym_QMARK, + ACTIONS(7491), 1, + sym_test_operator, + ACTIONS(7689), 1, + anon_sym_EQ, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [162003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7011), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216571,37 +221113,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, + [166396] = 8, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7451), 1, + anon_sym_STAR_STAR, + ACTIONS(7427), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7445), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7447), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [162048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7013), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7011), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216614,72 +221153,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [162093] = 19, - ACTIONS(71), 1, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [166451] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, - anon_sym_STAR_STAR, - ACTIONS(7252), 1, - sym_test_operator, - ACTIONS(7254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7256), 1, + ACTIONS(7013), 1, + anon_sym_EQ, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7258), 1, + ACTIONS(7465), 1, anon_sym_PIPE, - ACTIONS(7260), 1, + ACTIONS(7467), 1, anon_sym_CARET, - ACTIONS(7262), 1, + ACTIONS(7469), 1, anon_sym_AMP, - ACTIONS(7352), 1, - anon_sym_EQ, - ACTIONS(7358), 1, - anon_sym_EQ_TILDE, - ACTIONS(7360), 1, - anon_sym_QMARK, - ACTIONS(7242), 2, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7491), 1, + sym_test_operator, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7264), 2, + ACTIONS(7471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7268), 2, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7248), 3, + ACTIONS(7477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 12, + ACTIONS(7011), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216691,47 +221212,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - [162170] = 16, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_RBRACK_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [166522] = 15, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(7013), 1, anon_sym_EQ, - ACTIONS(7250), 1, - anon_sym_STAR_STAR, - ACTIONS(7252), 1, - sym_test_operator, - ACTIONS(7256), 1, - anon_sym_AMP_AMP, - ACTIONS(7258), 1, + ACTIONS(7465), 1, anon_sym_PIPE, - ACTIONS(7260), 1, + ACTIONS(7467), 1, anon_sym_CARET, - ACTIONS(7262), 1, + ACTIONS(7469), 1, anon_sym_AMP, - ACTIONS(7242), 2, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7491), 1, + sym_test_operator, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7264), 2, + ACTIONS(7471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7268), 2, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7248), 3, + ACTIONS(7477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 15, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216744,31 +221266,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162241] = 3, - ACTIONS(71), 1, + [166591] = 14, + ACTIONS(73), 1, sym_comment, - ACTIONS(6813), 14, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7467), 1, anon_sym_CARET, + ACTIONS(7469), 1, anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7491), 1, + sym_test_operator, + ACTIONS(7013), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7471), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7475), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6811), 23, - sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216782,51 +221320,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162286] = 15, - ACTIONS(71), 1, + [166658] = 13, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, - anon_sym_EQ, - ACTIONS(7250), 1, + ACTIONS(7469), 1, + anon_sym_AMP, + ACTIONS(7483), 1, anon_sym_STAR_STAR, - ACTIONS(7252), 1, + ACTIONS(7491), 1, sym_test_operator, - ACTIONS(7258), 1, - anon_sym_PIPE, - ACTIONS(7260), 1, - anon_sym_CARET, - ACTIONS(7262), 1, - anon_sym_AMP, - ACTIONS(7242), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7264), 2, + ACTIONS(7471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7268), 2, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7248), 3, + ACTIONS(7477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7013), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 16, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216840,46 +221372,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162355] = 14, - ACTIONS(71), 1, + [166723] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, - anon_sym_STAR_STAR, - ACTIONS(7252), 1, - sym_test_operator, - ACTIONS(7260), 1, - anon_sym_CARET, - ACTIONS(7262), 1, - anon_sym_AMP, - ACTIONS(6795), 2, + ACTIONS(7547), 1, anon_sym_EQ, + ACTIONS(7553), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7555), 1, + anon_sym_AMP_AMP, + ACTIONS(7557), 1, anon_sym_PIPE, - ACTIONS(7242), 2, + ACTIONS(7559), 1, + anon_sym_CARET, + ACTIONS(7561), 1, + anon_sym_AMP, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7579), 1, + anon_sym_EQ_TILDE, + ACTIONS(7581), 1, + anon_sym_QMARK, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7687), 1, + anon_sym_RBRACK, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7264), 2, + ACTIONS(7563), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7268), 2, + ACTIONS(7567), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7248), 3, + ACTIONS(7569), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 16, + ACTIONS(7551), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216891,47 +221434,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [166802] = 20, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7457), 1, + anon_sym_EQ, + ACTIONS(7461), 1, anon_sym_PIPE_PIPE, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - anon_sym_RPAREN, + ACTIONS(7465), 1, + anon_sym_PIPE, + ACTIONS(7467), 1, + anon_sym_CARET, + ACTIONS(7469), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7487), 1, anon_sym_EQ_TILDE, + ACTIONS(7489), 1, anon_sym_QMARK, - [162422] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7250), 1, - anon_sym_STAR_STAR, - ACTIONS(7252), 1, + ACTIONS(7491), 1, sym_test_operator, - ACTIONS(7262), 1, - anon_sym_AMP, - ACTIONS(7242), 2, + ACTIONS(7687), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7264), 2, + ACTIONS(7471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7268), 2, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6795), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7248), 3, + ACTIONS(7477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 16, + ACTIONS(7459), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216943,46 +221493,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [162487] = 12, - ACTIONS(71), 1, + [166881] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, + ACTIONS(7483), 1, anon_sym_STAR_STAR, - ACTIONS(7252), 1, + ACTIONS(7491), 1, sym_test_operator, - ACTIONS(7242), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7264), 2, + ACTIONS(7471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7268), 2, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7248), 3, + ACTIONS(7477), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 4, + ACTIONS(7013), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6793), 16, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -216996,41 +221541,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162550] = 11, - ACTIONS(71), 1, + [166944] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, + ACTIONS(7429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7431), 1, + anon_sym_AMP_AMP, + ACTIONS(7433), 1, + anon_sym_PIPE, + ACTIONS(7435), 1, + anon_sym_CARET, + ACTIONS(7437), 1, + anon_sym_AMP, + ACTIONS(7451), 1, anon_sym_STAR_STAR, - ACTIONS(7252), 1, + ACTIONS(7453), 1, + anon_sym_QMARK, + ACTIONS(7455), 1, sym_test_operator, - ACTIONS(7242), 2, + ACTIONS(7513), 1, + anon_sym_EQ, + ACTIONS(7519), 1, + anon_sym_EQ_TILDE, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7266), 2, + ACTIONS(7439), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7268), 2, + ACTIONS(7443), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7248), 3, + ACTIONS(7445), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6793), 18, + ACTIONS(7011), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217042,41 +221601,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [162611] = 9, - ACTIONS(71), 1, + [167021] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, + ACTIONS(7013), 1, + anon_sym_EQ, + ACTIONS(7431), 1, + anon_sym_AMP_AMP, + ACTIONS(7433), 1, + anon_sym_PIPE, + ACTIONS(7435), 1, + anon_sym_CARET, + ACTIONS(7437), 1, + anon_sym_AMP, + ACTIONS(7451), 1, anon_sym_STAR_STAR, - ACTIONS(7252), 1, + ACTIONS(7455), 1, sym_test_operator, - ACTIONS(7242), 2, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, + ACTIONS(7439), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7441), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7443), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7445), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7246), 2, + ACTIONS(7447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7248), 3, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6793), 20, + ACTIONS(7011), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217089,40 +221654,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162668] = 7, - ACTIONS(71), 1, + [167092] = 15, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, - anon_sym_STAR_STAR, - ACTIONS(7242), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7248), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6795), 8, + ACTIONS(7013), 1, anon_sym_EQ, + ACTIONS(7433), 1, anon_sym_PIPE, + ACTIONS(7435), 1, anon_sym_CARET, + ACTIONS(7437), 1, anon_sym_AMP, + ACTIONS(7451), 1, + anon_sym_STAR_STAR, + ACTIONS(7455), 1, + sym_test_operator, + ACTIONS(7427), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7439), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7443), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7445), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6793), 21, - sym_test_operator, + ACTIONS(7447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7449), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217136,102 +221708,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162721] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(6536), 1, - anon_sym_esac, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7316), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3402), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [162810] = 6, - ACTIONS(71), 1, + [167161] = 14, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, + ACTIONS(7435), 1, + anon_sym_CARET, + ACTIONS(7437), 1, + anon_sym_AMP, + ACTIONS(7451), 1, anon_sym_STAR_STAR, - ACTIONS(7242), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7248), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6795), 10, + ACTIONS(7455), 1, + sym_test_operator, + ACTIONS(7013), 2, anon_sym_EQ, anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7427), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7439), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7443), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7445), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6793), 21, - sym_test_operator, + ACTIONS(7449), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217245,37 +221761,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162861] = 5, - ACTIONS(71), 1, + [167228] = 13, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, + ACTIONS(7437), 1, + anon_sym_AMP, + ACTIONS(7451), 1, anon_sym_STAR_STAR, - ACTIONS(7242), 2, + ACTIONS(7455), 1, + sym_test_operator, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6795), 13, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7439), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7443), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7445), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7447), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7013), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 21, - sym_test_operator, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217289,22 +221813,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162910] = 5, - ACTIONS(71), 1, + [167293] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, - anon_sym_STAR_STAR, - ACTIONS(7242), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6795), 13, + ACTIONS(7013), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -217318,8 +221833,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 21, + anon_sym_STAR_STAR, + ACTIONS(7011), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217340,33 +221858,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [162959] = 8, - ACTIONS(71), 1, + [167338] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, + ACTIONS(7451), 1, anon_sym_STAR_STAR, - ACTIONS(7242), 2, + ACTIONS(7455), 1, + sym_test_operator, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, + ACTIONS(7439), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7441), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7443), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7445), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7246), 2, + ACTIONS(7447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7248), 3, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, + ACTIONS(7013), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6826), 21, - sym_test_operator, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217380,79 +221906,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163014] = 4, - ACTIONS(71), 1, + [167401] = 11, + ACTIONS(73), 1, sym_comment, - ACTIONS(7498), 1, - sym__concat, - ACTIONS(6837), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7491), 1, + sym_test_operator, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7475), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6835), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [163061] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7500), 1, - sym__concat, - ACTIONS(6819), 14, + ACTIONS(7013), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6817), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7011), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217468,276 +221956,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163108] = 25, - ACTIONS(71), 1, + [167462] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(6476), 1, + ACTIONS(6661), 1, sym_word, - ACTIONS(6482), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6490), 1, + ACTIONS(6675), 1, anon_sym_DOLLAR, - ACTIONS(6496), 1, + ACTIONS(6683), 1, aux_sym_number_token1, - ACTIONS(6498), 1, + ACTIONS(6685), 1, aux_sym_number_token2, - ACTIONS(6502), 1, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, + ACTIONS(6697), 1, sym_test_operator, - ACTIONS(6512), 1, + ACTIONS(6699), 1, sym_extglob_pattern, - ACTIONS(6514), 1, + ACTIONS(6701), 1, sym__brace_start, - ACTIONS(6577), 1, - anon_sym_esac, - ACTIONS(7200), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, + ACTIONS(7168), 1, sym__special_character, - ACTIONS(7204), 1, + ACTIONS(7170), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, + ACTIONS(7178), 1, anon_sym_BQUOTE, - ACTIONS(7212), 1, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, + STATE(6541), 1, aux_sym__literal_repeat1, - STATE(6887), 1, + STATE(7215), 1, sym_last_case_item, - ACTIONS(7196), 2, + ACTIONS(7164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3352), 2, + STATE(3309), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6638), 2, + STATE(6737), 2, sym_concatenation, sym__extglob_blob, - STATE(6312), 9, + STATE(6331), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [163197] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, - sym_test_operator, - ACTIONS(7282), 1, - anon_sym_EQ, - ACTIONS(7286), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7288), 1, - anon_sym_AMP_AMP, - ACTIONS(7290), 1, - anon_sym_PIPE, - ACTIONS(7292), 1, - anon_sym_CARET, - ACTIONS(7294), 1, - anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_EQ_TILDE, - ACTIONS(7304), 1, - anon_sym_QMARK, - ACTIONS(7502), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7272), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7296), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7298), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7300), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7274), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7284), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [163276] = 20, - ACTIONS(71), 1, + [167551] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(7220), 1, - anon_sym_PIPE, - ACTIONS(7222), 1, - anon_sym_CARET, - ACTIONS(7224), 1, - anon_sym_AMP, - ACTIONS(7238), 1, - anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, sym_test_operator, - ACTIONS(7306), 1, - anon_sym_EQ, - ACTIONS(7310), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_EQ_TILDE, - ACTIONS(7316), 1, - anon_sym_QMARK, - ACTIONS(7502), 1, - anon_sym_RBRACK, - ACTIONS(7218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7228), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7230), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7232), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7236), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7308), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [163355] = 20, - ACTIONS(71), 1, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7219), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [167640] = 11, + ACTIONS(73), 1, sym_comment, - ACTIONS(7318), 1, - anon_sym_EQ, - ACTIONS(7322), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7324), 1, - anon_sym_AMP_AMP, - ACTIONS(7326), 1, - anon_sym_PIPE, - ACTIONS(7328), 1, - anon_sym_CARET, - ACTIONS(7330), 1, - anon_sym_AMP, - ACTIONS(7344), 1, + ACTIONS(7451), 1, anon_sym_STAR_STAR, - ACTIONS(7346), 1, - anon_sym_EQ_TILDE, - ACTIONS(7348), 1, - anon_sym_QMARK, - ACTIONS(7350), 1, + ACTIONS(7455), 1, sym_test_operator, - ACTIONS(7502), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6830), 2, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7332), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7334), 2, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, + ACTIONS(7443), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7338), 2, + ACTIONS(7445), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, + ACTIONS(7447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7320), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [163434] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7238), 1, - anon_sym_STAR_STAR, - ACTIONS(7218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6795), 13, + ACTIONS(7013), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6793), 21, - sym_test_operator, + ACTIONS(7011), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217753,189 +222134,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163483] = 20, - ACTIONS(71), 1, + [167701] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(7220), 1, - anon_sym_PIPE, - ACTIONS(7222), 1, - anon_sym_CARET, - ACTIONS(7224), 1, - anon_sym_AMP, - ACTIONS(7238), 1, - anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, sym_test_operator, - ACTIONS(7306), 1, - anon_sym_EQ, - ACTIONS(7310), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_EQ_TILDE, - ACTIONS(7316), 1, - anon_sym_QMARK, - ACTIONS(7496), 1, - anon_sym_RBRACK, - ACTIONS(7218), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7228), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7230), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7232), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7236), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7308), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [163562] = 3, - ACTIONS(3), 1, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7285), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [167790] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(7506), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7504), 36, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [163607] = 15, - ACTIONS(3), 1, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7311), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [167879] = 25, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7346), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [167968] = 25, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7360), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [168057] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(7402), 1, - anon_sym_PIPE, - ACTIONS(7404), 1, - anon_sym_CARET, - ACTIONS(7406), 1, - anon_sym_AMP, - ACTIONS(7418), 1, + ACTIONS(7483), 1, anon_sym_STAR_STAR, - ACTIONS(7510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7394), 2, + ACTIONS(7491), 1, + sym_test_operator, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7398), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7400), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7408), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7412), 2, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7414), 2, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7416), 3, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7410), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7508), 13, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [163676] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7512), 1, - sym__concat, - ACTIONS(6859), 14, + ACTIONS(7013), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6857), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7011), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217953,15 +222438,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163723] = 4, - ACTIONS(71), 1, + [168114] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(7514), 1, - sym__concat, - ACTIONS(6865), 14, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7479), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7013), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -217970,15 +222465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6863), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7011), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -217996,49 +222484,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163770] = 14, - ACTIONS(3), 1, + [168167] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(7402), 1, - anon_sym_PIPE, - ACTIONS(7404), 1, - anon_sym_CARET, - ACTIONS(7406), 1, - anon_sym_AMP, - ACTIONS(7418), 1, + ACTIONS(7451), 1, anon_sym_STAR_STAR, - ACTIONS(7510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7394), 2, + ACTIONS(7455), 1, + sym_test_operator, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7400), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7408), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7412), 2, + ACTIONS(7445), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7414), 2, + ACTIONS(7447), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7416), 3, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7410), 4, + ACTIONS(7013), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7508), 15, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7011), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218051,11 +222527,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - [163837] = 3, - ACTIONS(71), 1, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [168224] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 14, + ACTIONS(7451), 1, + anon_sym_STAR_STAR, + ACTIONS(7427), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7449), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7013), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -218064,16 +222559,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6793), 23, + ACTIONS(7011), 21, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218091,35 +222578,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163882] = 8, - ACTIONS(71), 1, + [168277] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(7344), 1, + ACTIONS(7451), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7338), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7340), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7342), 3, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 6, + ACTIONS(7013), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6793), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7011), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -218138,53 +222623,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [163937] = 18, - ACTIONS(71), 1, + [168328] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(7451), 1, + anon_sym_STAR_STAR, + ACTIONS(7427), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7013), 13, anon_sym_EQ, - ACTIONS(7322), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7324), 1, - anon_sym_AMP_AMP, - ACTIONS(7326), 1, anon_sym_PIPE, - ACTIONS(7328), 1, anon_sym_CARET, - ACTIONS(7330), 1, anon_sym_AMP, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7348), 1, - anon_sym_QMARK, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7332), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 13, + ACTIONS(7011), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218196,15 +222661,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - [164012] = 4, - ACTIONS(71), 1, + anon_sym_QMARK, + [168377] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(7242), 2, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6828), 14, + ACTIONS(7481), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7013), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -218215,11 +222693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6826), 21, + ACTIONS(7011), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -218238,57 +222712,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [164059] = 20, - ACTIONS(71), 1, + [168428] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7220), 1, - anon_sym_PIPE, - ACTIONS(7222), 1, - anon_sym_CARET, - ACTIONS(7224), 1, - anon_sym_AMP, - ACTIONS(7238), 1, + ACTIONS(7451), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, - sym_test_operator, - ACTIONS(7306), 1, - anon_sym_EQ, - ACTIONS(7310), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7312), 1, - anon_sym_AMP_AMP, - ACTIONS(7314), 1, - anon_sym_EQ_TILDE, - ACTIONS(7316), 1, - anon_sym_QMARK, - ACTIONS(7454), 1, - anon_sym_RBRACK, - ACTIONS(7218), 2, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7226), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7228), 2, + ACTIONS(7013), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7230), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7232), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7308), 11, + ACTIONS(7011), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218300,54 +222750,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164138] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7318), 1, - anon_sym_EQ, - ACTIONS(7322), 1, anon_sym_PIPE_PIPE, - ACTIONS(7324), 1, anon_sym_AMP_AMP, - ACTIONS(7326), 1, - anon_sym_PIPE, - ACTIONS(7328), 1, - anon_sym_CARET, - ACTIONS(7330), 1, - anon_sym_AMP, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7346), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - ACTIONS(7348), 1, anon_sym_QMARK, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(7496), 1, - anon_sym_RBRACK_RBRACK, - ACTIONS(6830), 2, + [168477] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7332), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7334), 2, + ACTIONS(7013), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7320), 11, + ACTIONS(7011), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218359,52 +222794,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [164217] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7322), 1, anon_sym_PIPE_PIPE, - ACTIONS(7324), 1, anon_sym_AMP_AMP, - ACTIONS(7326), 1, - anon_sym_PIPE, - ACTIONS(7328), 1, - anon_sym_CARET, - ACTIONS(7330), 1, - anon_sym_AMP, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7346), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, - ACTIONS(7348), 1, anon_sym_QMARK, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(7516), 1, + [168526] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7691), 1, + sym__concat, + ACTIONS(6995), 14, anon_sym_EQ, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7332), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7334), 2, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 12, + anon_sym_STAR_STAR, + ACTIONS(6993), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218416,47 +222837,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, - [164294] = 16, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [168573] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(7693), 1, + sym__concat, + ACTIONS(7003), 14, anon_sym_EQ, - ACTIONS(7324), 1, - anon_sym_AMP_AMP, - ACTIONS(7326), 1, anon_sym_PIPE, - ACTIONS(7328), 1, anon_sym_CARET, - ACTIONS(7330), 1, anon_sym_AMP, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7332), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 15, + anon_sym_STAR_STAR, + ACTIONS(7001), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218469,47 +222881,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_RBRACK_RBRACK, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [164365] = 15, - ACTIONS(71), 1, + [168620] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7013), 13, anon_sym_EQ, - ACTIONS(7326), 1, anon_sym_PIPE, - ACTIONS(7328), 1, anon_sym_CARET, - ACTIONS(7330), 1, anon_sym_AMP, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7332), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 16, + ACTIONS(7011), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218523,46 +222926,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [164434] = 14, - ACTIONS(71), 1, + [168669] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7328), 1, - anon_sym_CARET, - ACTIONS(7330), 1, - anon_sym_AMP, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(6795), 2, + ACTIONS(7065), 14, anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7332), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7334), 2, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 16, + anon_sym_STAR_STAR, + ACTIONS(7063), 23, + sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218576,45 +222968,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [164501] = 13, - ACTIONS(71), 1, + [168714] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7330), 1, - anon_sym_AMP, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(1390), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1388), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7332), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7334), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7336), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7338), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7340), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6795), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7342), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6793), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218627,45 +222997,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [164566] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7332), 2, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7334), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7338), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 4, + anon_sym_STAR_STAR, + [168759] = 20, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7509), 1, + anon_sym_STAR_STAR, + ACTIONS(7511), 1, + sym_test_operator, + ACTIONS(7521), 1, anon_sym_EQ, + ACTIONS(7525), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7527), 1, + anon_sym_AMP_AMP, + ACTIONS(7529), 1, anon_sym_PIPE, + ACTIONS(7531), 1, anon_sym_CARET, + ACTIONS(7533), 1, anon_sym_AMP, - ACTIONS(6793), 16, + ACTIONS(7541), 1, + anon_sym_EQ_TILDE, + ACTIONS(7543), 1, + anon_sym_QMARK, + ACTIONS(7695), 1, + anon_sym_COLON, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7503), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7535), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7537), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7539), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7523), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218677,46 +223076,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [164629] = 13, + [168838] = 25, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7519), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [168927] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7402), 1, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(3711), 1, + anon_sym_DQUOTE, + ACTIONS(7701), 1, + sym_variable_name, + STATE(4345), 1, + sym_string, + ACTIONS(7699), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7697), 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(1267), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - ACTIONS(7404), 1, - anon_sym_CARET, - ACTIONS(7406), 1, anon_sym_AMP, - ACTIONS(7418), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [168982] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7669), 1, anon_sym_STAR_STAR, - ACTIONS(7510), 1, + ACTIONS(7671), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7394), 2, + ACTIONS(7647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7408), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7412), 2, + ACTIONS(7663), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7414), 2, + ACTIONS(7665), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7416), 3, + ACTIONS(7667), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7410), 4, + ACTIONS(7661), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7508), 17, + ACTIONS(7645), 22, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -218734,38 +223230,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - [164694] = 11, - ACTIONS(71), 1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [169039] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7344), 1, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(7350), 1, + ACTIONS(7501), 1, sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7589), 1, + anon_sym_EQ, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_AMP_AMP, + ACTIONS(7597), 1, + anon_sym_PIPE, + ACTIONS(7599), 1, + anon_sym_CARET, + ACTIONS(7601), 1, + anon_sym_AMP, + ACTIONS(7609), 1, + anon_sym_EQ_TILDE, + ACTIONS(7611), 1, + anon_sym_QMARK, + ACTIONS(7703), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7334), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7336), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7338), 2, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, + ACTIONS(7603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7605), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7607), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6793), 18, + ACTIONS(7591), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218777,19 +223294,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [164755] = 3, + [169118] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7472), 1, + ACTIONS(1326), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7470), 36, + ACTIONS(1324), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -218826,34 +223336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [164800] = 9, - ACTIONS(71), 1, + [169163] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(1330), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7338), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7340), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7342), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6795), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6793), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218866,40 +223358,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [164857] = 7, - ACTIONS(71), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [169208] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7344), 1, + ACTIONS(7669), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7671), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7340), 2, + ACTIONS(7663), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7665), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, + ACTIONS(7667), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 8, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6793), 21, - sym_test_operator, + ACTIONS(7645), 26, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218912,39 +223413,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [164910] = 6, - ACTIONS(71), 1, + [169263] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(7344), 1, + ACTIONS(7575), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7342), 3, + ACTIONS(7569), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 10, + ACTIONS(7048), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6793), 21, - sym_test_operator, + ACTIONS(7046), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -218962,33 +223470,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [164961] = 5, - ACTIONS(71), 1, + [169320] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6795), 13, + ACTIONS(7547), 1, anon_sym_EQ, + ACTIONS(7553), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7555), 1, + anon_sym_AMP_AMP, + ACTIONS(7557), 1, anon_sym_PIPE, + ACTIONS(7559), 1, anon_sym_CARET, + ACTIONS(7561), 1, anon_sym_AMP, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7579), 1, + anon_sym_EQ_TILDE, + ACTIONS(7581), 1, + anon_sym_QMARK, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7703), 1, + anon_sym_RBRACK, + ACTIONS(7549), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7563), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7567), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 21, - sym_test_operator, + ACTIONS(7551), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219000,24 +223532,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165010] = 5, - ACTIONS(71), 1, + [169399] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6795), 13, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -219031,8 +223549,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 21, + anon_sym_STAR_STAR, + ACTIONS(1403), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219050,44 +223571,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [165059] = 12, - ACTIONS(3), 1, + [169444] = 17, + ACTIONS(73), 1, sym_comment, - ACTIONS(7404), 1, + ACTIONS(7373), 1, + anon_sym_EQ, + ACTIONS(7553), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7555), 1, + anon_sym_AMP_AMP, + ACTIONS(7557), 1, + anon_sym_PIPE, + ACTIONS(7559), 1, anon_sym_CARET, - ACTIONS(7406), 1, + ACTIONS(7561), 1, anon_sym_AMP, - ACTIONS(7418), 1, + ACTIONS(7575), 1, anon_sym_STAR_STAR, - ACTIONS(7510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7394), 2, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7408), 2, + ACTIONS(7563), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7412), 2, + ACTIONS(7565), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7567), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7414), 2, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7416), 3, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7410), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7508), 18, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7375), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219099,42 +223627,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - [165122] = 11, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [169517] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7406), 1, - anon_sym_AMP, - ACTIONS(7418), 1, + ACTIONS(7669), 1, anon_sym_STAR_STAR, - ACTIONS(7510), 1, + ACTIONS(7671), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7394), 2, + ACTIONS(7647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7408), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7412), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7414), 2, + ACTIONS(7665), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7416), 3, + ACTIONS(7667), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7410), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7508), 19, + ACTIONS(7645), 28, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -219154,35 +223667,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHa, anon_sym_PIPE, anon_sym_CARET, - [165183] = 10, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + [169570] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7418), 1, + ACTIONS(7669), 1, anon_sym_STAR_STAR, - ACTIONS(7510), 1, + ACTIONS(7671), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7394), 2, + ACTIONS(7647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7408), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7412), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7416), 3, + ACTIONS(7667), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7410), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7508), 20, + ACTIONS(7645), 30, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_EQ, @@ -219203,34 +223711,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - [165242] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7272), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7274), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6826), 21, - sym_test_operator, - anon_sym_RPAREN_RPAREN, + [169621] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7669), 1, + anon_sym_STAR_STAR, + ACTIONS(7671), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7645), 33, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219243,25 +223746,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165297] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7518), 1, - sym__concat, - ACTIONS(6837), 14, - anon_sym_EQ, + anon_sym_DASHa, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -219269,10 +223765,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + [169670] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7669), 1, anon_sym_STAR_STAR, - ACTIONS(6835), 22, + ACTIONS(7671), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7645), 33, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219285,26 +223790,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165344] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7520), 1, - sym__concat, - ACTIONS(6819), 14, - anon_sym_EQ, + anon_sym_DASHa, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PLUS, @@ -219312,58 +223809,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + [169719] = 20, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7457), 1, + anon_sym_EQ, + ACTIONS(7461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE, + ACTIONS(7467), 1, + anon_sym_CARET, + ACTIONS(7469), 1, + anon_sym_AMP, + ACTIONS(7483), 1, anon_sym_STAR_STAR, - ACTIONS(6817), 22, + ACTIONS(7487), 1, + anon_sym_EQ_TILDE, + ACTIONS(7489), 1, + anon_sym_QMARK, + ACTIONS(7491), 1, + sym_test_operator, + ACTIONS(7703), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7473), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165391] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7418), 1, - anon_sym_STAR_STAR, - ACTIONS(7510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7394), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7412), 2, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7414), 2, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7416), 3, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7410), 4, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7508), 22, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7459), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219375,64 +223868,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [169798] = 20, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7457), 1, + anon_sym_EQ, + ACTIONS(7461), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7465), 1, anon_sym_PIPE, + ACTIONS(7467), 1, anon_sym_CARET, + ACTIONS(7469), 1, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [165448] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7524), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7394), 2, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7487), 1, + anon_sym_EQ_TILDE, + ACTIONS(7489), 1, + anon_sym_QMARK, + ACTIONS(7491), 1, + sym_test_operator, + ACTIONS(7705), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7522), 34, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - [165495] = 4, - ACTIONS(71), 1, + ACTIONS(7459), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [169877] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(7526), 1, - anon_sym_LBRACK, - ACTIONS(6632), 14, + ACTIONS(7707), 1, + sym__concat, + ACTIONS(6995), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -219447,7 +223947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6630), 22, + ACTIONS(6993), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -219470,60 +223970,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [165542] = 9, - ACTIONS(71), 1, + [169924] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, sym_test_operator, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7272), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7274), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6826), 20, - anon_sym_RPAREN_RPAREN, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165599] = 4, - ACTIONS(71), 1, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7183), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [170013] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(7528), 1, + ACTIONS(7709), 1, + anon_sym_LBRACK, + ACTIONS(6844), 14, anon_sym_EQ, - ACTIONS(7164), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -219537,8 +224054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7168), 23, - anon_sym_COMMA, + ACTIONS(6842), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -219553,36 +224069,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [165646] = 3, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [170060] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(6848), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7509), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7503), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7505), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6846), 23, + ACTIONS(7013), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7011), 21, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219600,51 +224121,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [165691] = 17, - ACTIONS(71), 1, + anon_sym_COLON, + [170115] = 18, + ACTIONS(73), 1, sym_comment, - ACTIONS(7024), 1, + ACTIONS(7013), 1, anon_sym_EQ, - ACTIONS(7322), 1, + ACTIONS(7509), 1, + anon_sym_STAR_STAR, + ACTIONS(7511), 1, + sym_test_operator, + ACTIONS(7525), 1, anon_sym_PIPE_PIPE, - ACTIONS(7324), 1, + ACTIONS(7527), 1, anon_sym_AMP_AMP, - ACTIONS(7326), 1, + ACTIONS(7529), 1, anon_sym_PIPE, - ACTIONS(7328), 1, + ACTIONS(7531), 1, anon_sym_CARET, - ACTIONS(7330), 1, + ACTIONS(7533), 1, anon_sym_AMP, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7543), 1, + anon_sym_QMARK, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7332), 2, + ACTIONS(7503), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7535), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7334), 2, + ACTIONS(7537), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7336), 2, + ACTIONS(7539), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7338), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7340), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7342), 3, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 14, + ACTIONS(7011), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219656,32 +224179,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [165764] = 8, - ACTIONS(3), 1, + anon_sym_COLON, + [170190] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7418), 1, + ACTIONS(7509), 1, anon_sym_STAR_STAR, - ACTIONS(7510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7394), 2, + ACTIONS(7511), 1, + sym_test_operator, + ACTIONS(7521), 1, + anon_sym_EQ, + ACTIONS(7525), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7527), 1, + anon_sym_AMP_AMP, + ACTIONS(7529), 1, + anon_sym_PIPE, + ACTIONS(7531), 1, + anon_sym_CARET, + ACTIONS(7533), 1, + anon_sym_AMP, + ACTIONS(7541), 1, + anon_sym_EQ_TILDE, + ACTIONS(7543), 1, + anon_sym_QMARK, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7412), 2, + ACTIONS(7503), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7414), 2, + ACTIONS(7505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7416), 3, + ACTIONS(7535), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7537), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7539), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7508), 26, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7011), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219693,39 +224238,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, + anon_sym_COLON, + [170267] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7013), 1, + anon_sym_EQ, + ACTIONS(7509), 1, + anon_sym_STAR_STAR, + ACTIONS(7511), 1, + sym_test_operator, + ACTIONS(7527), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(7529), 1, anon_sym_PIPE, + ACTIONS(7531), 1, anon_sym_CARET, + ACTIONS(7533), 1, anon_sym_AMP, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7503), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7535), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7537), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7539), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - [165819] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7418), 1, - anon_sym_STAR_STAR, - ACTIONS(7510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7394), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7416), 3, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7508), 28, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7011), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219738,37 +224291,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [170338] = 15, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7013), 1, + anon_sym_EQ, + ACTIONS(7509), 1, + anon_sym_STAR_STAR, + ACTIONS(7511), 1, + sym_test_operator, + ACTIONS(7529), 1, anon_sym_PIPE, + ACTIONS(7531), 1, anon_sym_CARET, + ACTIONS(7533), 1, anon_sym_AMP, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7503), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7535), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7537), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7539), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - [165872] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7418), 1, - anon_sym_STAR_STAR, - ACTIONS(7510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7394), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7416), 3, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7508), 30, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219781,35 +224344,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [170407] = 14, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7509), 1, + anon_sym_STAR_STAR, + ACTIONS(7511), 1, + sym_test_operator, + ACTIONS(7531), 1, anon_sym_CARET, + ACTIONS(7533), 1, anon_sym_AMP, + ACTIONS(7013), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7503), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7535), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7537), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7539), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - [165923] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7418), 1, - anon_sym_STAR_STAR, - ACTIONS(7510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7394), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7508), 33, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219822,38 +224397,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [170474] = 13, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7509), 1, + anon_sym_STAR_STAR, + ACTIONS(7511), 1, + sym_test_operator, + ACTIONS(7533), 1, anon_sym_AMP, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7503), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7535), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7537), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7539), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(7013), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [165972] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7418), 1, - anon_sym_STAR_STAR, - ACTIONS(7510), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7394), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7508), 33, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219866,53 +224449,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [166021] = 9, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [170539] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(7238), 1, + ACTIONS(7509), 1, anon_sym_STAR_STAR, - ACTIONS(7240), 1, + ACTIONS(7511), 1, sym_test_operator, - ACTIONS(7218), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7232), 2, + ACTIONS(7503), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, + ACTIONS(7505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, + ACTIONS(7535), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7537), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7539), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, + ACTIONS(7013), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6826), 20, + ACTIONS(7011), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219926,40 +224501,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [166078] = 8, - ACTIONS(71), 1, + anon_sym_COLON, + [170602] = 11, + ACTIONS(73), 1, sym_comment, - ACTIONS(7238), 1, + ACTIONS(7509), 1, anon_sym_STAR_STAR, - ACTIONS(7218), 2, + ACTIONS(7511), 1, + sym_test_operator, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7232), 2, + ACTIONS(7503), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7234), 2, + ACTIONS(7505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7236), 3, + ACTIONS(7537), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7539), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, + ACTIONS(7013), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6826), 21, - sym_test_operator, + ACTIONS(7011), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -219975,59 +224551,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [166133] = 20, - ACTIONS(71), 1, + anon_sym_COLON, + [170663] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, + ACTIONS(7509), 1, anon_sym_STAR_STAR, - ACTIONS(7252), 1, + ACTIONS(7511), 1, sym_test_operator, - ACTIONS(7254), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7256), 1, - anon_sym_AMP_AMP, - ACTIONS(7258), 1, - anon_sym_PIPE, - ACTIONS(7260), 1, - anon_sym_CARET, - ACTIONS(7262), 1, - anon_sym_AMP, - ACTIONS(7352), 1, - anon_sym_EQ, - ACTIONS(7358), 1, - anon_sym_EQ_TILDE, - ACTIONS(7360), 1, - anon_sym_QMARK, - ACTIONS(7530), 1, - anon_sym_RPAREN, - ACTIONS(7242), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, + ACTIONS(7503), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7246), 2, + ACTIONS(7505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7264), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7266), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7268), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7248), 3, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7354), 11, + ACTIONS(7013), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7011), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220039,77 +224593,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [166212] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7532), 1, - anon_sym_esac, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7214), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3452), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [166301] = 4, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [170720] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(7218), 2, + ACTIONS(7509), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6828), 14, + ACTIONS(7505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7507), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7013), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220118,13 +224626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6826), 21, + ACTIONS(7011), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -220143,35 +224645,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [166348] = 8, - ACTIONS(71), 1, + anon_sym_COLON, + [170773] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(7238), 1, + ACTIONS(7509), 1, anon_sym_STAR_STAR, - ACTIONS(7218), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7232), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7234), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7236), 3, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, + ACTIONS(7013), 10, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6826), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7011), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -220190,13 +224690,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [166403] = 3, - ACTIONS(71), 1, + anon_sym_COLON, + [170824] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6813), 14, + ACTIONS(7509), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7013), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220210,11 +224715,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6811), 23, + ACTIONS(7011), 21, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220232,19 +224734,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [166448] = 3, - ACTIONS(3), 1, + anon_sym_COLON, + [170873] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7536), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7534), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7509), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7013), 13, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7011), 21, + sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220257,141 +224773,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [166493] = 25, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + anon_sym_COLON, + [170922] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(6476), 1, + ACTIONS(6661), 1, sym_word, - ACTIONS(6482), 1, + ACTIONS(6667), 1, anon_sym_LPAREN, - ACTIONS(6490), 1, + ACTIONS(6675), 1, anon_sym_DOLLAR, - ACTIONS(6496), 1, + ACTIONS(6683), 1, aux_sym_number_token1, - ACTIONS(6498), 1, + ACTIONS(6685), 1, aux_sym_number_token2, - ACTIONS(6502), 1, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, + ACTIONS(6697), 1, sym_test_operator, - ACTIONS(6512), 1, + ACTIONS(6699), 1, sym_extglob_pattern, - ACTIONS(6514), 1, + ACTIONS(6701), 1, sym__brace_start, - ACTIONS(7200), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, + ACTIONS(7168), 1, sym__special_character, - ACTIONS(7204), 1, + ACTIONS(7170), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, + ACTIONS(7178), 1, anon_sym_BQUOTE, - ACTIONS(7212), 1, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7538), 1, - anon_sym_esac, - STATE(6459), 1, + STATE(6541), 1, aux_sym__literal_repeat1, - STATE(7398), 1, + STATE(7277), 1, sym_last_case_item, - ACTIONS(7196), 2, + ACTIONS(7164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3403), 2, + STATE(3309), 2, sym_case_item, aux_sym_case_statement_repeat1, - STATE(6638), 2, + STATE(6737), 2, sym_concatenation, sym__extglob_blob, - STATE(6312), 9, + STATE(6331), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [166582] = 8, - ACTIONS(3), 1, + [171011] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(3630), 1, - anon_sym_DQUOTE, - ACTIONS(7194), 1, - sym_variable_name, - STATE(4297), 1, - sym_string, - ACTIONS(7192), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7190), 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(1227), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(7711), 1, + sym__concat, + ACTIONS(7003), 14, + anon_sym_EQ, anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [166637] = 3, - ACTIONS(71), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7001), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [171058] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 14, + ACTIONS(1281), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -220406,7 +224906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6793), 23, + ACTIONS(1403), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -220430,81 +224930,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [166682] = 8, - ACTIONS(3), 1, + [171103] = 17, + ACTIONS(73), 1, sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(3630), 1, - anon_sym_DQUOTE, - ACTIONS(7194), 1, - sym_variable_name, - STATE(4297), 1, - sym_string, - ACTIONS(7192), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7190), 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(1239), 22, - anon_sym_SEMI, + ACTIONS(7373), 1, + anon_sym_EQ, + ACTIONS(7509), 1, + anon_sym_STAR_STAR, + ACTIONS(7511), 1, + sym_test_operator, + ACTIONS(7525), 1, anon_sym_PIPE_PIPE, + ACTIONS(7527), 1, anon_sym_AMP_AMP, + ACTIONS(7529), 1, anon_sym_PIPE, + ACTIONS(7531), 1, + anon_sym_CARET, + ACTIONS(7533), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [166737] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(7350), 1, - sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7338), 2, + ACTIONS(7503), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, + ACTIONS(7505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, + ACTIONS(7535), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7537), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7539), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6826), 20, + ACTIONS(7375), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220516,63 +224983,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [166794] = 20, - ACTIONS(71), 1, + anon_sym_COLON, + [171176] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7250), 1, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(7252), 1, + ACTIONS(7501), 1, sym_test_operator, - ACTIONS(7254), 1, + ACTIONS(7589), 1, + anon_sym_EQ, + ACTIONS(7593), 1, anon_sym_PIPE_PIPE, - ACTIONS(7256), 1, + ACTIONS(7595), 1, anon_sym_AMP_AMP, - ACTIONS(7258), 1, + ACTIONS(7597), 1, anon_sym_PIPE, - ACTIONS(7260), 1, + ACTIONS(7599), 1, anon_sym_CARET, - ACTIONS(7262), 1, + ACTIONS(7601), 1, anon_sym_AMP, - ACTIONS(7352), 1, - anon_sym_EQ, - ACTIONS(7358), 1, + ACTIONS(7609), 1, anon_sym_EQ_TILDE, - ACTIONS(7360), 1, + ACTIONS(7611), 1, anon_sym_QMARK, - ACTIONS(7540), 1, - anon_sym_RPAREN, - ACTIONS(7242), 2, + ACTIONS(7713), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7244), 2, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7246), 2, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7264), 2, + ACTIONS(7603), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7266), 2, + ACTIONS(7605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7268), 2, + ACTIONS(7607), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7248), 3, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7354), 11, + ACTIONS(7591), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220584,12 +225045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [166873] = 3, + [171255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7544), 1, + ACTIONS(1338), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(7542), 36, + ACTIONS(1336), 36, anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -220626,79 +225087,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - [166918] = 8, - ACTIONS(71), 1, + [171300] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7250), 1, - anon_sym_STAR_STAR, - ACTIONS(7242), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7244), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7246), 2, - anon_sym_PLUS, + ACTIONS(3711), 1, + anon_sym_DQUOTE, + ACTIONS(7701), 1, + sym_variable_name, + STATE(4345), 1, + sym_string, + ACTIONS(1269), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7699), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7697), 9, anon_sym_DASH, - ACTIONS(7248), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6828), 6, - anon_sym_EQ, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1267), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6826), 21, - sym_test_operator, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [171355] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3711), 1, + anon_sym_DQUOTE, + ACTIONS(7701), 1, + sym_variable_name, + STATE(4345), 1, + sym_string, + ACTIONS(1263), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7699), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7697), 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(1255), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [166973] = 8, - ACTIONS(71), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [171410] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7344), 1, + ACTIONS(7575), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7338), 2, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, + ACTIONS(7048), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6826), 21, + ACTIONS(7046), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -220717,36 +225225,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [167028] = 8, - ACTIONS(71), 1, + [171465] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(1334), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7182), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7184), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6795), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6793), 21, - sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220759,117 +225250,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [167083] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6795), 1, - anon_sym_EQ, - ACTIONS(7172), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(7188), 1, - sym_test_operator, - ACTIONS(7366), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7368), 1, - anon_sym_AMP_AMP, - ACTIONS(7370), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7372), 1, anon_sym_CARET, - ACTIONS(7376), 1, - anon_sym_QMARK, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7174), 2, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 13, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_COLON, - [167158] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7172), 1, - anon_sym_AMP, - ACTIONS(7186), 1, anon_sym_STAR_STAR, - ACTIONS(7188), 1, - sym_test_operator, - ACTIONS(7362), 1, + [171510] = 20, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7547), 1, anon_sym_EQ, - ACTIONS(7366), 1, + ACTIONS(7553), 1, anon_sym_PIPE_PIPE, - ACTIONS(7368), 1, + ACTIONS(7555), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(7557), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(7559), 1, anon_sym_CARET, - ACTIONS(7374), 1, + ACTIONS(7561), 1, + anon_sym_AMP, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7579), 1, anon_sym_EQ_TILDE, - ACTIONS(7376), 1, + ACTIONS(7581), 1, anon_sym_QMARK, - ACTIONS(6830), 2, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7713), 1, + anon_sym_RBRACK, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7174), 2, + ACTIONS(7563), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7176), 2, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, + ACTIONS(7567), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7180), 2, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7184), 3, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 12, + ACTIONS(7551), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220881,47 +225329,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_COLON, - [167235] = 16, - ACTIONS(71), 1, + [171589] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(7457), 1, anon_sym_EQ, - ACTIONS(7172), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(7188), 1, - sym_test_operator, - ACTIONS(7368), 1, + ACTIONS(7461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7463), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(7465), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(7467), 1, anon_sym_CARET, - ACTIONS(6830), 2, + ACTIONS(7469), 1, + anon_sym_AMP, + ACTIONS(7483), 1, + anon_sym_STAR_STAR, + ACTIONS(7487), 1, + anon_sym_EQ_TILDE, + ACTIONS(7489), 1, + anon_sym_QMARK, + ACTIONS(7491), 1, + sym_test_operator, + ACTIONS(7713), 1, + anon_sym_RBRACK_RBRACK, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7174), 2, + ACTIONS(7471), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7176), 2, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7180), 2, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7184), 3, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 15, + ACTIONS(7459), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -220933,132 +225388,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [167306] = 15, - ACTIONS(71), 1, + [171668] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(6795), 1, - anon_sym_EQ, - ACTIONS(7172), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(7188), 1, + ACTIONS(7715), 1, + aux_sym_concatenation_token1, + ACTIONS(7717), 1, + sym__concat, + STATE(3196), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 4, + sym_file_descriptor, sym_test_operator, - ACTIONS(7370), 1, - anon_sym_PIPE, - ACTIONS(7372), 1, - anon_sym_CARET, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7176), 2, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5440), 30, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7180), 2, - anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, - anon_sym_PLUS, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [171719] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(3711), 1, + anon_sym_DQUOTE, + ACTIONS(7701), 1, + sym_variable_name, + STATE(4345), 1, + sym_string, + ACTIONS(7699), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7697), 9, anon_sym_DASH, - ACTIONS(7184), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6793), 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_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1255), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [167375] = 14, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7172), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(7188), 1, - sym_test_operator, - ACTIONS(7372), 1, - anon_sym_CARET, - ACTIONS(6795), 2, - anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7174), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7176), 2, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7184), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6793), 16, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [167442] = 6, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [171774] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(7715), 1, aux_sym_concatenation_token1, - ACTIONS(7546), 1, + ACTIONS(7717), 1, sym__concat, - STATE(3149), 1, + STATE(3198), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(5540), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 30, + ACTIONS(5538), 30, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -221078,7 +225514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -221089,10 +225525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [167493] = 3, - ACTIONS(71), 1, + [171825] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6852), 14, + ACTIONS(7065), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -221107,7 +225543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6850), 23, + ACTIONS(7063), 23, sym_test_operator, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -221131,41 +225567,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [167538] = 12, - ACTIONS(71), 1, + [171870] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(7188), 1, + ACTIONS(1300), 13, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + sym__special_character, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1302), 24, + sym_file_descriptor, sym_test_operator, - ACTIONS(6830), 2, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [171915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7174), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6793), 16, + anon_sym_STAR_STAR, + [171960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221178,42 +225673,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [167601] = 11, - ACTIONS(71), 1, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [172005] = 17, + ACTIONS(73), 1, sym_comment, - ACTIONS(7186), 1, + ACTIONS(7373), 1, + anon_sym_EQ, + ACTIONS(7461), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7463), 1, + anon_sym_AMP_AMP, + ACTIONS(7465), 1, + anon_sym_PIPE, + ACTIONS(7467), 1, + anon_sym_CARET, + ACTIONS(7469), 1, + anon_sym_AMP, + ACTIONS(7483), 1, anon_sym_STAR_STAR, - ACTIONS(7188), 1, + ACTIONS(7491), 1, sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7176), 2, + ACTIONS(7471), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7473), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, + ACTIONS(7475), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7180), 2, + ACTIONS(7477), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, + ACTIONS(7479), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7184), 3, + ACTIONS(7481), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6793), 18, + ACTIONS(7375), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221225,41 +225746,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, + anon_sym_RBRACK_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [167662] = 9, - ACTIONS(71), 1, + [172078] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(7188), 1, - sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(1378), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1376), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7180), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6793), 20, + anon_sym_STAR_STAR, + [172123] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7721), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7719), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221272,40 +225813,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [167719] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7344), 1, - anon_sym_STAR_STAR, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7338), 2, + anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7340), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7342), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, + anon_sym_STAR_STAR, + [172168] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7549), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7048), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6826), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7046), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -221324,25 +225873,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK_RBRACK, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [167774] = 7, - ACTIONS(71), 1, + [172215] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7182), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7184), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6795), 8, + ACTIONS(7009), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -221351,8 +225888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6793), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7007), 23, sym_test_operator, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221370,33 +225915,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [167827] = 6, - ACTIONS(71), 1, + [172260] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7186), 1, + ACTIONS(7575), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7184), 3, + ACTIONS(7569), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 10, + ACTIONS(7048), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6793), 21, + ACTIONS(7046), 21, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -221415,19 +225962,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_COLON, - [167878] = 3, - ACTIONS(3), 1, + [172315] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7550), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7548), 36, - anon_sym_SEMI, - anon_sym_COMMA, + ACTIONS(7547), 1, + anon_sym_EQ, + ACTIONS(7553), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7555), 1, + anon_sym_AMP_AMP, + ACTIONS(7557), 1, + anon_sym_PIPE, + ACTIONS(7559), 1, + anon_sym_CARET, + ACTIONS(7561), 1, + anon_sym_AMP, + ACTIONS(7575), 1, + anon_sym_STAR_STAR, + ACTIONS(7579), 1, + anon_sym_EQ_TILDE, + ACTIONS(7581), 1, + anon_sym_QMARK, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7705), 1, + anon_sym_RBRACK, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7563), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7565), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7567), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7569), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7571), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7573), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7551), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221439,51 +226024,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [172394] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(3711), 1, + anon_sym_DQUOTE, + ACTIONS(7701), 1, + sym_variable_name, + STATE(4345), 1, + sym_string, + ACTIONS(7699), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7697), 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(1267), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_PIPE, - anon_sym_CARET, anon_sym_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [172449] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(3711), 1, + anon_sym_DQUOTE, + ACTIONS(7701), 1, + sym_variable_name, + STATE(4345), 1, + sym_string, + ACTIONS(7699), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7697), 9, anon_sym_DASH, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - [167923] = 5, - ACTIONS(71), 1, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1255), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [172504] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7186), 1, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6795), 13, + ACTIONS(7501), 1, + sym_test_operator, + ACTIONS(7589), 1, anon_sym_EQ, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_AMP_AMP, + ACTIONS(7597), 1, anon_sym_PIPE, + ACTIONS(7599), 1, anon_sym_CARET, + ACTIONS(7601), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7609), 1, + anon_sym_EQ_TILDE, + ACTIONS(7611), 1, + anon_sym_QMARK, + ACTIONS(7705), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7605), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7607), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 21, - sym_test_operator, + ACTIONS(7591), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221495,58 +226177,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [167972] = 17, - ACTIONS(71), 1, + [172583] = 17, + ACTIONS(73), 1, sym_comment, - ACTIONS(7024), 1, + ACTIONS(7373), 1, anon_sym_EQ, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, - sym_test_operator, - ACTIONS(7286), 1, + ACTIONS(7429), 1, anon_sym_PIPE_PIPE, - ACTIONS(7288), 1, + ACTIONS(7431), 1, anon_sym_AMP_AMP, - ACTIONS(7290), 1, + ACTIONS(7433), 1, anon_sym_PIPE, - ACTIONS(7292), 1, + ACTIONS(7435), 1, anon_sym_CARET, - ACTIONS(7294), 1, + ACTIONS(7437), 1, anon_sym_AMP, - ACTIONS(6830), 2, + ACTIONS(7451), 1, + anon_sym_STAR_STAR, + ACTIONS(7455), 1, + sym_test_operator, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7272), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7296), 2, + ACTIONS(7439), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7298), 2, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7300), 2, + ACTIONS(7443), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7274), 3, + ACTIONS(7445), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 14, - anon_sym_RPAREN_RPAREN, + ACTIONS(7375), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221558,32 +226230,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168045] = 5, - ACTIONS(71), 1, + [172656] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(1382), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1380), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6795), 13, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6793), 21, - sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221596,29 +226255,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - anon_sym_COLON, - [168094] = 6, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [172701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7466), 1, + ACTIONS(7715), 1, aux_sym_concatenation_token1, - ACTIONS(7552), 1, + ACTIONS(7723), 1, sym__concat, - STATE(3149), 1, + STATE(3199), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1296), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 30, + ACTIONS(1294), 30, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -221638,7 +226309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -221649,92 +226320,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [168145] = 5, - ACTIONS(71), 1, + [172752] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(7554), 1, - sym__special_character, - STATE(3147), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 12, + ACTIONS(7485), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7499), 1, + anon_sym_STAR_STAR, + ACTIONS(7501), 1, + sym_test_operator, + ACTIONS(7589), 1, + anon_sym_EQ, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_AMP_AMP, + ACTIONS(7597), 1, anon_sym_PIPE, + ACTIONS(7599), 1, + anon_sym_CARET, + ACTIONS(7601), 1, + anon_sym_AMP, + ACTIONS(7609), 1, + anon_sym_EQ_TILDE, + ACTIONS(7611), 1, + anon_sym_QMARK, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7493), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7605), 2, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + ACTIONS(7607), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7497), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7591), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [172831] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7715), 1, + aux_sym_concatenation_token1, + ACTIONS(7725), 1, + sym__concat, + STATE(3199), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 30, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(1362), 23, + [172882] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7727), 1, + aux_sym_concatenation_token1, + ACTIONS(7730), 1, + sym__concat, + STATE(3199), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 30, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [168194] = 17, - ACTIONS(71), 1, + sym_word, + [172933] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(7024), 1, - anon_sym_EQ, - ACTIONS(7172), 1, + ACTIONS(7653), 1, + anon_sym_PIPE, + ACTIONS(7655), 1, + anon_sym_CARET, + ACTIONS(7657), 1, anon_sym_AMP, - ACTIONS(7186), 1, + ACTIONS(7669), 1, anon_sym_STAR_STAR, - ACTIONS(7188), 1, - sym_test_operator, - ACTIONS(7366), 1, + ACTIONS(7737), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7649), 2, anon_sym_PIPE_PIPE, - ACTIONS(7368), 1, + anon_sym_DASHo, + ACTIONS(7651), 2, anon_sym_AMP_AMP, - ACTIONS(7370), 1, - anon_sym_PIPE, - ACTIONS(7372), 1, - anon_sym_CARET, - ACTIONS(6830), 2, + anon_sym_DASHa, + ACTIONS(7659), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7663), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7665), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7733), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(7667), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7661), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7735), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [173004] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7741), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7739), 36, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7174), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 14, + anon_sym_STAR_STAR, + [173049] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7745), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7743), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221746,24 +226587,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [173094] = 20, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7499), 1, + anon_sym_STAR_STAR, + ACTIONS(7501), 1, + sym_test_operator, + ACTIONS(7577), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(7589), 1, + anon_sym_EQ, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_AMP_AMP, + ACTIONS(7597), 1, + anon_sym_PIPE, + ACTIONS(7599), 1, + anon_sym_CARET, + ACTIONS(7601), 1, + anon_sym_AMP, + ACTIONS(7609), 1, anon_sym_EQ_TILDE, + ACTIONS(7611), 1, anon_sym_QMARK, - anon_sym_COLON, - [168267] = 6, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7493), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7605), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7607), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7497), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7591), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [173173] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7557), 1, + ACTIONS(7715), 1, aux_sym_concatenation_token1, - ACTIONS(7560), 1, + ACTIONS(7717), 1, sym__concat, - STATE(3149), 1, + STATE(3196), 1, aux_sym_concatenation_repeat1, - ACTIONS(1278), 4, + ACTIONS(1302), 4, sym_file_descriptor, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 30, + ACTIONS(1300), 30, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -221783,7 +226701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -221794,10 +226712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [168318] = 3, - ACTIONS(71), 1, + [173224] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 13, + ACTIONS(7747), 1, + sym__special_character, + STATE(3218), 1, + aux_sym__literal_repeat1, + ACTIONS(5440), 12, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -221809,9 +226731,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - aux_sym__simple_variable_name_token1, sym_word, - ACTIONS(1274), 24, + ACTIONS(5442), 23, sym_file_descriptor, sym_test_operator, sym__brace_start, @@ -221827,43 +226748,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [168363] = 8, - ACTIONS(71), 1, + [173273] = 17, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, + ACTIONS(7373), 1, + anon_sym_EQ, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7501), 1, + sym_test_operator, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_AMP_AMP, + ACTIONS(7597), 1, + anon_sym_PIPE, + ACTIONS(7599), 1, + anon_sym_CARET, + ACTIONS(7601), 1, + anon_sym_AMP, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7272), 2, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7274), 3, + ACTIONS(7603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7605), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7607), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 6, + ACTIONS(7375), 14, + anon_sym_RPAREN_RPAREN, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [173346] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7009), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6793), 21, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7007), 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, @@ -221881,53 +226851,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168418] = 18, - ACTIONS(71), 1, + [173391] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, - anon_sym_EQ, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, - sym_test_operator, - ACTIONS(7286), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7288), 1, - anon_sym_AMP_AMP, - ACTIONS(7290), 1, - anon_sym_PIPE, - ACTIONS(7292), 1, - anon_sym_CARET, - ACTIONS(7294), 1, - anon_sym_AMP, - ACTIONS(7304), 1, - anon_sym_QMARK, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT_LT, + ACTIONS(7762), 1, + anon_sym_LT_LT_LT, + ACTIONS(7765), 1, + sym_file_descriptor, + ACTIONS(7768), 1, + sym_variable_name, + STATE(6797), 1, + sym_subscript, + ACTIONS(7759), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(3208), 2, + sym_variable_assignment, + aux_sym_command_repeat1, + STATE(3643), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(7756), 3, anon_sym_GT_GT, - ACTIONS(7272), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7296), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7298), 2, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(7749), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(7753), 5, anon_sym_LT, anon_sym_GT, - ACTIONS(7300), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7274), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6793), 13, - anon_sym_RPAREN_RPAREN, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(7751), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [173454] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7741), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7739), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221939,55 +226926,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - [168493] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7172), 1, - anon_sym_AMP, - ACTIONS(7186), 1, - anon_sym_STAR_STAR, - ACTIONS(7188), 1, - sym_test_operator, - ACTIONS(7362), 1, - anon_sym_EQ, - ACTIONS(7366), 1, anon_sym_PIPE_PIPE, - ACTIONS(7368), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7372), 1, anon_sym_CARET, - ACTIONS(7374), 1, - anon_sym_EQ_TILDE, - ACTIONS(7376), 1, - anon_sym_QMARK, - ACTIONS(7563), 1, - anon_sym_COLON, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7174), 2, + anon_sym_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7176), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7180), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7182), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7184), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7364), 11, + anon_sym_STAR_STAR, + [173499] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7773), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7647), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7771), 34, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -221999,53 +226969,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [168572] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, - sym_test_operator, - ACTIONS(7282), 1, - anon_sym_EQ, - ACTIONS(7286), 1, anon_sym_PIPE_PIPE, - ACTIONS(7288), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7290), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7292), 1, anon_sym_CARET, - ACTIONS(7294), 1, anon_sym_AMP, - ACTIONS(7302), 1, - anon_sym_EQ_TILDE, - ACTIONS(7304), 1, - anon_sym_QMARK, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7272), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7298), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7300), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7274), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 12, - anon_sym_RPAREN_RPAREN, + anon_sym_STAR_STAR, + [173546] = 25, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, + sym_test_operator, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7553), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [173635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7777), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7775), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222057,46 +227075,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [168649] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6795), 1, - anon_sym_EQ, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, - sym_test_operator, - ACTIONS(7288), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7290), 1, + anon_sym_DASHa, anon_sym_PIPE, - ACTIONS(7292), 1, anon_sym_CARET, - ACTIONS(7294), 1, anon_sym_AMP, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7272), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7298), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7300), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7274), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 15, + anon_sym_STAR_STAR, + [173680] = 9, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7499), 1, + anon_sym_STAR_STAR, + ACTIONS(7501), 1, + sym_test_operator, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7493), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7497), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7048), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7046), 20, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -222110,30 +227137,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168720] = 3, - ACTIONS(71), 1, + [173737] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7499), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6793), 23, + ACTIONS(7013), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7011), 21, sym_test_operator, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222151,48 +227189,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [168765] = 15, - ACTIONS(71), 1, + [173792] = 25, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, - anon_sym_EQ, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, + ACTIONS(6661), 1, + sym_word, + ACTIONS(6667), 1, + anon_sym_LPAREN, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6697), 1, sym_test_operator, - ACTIONS(7290), 1, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7174), 1, + sym_ansi_c_string, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6541), 1, + aux_sym__literal_repeat1, + STATE(7575), 1, + sym_last_case_item, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6737), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6331), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [173881] = 20, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7429), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7431), 1, + anon_sym_AMP_AMP, + ACTIONS(7433), 1, anon_sym_PIPE, - ACTIONS(7292), 1, + ACTIONS(7435), 1, anon_sym_CARET, - ACTIONS(7294), 1, + ACTIONS(7437), 1, anon_sym_AMP, - ACTIONS(6830), 2, + ACTIONS(7451), 1, + anon_sym_STAR_STAR, + ACTIONS(7453), 1, + anon_sym_QMARK, + ACTIONS(7455), 1, + sym_test_operator, + ACTIONS(7513), 1, + anon_sym_EQ, + ACTIONS(7519), 1, + anon_sym_EQ_TILDE, + ACTIONS(7779), 1, + anon_sym_RPAREN, + ACTIONS(7427), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7272), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7296), 2, + ACTIONS(7439), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7298), 2, + ACTIONS(7441), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7300), 2, + ACTIONS(7443), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7274), 3, + ACTIONS(7445), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7447), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7449), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 16, - anon_sym_RPAREN_RPAREN, + ACTIONS(7515), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [173960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1370), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222205,47 +227336,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168834] = 14, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, - sym_test_operator, - ACTIONS(7292), 1, + anon_sym_DASHa, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7294), 1, anon_sym_AMP, - ACTIONS(6795), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7272), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7298), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7300), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7274), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 16, - anon_sym_RPAREN_RPAREN, + anon_sym_STAR_STAR, + [174005] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7781), 1, + sym__special_character, + STATE(3218), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1396), 23, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [174054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1386), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1384), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222258,46 +227422,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168901] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7276), 1, - anon_sym_STAR_STAR, - ACTIONS(7278), 1, - sym_test_operator, - ACTIONS(7294), 1, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, anon_sym_AMP, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7270), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7272), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7296), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7298), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7300), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6795), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7274), 3, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 16, - anon_sym_RPAREN_RPAREN, + anon_sym_STAR_STAR, + [174099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1370), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 36, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222310,44 +227464,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [168966] = 12, - ACTIONS(71), 1, + anon_sym_DASHa, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + [174144] = 18, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, + ACTIONS(7013), 1, + anon_sym_EQ, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(7278), 1, + ACTIONS(7501), 1, sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_AMP_AMP, + ACTIONS(7597), 1, + anon_sym_PIPE, + ACTIONS(7599), 1, + anon_sym_CARET, + ACTIONS(7601), 1, + anon_sym_AMP, + ACTIONS(7611), 1, + anon_sym_QMARK, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7272), 2, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7296), 2, + ACTIONS(7603), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7298), 2, + ACTIONS(7605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7300), 2, + ACTIONS(7607), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7274), 3, + ACTIONS(7497), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6795), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6793), 16, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7011), 13, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -222360,42 +227540,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [169029] = 11, - ACTIONS(71), 1, + [174219] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7276), 1, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(7278), 1, + ACTIONS(7501), 1, sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7589), 1, + anon_sym_EQ, + ACTIONS(7593), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7595), 1, + anon_sym_AMP_AMP, + ACTIONS(7597), 1, + anon_sym_PIPE, + ACTIONS(7599), 1, + anon_sym_CARET, + ACTIONS(7601), 1, + anon_sym_AMP, + ACTIONS(7609), 1, + anon_sym_EQ_TILDE, + ACTIONS(7611), 1, + anon_sym_QMARK, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7270), 2, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7272), 2, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7298), 2, + ACTIONS(7603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7300), 2, + ACTIONS(7607), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7274), 3, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6793), 18, + ACTIONS(7011), 12, anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -222408,124 +227599,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [169090] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(6571), 1, - anon_sym_esac, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6875), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3344), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [169179] = 20, - ACTIONS(71), 1, + [174296] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(7172), 1, - anon_sym_AMP, - ACTIONS(7186), 1, + ACTIONS(7013), 1, + anon_sym_EQ, + ACTIONS(7499), 1, anon_sym_STAR_STAR, - ACTIONS(7188), 1, + ACTIONS(7501), 1, sym_test_operator, - ACTIONS(7362), 1, - anon_sym_EQ, - ACTIONS(7366), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7368), 1, + ACTIONS(7595), 1, anon_sym_AMP_AMP, - ACTIONS(7370), 1, + ACTIONS(7597), 1, anon_sym_PIPE, - ACTIONS(7372), 1, + ACTIONS(7599), 1, anon_sym_CARET, - ACTIONS(7374), 1, - anon_sym_EQ_TILDE, - ACTIONS(7376), 1, - anon_sym_QMARK, - ACTIONS(7565), 1, - anon_sym_COLON, - ACTIONS(6830), 2, + ACTIONS(7601), 1, + anon_sym_AMP, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7174), 2, + ACTIONS(7493), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7495), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7603), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7176), 2, + ACTIONS(7605), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7178), 2, + ACTIONS(7607), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7180), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7182), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7184), 3, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7364), 11, + ACTIONS(7011), 15, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222537,11 +227651,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [169258] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174367] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6848), 14, + ACTIONS(7784), 1, anon_sym_EQ, + ACTIONS(7402), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -222555,8 +227673,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6846), 23, - sym_test_operator, + ACTIONS(7406), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -222571,35 +227690,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [169303] = 3, - ACTIONS(71), 1, + [174414] = 15, + ACTIONS(73), 1, sym_comment, - ACTIONS(7133), 14, + ACTIONS(7013), 1, anon_sym_EQ, + ACTIONS(7499), 1, + anon_sym_STAR_STAR, + ACTIONS(7501), 1, + sym_test_operator, + ACTIONS(7597), 1, anon_sym_PIPE, + ACTIONS(7599), 1, anon_sym_CARET, + ACTIONS(7601), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7605), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7607), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7131), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7011), 16, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222613,35 +227749,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [169347] = 3, - ACTIONS(71), 1, + [174483] = 14, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 13, - anon_sym_PIPE, + ACTIONS(7499), 1, + anon_sym_STAR_STAR, + ACTIONS(7501), 1, + sym_test_operator, + ACTIONS(7599), 1, anon_sym_CARET, + ACTIONS(7601), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7013), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7605), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7607), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1334), 23, + ACTIONS(7011), 16, 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, @@ -222654,34 +227801,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [169391] = 3, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174550] = 13, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 13, - anon_sym_PIPE, - anon_sym_CARET, + ACTIONS(7499), 1, + anon_sym_STAR_STAR, + ACTIONS(7501), 1, + sym_test_operator, + ACTIONS(7601), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7493), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7495), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7603), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7605), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7607), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7013), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7497), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1334), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7011), 16, + anon_sym_RPAREN_RPAREN, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222694,60 +227853,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [169435] = 19, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [174615] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(6965), 1, + ACTIONS(7485), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7547), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7553), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7555), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7557), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7559), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7561), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7575), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7579), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7581), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7583), 1, + sym_test_operator, + ACTIONS(7549), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7563), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7565), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7567), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7569), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7571), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7573), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7551), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222759,28 +227915,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [169511] = 3, - ACTIONS(71), 1, + [174694] = 20, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 13, + ACTIONS(7509), 1, + anon_sym_STAR_STAR, + ACTIONS(7511), 1, + sym_test_operator, + ACTIONS(7521), 1, + anon_sym_EQ, + ACTIONS(7525), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7527), 1, + anon_sym_AMP_AMP, + ACTIONS(7529), 1, anon_sym_PIPE, + ACTIONS(7531), 1, anon_sym_CARET, + ACTIONS(7533), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7541), 1, + anon_sym_EQ_TILDE, + ACTIONS(7543), 1, + anon_sym_QMARK, + ACTIONS(7786), 1, + anon_sym_COLON, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7503), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7505), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7535), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7537), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7539), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7507), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1354), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7523), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222792,37 +227974,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [174773] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1300), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1302), 25, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [169555] = 6, - ACTIONS(71), 1, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [174818] = 10, + ACTIONS(3), 1, sym_comment, - ACTIONS(7605), 1, + ACTIONS(7669), 1, anon_sym_STAR_STAR, - ACTIONS(7601), 2, + ACTIONS(7671), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7647), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7603), 3, + ACTIONS(7659), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7663), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7665), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7667), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7508), 9, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7661), 4, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7510), 21, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7645), 20, + anon_sym_SEMI, anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -222839,94 +228062,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [169605] = 19, - ACTIONS(71), 1, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + [174877] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6971), 1, + ACTIONS(7348), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7571), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [169681] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6941), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6939), 20, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -222938,19 +228122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [169735] = 3, - ACTIONS(71), 1, + [174953] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6969), 14, + ACTIONS(1332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -222965,7 +228140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6967), 22, + ACTIONS(1334), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -222988,16 +228163,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [169779] = 3, + [174997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1382), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 31, + ACTIONS(1380), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -223018,7 +228193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -223029,10 +228204,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [169823] = 3, - ACTIONS(71), 1, + [175041] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(7743), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223046,7 +228221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 23, + ACTIONS(7745), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -223070,52 +228245,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [169867] = 19, - ACTIONS(71), 1, + [175085] = 17, + ACTIONS(73), 1, sym_comment, - ACTIONS(6973), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7110), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7824), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7826), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7828), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7830), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7832), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7846), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7848), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7834), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7836), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7838), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7840), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7108), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223127,27 +228298,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [169943] = 3, - ACTIONS(71), 1, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + [175157] = 18, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 13, + ACTIONS(7824), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7826), 1, + anon_sym_AMP_AMP, + ACTIONS(7828), 1, anon_sym_PIPE, + ACTIONS(7830), 1, anon_sym_CARET, + ACTIONS(7832), 1, anon_sym_AMP, + ACTIONS(7846), 1, + anon_sym_STAR_STAR, + ACTIONS(7848), 1, + anon_sym_QMARK, + ACTIONS(7850), 1, + anon_sym_EQ, + ACTIONS(7852), 1, + anon_sym_EQ_TILDE, + ACTIONS(7822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7834), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7836), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7838), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7840), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7842), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1346), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7108), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223159,40 +228355,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, - [169987] = 7, - ACTIONS(71), 1, + [175231] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6941), 8, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, + aux_sym_number_token1, + ACTIONS(3761), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, + anon_sym_BQUOTE, + ACTIONS(3769), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(7858), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(7860), 1, + sym__special_character, + ACTIONS(7862), 1, + sym_test_operator, + STATE(5072), 1, + aux_sym__literal_repeat1, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7854), 2, + sym_ansi_c_string, + sym_word, + STATE(3388), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(7856), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4560), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [175313] = 15, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7110), 1, anon_sym_EQ, + ACTIONS(7826), 1, + anon_sym_AMP_AMP, + ACTIONS(7828), 1, anon_sym_PIPE, + ACTIONS(7830), 1, anon_sym_CARET, + ACTIONS(7832), 1, anon_sym_AMP, + ACTIONS(7846), 1, + anon_sym_STAR_STAR, + ACTIONS(7822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7834), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7836), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7838), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7840), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6939), 20, + ACTIONS(7842), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7844), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7108), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223205,35 +228466,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [170039] = 3, - ACTIONS(71), 1, + [175381] = 14, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(7110), 1, + anon_sym_EQ, + ACTIONS(7828), 1, anon_sym_PIPE, + ACTIONS(7830), 1, anon_sym_CARET, + ACTIONS(7832), 1, anon_sym_AMP, + ACTIONS(7846), 1, + anon_sym_STAR_STAR, + ACTIONS(7822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7834), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7836), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7838), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7840), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7842), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7108), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223246,35 +228517,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_RPAREN, - [170083] = 3, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175447] = 13, + ACTIONS(73), 1, sym_comment, - ACTIONS(6969), 14, - anon_sym_EQ, - anon_sym_PIPE, + ACTIONS(7830), 1, anon_sym_CARET, + ACTIONS(7832), 1, anon_sym_AMP, + ACTIONS(7846), 1, + anon_sym_STAR_STAR, + ACTIONS(7110), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7834), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7836), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7838), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7840), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7842), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6967), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7108), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223288,146 +228569,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [170127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1342), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [170171] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4078), 1, - anon_sym_DQUOTE, - ACTIONS(7611), 1, - sym_variable_name, - STATE(4444), 1, - sym_string, - ACTIONS(1235), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7609), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7607), 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(1227), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [170225] = 19, - ACTIONS(71), 1, + [175511] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6975), 1, + ACTIONS(7314), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223439,41 +228629,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [170301] = 13, - ACTIONS(71), 1, + [175587] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(7605), 1, - anon_sym_STAR_STAR, - ACTIONS(7613), 1, - anon_sym_PIPE, - ACTIONS(7615), 1, - anon_sym_CARET, - ACTIONS(7617), 1, + ACTIONS(7832), 1, anon_sym_AMP, - ACTIONS(7601), 2, + ACTIONS(7846), 1, + anon_sym_STAR_STAR, + ACTIONS(7822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7619), 2, + ACTIONS(7834), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7621), 2, + ACTIONS(7836), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7623), 2, + ACTIONS(7838), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7625), 2, + ACTIONS(7840), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7627), 2, + ACTIONS(7842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7603), 3, + ACTIONS(7110), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 17, - anon_sym_COMMA, + ACTIONS(7108), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223486,97 +228675,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_RPAREN, - [170365] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [170409] = 19, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175649] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6933), 1, + ACTIONS(7288), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223588,15 +228736,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [170485] = 5, - ACTIONS(71), 1, + [175725] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(7605), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7601), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7508), 12, + ACTIONS(7812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7814), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7110), 8, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -223604,13 +228760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7510), 21, - anon_sym_COMMA, + ACTIONS(7108), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -223623,432 +228773,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [170533] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7345), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170619] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7352), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170705] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7385), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170791] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7389), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170877] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7427), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [170963] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7428), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [171049] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6982), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + [175777] = 11, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7846), 1, + anon_sym_STAR_STAR, + ACTIONS(7822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7834), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7836), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7838), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7840), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7110), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7108), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224060,41 +228825,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [171125] = 13, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175837] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(7508), 1, - anon_sym_PIPE, - ACTIONS(7605), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7615), 1, - anon_sym_CARET, - ACTIONS(7617), 1, - anon_sym_AMP, - ACTIONS(7601), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7619), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7621), 2, + ACTIONS(7814), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7110), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7623), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7625), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7627), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7603), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7510), 17, - anon_sym_COMMA, + ACTIONS(7108), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224107,14 +228866,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_RPAREN, - [171189] = 3, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175887] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 13, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7110), 13, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -224127,12 +228896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1338), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7108), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224145,47 +228909,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [171233] = 12, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175935] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(7605), 1, - anon_sym_STAR_STAR, - ACTIONS(7617), 1, - anon_sym_AMP, - ACTIONS(7508), 2, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7601), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7619), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7621), 2, + ACTIONS(7110), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7623), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7625), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7627), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7603), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 17, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(7108), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224198,14 +228951,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_RPAREN, - [171295] = 3, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [175981] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 13, + ACTIONS(7864), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7771), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -224219,10 +228979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1326), 23, + ACTIONS(7773), 21, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224243,52 +229001,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [171339] = 19, - ACTIONS(71), 1, + [176027] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6986), 1, + ACTIONS(7272), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7814), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7792), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [176103] = 10, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7846), 1, + anon_sym_STAR_STAR, + ACTIONS(7822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7836), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7838), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7840), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7110), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7108), 18, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224300,52 +229099,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [171415] = 19, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [176161] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7117), 1, + ACTIONS(7188), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224357,27 +229163,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [171491] = 3, - ACTIONS(71), 1, + [176237] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(7316), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(7792), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [176313] = 8, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7846), 1, anon_sym_STAR_STAR, - ACTIONS(1322), 22, + ACTIONS(7822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(7840), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7842), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7844), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7110), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7108), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224398,19 +229266,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171535] = 6, - ACTIONS(71), 1, + [176367] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(7595), 1, + ACTIONS(7846), 1, anon_sym_STAR_STAR, - ACTIONS(7569), 2, + ACTIONS(7822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7593), 3, + ACTIONS(7842), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6941), 10, + ACTIONS(7110), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -224419,9 +229290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6939), 20, + ACTIONS(7108), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224439,54 +229308,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [171585] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [171629] = 3, - ACTIONS(71), 1, + [176419] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 13, + ACTIONS(7846), 1, + anon_sym_STAR_STAR, + ACTIONS(7822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7844), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7110), 10, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -224496,14 +229334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1330), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7108), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224516,139 +229347,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [171673] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(7631), 1, - anon_sym_DQUOTE, - ACTIONS(7635), 1, - sym_variable_name, - STATE(4316), 1, - sym_string, - ACTIONS(7633), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7629), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [171727] = 19, - ACTIONS(71), 1, + [176469] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6988), 1, + ACTIONS(7290), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7571), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [171803] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1320), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1322), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224660,29 +229412,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [171847] = 8, + [176545] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(7631), 1, + ACTIONS(7868), 1, anon_sym_DQUOTE, - ACTIONS(7635), 1, + ACTIONS(7872), 1, sym_variable_name, - STATE(4316), 1, + STATE(4372), 1, sym_string, - ACTIONS(7633), 2, + ACTIONS(1269), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7870), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7629), 9, + ACTIONS(7866), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -224692,7 +229437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 21, + ACTIONS(1267), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -224713,53 +229458,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - anon_sym_BQUOTE, - [171901] = 19, - ACTIONS(71), 1, + [176599] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, + ACTIONS(7739), 13, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7637), 1, - anon_sym_COLON, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + anon_sym_STAR_STAR, + ACTIONS(7741), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224771,140 +229490,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [171977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [172021] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6990), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7571), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [172097] = 14, - ACTIONS(71), 1, + anon_sym_RPAREN, + [176643] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6941), 1, + ACTIONS(7846), 1, + anon_sym_STAR_STAR, + ACTIONS(7822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7110), 13, anon_sym_EQ, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 16, + ACTIONS(7108), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224918,55 +229535,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172163] = 19, - ACTIONS(71), 1, + [176691] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7156), 1, + ACTIONS(7318), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224978,10 +229599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [172239] = 3, - ACTIONS(71), 1, + [176767] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 14, + ACTIONS(7822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7110), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -224996,9 +229620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1342), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7108), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225016,14 +229638,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172283] = 3, - ACTIONS(71), 1, + [176813] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 14, - anon_sym_EQ, + ACTIONS(7641), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -225037,7 +229658,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1326), 22, + ACTIONS(7643), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -225052,60 +229674,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172327] = 19, - ACTIONS(71), 1, + [176857] = 15, + ACTIONS(73), 1, sym_comment, - ACTIONS(6992), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7878), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7880), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7882), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7896), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7864), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7874), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7876), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7884), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7886), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7888), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7890), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7894), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7671), 13, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225117,27 +229734,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [172403] = 3, - ACTIONS(71), 1, + anon_sym_RPAREN, + [176925] = 14, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, - anon_sym_EQ, + ACTIONS(7878), 1, anon_sym_PIPE, + ACTIONS(7880), 1, anon_sym_CARET, + ACTIONS(7882), 1, anon_sym_AMP, + ACTIONS(7896), 1, + anon_sym_STAR_STAR, + ACTIONS(7864), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7876), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7884), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7886), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7888), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7890), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7892), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7894), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1334), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7671), 15, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225150,60 +229785,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172447] = 19, - ACTIONS(71), 1, + anon_sym_DASHo, + anon_sym_RPAREN, + [176991] = 13, + ACTIONS(73), 1, sym_comment, - ACTIONS(6994), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7878), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7880), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7882), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7896), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7864), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7884), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7886), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7888), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7890), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7894), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7671), 17, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225215,27 +229833,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [172523] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_RPAREN, + [177055] = 13, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 14, - anon_sym_EQ, + ACTIONS(7645), 1, anon_sym_PIPE, + ACTIONS(7880), 1, anon_sym_CARET, + ACTIONS(7882), 1, anon_sym_AMP, + ACTIONS(7896), 1, + anon_sym_STAR_STAR, + ACTIONS(7864), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7884), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7886), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7888), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7890), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7892), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7894), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1354), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7671), 17, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225248,18 +229885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172567] = 3, - ACTIONS(71), 1, + anon_sym_DASHa, + anon_sym_RPAREN, + [177119] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(1388), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -225274,7 +229907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 22, + ACTIONS(1390), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -225294,55 +229927,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [172611] = 19, - ACTIONS(71), 1, + [177163] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(6996), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7882), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7896), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7645), 2, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7864), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7884), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7886), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7888), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7890), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7894), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7671), 17, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225354,52 +229975,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [172687] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6998), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, + anon_sym_DASHa, + anon_sym_RPAREN, + [177225] = 11, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7896), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7864), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7884), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7886), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7888), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7890), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7645), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7894), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7671), 17, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225411,52 +230024,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [172763] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7030), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + anon_sym_DASHa, + anon_sym_RPAREN, + [177285] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1324), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(1326), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177329] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1328), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(1330), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225468,52 +230102,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [172839] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6935), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + [177373] = 10, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7896), 1, + anon_sym_STAR_STAR, + ACTIONS(7864), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7886), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7888), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7890), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7645), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7894), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7671), 19, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225525,27 +230152,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [172915] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RPAREN, + [177431] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7896), 1, + anon_sym_STAR_STAR, + ACTIONS(7864), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7890), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7892), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7894), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1330), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7645), 5, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7671), 21, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225558,60 +230197,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [172959] = 19, - ACTIONS(71), 1, + [177485] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7000), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(1336), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(1338), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225623,52 +230237,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [173035] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7154), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [177529] = 7, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7896), 1, + anon_sym_STAR_STAR, + ACTIONS(7864), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7894), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7645), 7, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7671), 21, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225680,11 +230282,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [173111] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [177581] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, - anon_sym_EQ, + ACTIONS(7739), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -225698,7 +230308,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 22, + ACTIONS(7741), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -225713,60 +230325,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [173155] = 19, - ACTIONS(71), 1, + [177625] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7002), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(1334), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [177669] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7868), 1, + anon_sym_DQUOTE, + ACTIONS(7872), 1, + sym_variable_name, + STATE(4372), 1, + sym_string, + ACTIONS(1263), 2, + sym_file_descriptor, + ts_builtin_sym_end, + ACTIONS(7870), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7866), 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(1255), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [177723] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7896), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7864), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7894), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7645), 9, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7671), 21, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225778,11 +230454,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [173231] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [177773] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 14, - anon_sym_EQ, + ACTIONS(7896), 1, + anon_sym_STAR_STAR, + ACTIONS(7864), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7645), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -225795,10 +230484,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1342), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7671), 21, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225811,18 +230498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [173275] = 3, - ACTIONS(71), 1, + [177821] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 14, + ACTIONS(1332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -225837,7 +230524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1346), 22, + ACTIONS(1334), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -225857,55 +230544,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173319] = 19, - ACTIONS(71), 1, + [177865] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7004), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7896), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7864), 2, anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, + anon_sym_DASH_DASH, + ACTIONS(7645), 12, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7671), 21, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225917,11 +230581,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [173395] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [177913] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, - anon_sym_EQ, + ACTIONS(7739), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -225935,7 +230607,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 22, + ACTIONS(7741), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -225950,18 +230624,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [173439] = 3, - ACTIONS(71), 1, + [177957] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 14, + ACTIONS(1340), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -225976,7 +230649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1326), 22, + ACTIONS(1342), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -225996,55 +230669,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173483] = 19, - ACTIONS(71), 1, + [178001] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(1320), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(1322), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226056,11 +230704,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [173559] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178045] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7133), 14, - anon_sym_EQ, + ACTIONS(7775), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -226074,7 +230730,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7131), 22, + ACTIONS(7777), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -226089,60 +230746,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [173603] = 19, - ACTIONS(71), 1, + anon_sym_RPAREN, + [178089] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7014), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7414), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(7412), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226154,10 +230786,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [173679] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178133] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 13, + ACTIONS(1376), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -226171,8 +230813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1342), 23, - anon_sym_COMMA, + ACTIONS(1378), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -226187,122 +230828,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [173723] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6931), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [173809] = 19, - ACTIONS(71), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178177] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7016), 1, + ACTIONS(7320), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226314,49 +230893,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [173885] = 16, - ACTIONS(71), 1, + [178253] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7647), 1, + ACTIONS(7719), 13, anon_sym_PIPE, - ACTIONS(7649), 1, anon_sym_CARET, - ACTIONS(7651), 1, anon_sym_AMP, - ACTIONS(7665), 1, - anon_sym_STAR_STAR, - ACTIONS(7420), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - ACTIONS(7639), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7643), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7645), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7653), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7655), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7657), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7641), 11, + anon_sym_STAR_STAR, + ACTIONS(7721), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226368,10 +230925,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [173955] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [178297] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 14, + ACTIONS(7414), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -226386,7 +230952,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 22, + ACTIONS(7412), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -226406,13 +230972,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [173999] = 3, - ACTIONS(71), 1, + [178341] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7470), 13, + ACTIONS(1380), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -226426,9 +230993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7472), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1382), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -226443,59 +231008,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [174043] = 19, - ACTIONS(71), 1, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178385] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(6937), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7410), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7408), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226507,27 +231067,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [174119] = 3, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178455] = 26, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7898), 1, + sym_word, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(7904), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7906), 1, + anon_sym_DOLLAR, + ACTIONS(7908), 1, + sym__special_character, + ACTIONS(7910), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 1, + anon_sym_SQUOTE, + ACTIONS(7914), 1, + sym_ansi_c_string, + ACTIONS(7916), 1, + aux_sym_number_token1, + ACTIONS(7918), 1, + aux_sym_number_token2, + ACTIONS(7920), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7922), 1, + anon_sym_RBRACE3, + ACTIONS(7924), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7926), 1, + anon_sym_BQUOTE, + ACTIONS(7928), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7932), 1, + sym_variable_name, + ACTIONS(7934), 1, + sym_test_operator, + ACTIONS(7936), 1, + sym__expansion_word, + ACTIONS(7938), 1, + sym__brace_start, + STATE(6316), 1, + sym_command_substitution, + STATE(6549), 1, + aux_sym__literal_repeat1, + ACTIONS(7900), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7930), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6832), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + STATE(6459), 6, + sym_string, + sym_array, + sym_raw_string, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + [178545] = 8, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7846), 1, + anon_sym_STAR_STAR, + ACTIONS(7822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7840), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7842), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1330), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7194), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7192), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226545,31 +231177,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [174163] = 3, - ACTIONS(71), 1, + [178599] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7534), 13, + ACTIONS(7322), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7536), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226581,18 +231237,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [174207] = 3, - ACTIONS(71), 1, + [178675] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7470), 13, + ACTIONS(1320), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -226606,9 +231255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7472), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1322), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -226623,59 +231270,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [174251] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7022), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178719] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7369), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(7367), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226687,52 +231310,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [174327] = 19, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [178763] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7056), 1, + ACTIONS(7292), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226744,52 +231376,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [174403] = 19, - ACTIONS(71), 1, + [178839] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6980), 1, + ACTIONS(7324), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226801,32 +231433,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [174479] = 8, - ACTIONS(71), 1, + [178915] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7675), 1, - anon_sym_STAR_STAR, - ACTIONS(7667), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(1368), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6955), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6953), 20, + anon_sym_STAR_STAR, + ACTIONS(1370), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226847,13 +231474,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [174533] = 4, - ACTIONS(71), 1, + [178959] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7667), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6955), 14, + ACTIONS(1384), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -226868,7 +231492,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6953), 20, + ACTIONS(1386), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226889,89 +231515,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [174579] = 19, - ACTIONS(71), 1, + [179003] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7032), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(1368), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [174655] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7675), 1, anon_sym_STAR_STAR, - ACTIONS(7667), 2, + ACTIONS(1370), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7671), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7673), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6955), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6953), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226992,52 +231556,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [174709] = 19, - ACTIONS(71), 1, + [179047] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7034), 1, + ACTIONS(7218), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227049,10 +231613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [174785] = 3, - ACTIONS(71), 1, + [179123] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(6995), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -227066,8 +231631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 23, - anon_sym_COMMA, + ACTIONS(6993), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -227082,106 +231646,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [174829] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(3630), 1, - anon_sym_DQUOTE, - ACTIONS(7194), 1, - sym_variable_name, - STATE(4297), 1, - sym_string, - ACTIONS(7192), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7190), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [174883] = 19, - ACTIONS(71), 1, + [179167] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7036), 1, + ACTIONS(7280), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227193,134 +231711,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [174959] = 3, - ACTIONS(3), 1, + [179243] = 24, + ACTIONS(73), 1, sym_comment, - ACTIONS(1326), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7940), 1, + sym_word, + ACTIONS(7946), 1, + anon_sym_LPAREN, + ACTIONS(7949), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(7952), 1, anon_sym_DOLLAR, + ACTIONS(7955), 1, sym__special_character, + ACTIONS(7958), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(7961), 1, + anon_sym_SQUOTE, + ACTIONS(7964), 1, sym_ansi_c_string, + ACTIONS(7967), 1, aux_sym_number_token1, + ACTIONS(7970), 1, aux_sym_number_token2, + ACTIONS(7973), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(7976), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(7979), 1, anon_sym_BQUOTE, + ACTIONS(7982), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [175003] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(7988), 1, sym_test_operator, + ACTIONS(7991), 1, + sym_extglob_pattern, + ACTIONS(7994), 1, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 31, + STATE(6442), 1, + aux_sym__literal_repeat1, + ACTIONS(7943), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(7985), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [175047] = 19, - ACTIONS(71), 1, + STATE(3309), 2, + sym_case_item, + aux_sym_case_statement_repeat1, + STATE(6786), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6351), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [179329] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7038), 1, + ACTIONS(7238), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227332,139 +231830,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [175123] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(3630), 1, - anon_sym_DQUOTE, - ACTIONS(7194), 1, - sym_variable_name, - STATE(4297), 1, - sym_string, - ACTIONS(7192), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7190), 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(1239), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [175177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1322), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [175221] = 19, - ACTIONS(71), 1, + [179405] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7048), 1, + ACTIONS(7326), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227476,29 +231887,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [175297] = 5, - ACTIONS(71), 1, + [179481] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6941), 13, - anon_sym_EQ, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7997), 1, + anon_sym_COLON, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 20, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227510,102 +231944,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [175345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [175389] = 19, - ACTIONS(71), 1, + [179557] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7675), 1, - anon_sym_STAR_STAR, - ACTIONS(7677), 1, + ACTIONS(1324), 14, anon_sym_EQ, - ACTIONS(7681), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7683), 1, - anon_sym_AMP_AMP, - ACTIONS(7685), 1, anon_sym_PIPE, - ACTIONS(7687), 1, anon_sym_CARET, - ACTIONS(7689), 1, anon_sym_AMP, - ACTIONS(7697), 1, - anon_sym_RPAREN, - ACTIONS(7699), 1, - anon_sym_EQ_TILDE, - ACTIONS(7701), 1, - anon_sym_QMARK, - ACTIONS(7667), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7669), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7691), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7693), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7695), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7679), 11, + anon_sym_STAR_STAR, + ACTIONS(1326), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227617,52 +231976,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [175465] = 19, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [179601] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7050), 1, + ACTIONS(7328), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227674,52 +232042,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [175541] = 19, - ACTIONS(71), 1, + [179677] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6945), 1, + ACTIONS(7294), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227731,27 +232099,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [175617] = 3, - ACTIONS(71), 1, + [179753] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 14, - anon_sym_EQ, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, anon_sym_PIPE, + ACTIONS(7120), 1, anon_sym_CARET, + ACTIONS(7122), 1, anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(7999), 1, + anon_sym_COLON, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7132), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7134), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1350), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7146), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227763,105 +232156,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [175661] = 19, - ACTIONS(71), 1, + [179829] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7675), 1, - anon_sym_STAR_STAR, - ACTIONS(7677), 1, + ACTIONS(7334), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7681), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7683), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7685), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7687), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7689), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7699), 1, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7701), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7703), 1, - anon_sym_RPAREN, - ACTIONS(7667), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7669), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7671), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7691), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7693), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7695), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7673), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7679), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [175737] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7605), 1, - anon_sym_STAR_STAR, - ACTIONS(7601), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7619), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7621), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7623), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7625), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7627), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7508), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7603), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 17, - anon_sym_COMMA, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227873,57 +232213,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_RPAREN, - [175797] = 19, - ACTIONS(71), 1, + [179905] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7058), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7743), 13, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(7745), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227935,10 +232246,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [175873] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [179949] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 13, + ACTIONS(1368), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -227952,7 +232271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1326), 23, + ACTIONS(1370), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -227976,52 +232295,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [175917] = 19, - ACTIONS(71), 1, + [179993] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7063), 1, + ACTIONS(7336), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228033,27 +232352,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [175993] = 3, - ACTIONS(71), 1, + [180069] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6837), 14, + ACTIONS(7296), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6835), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228065,19 +232409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [176037] = 3, - ACTIONS(71), 1, + [180145] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 13, + ACTIONS(1328), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -228091,8 +232427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1350), 23, - anon_sym_COMMA, + ACTIONS(1330), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -228107,97 +232442,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [176081] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7316), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [176167] = 3, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [180189] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7152), 14, + ACTIONS(7338), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7150), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228209,36 +232507,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [176211] = 3, - ACTIONS(71), 1, + [180265] = 17, + ACTIONS(73), 1, sym_comment, - ACTIONS(6819), 14, + ACTIONS(7110), 1, anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6817), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7108), 13, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228250,36 +232560,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, - anon_sym_QMARK, - [176255] = 3, - ACTIONS(71), 1, + [180337] = 18, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 14, + ACTIONS(7788), 1, anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1334), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7108), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228291,36 +232617,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [176299] = 3, - ACTIONS(71), 1, + anon_sym_RBRACK, + [180411] = 15, + ACTIONS(73), 1, sym_comment, - ACTIONS(7054), 14, + ACTIONS(7110), 1, anon_sym_EQ, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7052), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7108), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228333,35 +232668,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [176343] = 3, - ACTIONS(71), 1, + [180479] = 14, + ACTIONS(73), 1, sym_comment, - ACTIONS(7073), 14, + ACTIONS(7110), 1, anon_sym_EQ, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7071), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7108), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228375,29 +232720,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [176387] = 8, + [180545] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, + ACTIONS(4211), 1, anon_sym_DQUOTE, - ACTIONS(7611), 1, + ACTIONS(8005), 1, sym_variable_name, - STATE(4444), 1, + STATE(4476), 1, sym_string, - ACTIONS(1241), 2, + ACTIONS(1269), 2, sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(7609), 2, + ACTIONS(8003), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7607), 9, + ACTIONS(8001), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -228407,7 +232748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 20, + ACTIONS(1267), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -228428,137 +232769,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [176441] = 19, - ACTIONS(71), 1, + [180599] = 13, + ACTIONS(73), 1, sym_comment, - ACTIONS(7067), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7110), 2, + anon_sym_EQ, + anon_sym_PIPE, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7571), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [176517] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7605), 1, - anon_sym_STAR_STAR, - ACTIONS(7601), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7621), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7623), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7625), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7508), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7603), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7510), 19, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_RPAREN, - [176575] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7605), 1, - anon_sym_STAR_STAR, - ACTIONS(7601), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7625), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7627), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7603), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7508), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7510), 21, - anon_sym_COMMA, + ACTIONS(7108), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228571,30 +232816,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [176629] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [180663] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(4211), 1, + anon_sym_DQUOTE, + ACTIONS(8005), 1, + sym_variable_name, + STATE(4476), 1, + sym_string, + ACTIONS(1263), 2, sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 31, - anon_sym_LPAREN_LPAREN, + ts_builtin_sym_end, + ACTIONS(8003), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8001), 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(1255), 20, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -228602,111 +232864,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [180717] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(3755), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, aux_sym_number_token1, + ACTIONS(3761), 1, aux_sym_number_token2, + ACTIONS(3763), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, anon_sym_BQUOTE, + ACTIONS(3769), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [176673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1354), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, + ACTIONS(3777), 1, sym__brace_start, + ACTIONS(7860), 1, + sym__special_character, + ACTIONS(7862), 1, + sym_test_operator, + ACTIONS(8009), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 31, + STATE(5072), 1, + aux_sym__literal_repeat1, + ACTIONS(3735), 2, anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(3771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + ACTIONS(7854), 2, + sym_ansi_c_string, sym_word, - [176717] = 19, - ACTIONS(71), 1, + STATE(3388), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(8007), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4560), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [180799] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6984), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7369), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(7367), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228718,10 +232958,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [176793] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [180843] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7548), 13, + ACTIONS(7003), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -228735,8 +232985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7550), 23, - anon_sym_COMMA, + ACTIONS(7001), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -228751,21 +233000,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [176837] = 4, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [180887] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6941), 14, + ACTIONS(7398), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -228780,7 +233026,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6939), 20, + ACTIONS(7396), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228801,10 +233049,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [176883] = 3, - ACTIONS(71), 1, + [180931] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 13, + ACTIONS(7641), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -228818,7 +233066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1330), 23, + ACTIONS(7643), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -228842,52 +233090,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [176927] = 19, - ACTIONS(71), 1, + [180975] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6947), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7398), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(7396), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228899,100 +233122,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [177003] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7631), 1, - anon_sym_DQUOTE, - ACTIONS(7635), 1, - sym_variable_name, - STATE(4316), 1, - sym_string, - ACTIONS(1235), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7633), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7629), 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(1227), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [177057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 31, - anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [177101] = 4, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [181019] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7639), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7522), 13, + ACTIONS(7332), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -229006,9 +233149,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7524), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7330), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229021,17 +233164,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [177147] = 3, - ACTIONS(71), 1, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [181063] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7542), 13, + ACTIONS(7332), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -229045,9 +233190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7544), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7330), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -229062,105 +233205,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [177191] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7631), 1, - anon_sym_DQUOTE, - ACTIONS(7635), 1, - sym_variable_name, - STATE(4316), 1, - sym_string, - ACTIONS(1241), 2, - sym_file_descriptor, - ts_builtin_sym_end, - ACTIONS(7633), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7629), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [177245] = 19, - ACTIONS(71), 1, + [181107] = 15, + ACTIONS(73), 1, sym_comment, - ACTIONS(7158), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(8017), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(8019), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(8021), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(8035), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(8011), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(8013), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(8015), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(8023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(8025), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(8027), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(8029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(8031), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(8033), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7671), 13, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229172,10 +233266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [177321] = 3, - ACTIONS(71), 1, + [181175] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 13, + ACTIONS(1388), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -229189,7 +233283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1354), 23, + ACTIONS(1390), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -229213,52 +233307,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [177365] = 19, - ACTIONS(71), 1, + [181219] = 14, + ACTIONS(73), 1, sym_comment, - ACTIONS(7075), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(8017), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(8019), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(8021), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(8035), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(8011), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(8015), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(8023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(8025), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(8027), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(8029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(8031), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(8033), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7671), 15, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229270,52 +233357,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [177441] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, - anon_sym_AMP_AMP, - ACTIONS(6909), 1, + anon_sym_DASHo, + [181285] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1324), 13, anon_sym_PIPE, - ACTIONS(6911), 1, anon_sym_CARET, - ACTIONS(6913), 1, anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7705), 1, - anon_sym_COLON, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6917), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6919), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6921), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6925), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6903), 11, + anon_sym_STAR_STAR, + ACTIONS(1326), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229327,11 +233391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [177517] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [181329] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 14, - anon_sym_EQ, + ACTIONS(1328), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -229345,7 +233417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1338), 22, + ACTIONS(1330), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -229360,101 +233433,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [177561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [177605] = 19, - ACTIONS(71), 1, + anon_sym_RPAREN, + [181373] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6949), 1, + ACTIONS(7276), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229466,41 +233498,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [177681] = 13, - ACTIONS(71), 1, + [181449] = 13, + ACTIONS(73), 1, sym_comment, - ACTIONS(7579), 1, + ACTIONS(8017), 1, + anon_sym_PIPE, + ACTIONS(8019), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(8021), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(8035), 1, anon_sym_STAR_STAR, - ACTIONS(6941), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7569), 2, + ACTIONS(8011), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(8023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(8025), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(8027), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(8029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(8031), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(8033), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 16, + ACTIONS(7671), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229513,72 +233546,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [177745] = 3, - ACTIONS(71), 1, + anon_sym_DASHa, + [181513] = 13, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 13, + ACTIONS(7645), 1, anon_sym_PIPE, + ACTIONS(8019), 1, anon_sym_CARET, + ACTIONS(8021), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(8035), 1, anon_sym_STAR_STAR, - ACTIONS(1350), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(8011), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, + ACTIONS(8023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [177789] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1320), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(8025), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8027), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8029), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(8031), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(8033), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1322), 23, + ACTIONS(7671), 17, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229594,78 +233600,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [177833] = 8, - ACTIONS(3), 1, + [181577] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(7631), 1, - anon_sym_DQUOTE, - ACTIONS(7635), 1, - sym_variable_name, - STATE(4316), 1, - sym_string, - ACTIONS(7633), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7629), 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(1227), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(8021), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [177887] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1344), 14, - anon_sym_EQ, + ACTIONS(8035), 1, + anon_sym_STAR_STAR, + ACTIONS(7645), 2, anon_sym_PIPE, anon_sym_CARET, - anon_sym_AMP, + ACTIONS(8011), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8023), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8025), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(8027), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8029), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(8031), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(8033), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1346), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7671), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229678,18 +233647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [177931] = 3, - ACTIONS(71), 1, + anon_sym_DASHa, + [181639] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(1336), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -229703,8 +233667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1358), 23, - anon_sym_RPAREN_RPAREN, + ACTIONS(1338), 23, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -229727,98 +233690,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [177975] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(7631), 1, - anon_sym_DQUOTE, - ACTIONS(7635), 1, - sym_variable_name, - STATE(4316), 1, - sym_string, - ACTIONS(7633), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7629), 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(1239), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [178029] = 19, - ACTIONS(71), 1, + [181683] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7170), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7846), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7840), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7194), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7192), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229826,52 +233724,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [178105] = 17, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6941), 1, - anon_sym_EQ, - ACTIONS(7675), 1, - anon_sym_STAR_STAR, - ACTIONS(7681), 1, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - ACTIONS(7683), 1, anon_sym_AMP_AMP, - ACTIONS(7685), 1, - anon_sym_PIPE, - ACTIONS(7687), 1, - anon_sym_CARET, - ACTIONS(7689), 1, - anon_sym_AMP, - ACTIONS(7701), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, anon_sym_QMARK, - ACTIONS(7667), 2, + [181737] = 11, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8035), 1, + anon_sym_STAR_STAR, + ACTIONS(8011), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7671), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7691), 2, + ACTIONS(8023), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7693), 2, + ACTIONS(8025), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7695), 2, + ACTIONS(8027), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7673), 3, + ACTIONS(8029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8031), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7645), 3, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(8033), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 13, + ACTIONS(7671), 17, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229883,54 +233782,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - [178177] = 19, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + [181797] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7083), 1, + ACTIONS(7340), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229942,50 +233843,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [178253] = 18, - ACTIONS(71), 1, + [181873] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7675), 1, - anon_sym_STAR_STAR, - ACTIONS(7677), 1, - anon_sym_EQ, - ACTIONS(7681), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7683), 1, - anon_sym_AMP_AMP, - ACTIONS(7685), 1, + ACTIONS(1332), 13, anon_sym_PIPE, - ACTIONS(7687), 1, anon_sym_CARET, - ACTIONS(7689), 1, anon_sym_AMP, - ACTIONS(7699), 1, - anon_sym_EQ_TILDE, - ACTIONS(7701), 1, - anon_sym_QMARK, - ACTIONS(7667), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7669), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7691), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7693), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7695), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 12, + anon_sym_STAR_STAR, + ACTIONS(1334), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229997,45 +233875,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, - [178327] = 15, - ACTIONS(71), 1, + [181917] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6941), 1, + ACTIONS(1376), 14, anon_sym_EQ, - ACTIONS(7675), 1, - anon_sym_STAR_STAR, - ACTIONS(7683), 1, - anon_sym_AMP_AMP, - ACTIONS(7685), 1, anon_sym_PIPE, - ACTIONS(7687), 1, anon_sym_CARET, - ACTIONS(7689), 1, anon_sym_AMP, - ACTIONS(7667), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7669), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7691), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7693), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7695), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 15, + anon_sym_STAR_STAR, + ACTIONS(1378), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230048,45 +233917,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [178395] = 14, - ACTIONS(71), 1, + [181961] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6941), 1, + ACTIONS(7342), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7675), 1, - anon_sym_STAR_STAR, - ACTIONS(7685), 1, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7687), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7689), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7667), 2, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7671), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7691), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7693), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7695), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7673), 3, + ACTIONS(7810), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 16, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230098,46 +233982,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [178461] = 13, - ACTIONS(71), 1, + [182037] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7675), 1, - anon_sym_STAR_STAR, - ACTIONS(7687), 1, + ACTIONS(1340), 13, + anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7689), 1, anon_sym_AMP, - ACTIONS(6941), 2, - anon_sym_EQ, - anon_sym_PIPE, - ACTIONS(7667), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7669), 2, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7691), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7693), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7695), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 16, + anon_sym_STAR_STAR, + ACTIONS(1342), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230150,52 +234015,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [178525] = 17, - ACTIONS(71), 1, + [182081] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6941), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(1320), 13, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 13, + anon_sym_STAR_STAR, + ACTIONS(1322), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230207,42 +234055,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - [178597] = 12, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [182125] = 10, + ACTIONS(73), 1, sym_comment, - ACTIONS(7675), 1, + ACTIONS(8035), 1, anon_sym_STAR_STAR, - ACTIONS(7689), 1, - anon_sym_AMP, - ACTIONS(7667), 2, + ACTIONS(8011), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7671), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7691), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7693), 2, + ACTIONS(8025), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7695), 2, + ACTIONS(8027), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6941), 3, - anon_sym_EQ, + ACTIONS(8029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8031), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7645), 3, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7673), 3, + anon_sym_AMP, + ACTIONS(8033), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 16, + ACTIONS(7671), 19, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230255,43 +234107,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [178659] = 11, - ACTIONS(71), 1, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + [182183] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7675), 1, - anon_sym_STAR_STAR, - ACTIONS(7667), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(1376), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7671), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7691), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7693), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7695), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7673), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6941), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6939), 16, + anon_sym_STAR_STAR, + ACTIONS(1378), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230304,40 +234145,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [178719] = 10, - ACTIONS(71), 1, + [182227] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7675), 1, + ACTIONS(8035), 1, anon_sym_STAR_STAR, - ACTIONS(7667), 2, + ACTIONS(8011), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, + ACTIONS(8029), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7671), 2, + ACTIONS(8031), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7693), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7695), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7673), 3, + ACTIONS(8033), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6941), 4, - anon_sym_EQ, + ACTIONS(7645), 5, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6939), 18, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7671), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230350,38 +234192,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [178777] = 8, - ACTIONS(71), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [182281] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(7675), 1, + ACTIONS(8035), 1, anon_sym_STAR_STAR, - ACTIONS(7667), 2, + ACTIONS(8011), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7671), 2, + ACTIONS(8031), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7673), 3, + ACTIONS(8033), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6941), 6, - anon_sym_EQ, + ACTIONS(7645), 7, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6939), 20, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7671), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230394,31 +234237,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [178831] = 7, - ACTIONS(71), 1, + [182333] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(7675), 1, + ACTIONS(8035), 1, anon_sym_STAR_STAR, - ACTIONS(7667), 2, + ACTIONS(8011), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7671), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7673), 3, + ACTIONS(8033), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6941), 8, - anon_sym_EQ, + ACTIONS(7645), 9, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -230426,7 +234264,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6939), 20, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7671), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230439,28 +234281,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [178883] = 6, - ACTIONS(71), 1, + [182383] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7675), 1, + ACTIONS(8035), 1, anon_sym_STAR_STAR, - ACTIONS(7667), 2, + ACTIONS(8011), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7673), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6941), 10, - anon_sym_EQ, + ACTIONS(7645), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -230470,7 +234306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6939), 20, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7671), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230483,24 +234324,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [178933] = 5, - ACTIONS(71), 1, + [182431] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7675), 1, - anon_sym_STAR_STAR, - ACTIONS(7667), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6941), 13, - anon_sym_EQ, + ACTIONS(1380), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -230513,7 +234347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 20, + anon_sym_STAR_STAR, + ACTIONS(1382), 23, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230526,22 +234364,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [178981] = 4, - ACTIONS(71), 1, + [182475] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7667), 2, + ACTIONS(8035), 1, + anon_sym_STAR_STAR, + ACTIONS(8011), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6941), 14, - anon_sym_EQ, + ACTIONS(7645), 12, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -230554,8 +234393,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6939), 20, + ACTIONS(7671), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230568,60 +234408,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [179027] = 19, - ACTIONS(71), 1, + [182523] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6951), 1, + ACTIONS(7298), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230633,52 +234472,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179103] = 19, - ACTIONS(71), 1, + [182599] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6895), 1, + ACTIONS(7344), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230690,134 +234529,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179179] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6875), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179265] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6887), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [179351] = 3, - ACTIONS(71), 1, + [182675] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6837), 14, + ACTIONS(7332), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -230832,7 +234547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6835), 22, + ACTIONS(7330), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -230855,10 +234570,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [179395] = 3, - ACTIONS(71), 1, + [182719] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6819), 14, + ACTIONS(1368), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -230873,7 +234588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6817), 22, + ACTIONS(1370), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -230896,89 +234611,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [179439] = 3, - ACTIONS(71), 1, + [182763] = 26, + ACTIONS(73), 1, sym_comment, - ACTIONS(7504), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7506), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(7904), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7906), 1, + anon_sym_DOLLAR, + ACTIONS(7908), 1, + sym__special_character, + ACTIONS(7910), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, + aux_sym_number_token1, + ACTIONS(7918), 1, + aux_sym_number_token2, + ACTIONS(7920), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7924), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7926), 1, + anon_sym_BQUOTE, + ACTIONS(7928), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7932), 1, + sym_variable_name, + ACTIONS(7938), 1, + sym__brace_start, + ACTIONS(8037), 1, + sym_word, + ACTIONS(8039), 1, + sym_ansi_c_string, + ACTIONS(8041), 1, + anon_sym_RBRACE3, + ACTIONS(8043), 1, + sym_test_operator, + ACTIONS(8045), 1, + sym__expansion_word, + STATE(6354), 1, + sym_command_substitution, + STATE(6589), 1, + aux_sym__literal_repeat1, + ACTIONS(7900), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7930), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6801), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + STATE(6450), 6, + sym_string, + sym_array, + sym_raw_string, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + [182853] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7242), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [179483] = 15, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7647), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7649), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7651), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7665), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7639), 2, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7643), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7645), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7653), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7655), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7657), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7659), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7661), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7663), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 13, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230990,45 +234732,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [179551] = 14, - ACTIONS(71), 1, + [182929] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7647), 1, + ACTIONS(7379), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7649), 1, anon_sym_CARET, - ACTIONS(7651), 1, anon_sym_AMP, - ACTIONS(7665), 1, - anon_sym_STAR_STAR, - ACTIONS(7639), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7645), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7653), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7655), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7657), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 15, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(7377), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231041,43 +234765,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - [179617] = 13, - ACTIONS(71), 1, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [182973] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7647), 1, + ACTIONS(1368), 13, anon_sym_PIPE, - ACTIONS(7649), 1, anon_sym_CARET, - ACTIONS(7651), 1, anon_sym_AMP, - ACTIONS(7665), 1, - anon_sym_STAR_STAR, - ACTIONS(7639), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7653), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7655), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7657), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 17, - anon_sym_RPAREN_RPAREN, + anon_sym_STAR_STAR, + ACTIONS(1370), 23, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231093,42 +234809,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - [179681] = 13, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [183017] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7508), 1, + ACTIONS(1384), 13, anon_sym_PIPE, - ACTIONS(7649), 1, anon_sym_CARET, - ACTIONS(7651), 1, anon_sym_AMP, - ACTIONS(7665), 1, - anon_sym_STAR_STAR, - ACTIONS(7639), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7653), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7655), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7657), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 17, - anon_sym_RPAREN_RPAREN, + anon_sym_STAR_STAR, + ACTIONS(1386), 23, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231144,41 +234850,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - [179745] = 12, - ACTIONS(71), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + [183061] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7651), 1, - anon_sym_AMP, - ACTIONS(7665), 1, - anon_sym_STAR_STAR, - ACTIONS(7508), 2, + ACTIONS(1368), 13, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7639), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7653), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7655), 2, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7657), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 17, - anon_sym_RPAREN_RPAREN, + anon_sym_STAR_STAR, + ACTIONS(1370), 23, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231194,238 +234891,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASHo, anon_sym_AMP_AMP, anon_sym_DASHa, - [179807] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(4078), 1, - anon_sym_DQUOTE, - ACTIONS(7611), 1, - sym_variable_name, - STATE(4444), 1, - sym_string, - ACTIONS(7609), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7607), 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(1227), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [179861] = 11, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7665), 1, - anon_sym_STAR_STAR, - ACTIONS(7639), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7653), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7655), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7657), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7659), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7661), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7508), 3, + anon_sym_RPAREN, + [183105] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7383), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(7663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7510), 17, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - [179921] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7489), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180007] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7665), 1, - anon_sym_STAR_STAR, - ACTIONS(7639), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7655), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7657), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7659), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7661), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7508), 3, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(7663), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 19, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - [180065] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7665), 1, anon_sym_STAR_STAR, - ACTIONS(7639), 2, + ACTIONS(7381), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7659), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7661), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7508), 5, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7510), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231438,29 +234929,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [180119] = 7, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [183149] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7665), 1, - anon_sym_STAR_STAR, - ACTIONS(7639), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7661), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7508), 7, + ACTIONS(7719), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -231468,9 +234948,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7510), 21, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7721), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231490,31 +234978,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [180171] = 6, - ACTIONS(71), 1, + [183193] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7665), 1, - anon_sym_STAR_STAR, - ACTIONS(7639), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7663), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7508), 9, + ACTIONS(7282), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7510), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7814), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231526,38 +235035,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [183269] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7346), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [180221] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7665), 1, - anon_sym_STAR_STAR, - ACTIONS(7639), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7508), 12, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231569,38 +235092,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [183345] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7300), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [180269] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7665), 1, - anon_sym_STAR_STAR, - ACTIONS(7639), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7508), 12, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 21, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231612,60 +235149,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [180317] = 19, - ACTIONS(71), 1, + [183421] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(7085), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7110), 3, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7108), 16, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231673,87 +235190,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT_EQ, anon_sym_STAR_STAR_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [180393] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7494), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180479] = 8, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [183483] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, + ACTIONS(1269), 1, sym_file_descriptor, - ACTIONS(4078), 1, + ACTIONS(7868), 1, anon_sym_DQUOTE, - ACTIONS(7611), 1, + ACTIONS(7872), 1, sym_variable_name, - STATE(4444), 1, + STATE(4372), 1, sym_string, - ACTIONS(7609), 2, + ACTIONS(7870), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7607), 9, + ACTIONS(7866), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -231763,7 +235223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 21, + ACTIONS(1267), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -231773,7 +235233,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -231785,27 +235244,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [180533] = 3, - ACTIONS(71), 1, + anon_sym_BQUOTE, + [183537] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7054), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7052), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7194), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7192), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231826,27 +235291,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [180577] = 3, - ACTIONS(71), 1, + [183591] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7073), 14, + ACTIONS(7270), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7071), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231858,19 +235348,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [180621] = 3, - ACTIONS(71), 1, + [183667] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7548), 13, + ACTIONS(7775), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -231884,7 +235365,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7550), 23, + ACTIONS(7777), 23, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, @@ -231908,111 +235389,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [180665] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6841), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [180751] = 16, - ACTIONS(71), 1, + [183711] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7605), 1, - anon_sym_STAR_STAR, - ACTIONS(7613), 1, + ACTIONS(7350), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7615), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7617), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7420), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(7601), 2, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7619), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7621), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7623), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7625), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7627), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7709), 2, + ACTIONS(7814), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7792), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [183787] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7410), 1, + anon_sym_EQ, + ACTIONS(7824), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7711), 2, + ACTIONS(7826), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7603), 3, + ACTIONS(7828), 1, + anon_sym_PIPE, + ACTIONS(7830), 1, + anon_sym_CARET, + ACTIONS(7832), 1, + anon_sym_AMP, + ACTIONS(7846), 1, + anon_sym_STAR_STAR, + ACTIONS(7822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7834), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7836), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7838), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7840), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7842), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7707), 11, + ACTIONS(7408), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232024,52 +235497,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [180821] = 19, - ACTIONS(71), 1, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [183857] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7087), 1, + ACTIONS(7244), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232081,108 +235557,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [180897] = 24, - ACTIONS(71), 1, + [183933] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, + ACTIONS(2170), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8053), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, + ACTIONS(8056), 1, + anon_sym_DOLLAR, + ACTIONS(8059), 1, sym__special_character, - ACTIONS(7204), 1, + ACTIONS(8062), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, + ACTIONS(8065), 1, + anon_sym_SQUOTE, + ACTIONS(8068), 1, + aux_sym_number_token1, + ACTIONS(8071), 1, + aux_sym_number_token2, + ACTIONS(8074), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, + ACTIONS(8077), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8080), 1, anon_sym_BQUOTE, - ACTIONS(7212), 1, + ACTIONS(8083), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, + ACTIONS(8089), 1, + sym_test_operator, + ACTIONS(8092), 1, + sym__brace_start, + STATE(5072), 1, aux_sym__literal_repeat1, - STATE(6849), 1, - sym_last_case_item, - ACTIONS(7196), 2, + ACTIONS(8047), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(8050), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, + ACTIONS(8086), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, + STATE(3388), 2, sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, + aux_sym_for_statement_repeat1, + ACTIONS(2168), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4560), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [180983] = 16, - ACTIONS(71), 1, + [184015] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7121), 1, + ACTIONS(7140), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7569), 2, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7814), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7792), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [184091] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7878), 1, + anon_sym_PIPE, + ACTIONS(7880), 1, + anon_sym_CARET, + ACTIONS(7882), 1, + anon_sym_AMP, + ACTIONS(7896), 1, + anon_sym_STAR_STAR, + ACTIONS(7737), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + ACTIONS(7864), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7874), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(7876), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(7884), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7886), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7888), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7890), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7894), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8095), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [184161] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7332), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7119), 14, + anon_sym_STAR_STAR, + ACTIONS(7330), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232194,49 +235760,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [181053] = 16, - ACTIONS(71), 1, + [184205] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7121), 1, + ACTIONS(7246), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7675), 1, - anon_sym_STAR_STAR, - ACTIONS(7681), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7683), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7685), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7687), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7689), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7667), 2, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7671), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7691), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7693), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7695), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7673), 3, + ACTIONS(7810), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7119), 14, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232248,24 +235826,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [181123] = 8, + [184281] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, + ACTIONS(1269), 1, sym_file_descriptor, - ACTIONS(4078), 1, + ACTIONS(4211), 1, anon_sym_DQUOTE, - ACTIONS(7611), 1, + ACTIONS(8005), 1, sym_variable_name, - STATE(4444), 1, + STATE(4476), 1, sym_string, - ACTIONS(7609), 2, + ACTIONS(8003), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7607), 9, + ACTIONS(8001), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -232275,7 +235850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 21, + ACTIONS(1267), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -232285,6 +235860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -232296,16 +235872,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, + [184335] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [181177] = 5, - ACTIONS(71), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [184379] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(7605), 1, - anon_sym_STAR_STAR, - ACTIONS(7601), 2, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(4211), 1, + anon_sym_DQUOTE, + ACTIONS(8005), 1, + sym_variable_name, + STATE(4476), 1, + sym_string, + ACTIONS(8003), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8001), 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(1255), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [184433] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7508), 12, + ACTIONS(7194), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -232318,8 +235979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 21, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(7192), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232332,48 +235993,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [181225] = 12, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184479] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7581), 1, + ACTIONS(7248), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, + anon_sym_PIPE, + ACTIONS(7800), 1, + anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7569), 2, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6941), 3, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 16, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232385,32 +236058,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [184555] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7352), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [181287] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7470), 13, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7472), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232422,19 +236115,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [181331] = 3, - ACTIONS(71), 1, + [184631] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 13, + ACTIONS(1368), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -232448,9 +236133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1346), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1370), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -232465,35 +236148,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [181375] = 3, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184675] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 13, + ACTIONS(1378), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1376), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [184719] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7160), 1, + anon_sym_STAR_STAR, + ACTIONS(7162), 1, + sym_test_operator, + ACTIONS(7200), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7202), 1, + anon_sym_AMP_AMP, + ACTIONS(7204), 1, anon_sym_PIPE, + ACTIONS(7206), 1, anon_sym_CARET, + ACTIONS(7208), 1, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7220), 1, + anon_sym_EQ, + ACTIONS(7222), 1, + anon_sym_EQ_TILDE, + ACTIONS(8099), 1, + anon_sym_QMARK, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7154), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7156), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7210), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7212), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7214), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7158), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(8097), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232505,60 +236254,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [181419] = 19, - ACTIONS(71), 1, + [184795] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6959), 1, + ACTIONS(7354), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232570,27 +236311,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [181495] = 3, - ACTIONS(71), 1, + [184871] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7534), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7536), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7194), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7192), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232603,35 +236349,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [181539] = 3, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [184925] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7470), 13, + ACTIONS(7302), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7472), 23, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232643,37 +236414,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [185001] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7250), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - anon_sym_DASHo, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - [181583] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1340), 13, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1342), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232685,60 +236471,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_AMP_AMP, - anon_sym_DASHa, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [181627] = 19, - ACTIONS(71), 1, + [185077] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7089), 1, + ACTIONS(7356), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232750,27 +236528,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [181703] = 3, - ACTIONS(71), 1, + [185153] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 14, - anon_sym_EQ, + ACTIONS(7824), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7826), 1, + anon_sym_AMP_AMP, + ACTIONS(7828), 1, anon_sym_PIPE, + ACTIONS(7830), 1, anon_sym_CARET, + ACTIONS(7832), 1, anon_sym_AMP, + ACTIONS(7846), 1, + anon_sym_STAR_STAR, + ACTIONS(7848), 1, + anon_sym_QMARK, + ACTIONS(7850), 1, + anon_sym_EQ, + ACTIONS(7852), 1, + anon_sym_EQ_TILDE, + ACTIONS(8103), 1, + anon_sym_RPAREN, + ACTIONS(7822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7834), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7836), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7838), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7840), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7842), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1350), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(8101), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232782,36 +236585,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [181747] = 3, - ACTIONS(71), 1, + [185229] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7042), 14, + ACTIONS(7234), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7040), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232823,36 +236642,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [185305] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(7868), 1, + anon_sym_DQUOTE, + ACTIONS(7872), 1, + sym_variable_name, + STATE(4372), 1, + sym_string, + ACTIONS(7870), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7866), 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(1267), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [181791] = 3, - ACTIONS(71), 1, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [185359] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [185403] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7042), 14, + ACTIONS(7358), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7040), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232864,98 +236786,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [185479] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(7868), 1, + anon_sym_DQUOTE, + ACTIONS(7872), 1, + sym_variable_name, + STATE(4372), 1, + sym_string, + ACTIONS(7870), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7866), 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(1255), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [181835] = 24, - ACTIONS(71), 1, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [185533] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, + ACTIONS(1350), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(6496), 1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6502), 1, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [185577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, sym__brace_start, - ACTIONS(7200), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, - ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7214), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [181921] = 3, - ACTIONS(71), 1, + sym_word, + [185621] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7046), 14, + ACTIONS(7304), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7044), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232967,36 +236971,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [181965] = 3, - ACTIONS(71), 1, + [185697] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(7252), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233008,61 +237028,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [182009] = 19, - ACTIONS(71), 1, + [185773] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7093), 1, + ACTIONS(7360), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233074,42 +237085,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [182085] = 8, + [185849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, + ACTIONS(1346), 5, sym_file_descriptor, - ACTIONS(4078), 1, - anon_sym_DQUOTE, - ACTIONS(7611), 1, - sym_variable_name, - STATE(4444), 1, - sym_string, - ACTIONS(7609), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7607), 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(1239), 21, - anon_sym_SEMI, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1344), 31, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -233117,35 +237108,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [182139] = 8, - ACTIONS(71), 1, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [185893] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7589), 2, + ACTIONS(1340), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6955), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6953), 20, + anon_sym_STAR_STAR, + ACTIONS(1342), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233166,27 +237167,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [182193] = 3, - ACTIONS(71), 1, + [185937] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 14, + ACTIONS(7362), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1358), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233198,37 +237224,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [186013] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7284), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, + ACTIONS(7798), 1, + anon_sym_PIPE, + ACTIONS(7800), 1, + anon_sym_CARET, + ACTIONS(7802), 1, + anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, + ACTIONS(7820), 1, anon_sym_QMARK, - [182237] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6955), 14, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(6953), 20, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233240,41 +237281,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [182283] = 8, - ACTIONS(71), 1, + [186089] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7589), 2, + ACTIONS(1368), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6955), 6, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6953), 20, + anon_sym_STAR_STAR, + ACTIONS(1370), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233287,35 +237315,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [182337] = 3, - ACTIONS(71), 1, + [186133] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1336), 14, + ACTIONS(1362), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [186177] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7254), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1338), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233327,41 +237420,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [182381] = 8, - ACTIONS(71), 1, + [186253] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, + ACTIONS(8105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 6, + ACTIONS(7013), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6793), 20, + ACTIONS(7011), 20, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -233382,50 +237466,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [182435] = 18, - ACTIONS(71), 1, + [186307] = 18, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(7013), 1, anon_sym_EQ, - ACTIONS(7719), 1, + ACTIONS(8099), 1, + anon_sym_QMARK, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(7721), 1, + ACTIONS(8113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7723), 1, + ACTIONS(8115), 1, anon_sym_AMP_AMP, - ACTIONS(7725), 1, + ACTIONS(8117), 1, anon_sym_PIPE, - ACTIONS(7727), 1, + ACTIONS(8119), 1, anon_sym_CARET, - ACTIONS(7729), 1, + ACTIONS(8121), 1, anon_sym_AMP, - ACTIONS(7737), 1, - anon_sym_QMARK, - ACTIONS(7739), 1, + ACTIONS(8129), 1, sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, + ACTIONS(8105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7731), 2, + ACTIONS(8123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7733), 2, + ACTIONS(8125), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7735), 2, + ACTIONS(8127), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 12, + ACTIONS(7011), 12, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233438,52 +237522,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_EQ_TILDE, - [182509] = 19, - ACTIONS(71), 1, + [186381] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(8099), 1, + anon_sym_QMARK, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(7721), 1, + ACTIONS(8113), 1, anon_sym_PIPE_PIPE, - ACTIONS(7723), 1, + ACTIONS(8115), 1, anon_sym_AMP_AMP, - ACTIONS(7725), 1, + ACTIONS(8117), 1, anon_sym_PIPE, - ACTIONS(7727), 1, + ACTIONS(8119), 1, anon_sym_CARET, - ACTIONS(7729), 1, + ACTIONS(8121), 1, anon_sym_AMP, - ACTIONS(7737), 1, - anon_sym_QMARK, - ACTIONS(7739), 1, + ACTIONS(8129), 1, sym_test_operator, - ACTIONS(7741), 1, + ACTIONS(8131), 1, anon_sym_EQ, - ACTIONS(7743), 1, + ACTIONS(8133), 1, anon_sym_EQ_TILDE, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, + ACTIONS(8105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7731), 2, + ACTIONS(8123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7733), 2, + ACTIONS(8125), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7735), 2, + ACTIONS(8127), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 11, + ACTIONS(7011), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233495,46 +237579,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [182585] = 16, - ACTIONS(71), 1, + [186457] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(7013), 1, anon_sym_EQ, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(7723), 1, + ACTIONS(8115), 1, anon_sym_AMP_AMP, - ACTIONS(7725), 1, + ACTIONS(8117), 1, anon_sym_PIPE, - ACTIONS(7727), 1, + ACTIONS(8119), 1, anon_sym_CARET, - ACTIONS(7729), 1, + ACTIONS(8121), 1, anon_sym_AMP, - ACTIONS(7739), 1, + ACTIONS(8129), 1, sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, + ACTIONS(8105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7731), 2, + ACTIONS(8123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7733), 2, + ACTIONS(8125), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7735), 2, + ACTIONS(8127), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 14, + ACTIONS(7011), 14, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233549,44 +237633,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_EQ_TILDE, anon_sym_QMARK, - [182655] = 15, - ACTIONS(71), 1, + [186527] = 15, + ACTIONS(73), 1, sym_comment, - ACTIONS(6795), 1, + ACTIONS(7013), 1, anon_sym_EQ, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(7725), 1, + ACTIONS(8117), 1, anon_sym_PIPE, - ACTIONS(7727), 1, + ACTIONS(8119), 1, anon_sym_CARET, - ACTIONS(7729), 1, + ACTIONS(8121), 1, anon_sym_AMP, - ACTIONS(7739), 1, + ACTIONS(8129), 1, sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, + ACTIONS(8105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7731), 2, + ACTIONS(8123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7733), 2, + ACTIONS(8125), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7735), 2, + ACTIONS(8127), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 15, + ACTIONS(7011), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233602,43 +237686,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_TILDE, anon_sym_QMARK, - [182723] = 14, - ACTIONS(71), 1, + [186595] = 14, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(7727), 1, + ACTIONS(8119), 1, anon_sym_CARET, - ACTIONS(7729), 1, + ACTIONS(8121), 1, anon_sym_AMP, - ACTIONS(7739), 1, + ACTIONS(8129), 1, sym_test_operator, - ACTIONS(6795), 2, + ACTIONS(7013), 2, anon_sym_EQ, anon_sym_PIPE, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, + ACTIONS(8105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7731), 2, + ACTIONS(8123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7733), 2, + ACTIONS(8125), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7735), 2, + ACTIONS(8127), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 15, + ACTIONS(7011), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233654,42 +237738,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_TILDE, anon_sym_QMARK, - [182789] = 13, - ACTIONS(71), 1, + [186661] = 13, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(7729), 1, + ACTIONS(8121), 1, anon_sym_AMP, - ACTIONS(7739), 1, + ACTIONS(8129), 1, sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, + ACTIONS(8105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7731), 2, + ACTIONS(8123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7733), 2, + ACTIONS(8125), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7735), 2, + ACTIONS(8127), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6795), 3, + ACTIONS(7013), 3, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 15, + ACTIONS(7011), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233705,41 +237789,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_TILDE, anon_sym_QMARK, - [182853] = 12, - ACTIONS(71), 1, + [186725] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(7739), 1, + ACTIONS(8129), 1, sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, + ACTIONS(8105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7731), 2, + ACTIONS(8123), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7733), 2, + ACTIONS(8125), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7735), 2, + ACTIONS(8127), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 4, + ACTIONS(7013), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6793), 15, + ACTIONS(7011), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233755,38 +237839,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, anon_sym_EQ_TILDE, anon_sym_QMARK, - [182915] = 11, - ACTIONS(71), 1, + [186787] = 11, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(7739), 1, + ACTIONS(8129), 1, sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, + ACTIONS(8105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7733), 2, + ACTIONS(8125), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7735), 2, + ACTIONS(8127), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 4, + ACTIONS(7013), 4, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, - ACTIONS(6793), 17, + ACTIONS(7011), 17, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233804,34 +237888,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [182975] = 9, - ACTIONS(71), 1, + [186847] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(7739), 1, + ACTIONS(8129), 1, sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, + ACTIONS(8105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 6, + ACTIONS(7013), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6793), 19, + ACTIONS(7011), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233851,22 +237935,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [183031] = 7, - ACTIONS(71), 1, + [186903] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 8, + ACTIONS(7013), 8, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -233875,7 +237959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6793), 20, + ACTIONS(7011), 20, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -233896,19 +237980,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [183083] = 6, - ACTIONS(71), 1, + [186955] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6795), 10, + ACTIONS(7013), 10, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7011), 20, + sym_test_operator, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [187005] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8111), 1, + anon_sym_STAR_STAR, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7013), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -233919,7 +238043,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6793), 20, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7011), 20, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -233940,15 +238067,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [183133] = 5, - ACTIONS(71), 1, + [187053] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6795), 13, + ACTIONS(7013), 13, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -233962,7 +238089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 20, + ACTIONS(7011), 20, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -233983,15 +238110,313 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [183181] = 5, - ACTIONS(71), 1, + [187101] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1366), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1364), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [187145] = 17, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7373), 1, + anon_sym_EQ, + ACTIONS(8111), 1, + anon_sym_STAR_STAR, + ACTIONS(8113), 1, + anon_sym_PIPE_PIPE, + ACTIONS(8115), 1, + anon_sym_AMP_AMP, + ACTIONS(8117), 1, + anon_sym_PIPE, + ACTIONS(8119), 1, + anon_sym_CARET, + ACTIONS(8121), 1, + anon_sym_AMP, + ACTIONS(8129), 1, + sym_test_operator, + ACTIONS(7050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8105), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8107), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8123), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8125), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8127), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8109), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7375), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [187217] = 11, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7814), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7110), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7108), 16, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [187277] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1384), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1386), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [187321] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(7240), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, + anon_sym_PIPE, + ACTIONS(7800), 1, + anon_sym_CARET, + ACTIONS(7802), 1, + anon_sym_AMP, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6795), 13, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7814), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7792), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [187397] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, + aux_sym_number_token1, + ACTIONS(3761), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, + anon_sym_BQUOTE, + ACTIONS(3769), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(7860), 1, + sym__special_character, + ACTIONS(7862), 1, + sym_test_operator, + ACTIONS(8137), 1, + aux_sym_heredoc_redirect_token1, + STATE(5072), 1, + aux_sym__literal_repeat1, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7854), 2, + sym_ansi_c_string, + sym_word, + STATE(3388), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(8135), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4560), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [187479] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7418), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -234005,8 +238430,505 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6793), 20, + anon_sym_STAR_STAR, + ACTIONS(7416), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [187523] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8017), 1, + anon_sym_PIPE, + ACTIONS(8019), 1, + anon_sym_CARET, + ACTIONS(8021), 1, + anon_sym_AMP, + ACTIONS(8035), 1, + anon_sym_STAR_STAR, + ACTIONS(7737), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + ACTIONS(8011), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(8013), 2, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + ACTIONS(8015), 2, + anon_sym_AMP_AMP, + anon_sym_DASHa, + ACTIONS(8023), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(8025), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(8027), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(8029), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(8031), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(8033), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(8139), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [187593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [187637] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [187681] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(3711), 1, + anon_sym_DQUOTE, + ACTIONS(7701), 1, + sym_variable_name, + STATE(4345), 1, + sym_string, + ACTIONS(7699), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7697), 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(1267), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [187735] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1374), 5, + sym_file_descriptor, + sym__concat, sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1372), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [187779] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(3711), 1, + anon_sym_DQUOTE, + ACTIONS(7701), 1, + sym_variable_name, + STATE(4345), 1, + sym_string, + ACTIONS(7699), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7697), 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(1255), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [187833] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7256), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, + anon_sym_PIPE, + ACTIONS(7800), 1, + anon_sym_CARET, + ACTIONS(7802), 1, + anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7814), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7792), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [187909] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7114), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7116), 1, + anon_sym_AMP_AMP, + ACTIONS(7118), 1, + anon_sym_PIPE, + ACTIONS(7120), 1, + anon_sym_CARET, + ACTIONS(7122), 1, + anon_sym_AMP, + ACTIONS(7136), 1, + anon_sym_STAR_STAR, + ACTIONS(7138), 1, + anon_sym_QMARK, + ACTIONS(7144), 1, + anon_sym_EQ, + ACTIONS(7148), 1, + anon_sym_EQ_TILDE, + ACTIONS(8141), 1, + anon_sym_COLON, + ACTIONS(7112), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7124), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7126), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7128), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7130), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7132), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7134), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7146), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [187985] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(4211), 1, + anon_sym_DQUOTE, + ACTIONS(8005), 1, + sym_variable_name, + STATE(4476), 1, + sym_string, + ACTIONS(8003), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8001), 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(1267), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_BQUOTE, + [188039] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7258), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, + anon_sym_PIPE, + ACTIONS(7800), 1, + anon_sym_CARET, + ACTIONS(7802), 1, + anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7814), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234018,56 +238940,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [183229] = 17, - ACTIONS(71), 1, + [188115] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7024), 1, + ACTIONS(7274), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7719), 1, - anon_sym_STAR_STAR, - ACTIONS(7721), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7723), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7725), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7727), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7729), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7739), 1, - sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7715), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7731), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7733), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7735), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7717), 3, + ACTIONS(7810), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7026), 13, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234079,176 +238997,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [183301] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7398), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [183387] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6983), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [183473] = 18, - ACTIONS(71), 1, + [188191] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7567), 1, + ACTIONS(7306), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6939), 12, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234260,53 +239054,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RBRACK, - [183547] = 19, - ACTIONS(71), 1, + [188267] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(6961), 1, + ACTIONS(7260), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234318,52 +239111,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [183623] = 19, - ACTIONS(71), 1, + [188343] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7095), 1, + ACTIONS(7286), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234375,11 +239168,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [183699] = 3, - ACTIONS(71), 1, + [188419] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6969), 14, - anon_sym_EQ, + ACTIONS(1388), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -234393,7 +239185,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6967), 22, + ACTIONS(1390), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -234408,60 +239202,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [183743] = 19, - ACTIONS(71), 1, + [188463] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7097), 1, + ACTIONS(7308), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234473,11 +239266,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [183819] = 3, - ACTIONS(71), 1, + [188539] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6969), 14, - anon_sym_EQ, + ACTIONS(1328), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -234491,7 +239283,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6967), 22, + ACTIONS(1330), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -234506,35 +239300,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [183863] = 3, - ACTIONS(71), 1, + [188583] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 14, + ACTIONS(7230), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, anon_sym_PIPE, + ACTIONS(7800), 1, anon_sym_CARET, + ACTIONS(7802), 1, anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(1354), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234546,19 +239364,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [188659] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7278), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, anon_sym_AMP_AMP, + ACTIONS(7798), 1, + anon_sym_PIPE, + ACTIONS(7800), 1, + anon_sym_CARET, + ACTIONS(7802), 1, + anon_sym_AMP, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, + ACTIONS(7806), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [183907] = 3, - ACTIONS(71), 1, + ACTIONS(7810), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7814), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7792), 11, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [188735] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, + aux_sym_number_token1, + ACTIONS(3761), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, + anon_sym_BQUOTE, + ACTIONS(3769), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(7860), 1, + sym__special_character, + ACTIONS(7862), 1, + sym_test_operator, + ACTIONS(8145), 1, + aux_sym_heredoc_redirect_token1, + STATE(5072), 1, + aux_sym__literal_repeat1, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(7854), 2, + sym_ansi_c_string, + sym_word, + STATE(3388), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + ACTIONS(8143), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4560), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [188817] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1370), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 31, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [188861] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7504), 13, + ACTIONS(7418), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -234572,8 +239540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7506), 23, - anon_sym_COMMA, + ACTIONS(7416), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -234588,60 +239555,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [183951] = 19, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [188905] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7675), 1, - anon_sym_STAR_STAR, - ACTIONS(7677), 1, + ACTIONS(7310), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7681), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7683), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7685), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7687), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7689), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7699), 1, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7701), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7745), 1, - anon_sym_RPAREN, - ACTIONS(7667), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7669), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7671), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7691), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7693), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7695), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7673), 3, + ACTIONS(7810), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7679), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234653,52 +239620,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [184027] = 19, - ACTIONS(71), 1, + [188981] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7099), 1, + ACTIONS(7262), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234710,47 +239677,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [184103] = 15, - ACTIONS(71), 1, + [189057] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7605), 1, - anon_sym_STAR_STAR, - ACTIONS(7613), 1, + ACTIONS(1336), 14, + anon_sym_EQ, anon_sym_PIPE, - ACTIONS(7615), 1, anon_sym_CARET, - ACTIONS(7617), 1, anon_sym_AMP, - ACTIONS(7601), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7619), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7623), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7625), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7627), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7709), 2, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - ACTIONS(7711), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7603), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 13, - anon_sym_COMMA, + anon_sym_STAR_STAR, + ACTIONS(1338), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234762,40 +239709,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_RPAREN, - [184171] = 11, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [189101] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7595), 1, + ACTIONS(7425), 1, + anon_sym_RBRACK, + ACTIONS(7788), 1, + anon_sym_EQ, + ACTIONS(7794), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7796), 1, + anon_sym_AMP_AMP, + ACTIONS(7798), 1, + anon_sym_PIPE, + ACTIONS(7800), 1, + anon_sym_CARET, + ACTIONS(7802), 1, + anon_sym_AMP, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7569), 2, + ACTIONS(7818), 1, + anon_sym_EQ_TILDE, + ACTIONS(7820), 1, + anon_sym_QMARK, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6941), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6939), 16, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234807,15 +239775,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, + [189177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 5, + sym_file_descriptor, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 31, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [184231] = 3, - ACTIONS(71), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [189221] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 13, + ACTIONS(1340), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -234829,7 +239833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1338), 23, + ACTIONS(1342), 23, + anon_sym_RPAREN_RPAREN, anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, @@ -234852,17 +239857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [184275] = 3, + [189265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1386), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 31, + ACTIONS(1384), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -234883,7 +239887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -234894,52 +239898,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [184319] = 19, - ACTIONS(71), 1, + [189309] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6963), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(1320), 13, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(1322), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234951,52 +239931,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [184395] = 19, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [189353] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7091), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7824), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7826), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7828), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7830), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7832), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7846), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7848), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7850), 1, + anon_sym_EQ, + ACTIONS(7852), 1, + anon_sym_EQ_TILDE, + ACTIONS(8147), 1, + anon_sym_RPAREN, + ACTIONS(7822), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7834), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7836), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7838), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7840), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(8101), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235008,52 +239996,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [184471] = 19, - ACTIONS(71), 1, + [189429] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1300), 12, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(1302), 24, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [189473] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(7868), 1, + anon_sym_DQUOTE, + ACTIONS(7872), 1, + sym_variable_name, + STATE(4372), 1, + sym_string, + ACTIONS(7870), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7866), 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(1255), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_BQUOTE, + [189527] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7105), 1, + ACTIONS(7312), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235065,10 +240140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [184547] = 3, - ACTIONS(71), 1, + [189603] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 13, + ACTIONS(1384), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -235082,9 +240158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1294), 23, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, + ACTIONS(1386), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -235099,23 +240173,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [184591] = 3, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [189647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1322), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 31, + ACTIONS(1320), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235136,7 +240211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -235147,16 +240222,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [184635] = 3, + [189691] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7194), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7192), 20, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [189737] = 10, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7790), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7806), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7808), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7810), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(7812), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(7814), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(7110), 4, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + ACTIONS(7108), 18, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [189795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1370), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 31, + ACTIONS(1368), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235177,7 +240342,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -235188,52 +240353,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [184679] = 19, - ACTIONS(71), 1, + [189839] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7107), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(1388), 14, anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(1390), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235245,105 +240385,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [184755] = 15, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6941), 1, - anon_sym_EQ, - ACTIONS(7575), 1, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6939), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, anon_sym_RBRACK, anon_sym_EQ_TILDE, anon_sym_QMARK, - [184823] = 19, - ACTIONS(71), 1, + [189883] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6871), 1, - anon_sym_AMP_AMP, - ACTIONS(6873), 1, + ACTIONS(8011), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7771), 13, anon_sym_PIPE, - ACTIONS(6875), 1, anon_sym_CARET, - ACTIONS(6877), 1, anon_sym_AMP, - ACTIONS(6891), 1, - anon_sym_STAR_STAR, - ACTIONS(6893), 1, - sym_test_operator, - ACTIONS(7028), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7144), 1, - anon_sym_EQ, - ACTIONS(7146), 1, - anon_sym_EQ_TILDE, - ACTIONS(7737), 1, - anon_sym_QMARK, - ACTIONS(6830), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6879), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6881), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(6883), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(6885), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(6887), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6889), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7747), 11, + anon_sym_STAR_STAR, + ACTIONS(7773), 21, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235355,93 +240428,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [184899] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [189929] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 12, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(4211), 1, + anon_sym_DQUOTE, + ACTIONS(8005), 1, + sym_variable_name, + STATE(4476), 1, + sym_string, + ACTIONS(8003), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8001), 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(1255), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1274), 24, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_BQUOTE, + [189983] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1390), 5, sym_file_descriptor, + sym__concat, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1388), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [184943] = 19, - ACTIONS(71), 1, + sym_word, + [190027] = 26, + ACTIONS(73), 1, sym_comment, - ACTIONS(7109), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7902), 1, + anon_sym_LPAREN, + ACTIONS(7904), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7906), 1, + anon_sym_DOLLAR, + ACTIONS(7908), 1, + sym__special_character, + ACTIONS(7910), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 1, + anon_sym_SQUOTE, + ACTIONS(7916), 1, + aux_sym_number_token1, + ACTIONS(7918), 1, + aux_sym_number_token2, + ACTIONS(7920), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7924), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(7926), 1, + anon_sym_BQUOTE, + ACTIONS(7928), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(7932), 1, + sym_variable_name, + ACTIONS(7938), 1, + sym__brace_start, + ACTIONS(8149), 1, + sym_word, + ACTIONS(8151), 1, + sym_ansi_c_string, + ACTIONS(8153), 1, + anon_sym_RBRACE3, + ACTIONS(8155), 1, + sym_test_operator, + ACTIONS(8157), 1, + sym__expansion_word, + STATE(6404), 1, + sym_command_substitution, + STATE(6560), 1, + aux_sym__literal_repeat1, + ACTIONS(7900), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7930), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6841), 5, + sym_arithmetic_expansion, + sym_brace_expression, + sym_translated_string, + sym_number, + sym__concatenation_in_expansion, + STATE(6509), 6, + sym_string, + sym_array, + sym_raw_string, + sym_simple_expansion, + sym_expansion, + sym_process_substitution, + [190117] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1324), 13, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(1326), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_DASHo, + anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + [190161] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6995), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(6993), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235453,27 +240660,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [185019] = 3, - ACTIONS(71), 1, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [190205] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7152), 14, - anon_sym_EQ, + ACTIONS(7824), 1, + anon_sym_PIPE_PIPE, + ACTIONS(7826), 1, + anon_sym_AMP_AMP, + ACTIONS(7828), 1, anon_sym_PIPE, + ACTIONS(7830), 1, anon_sym_CARET, + ACTIONS(7832), 1, anon_sym_AMP, + ACTIONS(7846), 1, + anon_sym_STAR_STAR, + ACTIONS(7848), 1, + anon_sym_QMARK, + ACTIONS(7850), 1, + anon_sym_EQ, + ACTIONS(7852), 1, + anon_sym_EQ_TILDE, + ACTIONS(8159), 1, + anon_sym_RPAREN, + ACTIONS(7822), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(7834), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(7836), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(7838), 2, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(7840), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7842), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7844), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7150), 22, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(8101), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235485,66 +240726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [185063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 31, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [185107] = 3, + [190281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1330), 5, sym_file_descriptor, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 31, + ACTIONS(1328), 31, anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -235565,7 +240756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -235576,36 +240767,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [185151] = 10, - ACTIONS(71), 1, + [190325] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7585), 2, + ACTIONS(1376), 13, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6941), 4, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - ACTIONS(6939), 18, + anon_sym_STAR_STAR, + ACTIONS(1378), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235618,58 +240801,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [185209] = 19, - ACTIONS(71), 1, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [190369] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7123), 1, + ACTIONS(7264), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235681,10 +240865,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [185285] = 3, - ACTIONS(71), 1, + [190445] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 14, + ACTIONS(7003), 14, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, @@ -235699,7 +240883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(1322), 22, + ACTIONS(7001), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -235719,107 +240903,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_EQ_TILDE, anon_sym_QMARK, - [185329] = 14, - ACTIONS(71), 1, + [190489] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7605), 1, - anon_sym_STAR_STAR, - ACTIONS(7613), 1, + ACTIONS(1336), 13, anon_sym_PIPE, - ACTIONS(7615), 1, anon_sym_CARET, - ACTIONS(7617), 1, anon_sym_AMP, - ACTIONS(7601), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7619), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7621), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7623), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7625), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7627), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7711), 2, - anon_sym_AMP_AMP, - anon_sym_DASHa, - ACTIONS(7603), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7510), 15, - anon_sym_COMMA, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - anon_sym_PIPE_PIPE, - anon_sym_DASHo, - anon_sym_RPAREN, - [185395] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7125), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, - anon_sym_PIPE, - ACTIONS(7579), 1, - anon_sym_CARET, - ACTIONS(7581), 1, - anon_sym_AMP, - ACTIONS(7595), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(1338), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7591), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7593), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7571), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235831,68 +240939,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [185471] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6899), 1, - anon_sym_EQ, - ACTIONS(6905), 1, anon_sym_PIPE_PIPE, - ACTIONS(6907), 1, + anon_sym_DASHo, anon_sym_AMP_AMP, - ACTIONS(6909), 1, - anon_sym_PIPE, - ACTIONS(6911), 1, - anon_sym_CARET, - ACTIONS(6913), 1, - anon_sym_AMP, - ACTIONS(6927), 1, - anon_sym_STAR_STAR, - ACTIONS(6929), 1, - anon_sym_EQ_TILDE, - ACTIONS(6931), 1, - anon_sym_QMARK, - ACTIONS(7749), 1, - anon_sym_COLON, - ACTIONS(6901), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6915), 2, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6917), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6919), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(6921), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(6923), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6925), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(6903), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [185547] = 3, - ACTIONS(71), 1, + [190533] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7046), 14, - anon_sym_EQ, + ACTIONS(7739), 13, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -235906,7 +240964,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7044), 22, + ACTIONS(7741), 23, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -235921,60 +240980,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, + anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_EQ_TILDE, - anon_sym_QMARK, - [185591] = 19, - ACTIONS(71), 1, + anon_sym_RPAREN, + [190577] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7135), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(1380), 13, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + anon_sym_STAR_STAR, + ACTIONS(1382), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235986,315 +241021,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [185667] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7203), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185753] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(7226), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 5, - sym_file_descriptor, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 31, - anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, + anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [185883] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6796), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [185969] = 19, - ACTIONS(71), 1, + anon_sym_DASHa, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [190621] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7140), 1, - anon_sym_RBRACK, - ACTIONS(7567), 1, - anon_sym_EQ, - ACTIONS(7573), 1, - anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, - anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(1332), 13, anon_sym_PIPE, - ACTIONS(7579), 1, anon_sym_CARET, - ACTIONS(7581), 1, anon_sym_AMP, - ACTIONS(7595), 1, - anon_sym_STAR_STAR, - ACTIONS(7597), 1, - anon_sym_EQ_TILDE, - ACTIONS(7599), 1, - anon_sym_QMARK, - ACTIONS(7569), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(7583), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(7585), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(7589), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_CARET_EQ, - anon_sym_PIPE_EQ, - [186045] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7605), 1, anon_sym_STAR_STAR, - ACTIONS(7601), 2, + ACTIONS(1334), 23, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7627), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(7603), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(7508), 7, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(7510), 21, - anon_sym_COMMA, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236314,115 +241070,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [186097] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6822), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186183] = 19, - ACTIONS(71), 1, + [190665] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(7148), 1, + ACTIONS(7266), 1, anon_sym_RBRACK, - ACTIONS(7567), 1, + ACTIONS(7788), 1, anon_sym_EQ, - ACTIONS(7573), 1, + ACTIONS(7794), 1, anon_sym_PIPE_PIPE, - ACTIONS(7575), 1, + ACTIONS(7796), 1, anon_sym_AMP_AMP, - ACTIONS(7577), 1, + ACTIONS(7798), 1, anon_sym_PIPE, - ACTIONS(7579), 1, + ACTIONS(7800), 1, anon_sym_CARET, - ACTIONS(7581), 1, + ACTIONS(7802), 1, anon_sym_AMP, - ACTIONS(7595), 1, + ACTIONS(7816), 1, anon_sym_STAR_STAR, - ACTIONS(7597), 1, + ACTIONS(7818), 1, anon_sym_EQ_TILDE, - ACTIONS(7599), 1, + ACTIONS(7820), 1, anon_sym_QMARK, - ACTIONS(7569), 2, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7583), 2, + ACTIONS(7804), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(7585), 2, + ACTIONS(7806), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(7587), 2, + ACTIONS(7808), 2, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(7589), 2, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7591), 2, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7593), 3, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(7571), 11, + ACTIONS(7792), 11, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236434,34 +241127,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_CARET_EQ, anon_sym_PIPE_EQ, - [186259] = 9, - ACTIONS(71), 1, + [190741] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(7739), 1, + ACTIONS(8129), 1, sym_test_operator, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, + ACTIONS(8105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, + ACTIONS(7048), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6826), 19, + ACTIONS(7046), 19, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236481,32 +241174,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [186315] = 8, - ACTIONS(71), 1, + [190797] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, + ACTIONS(8105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, + ACTIONS(7048), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6826), 20, + ACTIONS(7046), 20, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -236527,32 +241220,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [186369] = 8, - ACTIONS(71), 1, + [190851] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7719), 1, + ACTIONS(8111), 1, anon_sym_STAR_STAR, - ACTIONS(6830), 2, + ACTIONS(7050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7713), 2, + ACTIONS(8105), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(7715), 2, + ACTIONS(8107), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(7717), 3, + ACTIONS(8109), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(6828), 6, + ACTIONS(7048), 6, anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, anon_sym_LT, anon_sym_GT, - ACTIONS(6826), 20, + ACTIONS(7046), 20, sym_test_operator, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -236573,152 +241266,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_TILDE, anon_sym_QMARK, - [186423] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6852), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186509] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6971), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186595] = 4, - ACTIONS(71), 1, + [190905] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(7601), 2, + ACTIONS(7816), 1, + anon_sym_STAR_STAR, + ACTIONS(7790), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(7522), 13, - anon_sym_PIPE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(7810), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(7812), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(7814), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_STAR_STAR, - ACTIONS(7524), 21, - anon_sym_COMMA, + ACTIONS(7110), 6, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + ACTIONS(7108), 20, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236731,18 +241304,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [186641] = 3, - ACTIONS(71), 1, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [190959] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7542), 13, + ACTIONS(7379), 14, + anon_sym_EQ, anon_sym_PIPE, anon_sym_CARET, anon_sym_AMP, @@ -236756,8 +241330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(7544), 23, - anon_sym_COMMA, + ACTIONS(7377), 22, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_EQ, @@ -236772,504 +241345,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_PIPE_EQ, anon_sym_PIPE_PIPE, - anon_sym_DASHo, anon_sym_AMP_AMP, - anon_sym_DASHa, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - [186685] = 24, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6476), 1, - sym_word, - ACTIONS(6482), 1, - anon_sym_LPAREN, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6510), 1, - sym_test_operator, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, - anon_sym_BQUOTE, - ACTIONS(7212), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6459), 1, - aux_sym__literal_repeat1, - STATE(6853), 1, - sym_last_case_item, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7206), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6638), 2, - sym_concatenation, - sym__extglob_blob, - STATE(6312), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186771] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, - anon_sym_DOLLAR, - ACTIONS(3672), 1, - anon_sym_DQUOTE, - ACTIONS(3674), 1, - aux_sym_number_token1, - ACTIONS(3676), 1, - aux_sym_number_token2, - ACTIONS(3678), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, - anon_sym_BQUOTE, - ACTIONS(3684), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3692), 1, - sym__brace_start, - ACTIONS(7755), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7757), 1, - sym__special_character, - ACTIONS(7759), 1, - sym_test_operator, - STATE(4920), 1, - aux_sym__literal_repeat1, - ACTIONS(3652), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(3485), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(7751), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(7753), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4539), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [186850] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7761), 1, - sym__special_character, - STATE(3457), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 29, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [186897] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - anon_sym_DQUOTE, - ACTIONS(7768), 1, - sym_variable_name, - STATE(4636), 1, - sym_string, - ACTIONS(1235), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(7766), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7764), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_EQ_TILDE, anon_sym_QMARK, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 19, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [186950] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7770), 1, - aux_sym_concatenation_token1, - ACTIONS(7772), 1, - sym__concat, - STATE(3467), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1268), 21, - 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_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [186999] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7774), 1, - sym__special_character, - STATE(3457), 1, - aux_sym__literal_repeat1, - ACTIONS(5317), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 29, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [187046] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(3462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7770), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2171), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(2173), 21, - 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_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [187093] = 6, - ACTIONS(71), 1, + [191003] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7770), 1, - aux_sym_concatenation_token1, - ACTIONS(7776), 1, - sym__concat, - STATE(3467), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 11, + ACTIONS(7383), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1288), 21, - 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_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [187142] = 25, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7778), 1, - sym_word, - ACTIONS(7782), 1, - anon_sym_LPAREN, - ACTIONS(7784), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7786), 1, - anon_sym_DOLLAR, - ACTIONS(7788), 1, - sym__special_character, - ACTIONS(7790), 1, - anon_sym_DQUOTE, - ACTIONS(7794), 1, - aux_sym_number_token1, - ACTIONS(7796), 1, - aux_sym_number_token2, - ACTIONS(7798), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7800), 1, - anon_sym_RBRACE3, - ACTIONS(7802), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(7804), 1, - anon_sym_BQUOTE, - ACTIONS(7806), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7810), 1, - sym_variable_name, - ACTIONS(7812), 1, - sym_test_operator, - ACTIONS(7814), 1, - sym__expansion_word, - ACTIONS(7816), 1, - sym__brace_start, - STATE(6248), 1, - sym_command_substitution, - STATE(6499), 1, - aux_sym__literal_repeat1, - ACTIONS(7780), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7792), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7808), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(6450), 5, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - sym_process_substitution, - STATE(6788), 5, - sym_arithmetic_expansion, - sym_brace_expression, - sym_translated_string, - sym_number, - sym__concatenation_in_expansion, - [187229] = 5, - ACTIONS(71), 1, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(7381), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [191047] = 3, + ACTIONS(73), 1, sym_comment, - STATE(3459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7770), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4426), 11, + ACTIONS(1380), 14, + anon_sym_EQ, + anon_sym_PIPE, + anon_sym_CARET, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4428), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, + anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [187276] = 5, - ACTIONS(71), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + ACTIONS(1382), 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RBRACK, + anon_sym_EQ_TILDE, + anon_sym_QMARK, + [191091] = 5, + ACTIONS(73), 1, sym_comment, - STATE(3459), 1, + STATE(3528), 1, aux_sym_concatenation_repeat1, - ACTIONS(7770), 2, + ACTIONS(8161), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4577), 11, + ACTIONS(2158), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -237281,7 +241455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(4579), 21, + ACTIONS(2160), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -237297,1427 +241471,1120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187323] = 5, - ACTIONS(71), 1, + [191138] = 24, + ACTIONS(3), 1, sym_comment, - STATE(3462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7770), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4593), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(2124), 1, anon_sym_DOLLAR, + ACTIONS(2132), 1, aux_sym_number_token1, + ACTIONS(2134), 1, aux_sym_number_token2, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4595), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(2152), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8163), 1, + sym_word, + ACTIONS(8167), 1, + anon_sym_LPAREN, + ACTIONS(8169), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(8171), 1, sym__special_character, + ACTIONS(8173), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(8175), 1, + anon_sym_SQUOTE, + ACTIONS(8177), 1, sym_ansi_c_string, + ACTIONS(8179), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8181), 1, + anon_sym_BQUOTE, + ACTIONS(8183), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(8187), 1, + sym__comment_word, + ACTIONS(8189), 1, + sym__empty_value, + ACTIONS(8191), 1, + sym_test_operator, + STATE(1988), 1, + aux_sym__literal_repeat1, + ACTIONS(8165), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8185), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187370] = 5, - ACTIONS(71), 1, + STATE(2202), 2, + sym_concatenation, + sym_array, + STATE(1487), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191223] = 24, + ACTIONS(3), 1, sym_comment, - STATE(3467), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7818), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1276), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(4273), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4275), 1, anon_sym_DOLLAR, + ACTIONS(4277), 1, + sym__special_character, + ACTIONS(4279), 1, + anon_sym_DQUOTE, + ACTIONS(4281), 1, + anon_sym_SQUOTE, + ACTIONS(4285), 1, aux_sym_number_token1, + ACTIONS(4287), 1, aux_sym_number_token2, + ACTIONS(4289), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4291), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(4293), 1, anon_sym_BQUOTE, + ACTIONS(4295), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4305), 1, + sym__brace_start, + ACTIONS(8193), 1, sym_word, - ACTIONS(1278), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8195), 1, + anon_sym_LPAREN, + ACTIONS(8197), 1, + sym_ansi_c_string, + ACTIONS(8199), 1, + sym__comment_word, + ACTIONS(8201), 1, + sym__empty_value, + ACTIONS(8203), 1, sym_test_operator, - sym__brace_start, + STATE(2763), 1, + aux_sym__literal_repeat1, + ACTIONS(4271), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(4297), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187417] = 23, - ACTIONS(71), 1, + STATE(2947), 2, + sym_concatenation, + sym_array, + STATE(2404), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191308] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(7821), 1, + ACTIONS(8205), 1, sym_word, - ACTIONS(7827), 1, + ACTIONS(8209), 1, anon_sym_LPAREN, - ACTIONS(7830), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7833), 1, + ACTIONS(8213), 1, anon_sym_DOLLAR, - ACTIONS(7836), 1, + ACTIONS(8215), 1, sym__special_character, - ACTIONS(7839), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(7845), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8221), 1, + sym_ansi_c_string, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(7848), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(7851), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7854), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7857), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(7860), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7866), 1, + ACTIONS(8237), 1, + sym__comment_word, + ACTIONS(8239), 1, + sym__empty_value, + ACTIONS(8241), 1, sym_test_operator, - ACTIONS(7869), 1, - sym_extglob_pattern, - ACTIONS(7872), 1, + ACTIONS(8243), 1, sym__brace_start, - STATE(6391), 1, + STATE(2001), 1, aux_sym__literal_repeat1, - ACTIONS(7824), 2, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7842), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7863), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3468), 2, - sym_case_item, - aux_sym_case_statement_repeat1, - STATE(6693), 2, + STATE(2269), 2, sym_concatenation, - sym__extglob_blob, - STATE(6332), 9, + sym_array, + STATE(1757), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [187500] = 25, - ACTIONS(71), 1, + [191393] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(7782), 1, + ACTIONS(8245), 1, + sym_word, + ACTIONS(8249), 1, anon_sym_LPAREN, - ACTIONS(7784), 1, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7786), 1, + ACTIONS(8253), 1, anon_sym_DOLLAR, - ACTIONS(7788), 1, + ACTIONS(8255), 1, sym__special_character, - ACTIONS(7790), 1, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(7794), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8261), 1, + sym_ansi_c_string, + ACTIONS(8263), 1, aux_sym_number_token1, - ACTIONS(7796), 1, + ACTIONS(8265), 1, aux_sym_number_token2, - ACTIONS(7798), 1, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7802), 1, + ACTIONS(8269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7804), 1, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(7806), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7810), 1, - sym_variable_name, - ACTIONS(7816), 1, - sym__brace_start, - ACTIONS(7875), 1, - sym_word, - ACTIONS(7879), 1, - anon_sym_RBRACE3, - ACTIONS(7881), 1, + ACTIONS(8277), 1, + sym__comment_word, + ACTIONS(8279), 1, + sym__empty_value, + ACTIONS(8281), 1, sym_test_operator, - ACTIONS(7883), 1, - sym__expansion_word, - STATE(6264), 1, - sym_command_substitution, - STATE(6496), 1, + ACTIONS(8283), 1, + sym__brace_start, + STATE(4343), 1, aux_sym__literal_repeat1, - ACTIONS(7780), 2, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7808), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7877), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6458), 5, - sym_string, + STATE(4734), 2, + sym_concatenation, sym_array, - sym_simple_expansion, - sym_expansion, - sym_process_substitution, - STATE(6786), 5, + STATE(4626), 10, sym_arithmetic_expansion, sym_brace_expression, + sym_string, sym_translated_string, + sym_raw_string, sym_number, - sym__concatenation_in_expansion, - [187587] = 5, - ACTIONS(71), 1, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191478] = 24, + ACTIONS(3), 1, sym_comment, - STATE(3462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7770), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4511), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(2124), 1, anon_sym_DOLLAR, + ACTIONS(2132), 1, aux_sym_number_token1, + ACTIONS(2134), 1, aux_sym_number_token2, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(4513), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(2152), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8167), 1, + anon_sym_LPAREN, + ACTIONS(8169), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(8173), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(8175), 1, + anon_sym_SQUOTE, + ACTIONS(8179), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [187634] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(3459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7770), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5165), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + ACTIONS(8181), 1, anon_sym_BQUOTE, + ACTIONS(8183), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8187), 1, + sym__comment_word, + ACTIONS(8189), 1, + sym__empty_value, + ACTIONS(8285), 1, sym_word, - ACTIONS(5167), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8287), 1, + sym__special_character, + ACTIONS(8289), 1, + sym_ansi_c_string, + ACTIONS(8291), 1, sym_test_operator, - sym__brace_start, + STATE(1988), 1, + aux_sym__literal_repeat1, + ACTIONS(8165), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8185), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187681] = 5, - ACTIONS(71), 1, + STATE(2202), 2, + sym_concatenation, + sym_array, + STATE(1759), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191563] = 24, + ACTIONS(3), 1, sym_comment, - STATE(3459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7770), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1272), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, + ACTIONS(8293), 1, sym_word, - ACTIONS(1274), 21, - 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_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8297), 1, + anon_sym_LPAREN, + ACTIONS(8299), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(8301), 1, + anon_sym_DOLLAR, + ACTIONS(8303), 1, sym__special_character, + ACTIONS(8305), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(8307), 1, + anon_sym_SQUOTE, + ACTIONS(8309), 1, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [187728] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(3462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7770), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5173), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, + ACTIONS(8311), 1, aux_sym_number_token1, + ACTIONS(8313), 1, aux_sym_number_token2, + ACTIONS(8315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8317), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8319), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(5175), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8321), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8325), 1, + sym__comment_word, + ACTIONS(8327), 1, + sym__empty_value, + ACTIONS(8329), 1, sym_test_operator, + ACTIONS(8331), 1, sym__brace_start, + STATE(5475), 1, + aux_sym__literal_repeat1, + ACTIONS(8295), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187775] = 25, - ACTIONS(71), 1, + STATE(5672), 2, + sym_concatenation, + sym_array, + STATE(5440), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191648] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(7782), 1, + ACTIONS(8333), 1, + sym_word, + ACTIONS(8337), 1, anon_sym_LPAREN, - ACTIONS(7784), 1, + ACTIONS(8339), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7786), 1, + ACTIONS(8341), 1, anon_sym_DOLLAR, - ACTIONS(7788), 1, + ACTIONS(8343), 1, sym__special_character, - ACTIONS(7790), 1, + ACTIONS(8345), 1, anon_sym_DQUOTE, - ACTIONS(7794), 1, + ACTIONS(8347), 1, + anon_sym_SQUOTE, + ACTIONS(8349), 1, + sym_ansi_c_string, + ACTIONS(8351), 1, aux_sym_number_token1, - ACTIONS(7796), 1, + ACTIONS(8353), 1, aux_sym_number_token2, - ACTIONS(7798), 1, + ACTIONS(8355), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7802), 1, + ACTIONS(8357), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7804), 1, + ACTIONS(8359), 1, anon_sym_BQUOTE, - ACTIONS(7806), 1, + ACTIONS(8361), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7810), 1, - sym_variable_name, - ACTIONS(7816), 1, - sym__brace_start, - ACTIONS(7885), 1, - sym_word, - ACTIONS(7889), 1, - anon_sym_RBRACE3, - ACTIONS(7891), 1, + ACTIONS(8365), 1, + sym__comment_word, + ACTIONS(8367), 1, + sym__empty_value, + ACTIONS(8369), 1, sym_test_operator, - ACTIONS(7893), 1, - sym__expansion_word, - STATE(6278), 1, - sym_command_substitution, - STATE(6494), 1, + ACTIONS(8371), 1, + sym__brace_start, + STATE(1364), 1, aux_sym__literal_repeat1, - ACTIONS(7780), 2, + ACTIONS(8335), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7808), 2, + ACTIONS(8363), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(7887), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6442), 5, - sym_string, + STATE(1574), 2, + sym_concatenation, sym_array, - sym_simple_expansion, - sym_expansion, - sym_process_substitution, - STATE(6735), 5, + STATE(1056), 10, sym_arithmetic_expansion, sym_brace_expression, + sym_string, sym_translated_string, + sym_raw_string, sym_number, - sym__concatenation_in_expansion, - [187862] = 5, - ACTIONS(71), 1, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191733] = 24, + ACTIONS(3), 1, sym_comment, - STATE(3459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7770), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5315), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(1674), 1, anon_sym_DOLLAR, + ACTIONS(1682), 1, aux_sym_number_token1, + ACTIONS(1684), 1, aux_sym_number_token2, + ACTIONS(1688), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(5317), 21, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + ACTIONS(1702), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8373), 1, + sym_word, + ACTIONS(8377), 1, + anon_sym_LPAREN, + ACTIONS(8379), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(8381), 1, sym__special_character, + ACTIONS(8383), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(8385), 1, + anon_sym_SQUOTE, + ACTIONS(8387), 1, sym_ansi_c_string, + ACTIONS(8389), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [187909] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(3462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7770), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5319), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, + ACTIONS(8391), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(5321), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8397), 1, + sym__comment_word, + ACTIONS(8399), 1, + sym__empty_value, + ACTIONS(8401), 1, sym_test_operator, - sym__brace_start, + STATE(1371), 1, + aux_sym__literal_repeat1, + ACTIONS(8375), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8395), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [187956] = 5, - ACTIONS(71), 1, + STATE(1585), 2, + sym_concatenation, + sym_array, + STATE(1079), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191818] = 24, + ACTIONS(3), 1, sym_comment, - STATE(3462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(7770), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2167), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(8209), 1, + anon_sym_LPAREN, + ACTIONS(8211), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8213), 1, anon_sym_DOLLAR, + ACTIONS(8217), 1, + anon_sym_DQUOTE, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, + ACTIONS(8225), 1, aux_sym_number_token2, + ACTIONS(8227), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8231), 1, anon_sym_BQUOTE, + ACTIONS(8233), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8237), 1, + sym__comment_word, + ACTIONS(8239), 1, + sym__empty_value, + ACTIONS(8243), 1, + sym__brace_start, + ACTIONS(8403), 1, sym_word, - ACTIONS(2169), 21, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8405), 1, + sym__special_character, + ACTIONS(8407), 1, + sym_ansi_c_string, + ACTIONS(8409), 1, sym_test_operator, - sym__brace_start, + STATE(2001), 1, + aux_sym__literal_repeat1, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [188003] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(7631), 1, - anon_sym_DQUOTE, - ACTIONS(7635), 1, - sym_variable_name, - STATE(4316), 1, + STATE(2269), 2, + sym_concatenation, + sym_array, + STATE(2392), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(7633), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7629), 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(1227), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [188056] = 21, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [191903] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(8249), 1, + anon_sym_LPAREN, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(8253), 1, anon_sym_DOLLAR, - ACTIONS(3672), 1, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(8265), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(8269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3692), 1, + ACTIONS(8277), 1, + sym__comment_word, + ACTIONS(8279), 1, + sym__empty_value, + ACTIONS(8283), 1, sym__brace_start, - ACTIONS(7757), 1, + ACTIONS(8411), 1, + sym_word, + ACTIONS(8413), 1, sym__special_character, - ACTIONS(7759), 1, + ACTIONS(8415), 1, + sym_ansi_c_string, + ACTIONS(8417), 1, sym_test_operator, - ACTIONS(7897), 1, - aux_sym_heredoc_redirect_token1, - STATE(4920), 1, + STATE(4343), 1, aux_sym__literal_repeat1, - ACTIONS(3652), 2, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3485), 2, + STATE(4734), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(7751), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(7895), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4539), 9, + sym_array, + STATE(4873), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [188135] = 8, + [191988] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, - anon_sym_DQUOTE, - ACTIONS(7768), 1, - sym_variable_name, - STATE(4636), 1, - sym_string, - ACTIONS(1241), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(7766), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7764), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(2124), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 19, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(2132), 1, aux_sym_number_token1, + ACTIONS(2134), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [188188] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(7631), 1, - anon_sym_DQUOTE, - ACTIONS(7635), 1, - sym_variable_name, - STATE(4316), 1, - sym_string, - ACTIONS(7633), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7629), 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(1239), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [188241] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(4078), 1, - anon_sym_DQUOTE, - ACTIONS(7611), 1, - sym_variable_name, - STATE(4444), 1, - sym_string, - ACTIONS(7609), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7607), 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(1227), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [188294] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(4078), 1, - anon_sym_DQUOTE, - ACTIONS(7611), 1, - sym_variable_name, - STATE(4444), 1, - sym_string, - ACTIONS(7609), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7607), 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(1239), 20, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [188347] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3666), 1, + ACTIONS(2152), 1, + sym__brace_start, + ACTIONS(8167), 1, + anon_sym_LPAREN, + ACTIONS(8169), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, - anon_sym_DOLLAR, - ACTIONS(3672), 1, + ACTIONS(8173), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, - aux_sym_number_token1, - ACTIONS(3676), 1, - aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(8175), 1, + anon_sym_SQUOTE, + ACTIONS(8179), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(8181), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(8183), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3692), 1, - sym__brace_start, - ACTIONS(7757), 1, + ACTIONS(8187), 1, + sym__comment_word, + ACTIONS(8189), 1, + sym__empty_value, + ACTIONS(8419), 1, + sym_word, + ACTIONS(8421), 1, sym__special_character, - ACTIONS(7759), 1, + ACTIONS(8423), 1, + sym_ansi_c_string, + ACTIONS(8425), 1, sym_test_operator, - ACTIONS(7901), 1, - aux_sym_heredoc_redirect_token1, - STATE(4920), 1, + STATE(1988), 1, aux_sym__literal_repeat1, - ACTIONS(3652), 2, + ACTIONS(8165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, + ACTIONS(8185), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3485), 2, + STATE(2202), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(7751), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(7899), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4539), 9, + sym_array, + STATE(2344), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [188426] = 21, + [192073] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(7909), 1, + ACTIONS(8427), 1, + sym_word, + ACTIONS(8431), 1, + anon_sym_LPAREN, + ACTIONS(8433), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7912), 1, + ACTIONS(8435), 1, anon_sym_DOLLAR, - ACTIONS(7915), 1, + ACTIONS(8437), 1, sym__special_character, - ACTIONS(7918), 1, + ACTIONS(8439), 1, anon_sym_DQUOTE, - ACTIONS(7921), 1, + ACTIONS(8441), 1, + anon_sym_SQUOTE, + ACTIONS(8443), 1, + sym_ansi_c_string, + ACTIONS(8445), 1, aux_sym_number_token1, - ACTIONS(7924), 1, + ACTIONS(8447), 1, aux_sym_number_token2, - ACTIONS(7927), 1, + ACTIONS(8449), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7930), 1, + ACTIONS(8451), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7933), 1, + ACTIONS(8453), 1, anon_sym_BQUOTE, - ACTIONS(7936), 1, + ACTIONS(8455), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7942), 1, + ACTIONS(8459), 1, + sym__comment_word, + ACTIONS(8461), 1, + sym__empty_value, + ACTIONS(8463), 1, sym_test_operator, - ACTIONS(7945), 1, + ACTIONS(8465), 1, sym__brace_start, - STATE(4920), 1, + STATE(4425), 1, aux_sym__literal_repeat1, - ACTIONS(7906), 2, + ACTIONS(8429), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7939), 2, + ACTIONS(8457), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3485), 2, + STATE(4785), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(2181), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - ACTIONS(7903), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(4539), 9, + sym_array, + STATE(4301), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [188505] = 21, + [192158] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(8467), 1, + sym_word, + ACTIONS(8471), 1, + anon_sym_LPAREN, + ACTIONS(8473), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(8475), 1, anon_sym_DOLLAR, - ACTIONS(3672), 1, + ACTIONS(8477), 1, + sym__special_character, + ACTIONS(8479), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(8481), 1, + anon_sym_SQUOTE, + ACTIONS(8483), 1, + sym_ansi_c_string, + ACTIONS(8485), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(8487), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(8489), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(8491), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(8493), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(8495), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3692), 1, - sym__brace_start, - ACTIONS(7757), 1, - sym__special_character, - ACTIONS(7759), 1, + ACTIONS(8499), 1, + sym__comment_word, + ACTIONS(8501), 1, + sym__empty_value, + ACTIONS(8503), 1, sym_test_operator, - ACTIONS(7950), 1, - aux_sym_heredoc_redirect_token1, - STATE(4920), 1, + ACTIONS(8505), 1, + sym__brace_start, + STATE(1625), 1, aux_sym__literal_repeat1, - ACTIONS(3652), 2, + ACTIONS(8469), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, + ACTIONS(8497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3485), 2, + STATE(1820), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - ACTIONS(7751), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - ACTIONS(7948), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4539), 9, + sym_array, + STATE(1258), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [188584] = 3, - ACTIONS(71), 1, + [192243] = 24, + ACTIONS(3), 1, sym_comment, - ACTIONS(1352), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1354), 23, - 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_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8249), 1, + anon_sym_LPAREN, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [188626] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1304), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(8253), 1, anon_sym_DOLLAR, + ACTIONS(8257), 1, + anon_sym_DQUOTE, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, aux_sym_number_token1, + ACTIONS(8265), 1, aux_sym_number_token2, + ACTIONS(8267), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8269), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8271), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, - sym_test_operator, + ACTIONS(8273), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8277), 1, + sym__comment_word, + ACTIONS(8279), 1, + sym__empty_value, + ACTIONS(8283), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(8507), 1, + sym_word, + ACTIONS(8509), 1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(8511), 1, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [188668] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 23, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(8513), 1, sym_test_operator, - sym__brace_start, + STATE(4343), 1, + aux_sym__literal_repeat1, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [188710] = 23, + STATE(4734), 2, + sym_concatenation, + sym_array, + STATE(4646), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [192328] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(7952), 1, - sym_word, - ACTIONS(7956), 1, + ACTIONS(8209), 1, anon_sym_LPAREN, - ACTIONS(7958), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7960), 1, + ACTIONS(8213), 1, anon_sym_DOLLAR, - ACTIONS(7962), 1, - sym__special_character, - ACTIONS(7964), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7982), 1, + ACTIONS(8237), 1, sym__comment_word, - ACTIONS(7984), 1, + ACTIONS(8239), 1, sym__empty_value, - ACTIONS(7986), 1, - sym_test_operator, - ACTIONS(7988), 1, + ACTIONS(8243), 1, sym__brace_start, - STATE(4313), 1, + ACTIONS(8515), 1, + sym_word, + ACTIONS(8517), 1, + sym__special_character, + ACTIONS(8519), 1, + sym_ansi_c_string, + ACTIONS(8521), 1, + sym_test_operator, + STATE(2001), 1, aux_sym__literal_repeat1, - ACTIONS(7954), 2, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7966), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(7980), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4705), 2, + STATE(2269), 2, sym_concatenation, sym_array, - STATE(4830), 9, + STATE(1478), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [188792] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1328), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1330), 23, - 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_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [188834] = 23, + [192413] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(1878), 1, - anon_sym_DOLLAR, - ACTIONS(1884), 1, - aux_sym_number_token1, - ACTIONS(1886), 1, - aux_sym_number_token2, - ACTIONS(1890), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1904), 1, - sym__brace_start, - ACTIONS(7990), 1, - sym_word, - ACTIONS(7994), 1, + ACTIONS(8249), 1, anon_sym_LPAREN, - ACTIONS(7996), 1, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7998), 1, - sym__special_character, - ACTIONS(8000), 1, + ACTIONS(8253), 1, + anon_sym_DOLLAR, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(8004), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, + aux_sym_number_token1, + ACTIONS(8265), 1, + aux_sym_number_token2, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(8008), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8012), 1, + ACTIONS(8277), 1, sym__comment_word, - ACTIONS(8014), 1, + ACTIONS(8279), 1, sym__empty_value, - ACTIONS(8016), 1, + ACTIONS(8283), 1, + sym__brace_start, + ACTIONS(8523), 1, + sym_word, + ACTIONS(8525), 1, + sym__special_character, + ACTIONS(8527), 1, + sym_ansi_c_string, + ACTIONS(8529), 1, sym_test_operator, - STATE(1532), 1, + STATE(4343), 1, aux_sym__literal_repeat1, - ACTIONS(7992), 2, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8002), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8010), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1878), 2, + STATE(4734), 2, sym_concatenation, sym_array, - STATE(1205), 9, + STATE(5297), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [188916] = 23, + [192498] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8018), 1, + ACTIONS(1852), 1, + anon_sym_DOLLAR, + ACTIONS(1860), 1, + aux_sym_number_token1, + ACTIONS(1862), 1, + aux_sym_number_token2, + ACTIONS(1866), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1880), 1, + sym__brace_start, + ACTIONS(8531), 1, sym_word, - ACTIONS(8022), 1, + ACTIONS(8535), 1, anon_sym_LPAREN, - ACTIONS(8024), 1, + ACTIONS(8537), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8026), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 1, + ACTIONS(8539), 1, sym__special_character, - ACTIONS(8030), 1, + ACTIONS(8541), 1, anon_sym_DQUOTE, - ACTIONS(8034), 1, - aux_sym_number_token1, - ACTIONS(8036), 1, - aux_sym_number_token2, - ACTIONS(8038), 1, + ACTIONS(8543), 1, + anon_sym_SQUOTE, + ACTIONS(8545), 1, + sym_ansi_c_string, + ACTIONS(8547), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8040), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8042), 1, + ACTIONS(8549), 1, anon_sym_BQUOTE, - ACTIONS(8044), 1, + ACTIONS(8551), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8048), 1, + ACTIONS(8555), 1, sym__comment_word, - ACTIONS(8050), 1, + ACTIONS(8557), 1, sym__empty_value, - ACTIONS(8052), 1, + ACTIONS(8559), 1, sym_test_operator, - ACTIONS(8054), 1, - sym__brace_start, - STATE(4412), 1, + STATE(1644), 1, aux_sym__literal_repeat1, - ACTIONS(8020), 2, + ACTIONS(8533), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8032), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8046), 2, + ACTIONS(8553), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4728), 2, + STATE(1857), 2, sym_concatenation, sym_array, - STATE(4259), 9, + STATE(1265), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [188998] = 23, + [192583] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 1, - anon_sym_DOLLAR, - ACTIONS(2044), 1, - aux_sym_number_token1, - ACTIONS(2046), 1, - aux_sym_number_token2, - ACTIONS(2050), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, - sym__brace_start, - ACTIONS(8056), 1, + ACTIONS(8561), 1, sym_word, - ACTIONS(8060), 1, + ACTIONS(8565), 1, anon_sym_LPAREN, - ACTIONS(8062), 1, + ACTIONS(8567), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8064), 1, + ACTIONS(8569), 1, + anon_sym_DOLLAR, + ACTIONS(8571), 1, sym__special_character, - ACTIONS(8066), 1, + ACTIONS(8573), 1, anon_sym_DQUOTE, - ACTIONS(8070), 1, + ACTIONS(8575), 1, + anon_sym_SQUOTE, + ACTIONS(8577), 1, + sym_ansi_c_string, + ACTIONS(8579), 1, + aux_sym_number_token1, + ACTIONS(8581), 1, + aux_sym_number_token2, + ACTIONS(8583), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8072), 1, + ACTIONS(8585), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8587), 1, anon_sym_BQUOTE, - ACTIONS(8074), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8078), 1, + ACTIONS(8593), 1, sym__comment_word, - ACTIONS(8080), 1, + ACTIONS(8595), 1, sym__empty_value, - ACTIONS(8082), 1, + ACTIONS(8597), 1, sym_test_operator, - STATE(1809), 1, + ACTIONS(8599), 1, + sym__brace_start, + STATE(4656), 1, aux_sym__literal_repeat1, - ACTIONS(8058), 2, + ACTIONS(8563), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8068), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8076), 2, + ACTIONS(8591), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1976), 2, + STATE(5080), 2, sym_concatenation, sym_array, - STATE(2339), 9, + STATE(4461), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [189080] = 3, - ACTIONS(71), 1, + [192668] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 11, + ACTIONS(8161), 1, + aux_sym_concatenation_token1, + ACTIONS(8601), 1, + sym__concat, + STATE(3546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -238729,9 +242596,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1310), 23, + ACTIONS(1316), 21, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -238744,19 +242610,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [189122] = 3, - ACTIONS(71), 1, + [192717] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 11, + STATE(3528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8161), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5048), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -238768,9 +242638,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1334), 23, + ACTIONS(5050), 21, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -238783,58 +242652,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [189164] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 4, - sym_file_descriptor, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 30, - anon_sym_LPAREN_LPAREN, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [189206] = 3, - ACTIONS(71), 1, + [192764] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 11, + STATE(3528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8161), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5499), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -238846,9 +242680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1314), 23, + ACTIONS(5501), 21, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -238861,451 +242694,361 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [189248] = 23, + [192811] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8084), 1, + ACTIONS(8603), 1, sym_word, - ACTIONS(8088), 1, + ACTIONS(8607), 1, anon_sym_LPAREN, - ACTIONS(8090), 1, + ACTIONS(8609), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, + ACTIONS(8611), 1, anon_sym_DOLLAR, - ACTIONS(8094), 1, + ACTIONS(8613), 1, sym__special_character, - ACTIONS(8096), 1, + ACTIONS(8615), 1, anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(8617), 1, + anon_sym_SQUOTE, + ACTIONS(8619), 1, + sym_ansi_c_string, + ACTIONS(8621), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(8623), 1, aux_sym_number_token2, - ACTIONS(8104), 1, + ACTIONS(8625), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8627), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(8629), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(8631), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8114), 1, + ACTIONS(8635), 1, sym__comment_word, - ACTIONS(8116), 1, + ACTIONS(8637), 1, sym__empty_value, - ACTIONS(8118), 1, + ACTIONS(8639), 1, sym_test_operator, - ACTIONS(8120), 1, + ACTIONS(8641), 1, sym__brace_start, - STATE(1796), 1, + STATE(1799), 1, aux_sym__literal_repeat1, - ACTIONS(8086), 2, + ACTIONS(8605), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8098), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8112), 2, + ACTIONS(8633), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1949), 2, + STATE(2277), 2, sym_concatenation, sym_array, - STATE(2335), 9, + STATE(1433), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [189330] = 23, - ACTIONS(3), 1, + [192896] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(8122), 1, - sym_word, - ACTIONS(8126), 1, - anon_sym_LPAREN, - ACTIONS(8128), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8130), 1, + STATE(3551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8161), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5440), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8132), 1, - sym__special_character, - ACTIONS(8134), 1, - anon_sym_DQUOTE, - ACTIONS(8138), 1, aux_sym_number_token1, - ACTIONS(8140), 1, aux_sym_number_token2, - ACTIONS(8142), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8144), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8146), 1, anon_sym_BQUOTE, - ACTIONS(8148), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8152), 1, - sym__comment_word, - ACTIONS(8154), 1, - sym__empty_value, - ACTIONS(8156), 1, + sym_word, + ACTIONS(5442), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(8158), 1, sym__brace_start, - STATE(5474), 1, - aux_sym__literal_repeat1, - ACTIONS(8124), 2, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8136), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8150), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - STATE(5576), 2, - sym_concatenation, - sym_array, - STATE(5264), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189412] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8160), 1, - sym_word, - ACTIONS(8164), 1, - anon_sym_LPAREN, - ACTIONS(8166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8168), 1, - anon_sym_DOLLAR, - ACTIONS(8170), 1, sym__special_character, - ACTIONS(8172), 1, anon_sym_DQUOTE, - ACTIONS(8176), 1, - aux_sym_number_token1, - ACTIONS(8178), 1, - aux_sym_number_token2, - ACTIONS(8180), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8182), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8184), 1, - anon_sym_BQUOTE, - ACTIONS(8186), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8190), 1, - sym__comment_word, - ACTIONS(8192), 1, - sym__empty_value, - ACTIONS(8194), 1, - sym_test_operator, - ACTIONS(8196), 1, - sym__brace_start, - STATE(4460), 1, - aux_sym__literal_repeat1, - ACTIONS(8162), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8174), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8188), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(4899), 2, - sym_concatenation, - sym_array, - STATE(4323), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189494] = 23, - ACTIONS(3), 1, + [192943] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7956), 1, - anon_sym_LPAREN, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7960), 1, + STATE(3528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8161), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5538), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7968), 1, aux_sym_number_token1, - ACTIONS(7970), 1, aux_sym_number_token2, - ACTIONS(7972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7982), 1, - sym__comment_word, - ACTIONS(7984), 1, - sym__empty_value, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(8198), 1, sym_word, - ACTIONS(8200), 1, - sym__special_character, - ACTIONS(8204), 1, + ACTIONS(5540), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - STATE(4313), 1, - aux_sym__literal_repeat1, - ACTIONS(7954), 2, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8202), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4705), 2, - sym_concatenation, - sym_array, - STATE(5234), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [189576] = 23, + [192990] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, + ACTIONS(2086), 1, anon_sym_DOLLAR, - ACTIONS(2131), 1, + ACTIONS(2094), 1, aux_sym_number_token1, - ACTIONS(2133), 1, + ACTIONS(2096), 1, aux_sym_number_token2, - ACTIONS(2137), 1, + ACTIONS(2100), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2151), 1, + ACTIONS(2114), 1, sym__brace_start, - ACTIONS(8206), 1, + ACTIONS(8643), 1, sym_word, - ACTIONS(8210), 1, + ACTIONS(8647), 1, anon_sym_LPAREN, - ACTIONS(8212), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8214), 1, + ACTIONS(8651), 1, sym__special_character, - ACTIONS(8216), 1, + ACTIONS(8653), 1, anon_sym_DQUOTE, - ACTIONS(8220), 1, + ACTIONS(8655), 1, + anon_sym_SQUOTE, + ACTIONS(8657), 1, + sym_ansi_c_string, + ACTIONS(8659), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8222), 1, + ACTIONS(8661), 1, anon_sym_BQUOTE, - ACTIONS(8224), 1, + ACTIONS(8663), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8228), 1, + ACTIONS(8667), 1, sym__comment_word, - ACTIONS(8230), 1, + ACTIONS(8669), 1, sym__empty_value, - ACTIONS(8232), 1, + ACTIONS(8671), 1, sym_test_operator, - STATE(1748), 1, + STATE(1936), 1, aux_sym__literal_repeat1, - ACTIONS(8208), 2, + ACTIONS(8645), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8218), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8226), 2, + ACTIONS(8665), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1960), 2, + STATE(2211), 2, sym_concatenation, sym_array, - STATE(1405), 9, + STATE(1437), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [189658] = 3, - ACTIONS(71), 1, + [193075] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1316), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1318), 23, - sym_file_descriptor, - sym__concat, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(8677), 1, sym_variable_name, + STATE(4915), 1, + sym_string, + ACTIONS(1269), 2, sym_test_operator, sym__brace_start, + ACTIONS(8675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8673), 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(1267), 19, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [189700] = 3, - ACTIONS(71), 1, + sym_word, + [193128] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 11, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(8677), 1, + sym_variable_name, + STATE(4915), 1, + sym_string, + ACTIONS(1263), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(8675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8673), 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(1255), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, sym_word, - ACTIONS(1298), 23, + [193181] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8679), 1, + sym__special_character, + STATE(3544), 1, + aux_sym__literal_repeat1, + ACTIONS(5442), 4, sym_file_descriptor, - sym__concat, - sym_variable_name, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5440), 29, anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, + anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [189742] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1694), 1, - anon_sym_DOLLAR, - ACTIONS(1700), 1, aux_sym_number_token1, - ACTIONS(1702), 1, aux_sym_number_token2, - ACTIONS(1706), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1720), 1, - sym__brace_start, - ACTIONS(8234), 1, - sym_word, - ACTIONS(8238), 1, - anon_sym_LPAREN, - ACTIONS(8240), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8242), 1, - sym__special_character, - ACTIONS(8244), 1, - anon_sym_DQUOTE, - ACTIONS(8248), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8250), 1, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - ACTIONS(8252), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8256), 1, - sym__comment_word, - ACTIONS(8258), 1, - sym__empty_value, - ACTIONS(8260), 1, - sym_test_operator, - STATE(1323), 1, - aux_sym__literal_repeat1, - ACTIONS(8236), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8246), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8254), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1584), 2, - sym_concatenation, - sym_array, - 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, - [189824] = 3, - ACTIONS(71), 1, + sym_word, + [193228] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 11, + STATE(3528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8161), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2154), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -239317,9 +243060,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1346), 23, + ACTIONS(2156), 21, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -239332,19 +243074,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [189866] = 3, - ACTIONS(71), 1, + [193275] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 11, + STATE(3551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8161), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4971), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -239356,9 +243102,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 23, + ACTIONS(4973), 21, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -239371,19 +243116,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [189908] = 3, - ACTIONS(71), 1, + [193322] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 11, + STATE(3528), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8161), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5015), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -239395,9 +243144,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1338), 23, + ACTIONS(5017), 21, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -239410,196 +243158,277 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [189950] = 23, + [193369] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(4211), 1, + anon_sym_DQUOTE, + ACTIONS(8005), 1, + sym_variable_name, + STATE(4476), 1, + sym_string, + ACTIONS(8003), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8001), 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(1267), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [193422] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(4211), 1, + anon_sym_DQUOTE, + ACTIONS(8005), 1, + sym_variable_name, + STATE(4476), 1, + sym_string, + ACTIONS(8003), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8001), 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(1255), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [193475] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8088), 1, + ACTIONS(8249), 1, anon_sym_LPAREN, - ACTIONS(8090), 1, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, + ACTIONS(8253), 1, anon_sym_DOLLAR, - ACTIONS(8096), 1, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(8265), 1, aux_sym_number_token2, - ACTIONS(8104), 1, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8114), 1, + ACTIONS(8277), 1, sym__comment_word, - ACTIONS(8116), 1, + ACTIONS(8279), 1, sym__empty_value, - ACTIONS(8120), 1, + ACTIONS(8283), 1, sym__brace_start, - ACTIONS(8262), 1, + ACTIONS(8681), 1, sym_word, - ACTIONS(8264), 1, + ACTIONS(8683), 1, sym__special_character, - ACTIONS(8268), 1, + ACTIONS(8685), 1, + sym_ansi_c_string, + ACTIONS(8687), 1, sym_test_operator, - STATE(1796), 1, + STATE(4343), 1, aux_sym__literal_repeat1, - ACTIONS(8086), 2, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8266), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1949), 2, + STATE(4734), 2, sym_concatenation, sym_array, - STATE(1666), 9, + STATE(4484), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [190032] = 23, + [193560] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7956), 1, - anon_sym_LPAREN, - ACTIONS(7958), 1, + ACTIONS(8689), 1, + sym__special_character, + STATE(3544), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 4, + sym_file_descriptor, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1394), 29, + anon_sym_LPAREN_LPAREN, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(7960), 1, anon_sym_DOLLAR, - ACTIONS(7964), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(7970), 1, aux_sym_number_token2, - ACTIONS(7972), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7982), 1, - sym__comment_word, - ACTIONS(7984), 1, - sym__empty_value, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(8270), 1, - sym_word, - ACTIONS(8272), 1, - sym__special_character, - ACTIONS(8276), 1, - sym_test_operator, - STATE(4313), 1, - aux_sym__literal_repeat1, - ACTIONS(7954), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8274), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4705), 2, - sym_concatenation, - sym_array, - STATE(4575), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190114] = 23, + sym_word, + [193607] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 1, - anon_sym_DOLLAR, - ACTIONS(2044), 1, - aux_sym_number_token1, - ACTIONS(2046), 1, - aux_sym_number_token2, - ACTIONS(2050), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, - sym__brace_start, - ACTIONS(8060), 1, + ACTIONS(8692), 1, + sym_word, + ACTIONS(8696), 1, anon_sym_LPAREN, - ACTIONS(8062), 1, + ACTIONS(8698), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8066), 1, + ACTIONS(8700), 1, + anon_sym_DOLLAR, + ACTIONS(8702), 1, + sym__special_character, + ACTIONS(8704), 1, anon_sym_DQUOTE, - ACTIONS(8070), 1, + ACTIONS(8706), 1, + anon_sym_SQUOTE, + ACTIONS(8708), 1, + sym_ansi_c_string, + ACTIONS(8710), 1, + aux_sym_number_token1, + ACTIONS(8712), 1, + aux_sym_number_token2, + ACTIONS(8714), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8072), 1, + ACTIONS(8716), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8718), 1, anon_sym_BQUOTE, - ACTIONS(8074), 1, + ACTIONS(8720), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8078), 1, + ACTIONS(8724), 1, sym__comment_word, - ACTIONS(8080), 1, + ACTIONS(8726), 1, sym__empty_value, - ACTIONS(8278), 1, - sym_word, - ACTIONS(8280), 1, - sym__special_character, - ACTIONS(8284), 1, + ACTIONS(8728), 1, sym_test_operator, - STATE(1809), 1, + ACTIONS(8730), 1, + sym__brace_start, + STATE(3620), 1, aux_sym__literal_repeat1, - ACTIONS(8058), 2, + ACTIONS(8694), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8076), 2, + ACTIONS(8722), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8282), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1976), 2, + STATE(3713), 2, sym_concatenation, sym_array, - STATE(1680), 9, + STATE(3530), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [190196] = 3, - ACTIONS(71), 1, + [193692] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 11, + STATE(3546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8732), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -239611,9 +243440,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 23, + ACTIONS(1306), 21, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -239626,255 +243454,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [190238] = 23, + [193739] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(7868), 1, + anon_sym_DQUOTE, + ACTIONS(7872), 1, + sym_variable_name, + STATE(4372), 1, + sym_string, + ACTIONS(7870), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7866), 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(1267), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [193792] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(7868), 1, + anon_sym_DQUOTE, + ACTIONS(7872), 1, + sym_variable_name, + STATE(4372), 1, + sym_string, + ACTIONS(7870), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(7866), 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(1255), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [193845] = 24, ACTIONS(3), 1, sym_comment, - ACTIONS(8286), 1, + ACTIONS(8735), 1, sym_word, - ACTIONS(8290), 1, + ACTIONS(8739), 1, anon_sym_LPAREN, - ACTIONS(8292), 1, + ACTIONS(8741), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8294), 1, + ACTIONS(8743), 1, anon_sym_DOLLAR, - ACTIONS(8296), 1, + ACTIONS(8745), 1, sym__special_character, - ACTIONS(8298), 1, + ACTIONS(8747), 1, anon_sym_DQUOTE, - ACTIONS(8302), 1, + ACTIONS(8749), 1, + anon_sym_SQUOTE, + ACTIONS(8751), 1, + sym_ansi_c_string, + ACTIONS(8753), 1, aux_sym_number_token1, - ACTIONS(8304), 1, + ACTIONS(8755), 1, aux_sym_number_token2, - ACTIONS(8306), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8308), 1, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8310), 1, + ACTIONS(8761), 1, anon_sym_BQUOTE, - ACTIONS(8312), 1, + ACTIONS(8763), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8316), 1, + ACTIONS(8767), 1, sym__comment_word, - ACTIONS(8318), 1, + ACTIONS(8769), 1, sym__empty_value, - ACTIONS(8320), 1, + ACTIONS(8771), 1, sym_test_operator, - ACTIONS(8322), 1, + ACTIONS(8773), 1, sym__brace_start, - STATE(1314), 1, + STATE(2734), 1, aux_sym__literal_repeat1, - ACTIONS(8288), 2, + ACTIONS(8737), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8300), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8314), 2, + ACTIONS(8765), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1506), 2, + STATE(2779), 2, sym_concatenation, sym_array, - STATE(1054), 9, + STATE(2397), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [190320] = 23, - ACTIONS(3), 1, + [193930] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(2038), 1, + STATE(3551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8161), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(2044), 1, aux_sym_number_token1, - ACTIONS(2046), 1, aux_sym_number_token2, - ACTIONS(2050), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, - sym__brace_start, - ACTIONS(8060), 1, - anon_sym_LPAREN, - ACTIONS(8062), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8066), 1, - anon_sym_DQUOTE, - ACTIONS(8070), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8072), 1, anon_sym_BQUOTE, - ACTIONS(8074), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8078), 1, - sym__comment_word, - ACTIONS(8080), 1, - sym__empty_value, - ACTIONS(8324), 1, sym_word, - ACTIONS(8326), 1, - sym__special_character, - ACTIONS(8330), 1, + ACTIONS(1302), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - STATE(1809), 1, - aux_sym__literal_repeat1, - ACTIONS(8058), 2, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8076), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(8328), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1976), 2, - sym_concatenation, - sym_array, - STATE(1443), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190402] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8332), 1, - sym_word, - ACTIONS(8336), 1, - anon_sym_LPAREN, - ACTIONS(8338), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8340), 1, - anon_sym_DOLLAR, - ACTIONS(8342), 1, sym__special_character, - ACTIONS(8344), 1, anon_sym_DQUOTE, - ACTIONS(8348), 1, - aux_sym_number_token1, - ACTIONS(8350), 1, - aux_sym_number_token2, - ACTIONS(8352), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8354), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8356), 1, - anon_sym_BQUOTE, - ACTIONS(8358), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8362), 1, - sym__comment_word, - ACTIONS(8364), 1, - sym__empty_value, - ACTIONS(8366), 1, - sym_test_operator, - ACTIONS(8368), 1, - sym__brace_start, - STATE(3540), 1, - aux_sym__literal_repeat1, - ACTIONS(8334), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8346), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8360), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3547), 2, - sym_concatenation, - sym_array, - STATE(3473), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190484] = 23, - ACTIONS(3), 1, + [193977] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8370), 1, - sym_word, - ACTIONS(8374), 1, - anon_sym_LPAREN, - ACTIONS(8376), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, + ACTIONS(8161), 1, + aux_sym_concatenation_token1, + ACTIONS(8775), 1, + sym__concat, + STATE(3546), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8380), 1, - sym__special_character, - ACTIONS(8382), 1, - anon_sym_DQUOTE, - ACTIONS(8386), 1, aux_sym_number_token1, - ACTIONS(8388), 1, aux_sym_number_token2, - ACTIONS(8390), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8392), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8400), 1, - sym__comment_word, - ACTIONS(8402), 1, - sym__empty_value, - ACTIONS(8404), 1, + sym_word, + ACTIONS(1296), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(8406), 1, sym__brace_start, - STATE(2662), 1, - aux_sym__literal_repeat1, - ACTIONS(8372), 2, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8384), 2, - sym_raw_string, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, - ACTIONS(8398), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2792), 2, - sym_concatenation, - sym_array, - STATE(2363), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190566] = 3, - ACTIONS(71), 1, + [194026] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 11, + STATE(3551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8161), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5044), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -239886,9 +243718,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1322), 23, + ACTIONS(5046), 21, sym_file_descriptor, - sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -239901,255 +243732,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [190608] = 23, - ACTIONS(3), 1, + [194073] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(8408), 1, - sym_word, - ACTIONS(8412), 1, - anon_sym_LPAREN, - ACTIONS(8414), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8416), 1, + STATE(3551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(8161), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5493), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8418), 1, - sym__special_character, - ACTIONS(8420), 1, - anon_sym_DQUOTE, - ACTIONS(8424), 1, aux_sym_number_token1, - ACTIONS(8426), 1, aux_sym_number_token2, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8432), 1, anon_sym_BQUOTE, - ACTIONS(8434), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8438), 1, - sym__comment_word, - ACTIONS(8440), 1, - sym__empty_value, - ACTIONS(8442), 1, + sym_word, + ACTIONS(5495), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(8444), 1, sym__brace_start, - STATE(1911), 1, - aux_sym__literal_repeat1, - ACTIONS(8410), 2, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8422), 2, - sym_raw_string, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, - ACTIONS(8436), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(2201), 2, - sym_concatenation, - sym_array, - STATE(1316), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190690] = 23, - ACTIONS(3), 1, + [194120] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4213), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4215), 1, + ACTIONS(1368), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(4217), 1, - sym__special_character, - ACTIONS(4219), 1, - anon_sym_DQUOTE, - ACTIONS(4223), 1, aux_sym_number_token1, - ACTIONS(4225), 1, aux_sym_number_token2, - ACTIONS(4227), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4231), 1, anon_sym_BQUOTE, - ACTIONS(4233), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4243), 1, - sym__brace_start, - ACTIONS(8446), 1, sym_word, - ACTIONS(8448), 1, - anon_sym_LPAREN, - ACTIONS(8452), 1, - sym__comment_word, - ACTIONS(8454), 1, - sym__empty_value, - ACTIONS(8456), 1, + ACTIONS(1370), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - STATE(2644), 1, - aux_sym__literal_repeat1, - ACTIONS(4211), 2, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4235), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8450), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2756), 2, - sym_concatenation, - sym_array, - STATE(2393), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190772] = 23, - ACTIONS(3), 1, + [194162] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7956), 1, - anon_sym_LPAREN, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7960), 1, + ACTIONS(1344), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7968), 1, aux_sym_number_token1, - ACTIONS(7970), 1, aux_sym_number_token2, - ACTIONS(7972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7982), 1, - sym__comment_word, - ACTIONS(7984), 1, - sym__empty_value, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(8458), 1, sym_word, - ACTIONS(8460), 1, - sym__special_character, - ACTIONS(8464), 1, + ACTIONS(1346), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - STATE(4313), 1, - aux_sym__literal_repeat1, - ACTIONS(7954), 2, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8462), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4705), 2, - sym_concatenation, - sym_array, - STATE(4530), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190854] = 23, - ACTIONS(3), 1, + [194204] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7956), 1, - anon_sym_LPAREN, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7960), 1, + ACTIONS(1336), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7968), 1, aux_sym_number_token1, - ACTIONS(7970), 1, aux_sym_number_token2, - ACTIONS(7972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, - anon_sym_BQUOTE, - ACTIONS(7978), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7982), 1, - sym__comment_word, - ACTIONS(7984), 1, - sym__empty_value, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(8466), 1, + anon_sym_BQUOTE, sym_word, - ACTIONS(8468), 1, - sym__special_character, - ACTIONS(8472), 1, + ACTIONS(1338), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - STATE(4313), 1, - aux_sym__literal_repeat1, - ACTIONS(7954), 2, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8470), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4705), 2, - sym_concatenation, - sym_array, - STATE(4597), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [190936] = 3, - ACTIONS(71), 1, + [194246] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 11, + ACTIONS(1368), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240161,7 +243914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1342), 23, + ACTIONS(1370), 23, sym_file_descriptor, sym__concat, sym_variable_name, @@ -240179,16 +243932,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [190978] = 3, - ACTIONS(71), 1, + [194288] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 11, + ACTIONS(1352), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240200,7 +243953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 23, + ACTIONS(1354), 23, sym_file_descriptor, sym__concat, sym_variable_name, @@ -240218,190 +243971,94 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [191020] = 23, - ACTIONS(3), 1, + [194330] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(8088), 1, - anon_sym_LPAREN, - ACTIONS(8090), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, + ACTIONS(1384), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_DQUOTE, - ACTIONS(8100), 1, aux_sym_number_token1, - ACTIONS(8102), 1, aux_sym_number_token2, - ACTIONS(8104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8114), 1, - sym__comment_word, - ACTIONS(8116), 1, - sym__empty_value, - ACTIONS(8120), 1, - sym__brace_start, - ACTIONS(8474), 1, sym_word, - ACTIONS(8476), 1, - sym__special_character, - ACTIONS(8480), 1, + ACTIONS(1386), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - STATE(1796), 1, - aux_sym__literal_repeat1, - ACTIONS(8086), 2, + sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8478), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1949), 2, - sym_concatenation, - sym_array, - STATE(1365), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [191102] = 23, - ACTIONS(3), 1, + [194372] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(8482), 1, - sym_word, - ACTIONS(8486), 1, - anon_sym_LPAREN, - ACTIONS(8488), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8490), 1, + ACTIONS(1332), 11, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(8492), 1, - sym__special_character, - ACTIONS(8494), 1, - anon_sym_DQUOTE, - ACTIONS(8498), 1, aux_sym_number_token1, - ACTIONS(8500), 1, aux_sym_number_token2, - ACTIONS(8502), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8504), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8506), 1, anon_sym_BQUOTE, - ACTIONS(8508), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8512), 1, - sym__comment_word, - ACTIONS(8514), 1, - sym__empty_value, - ACTIONS(8516), 1, + sym_word, + ACTIONS(1334), 23, + sym_file_descriptor, + sym__concat, + sym_variable_name, sym_test_operator, - ACTIONS(8518), 1, sym__brace_start, - STATE(1719), 1, - aux_sym__literal_repeat1, - ACTIONS(8484), 2, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8496), 2, - sym_raw_string, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, - ACTIONS(8510), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1871), 2, - sym_concatenation, - sym_array, - STATE(1188), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [191184] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8522), 1, - anon_sym_SLASH, - ACTIONS(8524), 1, - anon_sym_PERCENT, - ACTIONS(8526), 1, - anon_sym_COLON, - ACTIONS(8530), 1, - anon_sym_RBRACE3, - ACTIONS(8532), 1, - anon_sym_AT, - ACTIONS(8534), 1, - anon_sym_STAR2, - STATE(6428), 1, - aux_sym__expansion_body_repeat1, - STATE(7195), 1, - sym__expansion_operator, - STATE(7390), 1, - sym__expansion_expression, - STATE(7433), 1, - sym__expansion_regex, - STATE(7442), 1, - sym__expansion_regex_replacement, - STATE(7447), 1, - sym__expansion_regex_removal, - STATE(7463), 1, - sym__expansion_max_length, - ACTIONS(8520), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(8540), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(8528), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(8538), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(8536), 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, - [191260] = 3, - ACTIONS(71), 1, + [194414] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 11, + ACTIONS(1372), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240413,7 +244070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1326), 23, + ACTIONS(1374), 23, sym_file_descriptor, sym__concat, sym_variable_name, @@ -240431,16 +244088,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [191302] = 3, - ACTIONS(71), 1, + [194456] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 11, + ACTIONS(1340), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240452,7 +244109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 23, + ACTIONS(1342), 23, sym_file_descriptor, sym__concat, sym_variable_name, @@ -240470,16 +244127,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [191344] = 3, - ACTIONS(71), 1, + [194498] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 11, + ACTIONS(1320), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240491,7 +244148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1358), 23, + ACTIONS(1322), 23, sym_file_descriptor, sym__concat, sym_variable_name, @@ -240509,20 +244166,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [191386] = 5, - ACTIONS(71), 1, + [194540] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(8544), 1, - sym__special_character, - STATE(3533), 1, - aux_sym__literal_repeat1, - ACTIONS(5587), 10, + ACTIONS(1360), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240532,9 +244185,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(5589), 21, + ACTIONS(1362), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -240547,22 +244202,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [191431] = 5, - ACTIONS(71), 1, + [194582] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(8544), 1, - sym__special_character, - STATE(3533), 1, - aux_sym__literal_repeat1, - ACTIONS(4577), 10, + ACTIONS(1348), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240572,9 +244224,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(4579), 21, + ACTIONS(1350), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -240587,22 +244241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [191476] = 5, - ACTIONS(71), 1, + [194624] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(8546), 1, - sym__special_character, - STATE(3533), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 10, + ACTIONS(1324), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240612,9 +244263,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(1362), 21, + ACTIONS(1326), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -240627,22 +244280,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [191521] = 5, - ACTIONS(71), 1, + [194666] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(8544), 1, - sym__special_character, - STATE(3533), 1, - aux_sym__literal_repeat1, - ACTIONS(4426), 10, + ACTIONS(1376), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240652,9 +244302,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(4428), 21, + ACTIONS(1378), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -240667,22 +244319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [191566] = 5, - ACTIONS(71), 1, + [194708] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(8544), 1, - sym__special_character, - STATE(3533), 1, - aux_sym__literal_repeat1, - ACTIONS(5593), 10, + ACTIONS(1304), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240692,9 +244341,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(5595), 21, + ACTIONS(1306), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -240707,60 +244358,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [191611] = 19, + [194750] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(8522), 1, + ACTIONS(8779), 1, anon_sym_SLASH, - ACTIONS(8524), 1, + ACTIONS(8781), 1, anon_sym_PERCENT, - ACTIONS(8526), 1, + ACTIONS(8783), 1, anon_sym_COLON, - ACTIONS(8549), 1, + ACTIONS(8787), 1, anon_sym_RBRACE3, - ACTIONS(8551), 1, + ACTIONS(8789), 1, anon_sym_AT, - STATE(6401), 1, + ACTIONS(8791), 1, + anon_sym_STAR2, + STATE(6460), 1, aux_sym__expansion_body_repeat1, - STATE(6806), 1, - sym__expansion_max_length, - STATE(6807), 1, - sym__expansion_operator, - STATE(7240), 1, - sym__expansion_regex_removal, - STATE(7488), 1, + STATE(6872), 1, sym__expansion_expression, - STATE(7527), 1, + STATE(6900), 1, sym__expansion_regex, - STATE(7529), 1, + STATE(6902), 1, sym__expansion_regex_replacement, - ACTIONS(8520), 2, + STATE(6903), 1, + sym__expansion_regex_removal, + STATE(6914), 1, + sym__expansion_max_length, + STATE(6916), 1, + sym__expansion_operator, + ACTIONS(8777), 2, anon_sym_COMMA, anon_sym_CARET, - ACTIONS(8540), 2, + ACTIONS(8797), 2, anon_sym_COMMA_COMMA, anon_sym_CARET_CARET, - ACTIONS(8528), 3, + ACTIONS(8785), 3, sym__immediate_double_hash, anon_sym_POUND, anon_sym_PERCENT_PERCENT, - ACTIONS(8538), 3, + ACTIONS(8795), 3, anon_sym_SLASH_SLASH, anon_sym_SLASH_POUND, anon_sym_SLASH_PERCENT, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(8536), 8, + ACTIONS(8793), 8, anon_sym_EQ2, anon_sym_COLON_EQ, anon_sym_DASH3, @@ -240769,40 +244423,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_PLUS, anon_sym_QMARK2, anon_sym_COLON_QMARK, - [191684] = 8, + [194826] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, + ACTIONS(1302), 4, sym_file_descriptor, - ACTIONS(8555), 1, - anon_sym_DQUOTE, - ACTIONS(8559), 1, - sym_variable_name, - STATE(5344), 1, - sym_string, - ACTIONS(8557), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8553), 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(1239), 18, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 30, + anon_sym_LPAREN_LPAREN, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -240810,102 +244445,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [191735] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(3630), 1, - anon_sym_DQUOTE, - ACTIONS(7194), 1, - sym_variable_name, - STATE(4297), 1, - sym_string, - ACTIONS(7192), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7190), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1239), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [194868] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1380), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1382), 23, + 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_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [191786] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(3630), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(7194), 1, - sym_variable_name, - STATE(4297), 1, - sym_string, - ACTIONS(7192), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7190), 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(1227), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [194910] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1388), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1390), 23, + 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_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, anon_sym_LT_LT_LT, - [191837] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8544), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, - STATE(3533), 1, - aux_sym__literal_repeat1, - ACTIONS(5165), 10, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [194952] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1364), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240915,9 +244553,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(5167), 21, + ACTIONS(1366), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -240930,65 +244570,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [191882] = 8, - ACTIONS(3), 1, + [194994] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(8555), 1, - anon_sym_DQUOTE, - ACTIONS(8559), 1, - sym_variable_name, - STATE(5344), 1, - sym_string, - ACTIONS(8557), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8553), 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(1227), 18, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(1328), 11, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1330), 23, + 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_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [191933] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8544), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, - STATE(3533), 1, - aux_sym__literal_repeat1, - ACTIONS(5315), 10, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [195036] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1356), 11, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -240998,9 +244631,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(5317), 21, + ACTIONS(1358), 23, sym_file_descriptor, + sym__concat, sym_variable_name, sym_test_operator, sym__brace_start, @@ -241013,168 +244648,218 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [195078] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3753), 1, + sym__special_character, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, + aux_sym_number_token1, + ACTIONS(3761), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, anon_sym_BQUOTE, + ACTIONS(3769), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3775), 1, + sym_test_operator, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(8801), 1, + aux_sym_heredoc_redirect_token1, + STATE(3590), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, + sym_concatenation, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [191978] = 19, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195157] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(8522), 1, - anon_sym_SLASH, - ACTIONS(8524), 1, - anon_sym_PERCENT, - ACTIONS(8526), 1, - anon_sym_COLON, - ACTIONS(8551), 1, - anon_sym_AT, - ACTIONS(8561), 1, - anon_sym_RBRACE3, - STATE(6444), 1, - aux_sym__expansion_body_repeat1, - STATE(7176), 1, - sym__expansion_expression, - STATE(7222), 1, - sym__expansion_regex, - STATE(7223), 1, - sym__expansion_regex_replacement, - STATE(7224), 1, - sym__expansion_regex_removal, - STATE(7271), 1, - sym__expansion_max_length, - STATE(7312), 1, - sym__expansion_operator, - ACTIONS(8520), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(8540), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(8528), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(8538), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(8536), 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, - [192051] = 19, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3753), 1, + sym__special_character, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, + aux_sym_number_token1, + ACTIONS(3761), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, + anon_sym_BQUOTE, + ACTIONS(3769), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3775), 1, + sym_test_operator, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(8803), 1, + aux_sym_heredoc_redirect_token1, + STATE(3590), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, + sym_concatenation, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195236] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(8522), 1, - anon_sym_SLASH, - ACTIONS(8524), 1, - anon_sym_PERCENT, - ACTIONS(8526), 1, - anon_sym_COLON, - ACTIONS(8551), 1, - anon_sym_AT, - ACTIONS(8563), 1, - anon_sym_RBRACE3, - STATE(6405), 1, - aux_sym__expansion_body_repeat1, - STATE(6975), 1, - sym__expansion_expression, - STATE(7379), 1, - sym__expansion_regex_replacement, - STATE(7416), 1, - sym__expansion_regex_removal, - STATE(7422), 1, - sym__expansion_max_length, - STATE(7443), 1, - sym__expansion_operator, - STATE(7480), 1, - sym__expansion_regex, - ACTIONS(8520), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(8540), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(8528), 3, - sym__immediate_double_hash, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(8807), 1, + anon_sym_DQUOTE, + ACTIONS(8811), 1, + sym_variable_name, + STATE(5420), 1, + sym_string, + ACTIONS(8809), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8805), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_DOLLAR, anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(8538), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(8536), 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, - [192124] = 19, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1255), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [195287] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8522), 1, + ACTIONS(8779), 1, anon_sym_SLASH, - ACTIONS(8524), 1, + ACTIONS(8781), 1, anon_sym_PERCENT, - ACTIONS(8526), 1, + ACTIONS(8783), 1, anon_sym_COLON, - ACTIONS(8530), 1, + ACTIONS(8813), 1, anon_sym_RBRACE3, - ACTIONS(8551), 1, + ACTIONS(8815), 1, anon_sym_AT, - STATE(6432), 1, + STATE(6486), 1, aux_sym__expansion_body_repeat1, - STATE(6835), 1, + STATE(7667), 1, + sym__expansion_expression, + STATE(7678), 1, + sym__expansion_regex, + STATE(7686), 1, sym__expansion_regex_replacement, - STATE(6884), 1, + STATE(7691), 1, sym__expansion_regex_removal, - STATE(6886), 1, + STATE(7701), 1, sym__expansion_max_length, - STATE(6911), 1, + STATE(7796), 1, sym__expansion_operator, - STATE(7305), 1, - sym__expansion_expression, - STATE(7526), 1, - sym__expansion_regex, - ACTIONS(8520), 2, + ACTIONS(8777), 2, anon_sym_COMMA, anon_sym_CARET, - ACTIONS(8540), 2, + ACTIONS(8797), 2, anon_sym_COMMA_COMMA, anon_sym_CARET_CARET, - ACTIONS(8528), 3, + ACTIONS(8785), 3, sym__immediate_double_hash, anon_sym_POUND, anon_sym_PERCENT_PERCENT, - ACTIONS(8538), 3, + ACTIONS(8795), 3, anon_sym_SLASH_SLASH, anon_sym_SLASH_POUND, anon_sym_SLASH_PERCENT, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(8536), 8, + ACTIONS(8793), 8, anon_sym_EQ2, anon_sym_COLON_EQ, anon_sym_DASH3, @@ -241183,47 +244868,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_PLUS, anon_sym_QMARK2, anon_sym_COLON_QMARK, - [192197] = 3, - ACTIONS(71), 1, + [195360] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(2167), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, anon_sym_DOLLAR, + ACTIONS(3753), 1, + sym__special_character, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, aux_sym_number_token1, + ACTIONS(3761), 1, aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(2169), 22, - sym_file_descriptor, - sym_variable_name, + ACTIONS(3767), 1, + anon_sym_BQUOTE, + ACTIONS(3769), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3775), 1, sym_test_operator, + ACTIONS(3777), 1, sym__brace_start, + ACTIONS(8817), 1, + aux_sym_heredoc_redirect_token1, + STATE(3590), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, + sym_concatenation, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195439] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3753), 1, sym__special_character, + ACTIONS(3755), 1, anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, + aux_sym_number_token1, + ACTIONS(3761), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, + anon_sym_BQUOTE, + ACTIONS(3769), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3775), 1, + sym_test_operator, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(8819), 1, + aux_sym_heredoc_redirect_token1, + STATE(3590), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, + sym_concatenation, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195518] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8825), 1, + anon_sym_RPAREN, + ACTIONS(8827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8829), 1, + anon_sym_DOLLAR, + ACTIONS(8831), 1, + sym__special_character, + ACTIONS(8833), 1, + anon_sym_DQUOTE, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, sym_ansi_c_string, + ACTIONS(8839), 1, + aux_sym_number_token1, + ACTIONS(8841), 1, + aux_sym_number_token2, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8847), 1, anon_sym_BQUOTE, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(8853), 1, + sym_test_operator, + ACTIONS(8855), 1, + sym__brace_start, + STATE(5435), 1, + aux_sym__literal_repeat1, + ACTIONS(8823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [192237] = 3, - ACTIONS(71), 1, + STATE(3586), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195597] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(5173), 10, + ACTIONS(8857), 1, + sym__special_character, + STATE(3632), 1, + aux_sym__literal_repeat1, + ACTIONS(5440), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -241234,7 +245057,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5175), 22, + ACTIONS(5442), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -241248,239 +245071,706 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [195642] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8829), 1, + anon_sym_DOLLAR, + ACTIONS(8831), 1, + sym__special_character, + ACTIONS(8833), 1, + anon_sym_DQUOTE, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, + aux_sym_number_token1, + ACTIONS(8841), 1, + aux_sym_number_token2, + ACTIONS(8843), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8847), 1, + anon_sym_BQUOTE, + ACTIONS(8849), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8853), 1, + sym_test_operator, + ACTIONS(8855), 1, + sym__brace_start, + ACTIONS(8859), 1, + anon_sym_RPAREN, + STATE(5435), 1, + aux_sym__literal_repeat1, + ACTIONS(8823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8851), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3592), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195721] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3753), 1, + sym__special_character, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, + aux_sym_number_token1, + ACTIONS(3761), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, + anon_sym_BQUOTE, + ACTIONS(3769), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3775), 1, + sym_test_operator, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(8861), 1, + aux_sym_heredoc_redirect_token1, + STATE(3590), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, + sym_concatenation, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195800] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8829), 1, + anon_sym_DOLLAR, + ACTIONS(8831), 1, + sym__special_character, + ACTIONS(8833), 1, + anon_sym_DQUOTE, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, + aux_sym_number_token1, + ACTIONS(8841), 1, + aux_sym_number_token2, + ACTIONS(8843), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8847), 1, + anon_sym_BQUOTE, + ACTIONS(8849), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8853), 1, + sym_test_operator, + ACTIONS(8855), 1, + sym__brace_start, + ACTIONS(8863), 1, + anon_sym_RPAREN, + STATE(5435), 1, + aux_sym__literal_repeat1, + ACTIONS(8823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8851), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3595), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195879] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8829), 1, + anon_sym_DOLLAR, + ACTIONS(8831), 1, + sym__special_character, + ACTIONS(8833), 1, + anon_sym_DQUOTE, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, + aux_sym_number_token1, + ACTIONS(8841), 1, + aux_sym_number_token2, + ACTIONS(8843), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8847), 1, + anon_sym_BQUOTE, + ACTIONS(8849), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8853), 1, + sym_test_operator, + ACTIONS(8855), 1, + sym__brace_start, + ACTIONS(8865), 1, + anon_sym_RPAREN, + STATE(5435), 1, + aux_sym__literal_repeat1, + ACTIONS(8823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8851), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3612), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [195958] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8829), 1, + anon_sym_DOLLAR, + ACTIONS(8831), 1, sym__special_character, + ACTIONS(8833), 1, anon_sym_DQUOTE, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, + aux_sym_number_token1, + ACTIONS(8841), 1, + aux_sym_number_token2, + ACTIONS(8843), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8847), 1, + anon_sym_BQUOTE, + ACTIONS(8849), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8853), 1, + sym_test_operator, + ACTIONS(8855), 1, + sym__brace_start, + ACTIONS(8867), 1, + anon_sym_RPAREN, + STATE(5435), 1, + aux_sym__literal_repeat1, + ACTIONS(8823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8851), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3599), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196037] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8829), 1, + anon_sym_DOLLAR, + ACTIONS(8831), 1, + sym__special_character, + ACTIONS(8833), 1, + anon_sym_DQUOTE, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, sym_ansi_c_string, + ACTIONS(8839), 1, + aux_sym_number_token1, + ACTIONS(8841), 1, + aux_sym_number_token2, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8847), 1, anon_sym_BQUOTE, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(8853), 1, + sym_test_operator, + ACTIONS(8855), 1, + sym__brace_start, + ACTIONS(8869), 1, + anon_sym_RPAREN, + STATE(5435), 1, + aux_sym__literal_repeat1, + ACTIONS(8823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [192277] = 21, + STATE(3593), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196116] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(8877), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(8879), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(8882), 1, + anon_sym_DOLLAR, + ACTIONS(8885), 1, + sym__special_character, + ACTIONS(8888), 1, + anon_sym_DQUOTE, + ACTIONS(8891), 1, + anon_sym_SQUOTE, + ACTIONS(8894), 1, + aux_sym_number_token1, + ACTIONS(8897), 1, + aux_sym_number_token2, + ACTIONS(8900), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8903), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8906), 1, + anon_sym_BQUOTE, + ACTIONS(8909), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8915), 1, + sym_test_operator, + ACTIONS(8918), 1, + sym__brace_start, + STATE(3590), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, + sym_concatenation, + ACTIONS(8871), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(8874), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8912), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196195] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8921), 1, + sym_word, + ACTIONS(8923), 1, + sym_ansi_c_string, + ACTIONS(8925), 1, + sym_test_operator, + STATE(6447), 1, + aux_sym__literal_repeat1, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6625), 2, + sym_concatenation, + sym__extglob_blob, + STATE(6409), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196274] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(3672), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3690), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8565), 1, - aux_sym_heredoc_redirect_token1, - STATE(3578), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(8927), 1, + anon_sym_RPAREN, + STATE(5435), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - ACTIONS(3652), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5109), 9, + STATE(3595), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [192353] = 21, - ACTIONS(71), 1, + [196353] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8821), 1, sym_word, - ACTIONS(8571), 1, - anon_sym_RPAREN, - ACTIONS(8573), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8855), 1, sym__brace_start, - STATE(5324), 1, + ACTIONS(8929), 1, + anon_sym_RPAREN, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(3595), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [192429] = 21, - ACTIONS(71), 1, + [196432] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8821), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8601), 1, + ACTIONS(8931), 1, anon_sym_RPAREN, - STATE(5324), 1, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(3598), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [192505] = 21, - ACTIONS(71), 1, + [196511] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(2170), 1, + anon_sym_RPAREN, + ACTIONS(8933), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(8939), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8942), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8945), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8948), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8951), 1, + anon_sym_SQUOTE, + ACTIONS(8954), 1, + sym_ansi_c_string, + ACTIONS(8957), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8960), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8963), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8966), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8969), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8972), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8978), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8981), 1, sym__brace_start, - ACTIONS(8603), 1, - anon_sym_RPAREN, - STATE(5324), 1, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8936), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8975), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3549), 2, + STATE(3595), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [192581] = 3, - ACTIONS(71), 1, + [196590] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(2171), 10, + ACTIONS(8857), 1, + sym__special_character, + STATE(3632), 1, + aux_sym__literal_repeat1, + ACTIONS(5899), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -241491,7 +245781,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(2173), 22, + ACTIONS(5901), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -241505,74 +245795,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [192621] = 21, - ACTIONS(3), 1, + [196635] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(3672), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3690), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8605), 1, - aux_sym_heredoc_redirect_token1, - STATE(3578), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(8984), 1, + anon_sym_RPAREN, + STATE(5435), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - ACTIONS(3652), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, + STATE(3605), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196714] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8829), 1, + anon_sym_DOLLAR, + ACTIONS(8831), 1, + sym__special_character, + ACTIONS(8833), 1, + anon_sym_DQUOTE, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, sym_ansi_c_string, + ACTIONS(8839), 1, + aux_sym_number_token1, + ACTIONS(8841), 1, + aux_sym_number_token2, + ACTIONS(8843), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8847), 1, + anon_sym_BQUOTE, + ACTIONS(8849), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8853), 1, + sym_test_operator, + ACTIONS(8855), 1, + sym__brace_start, + ACTIONS(8986), 1, + anon_sym_RPAREN, + STATE(5435), 1, + aux_sym__literal_repeat1, + ACTIONS(8823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8851), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3595), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [196793] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, sym_word, - STATE(5109), 9, + ACTIONS(8827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8829), 1, + anon_sym_DOLLAR, + ACTIONS(8831), 1, + sym__special_character, + ACTIONS(8833), 1, + anon_sym_DQUOTE, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, + aux_sym_number_token1, + ACTIONS(8841), 1, + aux_sym_number_token2, + ACTIONS(8843), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8847), 1, + anon_sym_BQUOTE, + ACTIONS(8849), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8853), 1, + sym_test_operator, + ACTIONS(8855), 1, + sym__brace_start, + ACTIONS(8988), 1, + anon_sym_RPAREN, + STATE(5435), 1, + aux_sym__literal_repeat1, + ACTIONS(8823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8851), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3595), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [192697] = 3, - ACTIONS(71), 1, + [196872] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(5871), 10, + ACTIONS(8857), 1, + sym__special_character, + STATE(3632), 1, + aux_sym__literal_repeat1, + ACTIONS(4971), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -241583,7 +245992,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5873), 22, + ACTIONS(4973), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -241597,1141 +246006,1682 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [192737] = 21, - ACTIONS(3), 1, + [196917] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(3672), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3690), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8607), 1, - aux_sym_heredoc_redirect_token1, - STATE(3578), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(8990), 1, + anon_sym_RPAREN, + STATE(5435), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - ACTIONS(3652), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5109), 9, + STATE(3607), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [192813] = 21, + [196996] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(8779), 1, + anon_sym_SLASH, + ACTIONS(8781), 1, + anon_sym_PERCENT, + ACTIONS(8783), 1, + anon_sym_COLON, + ACTIONS(8815), 1, + anon_sym_AT, + ACTIONS(8992), 1, + anon_sym_RBRACE3, + STATE(6463), 1, + aux_sym__expansion_body_repeat1, + STATE(7226), 1, + sym__expansion_expression, + STATE(7355), 1, + sym__expansion_regex, + STATE(7365), 1, + sym__expansion_regex_replacement, + STATE(7376), 1, + sym__expansion_regex_removal, + STATE(7495), 1, + sym__expansion_max_length, + STATE(7514), 1, + sym__expansion_operator, + ACTIONS(8777), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8797), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8785), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8795), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8793), 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, + [197069] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(3672), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3690), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8609), 1, - aux_sym_heredoc_redirect_token1, - STATE(3578), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(8994), 1, + anon_sym_RPAREN, + STATE(5435), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - ACTIONS(3652), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5109), 9, + STATE(3637), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [192889] = 21, - ACTIONS(71), 1, + [197148] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8821), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8611), 1, + ACTIONS(8996), 1, anon_sym_RPAREN, - STATE(5324), 1, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3563), 2, + STATE(3595), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [192965] = 8, - ACTIONS(3), 1, + [197227] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8615), 1, - anon_sym_DQUOTE, - ACTIONS(8619), 1, - sym_variable_name, - STATE(5158), 1, - sym_string, - ACTIONS(1235), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(8617), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8613), 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(1227), 16, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(8829), 1, + anon_sym_DOLLAR, + ACTIONS(8831), 1, sym__special_character, - sym_raw_string, + ACTIONS(8833), 1, + anon_sym_DQUOTE, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, + ACTIONS(8841), 1, aux_sym_number_token2, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(8847), 1, anon_sym_BQUOTE, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [193015] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1274), 22, - sym_file_descriptor, - sym_variable_name, + ACTIONS(8853), 1, sym_test_operator, + ACTIONS(8855), 1, sym__brace_start, + ACTIONS(8998), 1, + anon_sym_RPAREN, + STATE(5435), 1, + aux_sym__literal_repeat1, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8851), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3595), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197306] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(8829), 1, + anon_sym_DOLLAR, + ACTIONS(8831), 1, sym__special_character, + ACTIONS(8833), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, sym_ansi_c_string, + ACTIONS(8839), 1, + aux_sym_number_token1, + ACTIONS(8841), 1, + aux_sym_number_token2, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(8845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8847), 1, anon_sym_BQUOTE, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(8853), 1, + sym_test_operator, + ACTIONS(8855), 1, + sym__brace_start, + ACTIONS(9000), 1, + anon_sym_RPAREN, + STATE(5435), 1, + aux_sym__literal_repeat1, + ACTIONS(8823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [193055] = 21, - ACTIONS(71), 1, + STATE(3604), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197385] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8821), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8621), 1, + ACTIONS(9002), 1, anon_sym_RPAREN, - STATE(5324), 1, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3561), 2, + STATE(3595), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [193131] = 21, - ACTIONS(71), 1, + [197464] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8821), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8623), 1, + ACTIONS(9004), 1, anon_sym_RPAREN, - STATE(5324), 1, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(3611), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [193207] = 21, + [197543] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(8807), 1, + anon_sym_DQUOTE, + ACTIONS(8811), 1, + sym_variable_name, + STATE(5420), 1, + sym_string, + ACTIONS(8809), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8805), 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(1267), 18, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [197594] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(3672), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3690), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8625), 1, - aux_sym_heredoc_redirect_token1, - STATE(3578), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(9006), 1, + anon_sym_RPAREN, + STATE(5435), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - ACTIONS(3652), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5109), 9, + STATE(3613), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [193283] = 21, - ACTIONS(71), 1, + [197673] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8821), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8627), 1, + ACTIONS(9008), 1, anon_sym_RPAREN, - STATE(5324), 1, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(3595), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [193359] = 21, - ACTIONS(3), 1, + [197752] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(3672), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3690), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8629), 1, - aux_sym_heredoc_redirect_token1, - STATE(3578), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(9010), 1, + anon_sym_RPAREN, + STATE(5435), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - ACTIONS(3652), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5109), 9, + STATE(3595), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [193435] = 21, - ACTIONS(71), 1, + [197831] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8821), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8631), 1, + ACTIONS(9012), 1, anon_sym_RPAREN, - STATE(5324), 1, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3567), 2, + STATE(3595), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [193511] = 21, - ACTIONS(71), 1, + [197910] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8821), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8633), 1, + ACTIONS(9014), 1, anon_sym_RPAREN, - STATE(5324), 1, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, + ACTIONS(8851), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(3619), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [197989] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9016), 1, + sym_word, + ACTIONS(9018), 1, sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(9020), 1, + sym_test_operator, + STATE(6493), 1, + aux_sym__literal_repeat1, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3568), 2, + STATE(6702), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5119), 9, + sym__extglob_blob, + STATE(6395), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [193587] = 21, - ACTIONS(71), 1, + [198068] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8821), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8635), 1, + ACTIONS(9022), 1, anon_sym_RPAREN, - STATE(5324), 1, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(3617), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [193663] = 21, - ACTIONS(71), 1, + [198147] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8821), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8637), 1, + ACTIONS(9024), 1, anon_sym_RPAREN, - STATE(5324), 1, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(3595), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [193739] = 21, - ACTIONS(71), 1, + [198226] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 1, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(6496), 1, + ACTIONS(3753), 1, + sym__special_character, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(6498), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(6502), 1, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, + ACTIONS(3767), 1, + anon_sym_BQUOTE, + ACTIONS(3769), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3775), 1, + sym_test_operator, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(7200), 1, + ACTIONS(9026), 1, + aux_sym_heredoc_redirect_token1, + STATE(3590), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, + sym_concatenation, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198305] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, + ACTIONS(8829), 1, + anon_sym_DOLLAR, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(7204), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, + aux_sym_number_token1, + ACTIONS(8841), 1, + aux_sym_number_token2, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, + ACTIONS(8845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(7212), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8639), 1, - sym_word, - ACTIONS(8643), 1, + ACTIONS(8853), 1, sym_test_operator, - STATE(6370), 1, + ACTIONS(8855), 1, + sym__brace_start, + ACTIONS(9028), 1, + anon_sym_RPAREN, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(7196), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7214), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8641), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6668), 2, + STATE(3595), 2, sym_concatenation, - sym__extglob_blob, - STATE(6366), 9, + aux_sym_for_statement_repeat1, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [193815] = 8, - ACTIONS(3), 1, + [198384] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(8615), 1, - anon_sym_DQUOTE, - ACTIONS(8619), 1, + ACTIONS(8857), 1, + sym__special_character, + STATE(3632), 1, + aux_sym__literal_repeat1, + ACTIONS(5493), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5495), 21, + sym_file_descriptor, sym_variable_name, - STATE(5158), 1, - sym_string, - ACTIONS(1241), 2, sym_test_operator, sym__brace_start, - ACTIONS(8617), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8613), 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(1239), 16, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [193865] = 21, - ACTIONS(71), 1, + [198429] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(8567), 1, - sym_word, - ACTIONS(8573), 1, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(3753), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(3767), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(3769), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(3775), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(8645), 1, - anon_sym_RPAREN, - STATE(5324), 1, + ACTIONS(9030), 1, + aux_sym_heredoc_redirect_token1, + STATE(3590), 1, + aux_sym__heredoc_command, + STATE(5336), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + STATE(5504), 1, + sym_concatenation, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198508] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8779), 1, + anon_sym_SLASH, + ACTIONS(8781), 1, + anon_sym_PERCENT, + ACTIONS(8783), 1, + anon_sym_COLON, + ACTIONS(8815), 1, + anon_sym_AT, + ACTIONS(9032), 1, + anon_sym_RBRACE3, + STATE(6517), 1, + aux_sym__expansion_body_repeat1, + STATE(7117), 1, + sym__expansion_expression, + STATE(7147), 1, + sym__expansion_regex, + STATE(7149), 1, + sym__expansion_regex_replacement, + STATE(7150), 1, + sym__expansion_regex_removal, + STATE(7151), 1, + sym__expansion_max_length, + STATE(7175), 1, + sym__expansion_operator, + ACTIONS(8777), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8797), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8785), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8795), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8793), 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, + [198581] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, + aux_sym_number_token1, + ACTIONS(6685), 1, + aux_sym_number_token2, + ACTIONS(6689), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(6699), 1, + sym_extglob_pattern, + ACTIONS(6701), 1, + sym__brace_start, + ACTIONS(7166), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(7168), 1, + sym__special_character, + ACTIONS(7170), 1, + anon_sym_DQUOTE, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7176), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7178), 1, + anon_sym_BQUOTE, + ACTIONS(7180), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9034), 1, + sym_word, + ACTIONS(9036), 1, sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(9038), 1, + sym_test_operator, + STATE(6570), 1, + aux_sym__literal_repeat1, + ACTIONS(7164), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3595), 2, + STATE(6834), 2, sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5119), 9, + sym__extglob_blob, + STATE(6514), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [193941] = 21, - ACTIONS(71), 1, + [198660] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8821), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8647), 1, + ACTIONS(9040), 1, anon_sym_RPAREN, - STATE(5324), 1, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3577), 2, + STATE(3627), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [194017] = 21, - ACTIONS(71), 1, + [198739] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6490), 1, + ACTIONS(8857), 1, + sym__special_character, + STATE(3632), 1, + aux_sym__literal_repeat1, + ACTIONS(5044), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(6496), 1, aux_sym_number_token1, - ACTIONS(6498), 1, aux_sym_number_token2, - ACTIONS(6502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, + sym_word, + ACTIONS(5046), 21, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(7200), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, anon_sym_BQUOTE, - ACTIONS(7212), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8649), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [198784] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8779), 1, + anon_sym_SLASH, + ACTIONS(8781), 1, + anon_sym_PERCENT, + ACTIONS(8783), 1, + anon_sym_COLON, + ACTIONS(8787), 1, + anon_sym_RBRACE3, + ACTIONS(8815), 1, + anon_sym_AT, + STATE(6510), 1, + aux_sym__expansion_body_repeat1, + STATE(6995), 1, + sym__expansion_expression, + STATE(7011), 1, + sym__expansion_regex, + STATE(7077), 1, + sym__expansion_regex_replacement, + STATE(7094), 1, + sym__expansion_regex_removal, + STATE(7107), 1, + sym__expansion_max_length, + STATE(7131), 1, + sym__expansion_operator, + ACTIONS(8777), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8797), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8785), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8795), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(8793), 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, + [198857] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8821), 1, sym_word, - ACTIONS(8653), 1, + ACTIONS(8827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8829), 1, + anon_sym_DOLLAR, + ACTIONS(8831), 1, + sym__special_character, + ACTIONS(8833), 1, + anon_sym_DQUOTE, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, + aux_sym_number_token1, + ACTIONS(8841), 1, + aux_sym_number_token2, + ACTIONS(8843), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8847), 1, + anon_sym_BQUOTE, + ACTIONS(8849), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8853), 1, sym_test_operator, - STATE(6524), 1, + ACTIONS(8855), 1, + sym__brace_start, + ACTIONS(9042), 1, + anon_sym_RPAREN, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(7196), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7214), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8651), 2, + STATE(3595), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, - sym_ansi_c_string, - STATE(6763), 2, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [198936] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3749), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3753), 1, + sym__special_character, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, + aux_sym_number_token1, + ACTIONS(3761), 1, + aux_sym_number_token2, + ACTIONS(3763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, + anon_sym_BQUOTE, + ACTIONS(3769), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3775), 1, + sym_test_operator, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(9044), 1, + aux_sym_heredoc_redirect_token1, + STATE(3590), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, sym_concatenation, - sym__extglob_blob, - STATE(6380), 9, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3771), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5161), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [194093] = 21, - ACTIONS(71), 1, + [199015] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8821), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8655), 1, + ACTIONS(9046), 1, anon_sym_RPAREN, - STATE(5324), 1, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3575), 2, + STATE(3633), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [194169] = 21, - ACTIONS(71), 1, + [199094] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(8567), 1, - sym_word, - ACTIONS(8573), 1, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(3753), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(3763), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(3767), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(3769), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(3775), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(8657), 1, - anon_sym_RPAREN, - STATE(5324), 1, + ACTIONS(9048), 1, + aux_sym_heredoc_redirect_token1, + STATE(3590), 1, + aux_sym__heredoc_command, + STATE(5336), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + STATE(5504), 1, + sym_concatenation, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(3771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5161), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [194245] = 8, + [199173] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, + ACTIONS(1263), 1, sym_file_descriptor, - ACTIONS(8661), 1, + ACTIONS(3711), 1, anon_sym_DQUOTE, - ACTIONS(8665), 1, + ACTIONS(7701), 1, sym_variable_name, - STATE(5430), 1, + STATE(4345), 1, sym_string, - ACTIONS(8663), 2, + ACTIONS(7699), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8659), 9, + ACTIONS(7697), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -242741,7 +247691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 17, + ACTIONS(1255), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -242750,7 +247700,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -242759,120 +247708,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [194295] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [199224] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, - sym_word, - ACTIONS(8573), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, - anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9050), 1, sym__special_character, - ACTIONS(8579), 1, - anon_sym_DQUOTE, - ACTIONS(8583), 1, + STATE(3632), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(8585), 1, aux_sym_number_token2, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, - anon_sym_BQUOTE, - ACTIONS(8593), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + sym_word, + ACTIONS(1396), 21, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(8599), 1, sym__brace_start, - ACTIONS(8667), 1, - anon_sym_RPAREN, - STATE(5324), 1, - aux_sym__literal_repeat1, - ACTIONS(8569), 2, anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, - ACTIONS(8595), 2, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5119), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [194371] = 21, - ACTIONS(3), 1, + [199269] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8675), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(8677), 1, + ACTIONS(8821), 1, + sym_word, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8680), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8683), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8686), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8689), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8692), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8695), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8698), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8701), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8704), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8710), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8713), 1, + ACTIONS(8855), 1, sym__brace_start, - STATE(3578), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(9053), 1, + anon_sym_RPAREN, + STATE(5435), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - ACTIONS(8672), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8707), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8669), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5109), 9, + STATE(3595), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [194447] = 3, - ACTIONS(71), 1, + [199348] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(5888), 10, + ACTIONS(8857), 1, + sym__special_character, + STATE(3632), 1, + aux_sym__literal_repeat1, + ACTIONS(5905), 10, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, @@ -242883,7 +247825,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5890), 22, + ACTIONS(5907), 21, sym_file_descriptor, sym_variable_name, sym_test_operator, @@ -242897,72 +247839,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [194487] = 8, + [199393] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, - anon_sym_DQUOTE, - ACTIONS(7768), 1, - sym_variable_name, - STATE(4636), 1, - sym_string, - ACTIONS(1241), 2, - sym_test_operator, - sym__brace_start, - ACTIONS(7766), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7764), 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(1239), 16, - anon_sym_LPAREN_LPAREN, - aux_sym_heredoc_redirect_token1, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3749), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3753), 1, sym__special_character, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(3757), 1, + anon_sym_SQUOTE, + ACTIONS(3759), 1, aux_sym_number_token1, + ACTIONS(3761), 1, aux_sym_number_token2, + ACTIONS(3763), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3767), 1, anon_sym_BQUOTE, + ACTIONS(3769), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(3775), 1, + sym_test_operator, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(9055), 1, + aux_sym_heredoc_redirect_token1, + STATE(3590), 1, + aux_sym__heredoc_command, + STATE(5336), 1, + aux_sym__literal_repeat1, + STATE(5504), 1, + sym_concatenation, + ACTIONS(3733), 2, + sym_ansi_c_string, + sym_word, + ACTIONS(3735), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(3771), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [194537] = 8, + STATE(5161), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [199472] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, + ACTIONS(1269), 1, sym_file_descriptor, - ACTIONS(4078), 1, + ACTIONS(3711), 1, anon_sym_DQUOTE, - ACTIONS(7611), 1, + ACTIONS(7701), 1, sym_variable_name, - STATE(4444), 1, + STATE(4345), 1, sym_string, - ACTIONS(7609), 2, + ACTIONS(7699), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7607), 9, + ACTIONS(7697), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -242972,7 +247928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 17, + ACTIONS(1267), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -242990,333 +247946,378 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [194587] = 21, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [199523] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8821), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(8827), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8831), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8837), 1, + sym_ansi_c_string, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(8853), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(8716), 1, + ACTIONS(9057), 1, anon_sym_RPAREN, - STATE(5324), 1, + STATE(5435), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(3595), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(5114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [194663] = 3, - ACTIONS(71), 1, + [199602] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4511), 10, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(9061), 1, + anon_sym_DQUOTE, + ACTIONS(9065), 1, + sym_variable_name, + STATE(5511), 1, + sym_string, + ACTIONS(9063), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9059), 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(1255), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [199652] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(3823), 1, anon_sym_DOLLAR, + ACTIONS(3831), 1, aux_sym_number_token1, + ACTIONS(3833), 1, aux_sym_number_token2, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(3847), 1, + sym__brace_start, + ACTIONS(4185), 1, sym_word, - ACTIONS(4513), 22, - sym_file_descriptor, - sym_variable_name, + ACTIONS(4189), 1, sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(9071), 1, sym__special_character, + ACTIONS(9073), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9077), 1, sym_ansi_c_string, + ACTIONS(9079), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9081), 1, anon_sym_BQUOTE, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [194703] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8567), 1, - sym_word, - ACTIONS(8573), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, - anon_sym_DOLLAR, - ACTIONS(8577), 1, - sym__special_character, - ACTIONS(8579), 1, - anon_sym_DQUOTE, - ACTIONS(8583), 1, - aux_sym_number_token1, - ACTIONS(8585), 1, - aux_sym_number_token2, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, - anon_sym_BQUOTE, - ACTIONS(8593), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, - sym_test_operator, - ACTIONS(8599), 1, - sym__brace_start, - ACTIONS(8718), 1, - anon_sym_RPAREN, - STATE(5324), 1, + STATE(2301), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3586), 2, + STATE(794), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(2236), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [194779] = 21, - ACTIONS(71), 1, + [199728] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(3419), 1, + anon_sym_DOLLAR, + ACTIONS(3427), 1, + aux_sym_number_token1, + ACTIONS(3429), 1, + aux_sym_number_token2, + ACTIONS(3433), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3443), 1, + sym__brace_start, + ACTIONS(3680), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(3684), 1, + sym_test_operator, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, - anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9091), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, - aux_sym_number_token1, - ACTIONS(8585), 1, - aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9097), 1, + sym_ansi_c_string, + ACTIONS(9099), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(9101), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, - sym_test_operator, - ACTIONS(8599), 1, - sym__brace_start, - ACTIONS(8720), 1, - anon_sym_RPAREN, - STATE(5324), 1, + STATE(2246), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(9087), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(9105), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3587), 2, + STATE(698), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(1796), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [194855] = 21, - ACTIONS(71), 1, + [199804] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(9107), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(9111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(9113), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9115), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(9117), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(9119), 1, + anon_sym_SQUOTE, + ACTIONS(9121), 1, + sym_ansi_c_string, + ACTIONS(9123), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(9125), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(9127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(9129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(9131), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(9133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(9137), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(9139), 1, sym__brace_start, - ACTIONS(8722), 1, - anon_sym_RPAREN, - STATE(5324), 1, + STATE(2533), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(9109), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(9135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(804), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(2310), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [194931] = 21, - ACTIONS(71), 1, + [199880] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(3823), 1, + anon_sym_DOLLAR, + ACTIONS(3831), 1, + aux_sym_number_token1, + ACTIONS(3833), 1, + aux_sym_number_token2, + ACTIONS(3837), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3847), 1, + sym__brace_start, + ACTIONS(4185), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(4189), 1, + sym_test_operator, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, - anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9071), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, - aux_sym_number_token1, - ACTIONS(8585), 1, - aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9077), 1, + sym_ansi_c_string, + ACTIONS(9079), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, - sym_test_operator, - ACTIONS(8599), 1, - sym__brace_start, - ACTIONS(8724), 1, - anon_sym_RPAREN, - STATE(5324), 1, + STATE(2301), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(761), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(2236), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [195007] = 8, + [199956] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6021), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(6033), 22, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [199996] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, + ACTIONS(1269), 1, sym_file_descriptor, - ACTIONS(8728), 1, + ACTIONS(9143), 1, anon_sym_DQUOTE, - ACTIONS(8732), 1, + ACTIONS(9147), 1, sym_variable_name, - STATE(5493), 1, + STATE(5467), 1, sym_string, - ACTIONS(8730), 2, + ACTIONS(9145), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8726), 9, + ACTIONS(9141), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -243326,7 +248327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 17, + ACTIONS(1267), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -243344,21 +248345,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [195057] = 8, + [200046] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, + ACTIONS(1263), 1, sym_file_descriptor, - ACTIONS(8728), 1, + ACTIONS(9143), 1, anon_sym_DQUOTE, - ACTIONS(8732), 1, + ACTIONS(9147), 1, sym_variable_name, - STATE(5493), 1, + STATE(5467), 1, sym_string, - ACTIONS(8730), 2, + ACTIONS(9145), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8726), 9, + ACTIONS(9141), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -243368,7 +248369,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 17, + ACTIONS(1255), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -243386,1143 +248387,1693 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [195107] = 21, - ACTIONS(71), 1, + [200096] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(9107), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(9111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(9113), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9115), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(9117), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(9119), 1, + anon_sym_SQUOTE, + ACTIONS(9121), 1, + sym_ansi_c_string, + ACTIONS(9123), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(9125), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(9127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(9129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(9131), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(9133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(9137), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(9139), 1, sym__brace_start, - ACTIONS(8734), 1, - anon_sym_RPAREN, - STATE(5324), 1, + STATE(2533), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(9109), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(9135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(815), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(2310), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [195183] = 3, - ACTIONS(71), 1, + [200172] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(5849), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(8677), 1, + sym_variable_name, + STATE(4915), 1, + sym_string, + ACTIONS(1263), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(8675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8673), 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(1255), 16, + anon_sym_LPAREN_LPAREN, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(5861), 22, - sym_file_descriptor, + [200222] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9151), 1, + anon_sym_DQUOTE, + ACTIONS(9155), 1, sym_variable_name, + STATE(5283), 1, + sym_string, + ACTIONS(1269), 2, sym_test_operator, sym__brace_start, + ACTIONS(9153), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9149), 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(1267), 16, anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [195223] = 3, - ACTIONS(71), 1, + sym_word, + [200272] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 10, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, + ACTIONS(9151), 1, + anon_sym_DQUOTE, + ACTIONS(9155), 1, + sym_variable_name, + STATE(5283), 1, + sym_string, + ACTIONS(1263), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(9153), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9149), 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(1255), 16, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(4595), 22, - sym_file_descriptor, - sym_variable_name, - sym_test_operator, + [200322] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1446), 1, + anon_sym_DOLLAR, + ACTIONS(1454), 1, + aux_sym_number_token1, + ACTIONS(1456), 1, + aux_sym_number_token2, + ACTIONS(1460), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1472), 1, sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9157), 1, + sym_word, + ACTIONS(9161), 1, anon_sym_DOLLAR_LBRACK, + ACTIONS(9163), 1, sym__special_character, + ACTIONS(9165), 1, anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(9167), 1, + anon_sym_SQUOTE, + ACTIONS(9169), 1, sym_ansi_c_string, + ACTIONS(9171), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(9173), 1, anon_sym_BQUOTE, + ACTIONS(9175), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(9179), 1, + sym_test_operator, + ACTIONS(9181), 1, + sym_regex, + STATE(1057), 1, + aux_sym__literal_repeat1, + STATE(1298), 1, + sym_concatenation, + ACTIONS(9159), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9177), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [195263] = 21, - ACTIONS(3), 1, + STATE(887), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200400] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3666), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(8213), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, - sym__special_character, - ACTIONS(3672), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(3678), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3690), 1, - sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(8243), 1, sym__brace_start, - ACTIONS(8736), 1, - aux_sym_heredoc_redirect_token1, - STATE(3578), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(8517), 1, + sym__special_character, + ACTIONS(9183), 1, + sym_word, + ACTIONS(9185), 1, + sym_ansi_c_string, + ACTIONS(9187), 1, + sym_test_operator, + STATE(1873), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - ACTIONS(3652), 2, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, + STATE(636), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1391), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, - sym_ansi_c_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200476] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(9189), 1, sym_word, - STATE(5109), 9, + ACTIONS(9191), 1, + anon_sym_RBRACK, + ACTIONS(9197), 1, + sym_test_operator, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9193), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9195), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [195339] = 21, - ACTIONS(71), 1, + [200550] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, - sym_word, - ACTIONS(8573), 1, + ACTIONS(2688), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(2690), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(2692), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(2694), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(2696), 1, + anon_sym_SQUOTE, + ACTIONS(2700), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(2702), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(2704), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(2706), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(2708), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(2710), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, - sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(2718), 1, sym__brace_start, - ACTIONS(8738), 1, - anon_sym_RPAREN, - STATE(5324), 1, + ACTIONS(9199), 1, + sym_word, + ACTIONS(9201), 1, + sym_ansi_c_string, + ACTIONS(9203), 1, + sym_test_operator, + ACTIONS(9205), 1, + sym_regex, + STATE(2423), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + STATE(2553), 1, + sym_concatenation, + ACTIONS(2682), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(2712), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3590), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(2134), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [195415] = 21, - ACTIONS(71), 1, + [200628] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(4838), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(4842), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(4844), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, - sym__special_character, - ACTIONS(8579), 1, + ACTIONS(4848), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(4850), 1, + anon_sym_SQUOTE, + ACTIONS(4852), 1, + sym_ansi_c_string, + ACTIONS(4854), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(4856), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(4858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(4860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(4862), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(4864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(4868), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(4870), 1, sym__brace_start, - ACTIONS(8740), 1, - anon_sym_RPAREN, - STATE(5324), 1, + ACTIONS(9207), 1, + sym__special_character, + STATE(2874), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(4840), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(4866), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(864), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(2615), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [195491] = 8, - ACTIONS(3), 1, + [200704] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(7631), 1, + ACTIONS(1590), 1, + anon_sym_DOLLAR, + ACTIONS(1598), 1, + aux_sym_number_token1, + ACTIONS(1600), 1, + aux_sym_number_token2, + ACTIONS(1604), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1616), 1, + sym__brace_start, + ACTIONS(9209), 1, + sym_word, + ACTIONS(9213), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9215), 1, + sym__special_character, + ACTIONS(9217), 1, anon_sym_DQUOTE, - ACTIONS(7635), 1, - sym_variable_name, - STATE(4316), 1, + ACTIONS(9219), 1, + anon_sym_SQUOTE, + ACTIONS(9221), 1, + sym_ansi_c_string, + ACTIONS(9223), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9225), 1, + anon_sym_BQUOTE, + ACTIONS(9227), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9231), 1, + sym_test_operator, + ACTIONS(9233), 1, + sym_regex, + STATE(1417), 1, + aux_sym__literal_repeat1, + STATE(1649), 1, + sym_concatenation, + ACTIONS(9211), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9229), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1031), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(7633), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7629), 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(1227), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [195541] = 21, - ACTIONS(71), 1, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200782] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(4838), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(4842), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(4844), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, - sym__special_character, - ACTIONS(8579), 1, + ACTIONS(4848), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(4850), 1, + anon_sym_SQUOTE, + ACTIONS(4852), 1, + sym_ansi_c_string, + ACTIONS(4854), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(4856), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(4858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(4860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(4862), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(4864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(4868), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(4870), 1, sym__brace_start, - ACTIONS(8742), 1, - anon_sym_RPAREN, - STATE(5324), 1, + ACTIONS(9207), 1, + sym__special_character, + STATE(2874), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(4840), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, + ACTIONS(4866), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(892), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2615), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [200858] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(3419), 1, + anon_sym_DOLLAR, + ACTIONS(3427), 1, + aux_sym_number_token1, + ACTIONS(3429), 1, + aux_sym_number_token2, + ACTIONS(3433), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3443), 1, + sym__brace_start, + ACTIONS(3680), 1, + sym_word, + ACTIONS(3684), 1, + sym_test_operator, + ACTIONS(9089), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9091), 1, + sym__special_character, + ACTIONS(9093), 1, + anon_sym_DQUOTE, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9097), 1, sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(9099), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9101), 1, + anon_sym_BQUOTE, + ACTIONS(9103), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2246), 1, + aux_sym__literal_repeat1, + ACTIONS(9087), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9105), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3598), 2, + STATE(721), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(1796), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [195617] = 21, - ACTIONS(71), 1, + [200934] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, - sym_word, - ACTIONS(8573), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8213), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, - sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, - sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8243), 1, sym__brace_start, - ACTIONS(8744), 1, - anon_sym_RPAREN, - STATE(5324), 1, + ACTIONS(8517), 1, + sym__special_character, + ACTIONS(9183), 1, + sym_word, + ACTIONS(9185), 1, + sym_ansi_c_string, + ACTIONS(9187), 1, + sym_test_operator, + STATE(1873), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, + ACTIONS(8235), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(619), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1391), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201010] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8211), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8213), 1, + anon_sym_DOLLAR, + ACTIONS(8217), 1, + anon_sym_DQUOTE, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, + aux_sym_number_token1, + ACTIONS(8225), 1, + aux_sym_number_token2, + ACTIONS(8227), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8229), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8231), 1, + anon_sym_BQUOTE, + ACTIONS(8233), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8243), 1, + sym__brace_start, + ACTIONS(8405), 1, + sym__special_character, + ACTIONS(9235), 1, + sym_word, + ACTIONS(9237), 1, sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(9239), 1, + sym_test_operator, + STATE(1873), 1, + aux_sym__literal_repeat1, + ACTIONS(8207), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(814), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(2382), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [195693] = 21, - ACTIONS(71), 1, + [201086] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, - sym_word, - ACTIONS(8573), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8213), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, - sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, - sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8243), 1, sym__brace_start, - ACTIONS(8746), 1, - anon_sym_RPAREN, - STATE(5324), 1, + ACTIONS(8405), 1, + sym__special_character, + ACTIONS(9235), 1, + sym_word, + ACTIONS(9237), 1, + sym_ansi_c_string, + ACTIONS(9239), 1, + sym_test_operator, + STATE(1873), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, + ACTIONS(8235), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(816), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2382), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201162] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(3419), 1, + anon_sym_DOLLAR, + ACTIONS(3427), 1, + aux_sym_number_token1, + ACTIONS(3429), 1, + aux_sym_number_token2, + ACTIONS(3433), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3443), 1, + sym__brace_start, + ACTIONS(3680), 1, + sym_word, + ACTIONS(3684), 1, + sym_test_operator, + ACTIONS(9089), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9091), 1, + sym__special_character, + ACTIONS(9093), 1, + anon_sym_DQUOTE, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9097), 1, sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(9099), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9101), 1, + anon_sym_BQUOTE, + ACTIONS(9103), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2246), 1, + aux_sym__literal_repeat1, + ACTIONS(9087), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9105), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3605), 2, + STATE(722), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(1796), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [195769] = 8, + [201238] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(7768), 1, - sym_variable_name, - STATE(4636), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(9189), 1, + sym_word, + ACTIONS(9197), 1, + sym_test_operator, + ACTIONS(9241), 1, + anon_sym_RBRACK, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9193), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9195), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2660), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201312] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(9189), 1, + sym_word, + ACTIONS(9197), 1, + sym_test_operator, + ACTIONS(9243), 1, + anon_sym_RBRACK, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9193), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9195), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2660), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, - ACTIONS(1235), 2, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201386] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(3413), 1, + sym_word, + ACTIONS(3419), 1, + anon_sym_DOLLAR, + ACTIONS(3427), 1, + aux_sym_number_token1, + ACTIONS(3429), 1, + aux_sym_number_token2, + ACTIONS(3433), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3441), 1, sym_test_operator, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(7766), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7764), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(9089), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9093), 1, + anon_sym_DQUOTE, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9099), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9101), 1, + anon_sym_BQUOTE, + ACTIONS(9103), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9245), 1, + sym__special_character, + ACTIONS(9247), 1, + sym_ansi_c_string, + STATE(2246), 1, + aux_sym__literal_repeat1, + ACTIONS(9087), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9105), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(677), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1569), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201462] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(2154), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 16, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2156), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, + sym__brace_start, anon_sym_LPAREN_LPAREN, - aux_sym_heredoc_redirect_token1, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, sym__special_character, - sym_raw_string, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [201502] = 22, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1636), 1, + anon_sym_DOLLAR, + ACTIONS(1644), 1, aux_sym_number_token1, + ACTIONS(1646), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(1662), 1, + sym__brace_start, + ACTIONS(9249), 1, + sym_word, + ACTIONS(9253), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9255), 1, + sym__special_character, + ACTIONS(9257), 1, + anon_sym_DQUOTE, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9261), 1, + sym_ansi_c_string, + ACTIONS(9263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9265), 1, anon_sym_BQUOTE, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(9271), 1, + sym_test_operator, + ACTIONS(9273), 1, + sym_regex, + STATE(1446), 1, + aux_sym__literal_repeat1, + STATE(1534), 1, + sym_concatenation, + ACTIONS(9251), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9269), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [195819] = 21, - ACTIONS(71), 1, + STATE(2086), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [201580] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6490), 1, + ACTIONS(3413), 1, + sym_word, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(6496), 1, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(6498), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(6502), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(6512), 1, - sym_extglob_pattern, - ACTIONS(6514), 1, + ACTIONS(3441), 1, + sym_test_operator, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(7200), 1, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7202), 1, - sym__special_character, - ACTIONS(7204), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9099), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, + ACTIONS(9101), 1, anon_sym_BQUOTE, - ACTIONS(7212), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8748), 1, - sym_word, - ACTIONS(8752), 1, - sym_test_operator, - STATE(6434), 1, + ACTIONS(9245), 1, + sym__special_character, + ACTIONS(9247), 1, + sym_ansi_c_string, + STATE(2246), 1, aux_sym__literal_repeat1, - ACTIONS(7196), 2, + ACTIONS(9087), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7214), 2, + ACTIONS(9105), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8750), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6550), 2, + STATE(678), 2, sym_concatenation, - sym__extglob_blob, - STATE(6326), 9, + aux_sym_for_statement_repeat1, + STATE(1569), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [195895] = 21, - ACTIONS(3), 1, + [201656] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3666), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(3823), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, - sym__special_character, - ACTIONS(3672), 1, - anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(3678), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, + ACTIONS(3847), 1, + sym__brace_start, + ACTIONS(4185), 1, + sym_word, + ACTIONS(4189), 1, + sym_test_operator, + ACTIONS(9069), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9071), 1, + sym__special_character, + ACTIONS(9073), 1, + anon_sym_DQUOTE, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9077), 1, + sym_ansi_c_string, + ACTIONS(9079), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3690), 1, - sym_test_operator, - ACTIONS(3692), 1, - sym__brace_start, - ACTIONS(8754), 1, - aux_sym_heredoc_redirect_token1, - STATE(3578), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + STATE(2301), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - ACTIONS(3652), 2, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5109), 9, + STATE(792), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2236), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [195971] = 21, - ACTIONS(71), 1, + [201732] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, - sym_word, - ACTIONS(8573), 1, + ACTIONS(8741), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8743), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8745), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8747), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8749), 1, + anon_sym_SQUOTE, + ACTIONS(8753), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8755), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8761), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8763), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, - sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8773), 1, sym__brace_start, - ACTIONS(8756), 1, - anon_sym_RPAREN, - STATE(5324), 1, + ACTIONS(9275), 1, + sym_word, + ACTIONS(9277), 1, + sym_ansi_c_string, + ACTIONS(9279), 1, + sym_test_operator, + STATE(2655), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8737), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8765), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3611), 2, + STATE(833), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(2469), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [196047] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(4078), 1, - anon_sym_DQUOTE, - ACTIONS(7611), 1, - sym_variable_name, - STATE(4444), 1, - sym_string, - ACTIONS(7609), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7607), 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(1239), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_heredoc_redirect_token1, - [196097] = 21, - ACTIONS(71), 1, + [201808] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, - sym_word, - ACTIONS(8573), 1, + ACTIONS(8741), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(8743), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(8745), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(8747), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(8749), 1, + anon_sym_SQUOTE, + ACTIONS(8753), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(8755), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(8761), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(8763), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, - sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(8773), 1, sym__brace_start, - ACTIONS(8758), 1, - anon_sym_RPAREN, - STATE(5324), 1, + ACTIONS(9275), 1, + sym_word, + ACTIONS(9277), 1, + sym_ansi_c_string, + ACTIONS(9279), 1, + sym_test_operator, + STATE(2655), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(8737), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(8765), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(836), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(2469), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [196173] = 21, - ACTIONS(71), 1, + [201884] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(2183), 1, - anon_sym_RPAREN, - ACTIONS(8760), 1, + ACTIONS(3823), 1, + anon_sym_DOLLAR, + ACTIONS(3831), 1, + aux_sym_number_token1, + ACTIONS(3833), 1, + aux_sym_number_token2, + ACTIONS(3837), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3847), 1, + sym__brace_start, + ACTIONS(4185), 1, sym_word, - ACTIONS(8766), 1, + ACTIONS(4189), 1, + sym_test_operator, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8769), 1, - anon_sym_DOLLAR, - ACTIONS(8772), 1, + ACTIONS(9071), 1, sym__special_character, - ACTIONS(8775), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(8781), 1, - aux_sym_number_token1, - ACTIONS(8784), 1, - aux_sym_number_token2, - ACTIONS(8787), 1, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9077), 1, + sym_ansi_c_string, + ACTIONS(9079), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8790), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8793), 1, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(8796), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8802), 1, - sym_test_operator, - ACTIONS(8805), 1, - sym__brace_start, - STATE(5324), 1, + STATE(2301), 1, aux_sym__literal_repeat1, - ACTIONS(8763), 2, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8778), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8799), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(776), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(2236), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [196249] = 21, - ACTIONS(3), 1, + [201960] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(3666), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(5015), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(3670), 1, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5017), 22, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, sym__special_character, - ACTIONS(3672), 1, anon_sym_DQUOTE, - ACTIONS(3674), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [202000] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3755), 1, + anon_sym_DQUOTE, + ACTIONS(8677), 1, + sym_variable_name, + STATE(4915), 1, + sym_string, + ACTIONS(1269), 2, + sym_test_operator, + sym__brace_start, + ACTIONS(8675), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8673), 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(1267), 16, + anon_sym_LPAREN_LPAREN, + aux_sym_heredoc_redirect_token1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(3676), 1, aux_sym_number_token2, - ACTIONS(3678), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, anon_sym_BQUOTE, - ACTIONS(3684), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(3690), 1, - sym_test_operator, - ACTIONS(3692), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [202050] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, + aux_sym_number_token1, + ACTIONS(323), 1, + aux_sym_number_token2, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(8808), 1, - aux_sym_heredoc_redirect_token1, - STATE(3578), 1, - aux_sym__heredoc_command, - STATE(5280), 1, - aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - ACTIONS(3652), 2, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(9189), 1, + sym_word, + ACTIONS(9197), 1, + sym_test_operator, + ACTIONS(9281), 1, + anon_sym_RBRACK, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, + ACTIONS(9193), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9195), 2, + sym__bare_dollar, sym_ansi_c_string, - sym_word, - STATE(5109), 9, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [196325] = 21, - ACTIONS(71), 1, + [202124] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(5707), 1, sym_word, - ACTIONS(8573), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(5713), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, - sym__special_character, - ACTIONS(8579), 1, - anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(5721), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(5723), 1, aux_sym_number_token2, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(5727), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, - anon_sym_BQUOTE, - ACTIONS(8593), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(5735), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(5737), 1, sym__brace_start, - ACTIONS(8810), 1, - anon_sym_RPAREN, - STATE(5324), 1, + ACTIONS(9285), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9287), 1, + sym__special_character, + ACTIONS(9289), 1, + anon_sym_DQUOTE, + ACTIONS(9291), 1, + anon_sym_SQUOTE, + ACTIONS(9293), 1, + sym_ansi_c_string, + ACTIONS(9295), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9297), 1, + anon_sym_BQUOTE, + ACTIONS(9299), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3537), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(9283), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(9301), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3582), 2, + STATE(1262), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(3179), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [196401] = 21, - ACTIONS(71), 1, + [202200] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(5707), 1, sym_word, - ACTIONS(8573), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, + ACTIONS(5713), 1, anon_sym_DOLLAR, - ACTIONS(8577), 1, - sym__special_character, - ACTIONS(8579), 1, - anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(5721), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(5723), 1, aux_sym_number_token2, - ACTIONS(8587), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(5727), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, - anon_sym_BQUOTE, - ACTIONS(8593), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, + ACTIONS(5735), 1, sym_test_operator, - ACTIONS(8599), 1, + ACTIONS(5737), 1, sym__brace_start, - ACTIONS(8812), 1, - anon_sym_RPAREN, - STATE(5324), 1, + ACTIONS(9285), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9287), 1, + sym__special_character, + ACTIONS(9289), 1, + anon_sym_DQUOTE, + ACTIONS(9291), 1, + anon_sym_SQUOTE, + ACTIONS(9293), 1, + sym_ansi_c_string, + ACTIONS(9295), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9297), 1, + anon_sym_BQUOTE, + ACTIONS(9299), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3537), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(9283), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(9301), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3550), 2, + STATE(1263), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(3179), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [196477] = 8, - ACTIONS(3), 1, + [202276] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(8661), 1, - anon_sym_DQUOTE, - ACTIONS(8665), 1, - sym_variable_name, - STATE(5430), 1, - sym_string, - ACTIONS(8663), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8659), 9, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, + ACTIONS(3751), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_AT2, - anon_sym_0, - anon_sym__, - ACTIONS(1227), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [196527] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8567), 1, + ACTIONS(3759), 1, + aux_sym_number_token1, + ACTIONS(3761), 1, + aux_sym_number_token2, + ACTIONS(3765), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(7854), 1, sym_word, - ACTIONS(8573), 1, + ACTIONS(7862), 1, + sym_test_operator, + ACTIONS(9305), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, - anon_sym_DOLLAR, - ACTIONS(8577), 1, + ACTIONS(9307), 1, sym__special_character, - ACTIONS(8579), 1, + ACTIONS(9309), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, - aux_sym_number_token1, - ACTIONS(8585), 1, - aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(9311), 1, + anon_sym_SQUOTE, + ACTIONS(9313), 1, + sym_ansi_c_string, + ACTIONS(9315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(9317), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8597), 1, - sym_test_operator, - ACTIONS(8599), 1, - sym__brace_start, - ACTIONS(8814), 1, - anon_sym_RPAREN, - STATE(5324), 1, + STATE(5072), 1, aux_sym__literal_repeat1, - ACTIONS(8569), 2, + ACTIONS(9303), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8581), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8595), 2, + ACTIONS(9321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3606), 2, + STATE(3238), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(5119), 9, + STATE(4560), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [196603] = 8, + [202352] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, + ACTIONS(1269), 1, sym_file_descriptor, - ACTIONS(7631), 1, + ACTIONS(7868), 1, anon_sym_DQUOTE, - ACTIONS(7635), 1, + ACTIONS(7872), 1, sym_variable_name, - STATE(4316), 1, + STATE(4372), 1, sym_string, - ACTIONS(7633), 2, + ACTIONS(7870), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7629), 9, + ACTIONS(7866), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -244532,7 +250083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1239), 17, + ACTIONS(1267), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -244550,499 +250101,500 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_heredoc_redirect_token1, - [196653] = 21, - ACTIONS(3), 1, + [202402] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3666), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(3668), 1, + ACTIONS(3907), 1, + sym_word, + ACTIONS(3913), 1, anon_sym_DOLLAR, - ACTIONS(3670), 1, - sym__special_character, - ACTIONS(3672), 1, - anon_sym_DQUOTE, - ACTIONS(3674), 1, + ACTIONS(3921), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(3923), 1, aux_sym_number_token2, - ACTIONS(3678), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3680), 1, + ACTIONS(3927), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3682), 1, - anon_sym_BQUOTE, - ACTIONS(3684), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3690), 1, + ACTIONS(3935), 1, sym_test_operator, - ACTIONS(3692), 1, + ACTIONS(3937), 1, sym__brace_start, - ACTIONS(8816), 1, - aux_sym_heredoc_redirect_token1, - STATE(3578), 1, - aux_sym__heredoc_command, - STATE(5280), 1, + ACTIONS(9325), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9327), 1, + sym__special_character, + ACTIONS(9329), 1, + anon_sym_DQUOTE, + ACTIONS(9331), 1, + anon_sym_SQUOTE, + ACTIONS(9333), 1, + sym_ansi_c_string, + ACTIONS(9335), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9337), 1, + anon_sym_BQUOTE, + ACTIONS(9339), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2342), 1, aux_sym__literal_repeat1, - STATE(5411), 1, - sym_concatenation, - ACTIONS(3652), 2, + ACTIONS(9323), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(3686), 2, + ACTIONS(9341), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(3650), 3, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(5109), 9, + STATE(720), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2017), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [196729] = 20, - ACTIONS(71), 1, + [202478] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3998), 1, + ACTIONS(3907), 1, + sym_word, + ACTIONS(3913), 1, anon_sym_DOLLAR, - ACTIONS(4002), 1, + ACTIONS(3921), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(3923), 1, aux_sym_number_token2, - ACTIONS(4008), 1, + ACTIONS(3927), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4018), 1, - sym__brace_start, - ACTIONS(4841), 1, - sym_word, - ACTIONS(4845), 1, + ACTIONS(3935), 1, sym_test_operator, - ACTIONS(8820), 1, + ACTIONS(3937), 1, + sym__brace_start, + ACTIONS(9325), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8822), 1, + ACTIONS(9327), 1, sym__special_character, - ACTIONS(8824), 1, + ACTIONS(9329), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9331), 1, + anon_sym_SQUOTE, + ACTIONS(9333), 1, + sym_ansi_c_string, + ACTIONS(9335), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9337), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9339), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2307), 1, + STATE(2342), 1, aux_sym__literal_repeat1, - ACTIONS(8818), 2, + ACTIONS(9323), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8826), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8834), 2, + ACTIONS(9341), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(963), 2, + STATE(735), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2516), 9, + STATE(2017), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [196802] = 20, - ACTIONS(71), 1, + [202554] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(3732), 1, - sym_word, - ACTIONS(3738), 1, + ACTIONS(6129), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(3742), 1, aux_sym_number_token1, - ACTIONS(3744), 1, aux_sym_number_token2, - ACTIONS(3748), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3756), 1, + sym_word, + ACTIONS(6131), 22, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(3758), 1, sym__brace_start, - ACTIONS(8838), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(8840), 1, sym__special_character, - ACTIONS(8842), 1, anon_sym_DQUOTE, - ACTIONS(8846), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8848), 1, anon_sym_BQUOTE, - ACTIONS(8850), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2287), 1, - aux_sym__literal_repeat1, - ACTIONS(8836), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8844), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8852), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(735), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1780), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [196875] = 19, - ACTIONS(3), 1, + [202594] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(4668), 1, + sym_word, + ACTIONS(4672), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(4674), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(4678), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(4680), 1, + anon_sym_SQUOTE, + ACTIONS(4682), 1, + sym_ansi_c_string, + ACTIONS(4684), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(4686), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(4688), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(4690), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(4692), 1, anon_sym_BQUOTE, - ACTIONS(8854), 1, - sym_word, - ACTIONS(8856), 1, - anon_sym_RBRACK, - ACTIONS(8862), 1, + ACTIONS(4694), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4698), 1, sym_test_operator, - ACTIONS(288), 2, + ACTIONS(4700), 1, + sym__brace_start, + ACTIONS(9343), 1, + sym__special_character, + STATE(2673), 1, + aux_sym__literal_repeat1, + ACTIONS(4670), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(4696), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8858), 2, - sym__special_character, - sym__comment_word, - ACTIONS(8860), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2670), 9, + STATE(843), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2433), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [196946] = 21, - ACTIONS(71), 1, + [202670] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(1530), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(1536), 1, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(1538), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(1542), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1554), 1, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(8864), 1, - sym_word, - ACTIONS(8868), 1, + ACTIONS(9253), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8870), 1, - sym__special_character, - ACTIONS(8872), 1, + ACTIONS(9257), 1, anon_sym_DQUOTE, - ACTIONS(8876), 1, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8878), 1, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(8880), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8884), 1, - sym_test_operator, - ACTIONS(8886), 1, + ACTIONS(9273), 1, sym_regex, - STATE(1418), 1, + ACTIONS(9345), 1, + sym_word, + ACTIONS(9347), 1, + sym__special_character, + ACTIONS(9349), 1, + sym_ansi_c_string, + ACTIONS(9351), 1, + sym_test_operator, + STATE(1446), 1, aux_sym__literal_repeat1, - STATE(1564), 1, + STATE(1534), 1, sym_concatenation, - ACTIONS(8866), 2, + ACTIONS(9251), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8874), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8882), 2, + ACTIONS(9269), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1112), 9, + STATE(1073), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [197021] = 20, - ACTIONS(71), 1, + [202748] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(4668), 1, sym_word, - ACTIONS(4601), 1, + ACTIONS(4672), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4603), 1, + ACTIONS(4674), 1, anon_sym_DOLLAR, - ACTIONS(4607), 1, + ACTIONS(4678), 1, anon_sym_DQUOTE, - ACTIONS(4611), 1, + ACTIONS(4680), 1, + anon_sym_SQUOTE, + ACTIONS(4682), 1, + sym_ansi_c_string, + ACTIONS(4684), 1, aux_sym_number_token1, - ACTIONS(4613), 1, + ACTIONS(4686), 1, aux_sym_number_token2, - ACTIONS(4615), 1, + ACTIONS(4688), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4617), 1, + ACTIONS(4690), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4619), 1, + ACTIONS(4692), 1, anon_sym_BQUOTE, - ACTIONS(4621), 1, + ACTIONS(4694), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4625), 1, + ACTIONS(4698), 1, sym_test_operator, - ACTIONS(4627), 1, + ACTIONS(4700), 1, sym__brace_start, - ACTIONS(8888), 1, + ACTIONS(9343), 1, sym__special_character, - STATE(2607), 1, + STATE(2673), 1, aux_sym__literal_repeat1, - ACTIONS(4599), 2, + ACTIONS(4670), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4609), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4623), 2, + ACTIONS(4696), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(887), 2, + STATE(844), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2381), 9, + STATE(2433), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [197094] = 20, - ACTIONS(71), 1, + [202824] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3028), 1, + ACTIONS(5289), 1, sym_word, - ACTIONS(3034), 1, - anon_sym_DOLLAR, - ACTIONS(3038), 1, - aux_sym_number_token1, - ACTIONS(3040), 1, - aux_sym_number_token2, - ACTIONS(3044), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3052), 1, - sym_test_operator, - ACTIONS(3054), 1, - sym__brace_start, - ACTIONS(8892), 1, + ACTIONS(5293), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8894), 1, + ACTIONS(5295), 1, + anon_sym_DOLLAR, + ACTIONS(5297), 1, sym__special_character, - ACTIONS(8896), 1, + ACTIONS(5299), 1, anon_sym_DQUOTE, - ACTIONS(8900), 1, + ACTIONS(5301), 1, + anon_sym_SQUOTE, + ACTIONS(5303), 1, + sym_ansi_c_string, + ACTIONS(5305), 1, + aux_sym_number_token1, + ACTIONS(5307), 1, + aux_sym_number_token2, + ACTIONS(5309), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, + ACTIONS(5311), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5313), 1, anon_sym_BQUOTE, - ACTIONS(8904), 1, + ACTIONS(5315), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2006), 1, + ACTIONS(5319), 1, + sym_test_operator, + ACTIONS(5321), 1, + sym__brace_start, + STATE(3205), 1, aux_sym__literal_repeat1, - ACTIONS(8890), 2, + ACTIONS(5291), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8898), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8906), 2, + ACTIONS(5317), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(659), 2, + STATE(1011), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1578), 9, + STATE(2749), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [197167] = 19, - ACTIONS(3), 1, + [202900] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1488), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1514), 1, sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(9353), 1, sym_word, - ACTIONS(8862), 1, + ACTIONS(9357), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9359), 1, + sym__special_character, + ACTIONS(9361), 1, + anon_sym_DQUOTE, + ACTIONS(9363), 1, + anon_sym_SQUOTE, + ACTIONS(9365), 1, + sym_ansi_c_string, + ACTIONS(9367), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9369), 1, + anon_sym_BQUOTE, + ACTIONS(9371), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9375), 1, sym_test_operator, - ACTIONS(8908), 1, - anon_sym_RBRACK, - ACTIONS(288), 2, + ACTIONS(9377), 1, + sym_regex, + STATE(1175), 1, + aux_sym__literal_repeat1, + STATE(1381), 1, + sym_concatenation, + ACTIONS(9355), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(9373), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8858), 2, - sym__special_character, - sym__comment_word, - ACTIONS(8860), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2670), 9, + STATE(960), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [197238] = 20, - ACTIONS(71), 1, + [202978] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8292), 1, + ACTIONS(5289), 1, + sym_word, + ACTIONS(5293), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8294), 1, + ACTIONS(5295), 1, anon_sym_DOLLAR, - ACTIONS(8296), 1, + ACTIONS(5297), 1, sym__special_character, - ACTIONS(8298), 1, + ACTIONS(5299), 1, anon_sym_DQUOTE, - ACTIONS(8302), 1, + ACTIONS(5301), 1, + anon_sym_SQUOTE, + ACTIONS(5303), 1, + sym_ansi_c_string, + ACTIONS(5305), 1, aux_sym_number_token1, - ACTIONS(8304), 1, + ACTIONS(5307), 1, aux_sym_number_token2, - ACTIONS(8306), 1, + ACTIONS(5309), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8308), 1, + ACTIONS(5311), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8310), 1, + ACTIONS(5313), 1, anon_sym_BQUOTE, - ACTIONS(8312), 1, + ACTIONS(5315), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, - sym__brace_start, - ACTIONS(8910), 1, - sym_word, - ACTIONS(8914), 1, + ACTIONS(5319), 1, sym_test_operator, - STATE(1381), 1, + ACTIONS(5321), 1, + sym__brace_start, + STATE(3205), 1, aux_sym__literal_repeat1, - ACTIONS(8288), 2, + ACTIONS(5291), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8314), 2, + ACTIONS(5317), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8912), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(583), 2, + STATE(1013), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1082), 9, + STATE(2749), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [197311] = 8, + [203054] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, + ACTIONS(1263), 1, sym_file_descriptor, - ACTIONS(8918), 1, + ACTIONS(7868), 1, anon_sym_DQUOTE, - ACTIONS(8922), 1, + ACTIONS(7872), 1, sym_variable_name, - STATE(5529), 1, + STATE(4372), 1, sym_string, - ACTIONS(8920), 2, + ACTIONS(7870), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8916), 9, + ACTIONS(7866), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -245052,7 +250604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - ACTIONS(1227), 16, + ACTIONS(1255), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -245069,18863 +250621,20030 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [197360] = 21, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + [203104] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1420), 1, - aux_sym_number_token1, - ACTIONS(1422), 1, - aux_sym_number_token2, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, - sym__brace_start, - ACTIONS(8924), 1, - sym_word, - ACTIONS(8928), 1, + ACTIONS(8609), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, + ACTIONS(8611), 1, + anon_sym_DOLLAR, + ACTIONS(8613), 1, sym__special_character, - ACTIONS(8932), 1, + ACTIONS(8615), 1, anon_sym_DQUOTE, - ACTIONS(8936), 1, + ACTIONS(8617), 1, + anon_sym_SQUOTE, + ACTIONS(8621), 1, + aux_sym_number_token1, + ACTIONS(8623), 1, + aux_sym_number_token2, + ACTIONS(8625), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8938), 1, + ACTIONS(8627), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8629), 1, anon_sym_BQUOTE, - ACTIONS(8940), 1, + ACTIONS(8631), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8944), 1, + ACTIONS(8641), 1, + sym__brace_start, + ACTIONS(9379), 1, + sym_word, + ACTIONS(9381), 1, + sym_ansi_c_string, + ACTIONS(9383), 1, sym_test_operator, - ACTIONS(8946), 1, - sym_regex, - STATE(1111), 1, + STATE(1789), 1, aux_sym__literal_repeat1, - STATE(1208), 1, - sym_concatenation, - ACTIONS(8926), 2, + ACTIONS(8605), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8934), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8942), 2, + ACTIONS(8633), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(878), 9, + STATE(615), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1372), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [197435] = 20, - ACTIONS(71), 1, + [203180] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8292), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8294), 1, + ACTIONS(3817), 1, + sym_word, + ACTIONS(3823), 1, anon_sym_DOLLAR, - ACTIONS(8296), 1, - sym__special_character, - ACTIONS(8298), 1, - anon_sym_DQUOTE, - ACTIONS(8302), 1, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(8304), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(8306), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8308), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8310), 1, + ACTIONS(3845), 1, + sym_test_operator, + ACTIONS(3847), 1, + sym__brace_start, + ACTIONS(9069), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9073), 1, + anon_sym_DQUOTE, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9079), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(8312), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, - sym__brace_start, - ACTIONS(8910), 1, - sym_word, - ACTIONS(8914), 1, - sym_test_operator, - STATE(1381), 1, + ACTIONS(9385), 1, + sym__special_character, + ACTIONS(9387), 1, + sym_ansi_c_string, + STATE(2301), 1, aux_sym__literal_repeat1, - ACTIONS(8288), 2, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8314), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8912), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(584), 2, + STATE(714), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1082), 9, + STATE(1809), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [197508] = 19, - ACTIONS(3), 1, + [203256] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(5052), 1, + sym_word, + ACTIONS(5056), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(5058), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(5060), 1, + sym__special_character, + ACTIONS(5062), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(5064), 1, + anon_sym_SQUOTE, + ACTIONS(5066), 1, + sym_ansi_c_string, + ACTIONS(5068), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(5070), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(5072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(5074), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, - sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(5076), 1, anon_sym_BQUOTE, - ACTIONS(8854), 1, - sym_word, - ACTIONS(8862), 1, + ACTIONS(5078), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5082), 1, sym_test_operator, - ACTIONS(8948), 1, - anon_sym_RBRACK, - ACTIONS(288), 2, + ACTIONS(5084), 1, + sym__brace_start, + STATE(2997), 1, + aux_sym__literal_repeat1, + ACTIONS(5054), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(5080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8858), 2, - sym__special_character, - sym__comment_word, - ACTIONS(8860), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2670), 9, + STATE(917), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(2544), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [197579] = 20, - ACTIONS(71), 1, + [203332] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8950), 1, + ACTIONS(5052), 1, sym_word, - ACTIONS(8954), 1, + ACTIONS(5056), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8956), 1, + ACTIONS(5058), 1, anon_sym_DOLLAR, - ACTIONS(8958), 1, + ACTIONS(5060), 1, sym__special_character, - ACTIONS(8960), 1, + ACTIONS(5062), 1, anon_sym_DQUOTE, - ACTIONS(8964), 1, + ACTIONS(5064), 1, + anon_sym_SQUOTE, + ACTIONS(5066), 1, + sym_ansi_c_string, + ACTIONS(5068), 1, aux_sym_number_token1, - ACTIONS(8966), 1, + ACTIONS(5070), 1, aux_sym_number_token2, - ACTIONS(8968), 1, + ACTIONS(5072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8970), 1, + ACTIONS(5074), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8972), 1, + ACTIONS(5076), 1, anon_sym_BQUOTE, - ACTIONS(8974), 1, + ACTIONS(5078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8978), 1, + ACTIONS(5082), 1, sym_test_operator, - ACTIONS(8980), 1, + ACTIONS(5084), 1, sym__brace_start, - STATE(2560), 1, + STATE(2997), 1, aux_sym__literal_repeat1, - ACTIONS(8952), 2, + ACTIONS(5054), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8962), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8976), 2, + ACTIONS(5080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(826), 2, + STATE(918), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2302), 9, + STATE(2544), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [197652] = 20, - ACTIONS(71), 1, + [203408] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3668), 1, + ACTIONS(8339), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8341), 1, anon_sym_DOLLAR, - ACTIONS(3674), 1, + ACTIONS(8343), 1, + sym__special_character, + ACTIONS(8345), 1, + anon_sym_DQUOTE, + ACTIONS(8347), 1, + anon_sym_SQUOTE, + ACTIONS(8351), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(8353), 1, aux_sym_number_token2, - ACTIONS(3680), 1, + ACTIONS(8355), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8357), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3692), 1, + ACTIONS(8359), 1, + anon_sym_BQUOTE, + ACTIONS(8361), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8371), 1, sym__brace_start, - ACTIONS(7751), 1, + ACTIONS(9389), 1, sym_word, - ACTIONS(7759), 1, + ACTIONS(9391), 1, + sym_ansi_c_string, + ACTIONS(9393), 1, sym_test_operator, - ACTIONS(8984), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8986), 1, - sym__special_character, - ACTIONS(8988), 1, - anon_sym_DQUOTE, - ACTIONS(8992), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8994), 1, - anon_sym_BQUOTE, - ACTIONS(8996), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(4920), 1, + STATE(1435), 1, aux_sym__literal_repeat1, - ACTIONS(8982), 2, + ACTIONS(8335), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8990), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8998), 2, + ACTIONS(8363), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3484), 2, + STATE(572), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(4539), 9, + STATE(1097), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [197725] = 20, - ACTIONS(71), 1, + [203484] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8338), 1, + ACTIONS(8339), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8340), 1, + ACTIONS(8341), 1, anon_sym_DOLLAR, - ACTIONS(8342), 1, + ACTIONS(8343), 1, sym__special_character, - ACTIONS(8344), 1, + ACTIONS(8345), 1, anon_sym_DQUOTE, - ACTIONS(8348), 1, + ACTIONS(8347), 1, + anon_sym_SQUOTE, + ACTIONS(8351), 1, aux_sym_number_token1, - ACTIONS(8350), 1, + ACTIONS(8353), 1, aux_sym_number_token2, - ACTIONS(8352), 1, + ACTIONS(8355), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8354), 1, + ACTIONS(8357), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8356), 1, + ACTIONS(8359), 1, anon_sym_BQUOTE, - ACTIONS(8358), 1, + ACTIONS(8361), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8368), 1, + ACTIONS(8371), 1, sym__brace_start, - ACTIONS(9000), 1, + ACTIONS(9389), 1, sym_word, - ACTIONS(9004), 1, + ACTIONS(9391), 1, + sym_ansi_c_string, + ACTIONS(9393), 1, sym_test_operator, - STATE(3542), 1, + STATE(1435), 1, aux_sym__literal_repeat1, - ACTIONS(8334), 2, + ACTIONS(8335), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8360), 2, + ACTIONS(8363), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9002), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1875), 2, + STATE(573), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3476), 9, + STATE(1097), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [197798] = 20, - ACTIONS(71), 1, + [203560] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 1, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(3674), 1, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(3680), 1, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3692), 1, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(7751), 1, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(9189), 1, sym_word, - ACTIONS(7759), 1, + ACTIONS(9197), 1, sym_test_operator, - ACTIONS(8984), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8986), 1, - sym__special_character, - ACTIONS(8988), 1, - anon_sym_DQUOTE, - ACTIONS(8992), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8994), 1, - anon_sym_BQUOTE, - ACTIONS(8996), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(4920), 1, - aux_sym__literal_repeat1, - ACTIONS(8982), 2, + ACTIONS(9395), 1, + anon_sym_RBRACK, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8990), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8998), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3479), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4539), 9, + ACTIONS(9193), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9195), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [197871] = 20, - ACTIONS(71), 1, + [203634] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5611), 1, - sym_word, - ACTIONS(5617), 1, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(5621), 1, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(5623), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(5627), 1, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5635), 1, - sym_test_operator, - ACTIONS(5637), 1, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(9008), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9010), 1, - sym__special_character, - ACTIONS(9012), 1, - anon_sym_DQUOTE, - ACTIONS(9016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9018), 1, + ACTIONS(5851), 1, anon_sym_BQUOTE, - ACTIONS(9020), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3460), 1, - aux_sym__literal_repeat1, - ACTIONS(9006), 2, + ACTIONS(9189), 1, + sym_word, + ACTIONS(9197), 1, + sym_test_operator, + ACTIONS(9397), 1, + anon_sym_RBRACK, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9014), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9022), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1353), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3017), 9, + ACTIONS(9193), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9195), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [197944] = 20, - ACTIONS(71), 1, + [203708] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(3998), 1, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(4002), 1, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(4008), 1, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4018), 1, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(4841), 1, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(9189), 1, sym_word, - ACTIONS(4845), 1, + ACTIONS(9197), 1, sym_test_operator, - ACTIONS(8820), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8822), 1, - sym__special_character, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - ACTIONS(8828), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, - anon_sym_BQUOTE, - ACTIONS(8832), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(2307), 1, - aux_sym__literal_repeat1, - ACTIONS(8818), 2, + ACTIONS(9399), 1, + anon_sym_RBRACK, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8826), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8834), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(962), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2516), 9, + ACTIONS(9193), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9195), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [198017] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(8918), 1, - anon_sym_DQUOTE, - ACTIONS(8922), 1, - sym_variable_name, - STATE(5529), 1, - sym_string, - ACTIONS(8920), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(8916), 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(1239), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [198066] = 19, + [203782] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(5851), 1, anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(9189), 1, sym_word, - ACTIONS(8862), 1, + ACTIONS(9197), 1, sym_test_operator, - ACTIONS(9024), 1, + ACTIONS(9401), 1, anon_sym_RBRACK, - ACTIONS(288), 2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8858), 2, + ACTIONS(9193), 2, sym__special_character, sym__comment_word, - ACTIONS(8860), 3, + ACTIONS(9195), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2670), 9, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [198137] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1241), 1, - sym_file_descriptor, - ACTIONS(9028), 1, - anon_sym_DQUOTE, - ACTIONS(9032), 1, - sym_variable_name, - STATE(5447), 1, - sym_string, - ACTIONS(9030), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9026), 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(1239), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [198186] = 20, - ACTIONS(71), 1, + [203856] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(5611), 1, - sym_word, - ACTIONS(5617), 1, + ACTIONS(8609), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8611), 1, anon_sym_DOLLAR, - ACTIONS(5621), 1, + ACTIONS(8613), 1, + sym__special_character, + ACTIONS(8615), 1, + anon_sym_DQUOTE, + ACTIONS(8617), 1, + anon_sym_SQUOTE, + ACTIONS(8621), 1, aux_sym_number_token1, - ACTIONS(5623), 1, + ACTIONS(8623), 1, aux_sym_number_token2, - ACTIONS(5627), 1, + ACTIONS(8625), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8627), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5635), 1, - sym_test_operator, - ACTIONS(5637), 1, + ACTIONS(8629), 1, + anon_sym_BQUOTE, + ACTIONS(8631), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8641), 1, sym__brace_start, - ACTIONS(9008), 1, + ACTIONS(9379), 1, + sym_word, + ACTIONS(9381), 1, + sym_ansi_c_string, + ACTIONS(9383), 1, + sym_test_operator, + STATE(1789), 1, + aux_sym__literal_repeat1, + ACTIONS(8605), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8633), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(645), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1372), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [203932] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8698), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9010), 1, + ACTIONS(8700), 1, + anon_sym_DOLLAR, + ACTIONS(8702), 1, sym__special_character, - ACTIONS(9012), 1, + ACTIONS(8704), 1, anon_sym_DQUOTE, - ACTIONS(9016), 1, + ACTIONS(8706), 1, + anon_sym_SQUOTE, + ACTIONS(8710), 1, + aux_sym_number_token1, + ACTIONS(8712), 1, + aux_sym_number_token2, + ACTIONS(8714), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9018), 1, + ACTIONS(8716), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8718), 1, anon_sym_BQUOTE, - ACTIONS(9020), 1, + ACTIONS(8720), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3460), 1, + ACTIONS(8730), 1, + sym__brace_start, + ACTIONS(9403), 1, + sym_word, + ACTIONS(9405), 1, + sym_ansi_c_string, + ACTIONS(9407), 1, + sym_test_operator, + STATE(3583), 1, aux_sym__literal_repeat1, - ACTIONS(9006), 2, + ACTIONS(8694), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9014), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9022), 2, + ACTIONS(8722), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1354), 2, + STATE(1701), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(3017), 9, + STATE(3533), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [198259] = 20, - ACTIONS(71), 1, + [204008] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3998), 1, + ACTIONS(3823), 1, anon_sym_DOLLAR, - ACTIONS(4002), 1, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(4008), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4018), 1, + ACTIONS(3847), 1, sym__brace_start, - ACTIONS(4098), 1, + ACTIONS(4832), 1, sym_word, - ACTIONS(4102), 1, + ACTIONS(4836), 1, sym_test_operator, - ACTIONS(8820), 1, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9079), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9034), 1, + ACTIONS(9409), 1, sym__special_character, - STATE(2307), 1, + ACTIONS(9411), 1, + sym_ansi_c_string, + STATE(2301), 1, aux_sym__literal_repeat1, - ACTIONS(8818), 2, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9036), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(800), 2, + STATE(857), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2129), 9, + STATE(2521), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [198332] = 20, - ACTIONS(71), 1, + [204084] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8090), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, + ACTIONS(3823), 1, anon_sym_DOLLAR, - ACTIONS(8094), 1, - sym__special_character, - ACTIONS(8096), 1, - anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(8104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, - anon_sym_BQUOTE, - ACTIONS(8110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, + ACTIONS(3847), 1, sym__brace_start, - ACTIONS(9038), 1, + ACTIONS(4832), 1, sym_word, - ACTIONS(9042), 1, + ACTIONS(4836), 1, sym_test_operator, - STATE(1777), 1, + ACTIONS(9069), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9073), 1, + anon_sym_DQUOTE, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9079), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9081), 1, + anon_sym_BQUOTE, + ACTIONS(9083), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9409), 1, + sym__special_character, + ACTIONS(9411), 1, + sym_ansi_c_string, + STATE(2301), 1, aux_sym__literal_repeat1, - ACTIONS(8086), 2, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9040), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(814), 2, + STATE(860), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2324), 9, + STATE(2521), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [198405] = 20, - ACTIONS(71), 1, + [204160] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8090), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, + ACTIONS(3282), 1, + sym_word, + ACTIONS(3288), 1, anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(3296), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(3298), 1, aux_sym_number_token2, - ACTIONS(8104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(3302), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, - anon_sym_BQUOTE, - ACTIONS(8110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, + ACTIONS(3310), 1, + sym_test_operator, + ACTIONS(3312), 1, sym__brace_start, - ACTIONS(8476), 1, + ACTIONS(9415), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9417), 1, sym__special_character, - ACTIONS(9044), 1, - sym_word, - ACTIONS(9048), 1, - sym_test_operator, - STATE(1777), 1, + ACTIONS(9419), 1, + anon_sym_DQUOTE, + ACTIONS(9421), 1, + anon_sym_SQUOTE, + ACTIONS(9423), 1, + sym_ansi_c_string, + ACTIONS(9425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9427), 1, + anon_sym_BQUOTE, + ACTIONS(9429), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2192), 1, aux_sym__literal_repeat1, - ACTIONS(8086), 2, + ACTIONS(9413), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(9431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9046), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(651), 2, + STATE(695), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1415), 9, + STATE(1559), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [198478] = 20, - ACTIONS(71), 1, + [204236] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(3038), 1, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(3044), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3054), 1, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(3694), 1, + ACTIONS(4592), 1, sym_word, - ACTIONS(3698), 1, + ACTIONS(4596), 1, sym_test_operator, - ACTIONS(8892), 1, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8896), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(8900), 1, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9099), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, + ACTIONS(9101), 1, anon_sym_BQUOTE, - ACTIONS(8904), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9050), 1, + ACTIONS(9433), 1, sym__special_character, - STATE(2006), 1, + ACTIONS(9435), 1, + sym_ansi_c_string, + STATE(2246), 1, aux_sym__literal_repeat1, - ACTIONS(8890), 2, + ACTIONS(9087), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8906), 2, + ACTIONS(9105), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9052), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(720), 2, + STATE(838), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1858), 9, + STATE(2407), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [198551] = 20, - ACTIONS(71), 1, + [204312] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(3038), 1, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(3044), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3054), 1, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(4434), 1, + ACTIONS(7854), 1, sym_word, - ACTIONS(4438), 1, + ACTIONS(7862), 1, sym_test_operator, - ACTIONS(8892), 1, + ACTIONS(9305), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8896), 1, + ACTIONS(9307), 1, + sym__special_character, + ACTIONS(9309), 1, anon_sym_DQUOTE, - ACTIONS(8900), 1, + ACTIONS(9311), 1, + anon_sym_SQUOTE, + ACTIONS(9313), 1, + sym_ansi_c_string, + ACTIONS(9315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, + ACTIONS(9317), 1, anon_sym_BQUOTE, - ACTIONS(8904), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9054), 1, - sym__special_character, - STATE(2006), 1, + STATE(5072), 1, aux_sym__literal_repeat1, - ACTIONS(8890), 2, + ACTIONS(9303), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8906), 2, + ACTIONS(9321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9056), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(834), 2, + STATE(3331), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2361), 9, + STATE(4560), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [198624] = 20, - ACTIONS(71), 1, + [204388] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(3038), 1, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(3044), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3054), 1, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(3694), 1, + ACTIONS(4592), 1, sym_word, - ACTIONS(3698), 1, + ACTIONS(4596), 1, sym_test_operator, - ACTIONS(8892), 1, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8896), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(8900), 1, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9099), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, + ACTIONS(9101), 1, anon_sym_BQUOTE, - ACTIONS(8904), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9050), 1, + ACTIONS(9433), 1, sym__special_character, - STATE(2006), 1, + ACTIONS(9435), 1, + sym_ansi_c_string, + STATE(2246), 1, aux_sym__literal_repeat1, - ACTIONS(8890), 2, + ACTIONS(9087), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8906), 2, + ACTIONS(9105), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9052), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(724), 2, + STATE(835), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1858), 9, + STATE(2407), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [198697] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8522), 1, - anon_sym_SLASH, - ACTIONS(8524), 1, - anon_sym_PERCENT, - ACTIONS(8526), 1, - anon_sym_COLON, - ACTIONS(8530), 1, - anon_sym_RBRACE3, - ACTIONS(8532), 1, - anon_sym_AT, - ACTIONS(8534), 1, - anon_sym_STAR2, - ACTIONS(9058), 1, - anon_sym_LBRACK, - STATE(6940), 1, - sym__expansion_expression, - STATE(7042), 1, - sym__expansion_regex, - STATE(7074), 1, - sym__expansion_regex_replacement, - STATE(7109), 1, - sym__expansion_regex_removal, - STATE(7118), 1, - sym__expansion_max_length, - STATE(7154), 1, - sym__expansion_operator, - ACTIONS(8520), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(8540), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(8528), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(8538), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(8536), 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, - [198768] = 20, - ACTIONS(71), 1, + [204464] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8090), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, + ACTIONS(3282), 1, + sym_word, + ACTIONS(3288), 1, anon_sym_DOLLAR, - ACTIONS(8094), 1, - sym__special_character, - ACTIONS(8096), 1, - anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(3296), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(3298), 1, aux_sym_number_token2, - ACTIONS(8104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(3302), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(3310), 1, + sym_test_operator, + ACTIONS(3312), 1, + sym__brace_start, + ACTIONS(9415), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9417), 1, + sym__special_character, + ACTIONS(9419), 1, + anon_sym_DQUOTE, + ACTIONS(9421), 1, + anon_sym_SQUOTE, + ACTIONS(9423), 1, + sym_ansi_c_string, + ACTIONS(9425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9427), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(9429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, - sym__brace_start, - ACTIONS(9038), 1, - sym_word, - ACTIONS(9042), 1, - sym_test_operator, - STATE(1777), 1, + STATE(2192), 1, aux_sym__literal_repeat1, - ACTIONS(8086), 2, + ACTIONS(9413), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(9431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9040), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(820), 2, + STATE(673), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2324), 9, + STATE(1559), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [198841] = 19, - ACTIONS(3), 1, + [204540] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(2898), 1, + sym_word, + ACTIONS(2904), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(2912), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(2914), 1, aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(2918), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(2926), 1, + sym_test_operator, + ACTIONS(2928), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(9439), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9441), 1, + sym__special_character, + ACTIONS(9443), 1, + anon_sym_DQUOTE, + ACTIONS(9445), 1, + anon_sym_SQUOTE, + ACTIONS(9447), 1, + sym_ansi_c_string, + ACTIONS(9449), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9451), 1, anon_sym_BQUOTE, - ACTIONS(8854), 1, - sym_word, - ACTIONS(8862), 1, - sym_test_operator, - ACTIONS(9060), 1, - anon_sym_RBRACK, - ACTIONS(288), 2, + ACTIONS(9453), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1942), 1, + aux_sym__literal_repeat1, + ACTIONS(9437), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(9455), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8858), 2, - sym__special_character, - sym__comment_word, - ACTIONS(8860), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2670), 9, + STATE(625), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1441), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [198912] = 20, - ACTIONS(71), 1, + [204616] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(2898), 1, + sym_word, + ACTIONS(2904), 1, anon_sym_DOLLAR, - ACTIONS(3038), 1, + ACTIONS(2912), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(2914), 1, aux_sym_number_token2, - ACTIONS(3044), 1, + ACTIONS(2918), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3054), 1, - sym__brace_start, - ACTIONS(4434), 1, - sym_word, - ACTIONS(4438), 1, + ACTIONS(2926), 1, sym_test_operator, - ACTIONS(8892), 1, + ACTIONS(2928), 1, + sym__brace_start, + ACTIONS(9439), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8896), 1, + ACTIONS(9441), 1, + sym__special_character, + ACTIONS(9443), 1, anon_sym_DQUOTE, - ACTIONS(8900), 1, + ACTIONS(9445), 1, + anon_sym_SQUOTE, + ACTIONS(9447), 1, + sym_ansi_c_string, + ACTIONS(9449), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, + ACTIONS(9451), 1, anon_sym_BQUOTE, - ACTIONS(8904), 1, + ACTIONS(9453), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9054), 1, - sym__special_character, - STATE(2006), 1, + STATE(1942), 1, aux_sym__literal_repeat1, - ACTIONS(8890), 2, + ACTIONS(9437), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8906), 2, + ACTIONS(9455), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9056), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(835), 2, + STATE(632), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2361), 9, + STATE(1441), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [198985] = 21, - ACTIONS(71), 1, + [204692] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1494), 1, - anon_sym_DOLLAR, - ACTIONS(1500), 1, - aux_sym_number_token1, - ACTIONS(1502), 1, - aux_sym_number_token2, - ACTIONS(1506), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, - sym__brace_start, - ACTIONS(9062), 1, - sym_word, - ACTIONS(9066), 1, + ACTIONS(8698), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9068), 1, + ACTIONS(8700), 1, + anon_sym_DOLLAR, + ACTIONS(8702), 1, sym__special_character, - ACTIONS(9070), 1, + ACTIONS(8704), 1, anon_sym_DQUOTE, - ACTIONS(9074), 1, + ACTIONS(8706), 1, + anon_sym_SQUOTE, + ACTIONS(8710), 1, + aux_sym_number_token1, + ACTIONS(8712), 1, + aux_sym_number_token2, + ACTIONS(8714), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(8716), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8718), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, + ACTIONS(8720), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9082), 1, + ACTIONS(8730), 1, + sym__brace_start, + ACTIONS(9403), 1, + sym_word, + ACTIONS(9405), 1, + sym_ansi_c_string, + ACTIONS(9407), 1, sym_test_operator, - ACTIONS(9084), 1, - sym_regex, - STATE(1372), 1, + STATE(3583), 1, aux_sym__literal_repeat1, - STATE(1621), 1, - sym_concatenation, - ACTIONS(9064), 2, + ACTIONS(8694), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9072), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9080), 2, + ACTIONS(8722), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1103), 9, + STATE(1587), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(3533), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [199060] = 19, + [204768] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(4211), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(8005), 1, + sym_variable_name, + STATE(4476), 1, + sym_string, + ACTIONS(8003), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8001), 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(1255), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [204818] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(2410), 1, + sym_word, + ACTIONS(2416), 1, + anon_sym_DOLLAR, + ACTIONS(2424), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(2426), 1, aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(2430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(2438), 1, + sym_test_operator, + ACTIONS(2440), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(9459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9461), 1, + sym__special_character, + ACTIONS(9463), 1, + anon_sym_DQUOTE, + ACTIONS(9465), 1, + anon_sym_SQUOTE, + ACTIONS(9467), 1, + sym_ansi_c_string, + ACTIONS(9469), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9471), 1, anon_sym_BQUOTE, - ACTIONS(8854), 1, - sym_word, - ACTIONS(8862), 1, - sym_test_operator, - ACTIONS(9086), 1, - anon_sym_RBRACK, - ACTIONS(288), 2, + ACTIONS(9473), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(1703), 1, + aux_sym__literal_repeat1, + ACTIONS(9457), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(9475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8858), 2, - sym__special_character, - sym__comment_word, - ACTIONS(8860), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2670), 9, + STATE(592), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1292), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [199131] = 20, - ACTIONS(71), 1, + [204894] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5499), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5501), 22, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [204934] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3732), 1, + ACTIONS(2410), 1, sym_word, - ACTIONS(3738), 1, + ACTIONS(2416), 1, anon_sym_DOLLAR, - ACTIONS(3742), 1, + ACTIONS(2424), 1, aux_sym_number_token1, - ACTIONS(3744), 1, + ACTIONS(2426), 1, aux_sym_number_token2, - ACTIONS(3748), 1, + ACTIONS(2430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3756), 1, + ACTIONS(2438), 1, sym_test_operator, - ACTIONS(3758), 1, + ACTIONS(2440), 1, sym__brace_start, - ACTIONS(8838), 1, + ACTIONS(9459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8840), 1, + ACTIONS(9461), 1, sym__special_character, - ACTIONS(8842), 1, + ACTIONS(9463), 1, anon_sym_DQUOTE, - ACTIONS(8846), 1, + ACTIONS(9465), 1, + anon_sym_SQUOTE, + ACTIONS(9467), 1, + sym_ansi_c_string, + ACTIONS(9469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8848), 1, + ACTIONS(9471), 1, anon_sym_BQUOTE, - ACTIONS(8850), 1, + ACTIONS(9473), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2287), 1, + STATE(1703), 1, aux_sym__literal_repeat1, - ACTIONS(8836), 2, + ACTIONS(9457), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8844), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8852), 2, + ACTIONS(9475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(750), 2, + STATE(593), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1780), 9, + STATE(1292), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [199204] = 20, - ACTIONS(71), 1, + [205010] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8090), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, + ACTIONS(8213), 1, anon_sym_DOLLAR, - ACTIONS(8096), 1, + ACTIONS(8215), 1, + sym__special_character, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(8104), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, + ACTIONS(8243), 1, sym__brace_start, - ACTIONS(8476), 1, - sym__special_character, - ACTIONS(9044), 1, + ACTIONS(9477), 1, sym_word, - ACTIONS(9048), 1, + ACTIONS(9479), 1, + sym_ansi_c_string, + ACTIONS(9481), 1, sym_test_operator, - STATE(1777), 1, + STATE(1873), 1, aux_sym__literal_repeat1, - ACTIONS(8086), 2, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9046), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(640), 2, + STATE(690), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1415), 9, + STATE(1745), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [199277] = 19, + [205086] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(9061), 1, + anon_sym_DQUOTE, + ACTIONS(9065), 1, + sym_variable_name, + STATE(5511), 1, + sym_string, + ACTIONS(9063), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(9059), 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(1267), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [205136] = 20, + ACTIONS(3), 1, + sym_comment, ACTIONS(307), 1, - anon_sym_DQUOTE, + anon_sym_DOLLAR_LBRACK, ACTIONS(311), 1, + anon_sym_DOLLAR, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(5851), 1, anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(9189), 1, sym_word, - ACTIONS(8862), 1, + ACTIONS(9197), 1, sym_test_operator, - ACTIONS(9088), 1, + ACTIONS(9483), 1, anon_sym_RBRACK, - ACTIONS(288), 2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8858), 2, + ACTIONS(9193), 2, sym__special_character, sym__comment_word, - ACTIONS(8860), 3, + ACTIONS(9195), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2670), 9, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [199348] = 20, - ACTIONS(71), 1, + [205210] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(5189), 1, - sym_word, - ACTIONS(5193), 1, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5195), 1, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(5197), 1, - sym__special_character, - ACTIONS(5199), 1, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(5203), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(5205), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(5207), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5209), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5211), 1, - anon_sym_BQUOTE, - ACTIONS(5213), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5217), 1, - sym_test_operator, - ACTIONS(5219), 1, + ACTIONS(337), 1, sym__brace_start, - STATE(3035), 1, - aux_sym__literal_repeat1, - ACTIONS(5191), 2, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(9189), 1, + sym_word, + ACTIONS(9197), 1, + sym_test_operator, + ACTIONS(9485), 1, + anon_sym_RBRACK, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5201), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5215), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1068), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2664), 9, + ACTIONS(9193), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9195), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [199421] = 20, - ACTIONS(71), 1, + [205284] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(5189), 1, - sym_word, - ACTIONS(5193), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5195), 1, + ACTIONS(8213), 1, anon_sym_DOLLAR, - ACTIONS(5197), 1, + ACTIONS(8215), 1, sym__special_character, - ACTIONS(5199), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(5203), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(5205), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(5207), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5209), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5211), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(5213), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5217), 1, - sym_test_operator, - ACTIONS(5219), 1, + ACTIONS(8243), 1, sym__brace_start, - STATE(3035), 1, + ACTIONS(9477), 1, + sym_word, + ACTIONS(9479), 1, + sym_ansi_c_string, + ACTIONS(9481), 1, + sym_test_operator, + STATE(1873), 1, aux_sym__literal_repeat1, - ACTIONS(5191), 2, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5201), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(5215), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(1070), 2, + STATE(691), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2664), 9, + STATE(1745), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [199494] = 20, - ACTIONS(71), 1, + [205360] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3992), 1, + ACTIONS(3817), 1, sym_word, - ACTIONS(3998), 1, + ACTIONS(3823), 1, anon_sym_DOLLAR, - ACTIONS(4002), 1, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(4008), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4016), 1, + ACTIONS(3845), 1, sym_test_operator, - ACTIONS(4018), 1, + ACTIONS(3847), 1, sym__brace_start, - ACTIONS(8820), 1, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9079), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9090), 1, + ACTIONS(9385), 1, sym__special_character, - STATE(2307), 1, + ACTIONS(9387), 1, + sym_ansi_c_string, + STATE(2301), 1, aux_sym__literal_repeat1, - ACTIONS(8818), 2, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9092), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(762), 2, + STATE(715), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1836), 9, + STATE(1809), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [199567] = 20, - ACTIONS(71), 1, + [205436] = 22, + ACTIONS(73), 1, sym_comment, - ACTIONS(2685), 1, - sym_word, - ACTIONS(2691), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(2697), 1, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(2699), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(2703), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2711), 1, - sym_test_operator, - ACTIONS(2713), 1, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(9096), 1, + ACTIONS(9253), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9098), 1, - sym__special_character, - ACTIONS(9100), 1, + ACTIONS(9257), 1, anon_sym_DQUOTE, - ACTIONS(9104), 1, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9106), 1, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(9108), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1902), 1, + ACTIONS(9273), 1, + sym_regex, + ACTIONS(9487), 1, + sym_word, + ACTIONS(9489), 1, + sym__special_character, + ACTIONS(9491), 1, + sym_ansi_c_string, + ACTIONS(9493), 1, + sym_test_operator, + STATE(1446), 1, aux_sym__literal_repeat1, - ACTIONS(9094), 2, + STATE(1534), 1, + sym_concatenation, + ACTIONS(9251), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9102), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9110), 2, + ACTIONS(9269), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(619), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1388), 9, + STATE(1316), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [199640] = 20, - ACTIONS(71), 1, + [205514] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(2685), 1, - sym_word, - ACTIONS(2691), 1, + ACTIONS(3419), 1, anon_sym_DOLLAR, - ACTIONS(2697), 1, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(2699), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(2703), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2711), 1, - sym_test_operator, - ACTIONS(2713), 1, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(9096), 1, + ACTIONS(3680), 1, + sym_word, + ACTIONS(3684), 1, + sym_test_operator, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9098), 1, + ACTIONS(9091), 1, sym__special_character, - ACTIONS(9100), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(9104), 1, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9097), 1, + sym_ansi_c_string, + ACTIONS(9099), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9106), 1, + ACTIONS(9101), 1, anon_sym_BQUOTE, - ACTIONS(9108), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1902), 1, + STATE(2246), 1, aux_sym__literal_repeat1, - ACTIONS(9094), 2, + ACTIONS(9087), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9102), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9110), 2, + ACTIONS(9105), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(620), 2, + STATE(697), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1388), 9, + STATE(1796), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [199713] = 19, - ACTIONS(3), 1, + [205590] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(8473), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(8475), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(8477), 1, + sym__special_character, + ACTIONS(8479), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(8481), 1, + anon_sym_SQUOTE, + ACTIONS(8485), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(8487), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(8489), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(8491), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(8493), 1, + anon_sym_BQUOTE, + ACTIONS(8495), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(8505), 1, sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(9495), 1, sym_word, - ACTIONS(8862), 1, + ACTIONS(9497), 1, + sym_ansi_c_string, + ACTIONS(9499), 1, sym_test_operator, - ACTIONS(9112), 1, - anon_sym_RBRACK, - ACTIONS(288), 2, + STATE(1709), 1, + aux_sym__literal_repeat1, + ACTIONS(8469), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(8497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8858), 2, - sym__special_character, - sym__comment_word, - ACTIONS(8860), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2670), 9, + STATE(599), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(1300), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [199784] = 20, - ACTIONS(71), 1, + [205666] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(1300), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3054), 1, - sym__brace_start, - ACTIONS(3694), 1, sym_word, - ACTIONS(3698), 1, + ACTIONS(1302), 22, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(8892), 1, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(8896), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(8900), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9050), 1, - sym__special_character, - STATE(2006), 1, - aux_sym__literal_repeat1, - ACTIONS(8890), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8906), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9052), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(743), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1858), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [199857] = 20, - ACTIONS(71), 1, + [205706] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8950), 1, - sym_word, - ACTIONS(8954), 1, + ACTIONS(8473), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8956), 1, + ACTIONS(8475), 1, anon_sym_DOLLAR, - ACTIONS(8958), 1, + ACTIONS(8477), 1, sym__special_character, - ACTIONS(8960), 1, + ACTIONS(8479), 1, anon_sym_DQUOTE, - ACTIONS(8964), 1, + ACTIONS(8481), 1, + anon_sym_SQUOTE, + ACTIONS(8485), 1, aux_sym_number_token1, - ACTIONS(8966), 1, + ACTIONS(8487), 1, aux_sym_number_token2, - ACTIONS(8968), 1, + ACTIONS(8489), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8970), 1, + ACTIONS(8491), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8972), 1, + ACTIONS(8493), 1, anon_sym_BQUOTE, - ACTIONS(8974), 1, + ACTIONS(8495), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8978), 1, - sym_test_operator, - ACTIONS(8980), 1, + ACTIONS(8505), 1, sym__brace_start, - STATE(2560), 1, + ACTIONS(9495), 1, + sym_word, + ACTIONS(9497), 1, + sym_ansi_c_string, + ACTIONS(9499), 1, + sym_test_operator, + STATE(1709), 1, aux_sym__literal_repeat1, - ACTIONS(8952), 2, + ACTIONS(8469), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8962), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8976), 2, + ACTIONS(8497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(812), 2, + STATE(587), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(2302), 9, + STATE(1300), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [199930] = 20, - ACTIONS(71), 1, + [205782] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(2317), 1, + ACTIONS(3529), 1, sym_word, - ACTIONS(2323), 1, + ACTIONS(3535), 1, anon_sym_DOLLAR, - ACTIONS(2327), 1, + ACTIONS(3543), 1, aux_sym_number_token1, - ACTIONS(2329), 1, + ACTIONS(3545), 1, aux_sym_number_token2, - ACTIONS(2333), 1, + ACTIONS(3549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2341), 1, + ACTIONS(3557), 1, sym_test_operator, - ACTIONS(2343), 1, + ACTIONS(3559), 1, sym__brace_start, - ACTIONS(9116), 1, + ACTIONS(9503), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9118), 1, + ACTIONS(9505), 1, sym__special_character, - ACTIONS(9120), 1, + ACTIONS(9507), 1, anon_sym_DQUOTE, - ACTIONS(9124), 1, + ACTIONS(9509), 1, + anon_sym_SQUOTE, + ACTIONS(9511), 1, + sym_ansi_c_string, + ACTIONS(9513), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9126), 1, + ACTIONS(9515), 1, anon_sym_BQUOTE, - ACTIONS(9128), 1, + ACTIONS(9517), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1522), 1, + STATE(2270), 1, aux_sym__literal_repeat1, - ACTIONS(9114), 2, + ACTIONS(9501), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9122), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9130), 2, + ACTIONS(9519), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(596), 2, + STATE(682), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1178), 9, + STATE(1718), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200003] = 20, - ACTIONS(71), 1, + [205858] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(2158), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(2160), 22, + 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_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [205898] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(2317), 1, + ACTIONS(3529), 1, sym_word, - ACTIONS(2323), 1, + ACTIONS(3535), 1, anon_sym_DOLLAR, - ACTIONS(2327), 1, + ACTIONS(3543), 1, aux_sym_number_token1, - ACTIONS(2329), 1, + ACTIONS(3545), 1, aux_sym_number_token2, - ACTIONS(2333), 1, + ACTIONS(3549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2341), 1, + ACTIONS(3557), 1, sym_test_operator, - ACTIONS(2343), 1, + ACTIONS(3559), 1, sym__brace_start, - ACTIONS(9116), 1, + ACTIONS(9503), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9118), 1, + ACTIONS(9505), 1, sym__special_character, - ACTIONS(9120), 1, + ACTIONS(9507), 1, anon_sym_DQUOTE, - ACTIONS(9124), 1, + ACTIONS(9509), 1, + anon_sym_SQUOTE, + ACTIONS(9511), 1, + sym_ansi_c_string, + ACTIONS(9513), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9126), 1, + ACTIONS(9515), 1, anon_sym_BQUOTE, - ACTIONS(9128), 1, + ACTIONS(9517), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1522), 1, + STATE(2270), 1, aux_sym__literal_repeat1, - ACTIONS(9114), 2, + ACTIONS(9501), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9122), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9130), 2, + ACTIONS(9519), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(597), 2, + STATE(683), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1178), 9, + STATE(1718), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200076] = 20, - ACTIONS(71), 1, + [205974] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3668), 1, + ACTIONS(2864), 1, + sym_word, + ACTIONS(2870), 1, anon_sym_DOLLAR, - ACTIONS(3674), 1, + ACTIONS(2878), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(2880), 1, aux_sym_number_token2, - ACTIONS(3680), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3692), 1, - sym__brace_start, - ACTIONS(7751), 1, - sym_word, - ACTIONS(7759), 1, + ACTIONS(2892), 1, sym_test_operator, - ACTIONS(8984), 1, + ACTIONS(2894), 1, + sym__brace_start, + ACTIONS(9523), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8986), 1, + ACTIONS(9525), 1, sym__special_character, - ACTIONS(8988), 1, + ACTIONS(9527), 1, anon_sym_DQUOTE, - ACTIONS(8992), 1, + ACTIONS(9529), 1, + anon_sym_SQUOTE, + ACTIONS(9531), 1, + sym_ansi_c_string, + ACTIONS(9533), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8994), 1, + ACTIONS(9535), 1, anon_sym_BQUOTE, - ACTIONS(8996), 1, + ACTIONS(9537), 1, anon_sym_DOLLAR_BQUOTE, - STATE(4920), 1, + STATE(2008), 1, aux_sym__literal_repeat1, - ACTIONS(8982), 2, + ACTIONS(9521), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8990), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8998), 2, + ACTIONS(9539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3456), 2, + STATE(623), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(4539), 9, + STATE(1322), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200149] = 19, + [206050] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(5851), 1, anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(9189), 1, sym_word, - ACTIONS(8862), 1, + ACTIONS(9197), 1, sym_test_operator, - ACTIONS(9132), 1, + ACTIONS(9541), 1, anon_sym_RBRACK, - ACTIONS(288), 2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8858), 2, + ACTIONS(9193), 2, sym__special_character, sym__comment_word, - ACTIONS(8860), 3, + ACTIONS(9195), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2670), 9, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200220] = 20, - ACTIONS(71), 1, + [206124] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(8414), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8416), 1, - anon_sym_DOLLAR, - ACTIONS(8418), 1, - sym__special_character, - ACTIONS(8420), 1, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(4211), 1, anon_sym_DQUOTE, - ACTIONS(8424), 1, + ACTIONS(8005), 1, + sym_variable_name, + STATE(4476), 1, + sym_string, + ACTIONS(8003), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(8001), 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(1267), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_heredoc_redirect_token1, + [206174] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(3751), 1, + anon_sym_DOLLAR, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(8426), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8430), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8432), 1, - anon_sym_BQUOTE, - ACTIONS(8434), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8444), 1, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(9134), 1, + ACTIONS(7854), 1, sym_word, - ACTIONS(9138), 1, + ACTIONS(7862), 1, sym_test_operator, - STATE(1775), 1, + ACTIONS(9305), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9307), 1, + sym__special_character, + ACTIONS(9309), 1, + anon_sym_DQUOTE, + ACTIONS(9311), 1, + anon_sym_SQUOTE, + ACTIONS(9313), 1, + sym_ansi_c_string, + ACTIONS(9315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9317), 1, + anon_sym_BQUOTE, + ACTIONS(9319), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(5072), 1, aux_sym__literal_repeat1, - ACTIONS(8410), 2, + ACTIONS(9303), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8436), 2, + ACTIONS(9321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9136), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(644), 2, + STATE(3444), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1329), 9, + STATE(4560), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200293] = 20, - ACTIONS(71), 1, + [206250] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8414), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8416), 1, + ACTIONS(2864), 1, + sym_word, + ACTIONS(2870), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, - sym__special_character, - ACTIONS(8420), 1, - anon_sym_DQUOTE, - ACTIONS(8424), 1, + ACTIONS(2878), 1, aux_sym_number_token1, - ACTIONS(8426), 1, + ACTIONS(2880), 1, aux_sym_number_token2, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8430), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8432), 1, + ACTIONS(2892), 1, + sym_test_operator, + ACTIONS(2894), 1, + sym__brace_start, + ACTIONS(9523), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9525), 1, + sym__special_character, + ACTIONS(9527), 1, + anon_sym_DQUOTE, + ACTIONS(9529), 1, + anon_sym_SQUOTE, + ACTIONS(9531), 1, + sym_ansi_c_string, + ACTIONS(9533), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9535), 1, anon_sym_BQUOTE, - ACTIONS(8434), 1, + ACTIONS(9537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8444), 1, - sym__brace_start, - ACTIONS(9134), 1, - sym_word, - ACTIONS(9138), 1, - sym_test_operator, - STATE(1775), 1, + STATE(2008), 1, aux_sym__literal_repeat1, - ACTIONS(8410), 2, + ACTIONS(9521), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8436), 2, + ACTIONS(9539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9136), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(635), 2, + STATE(628), 2, sym_concatenation, aux_sym_for_statement_repeat1, - STATE(1329), 9, + STATE(1322), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200366] = 20, - ACTIONS(71), 1, + [206326] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(4771), 1, - sym_word, - ACTIONS(4775), 1, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4777), 1, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(4781), 1, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(4785), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(4787), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(4789), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4791), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4793), 1, - anon_sym_BQUOTE, - ACTIONS(4795), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4799), 1, - sym_test_operator, - ACTIONS(4801), 1, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(9140), 1, - sym__special_character, - STATE(2891), 1, - aux_sym__literal_repeat1, - ACTIONS(4773), 2, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(9189), 1, + sym_word, + ACTIONS(9197), 1, + sym_test_operator, + ACTIONS(9543), 1, + anon_sym_RBRACK, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4783), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4797), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(959), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2482), 9, + ACTIONS(9193), 2, + sym__special_character, + sym__comment_word, + ACTIONS(9195), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200439] = 21, - ACTIONS(71), 1, + [206400] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1454), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(1460), 1, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(9142), 1, + ACTIONS(7854), 1, sym_word, - ACTIONS(9146), 1, + ACTIONS(7862), 1, + sym_test_operator, + ACTIONS(9305), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9148), 1, + ACTIONS(9307), 1, sym__special_character, - ACTIONS(9150), 1, + ACTIONS(9309), 1, anon_sym_DQUOTE, - ACTIONS(9154), 1, + ACTIONS(9311), 1, + anon_sym_SQUOTE, + ACTIONS(9313), 1, + sym_ansi_c_string, + ACTIONS(9315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9156), 1, + ACTIONS(9317), 1, anon_sym_BQUOTE, - ACTIONS(9158), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9162), 1, - sym_test_operator, - ACTIONS(9164), 1, - sym_regex, - STATE(1288), 1, + STATE(5072), 1, aux_sym__literal_repeat1, - STATE(1429), 1, - sym_concatenation, - ACTIONS(9144), 2, + ACTIONS(9303), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9152), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9160), 2, + ACTIONS(9321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(901), 9, + STATE(3465), 2, + sym_concatenation, + aux_sym_for_statement_repeat1, + STATE(4560), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200514] = 20, - ACTIONS(71), 1, + [206476] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(3034), 1, + ACTIONS(5048), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_DOLLAR, - ACTIONS(3038), 1, aux_sym_number_token1, - ACTIONS(3040), 1, aux_sym_number_token2, - ACTIONS(3044), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3054), 1, + sym_word, + ACTIONS(5050), 22, + sym_file_descriptor, + sym_variable_name, + sym_test_operator, sym__brace_start, - ACTIONS(3694), 1, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [206516] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6133), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(3698), 1, + ACTIONS(6135), 22, + sym_file_descriptor, + sym_variable_name, sym_test_operator, - ACTIONS(8892), 1, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(8896), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(8900), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, anon_sym_BQUOTE, - ACTIONS(8904), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9050), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [206556] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8698), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8700), 1, + anon_sym_DOLLAR, + ACTIONS(8702), 1, sym__special_character, - STATE(2006), 1, + ACTIONS(8704), 1, + anon_sym_DQUOTE, + ACTIONS(8706), 1, + anon_sym_SQUOTE, + ACTIONS(8710), 1, + aux_sym_number_token1, + ACTIONS(8712), 1, + aux_sym_number_token2, + ACTIONS(8714), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8716), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8718), 1, + anon_sym_BQUOTE, + ACTIONS(8720), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8730), 1, + sym__brace_start, + ACTIONS(9545), 1, + sym_word, + ACTIONS(9547), 1, + sym_ansi_c_string, + ACTIONS(9549), 1, + sym_test_operator, + STATE(3625), 1, aux_sym__literal_repeat1, - ACTIONS(8890), 2, + STATE(3736), 1, + sym_concatenation, + ACTIONS(8694), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8906), 2, + ACTIONS(8722), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9052), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(744), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1858), 9, + STATE(3529), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200587] = 21, - ACTIONS(71), 1, + [206631] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1494), 1, - anon_sym_DOLLAR, - ACTIONS(1500), 1, + ACTIONS(1598), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1600), 1, aux_sym_number_token2, - ACTIONS(1506), 1, + ACTIONS(1604), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, + ACTIONS(1616), 1, sym__brace_start, - ACTIONS(9066), 1, + ACTIONS(9213), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9070), 1, + ACTIONS(9217), 1, anon_sym_DQUOTE, - ACTIONS(9074), 1, + ACTIONS(9219), 1, + anon_sym_SQUOTE, + ACTIONS(9223), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9084), 1, - sym_regex, - ACTIONS(9166), 1, + ACTIONS(9551), 1, sym_word, - ACTIONS(9168), 1, - sym__special_character, - ACTIONS(9172), 1, - sym_test_operator, - STATE(1372), 1, - aux_sym__literal_repeat1, - STATE(1621), 1, - sym_concatenation, - ACTIONS(9064), 2, + ACTIONS(9553), 1, + anon_sym_DOLLAR, + ACTIONS(9559), 1, + sym__comment_word, + ACTIONS(9211), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, + ACTIONS(9229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9170), 2, - sym_raw_string, + ACTIONS(9555), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9557), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(1923), 9, + STATE(1238), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200662] = 20, - ACTIONS(71), 1, + [206702] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3159), 1, - sym_word, - ACTIONS(3165), 1, - anon_sym_DOLLAR, - ACTIONS(3171), 1, + ACTIONS(2742), 1, aux_sym_number_token1, - ACTIONS(3173), 1, + ACTIONS(2744), 1, aux_sym_number_token2, - ACTIONS(3177), 1, + ACTIONS(2748), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3185), 1, - sym_test_operator, - ACTIONS(3187), 1, + ACTIONS(2760), 1, sym__brace_start, - ACTIONS(9176), 1, + ACTIONS(9561), 1, + sym_word, + ACTIONS(9565), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9178), 1, - sym__special_character, - ACTIONS(9180), 1, + ACTIONS(9567), 1, + anon_sym_DOLLAR, + ACTIONS(9571), 1, anon_sym_DQUOTE, - ACTIONS(9184), 1, + ACTIONS(9573), 1, + anon_sym_SQUOTE, + ACTIONS(9577), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9186), 1, + ACTIONS(9579), 1, anon_sym_BQUOTE, - ACTIONS(9188), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1945), 1, - aux_sym__literal_repeat1, - ACTIONS(9174), 2, + ACTIONS(9585), 1, + sym__comment_word, + ACTIONS(9563), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9182), 2, - sym_raw_string, + ACTIONS(9569), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9575), 2, + sym__bare_dollar, sym_ansi_c_string, - ACTIONS(9190), 2, + ACTIONS(9583), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(686), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1574), 9, + STATE(1572), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200735] = 20, - ACTIONS(71), 1, + [206773] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8488), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8490), 1, + ACTIONS(3499), 1, anon_sym_DOLLAR, - ACTIONS(8492), 1, - sym__special_character, - ACTIONS(8494), 1, - anon_sym_DQUOTE, - ACTIONS(8498), 1, + ACTIONS(3507), 1, aux_sym_number_token1, - ACTIONS(8500), 1, + ACTIONS(3509), 1, aux_sym_number_token2, - ACTIONS(8502), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8504), 1, + ACTIONS(3513), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8506), 1, - anon_sym_BQUOTE, - ACTIONS(8508), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8518), 1, + ACTIONS(3523), 1, sym__brace_start, - ACTIONS(9192), 1, + ACTIONS(9587), 1, sym_word, - ACTIONS(9196), 1, + ACTIONS(9591), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9593), 1, + sym__special_character, + ACTIONS(9595), 1, + anon_sym_DQUOTE, + ACTIONS(9597), 1, + anon_sym_SQUOTE, + ACTIONS(9599), 1, + sym_ansi_c_string, + ACTIONS(9601), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9603), 1, + anon_sym_BQUOTE, + ACTIONS(9605), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9609), 1, sym_test_operator, - STATE(1539), 1, + STATE(4465), 1, aux_sym__literal_repeat1, - ACTIONS(8484), 2, + STATE(5034), 1, + sym_concatenation, + ACTIONS(9589), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8510), 2, + ACTIONS(9607), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9194), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(598), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1191), 9, + STATE(4409), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200808] = 20, - ACTIONS(71), 1, + [206848] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8340), 1, - anon_sym_DOLLAR, - ACTIONS(8342), 1, - sym__special_character, - ACTIONS(8344), 1, - anon_sym_DQUOTE, - ACTIONS(8348), 1, + ACTIONS(3543), 1, aux_sym_number_token1, - ACTIONS(8350), 1, + ACTIONS(3545), 1, aux_sym_number_token2, - ACTIONS(8352), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8354), 1, + ACTIONS(3549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8356), 1, + ACTIONS(3559), 1, + sym__brace_start, + ACTIONS(9503), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9507), 1, + anon_sym_DQUOTE, + ACTIONS(9509), 1, + anon_sym_SQUOTE, + ACTIONS(9513), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9515), 1, anon_sym_BQUOTE, - ACTIONS(8358), 1, + ACTIONS(9517), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8368), 1, - sym__brace_start, - ACTIONS(9000), 1, + ACTIONS(9611), 1, sym_word, - ACTIONS(9004), 1, - sym_test_operator, - STATE(3542), 1, - aux_sym__literal_repeat1, - ACTIONS(8334), 2, + ACTIONS(9613), 1, + anon_sym_DOLLAR, + ACTIONS(9619), 1, + sym__comment_word, + ACTIONS(9501), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8360), 2, + ACTIONS(9519), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9002), 2, - sym_raw_string, + ACTIONS(9615), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9617), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(1862), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(3476), 9, + STATE(1834), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200881] = 20, - ACTIONS(71), 1, + [206919] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8488), 1, + ACTIONS(4979), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8490), 1, + ACTIONS(4981), 1, anon_sym_DOLLAR, - ACTIONS(8492), 1, - sym__special_character, - ACTIONS(8494), 1, + ACTIONS(4985), 1, anon_sym_DQUOTE, - ACTIONS(8498), 1, + ACTIONS(4987), 1, + anon_sym_SQUOTE, + ACTIONS(4991), 1, aux_sym_number_token1, - ACTIONS(8500), 1, + ACTIONS(4993), 1, aux_sym_number_token2, - ACTIONS(8502), 1, + ACTIONS(4995), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8504), 1, + ACTIONS(4997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8506), 1, + ACTIONS(4999), 1, anon_sym_BQUOTE, - ACTIONS(8508), 1, + ACTIONS(5001), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8518), 1, + ACTIONS(5007), 1, sym__brace_start, - ACTIONS(9192), 1, + ACTIONS(9621), 1, sym_word, - ACTIONS(9196), 1, + ACTIONS(9623), 1, + sym__special_character, + ACTIONS(9625), 1, + sym_ansi_c_string, + ACTIONS(9627), 1, sym_test_operator, - STATE(1539), 1, + STATE(5316), 1, aux_sym__literal_repeat1, - ACTIONS(8484), 2, + STATE(5587), 1, + sym_concatenation, + ACTIONS(4977), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8510), 2, + ACTIONS(5003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9194), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(610), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1191), 9, + STATE(5234), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [200954] = 20, - ACTIONS(71), 1, + [206994] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4924), 1, - sym_word, - ACTIONS(4928), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4930), 1, + ACTIONS(3499), 1, anon_sym_DOLLAR, - ACTIONS(4932), 1, - sym__special_character, - ACTIONS(4934), 1, - anon_sym_DQUOTE, - ACTIONS(4938), 1, + ACTIONS(3507), 1, aux_sym_number_token1, - ACTIONS(4940), 1, + ACTIONS(3509), 1, aux_sym_number_token2, - ACTIONS(4942), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4944), 1, + ACTIONS(3513), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4946), 1, + ACTIONS(3523), 1, + sym__brace_start, + ACTIONS(9591), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9593), 1, + sym__special_character, + ACTIONS(9595), 1, + anon_sym_DQUOTE, + ACTIONS(9597), 1, + anon_sym_SQUOTE, + ACTIONS(9601), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9603), 1, anon_sym_BQUOTE, - ACTIONS(4948), 1, + ACTIONS(9605), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4952), 1, + ACTIONS(9629), 1, + sym_word, + ACTIONS(9631), 1, + sym_ansi_c_string, + ACTIONS(9633), 1, sym_test_operator, - ACTIONS(4954), 1, - sym__brace_start, - STATE(2818), 1, + STATE(4498), 1, aux_sym__literal_repeat1, - ACTIONS(4926), 2, + STATE(4952), 1, + sym_concatenation, + ACTIONS(9589), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4936), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4950), 2, + ACTIONS(9607), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(974), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2532), 9, + STATE(4424), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [201027] = 20, - ACTIONS(71), 1, + [207069] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(4924), 1, - sym_word, - ACTIONS(4928), 1, + ACTIONS(195), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4930), 1, + ACTIONS(197), 1, anon_sym_DOLLAR, - ACTIONS(4932), 1, - sym__special_character, - ACTIONS(4934), 1, + ACTIONS(201), 1, anon_sym_DQUOTE, - ACTIONS(4938), 1, + ACTIONS(203), 1, + anon_sym_SQUOTE, + ACTIONS(207), 1, aux_sym_number_token1, - ACTIONS(4940), 1, + ACTIONS(209), 1, aux_sym_number_token2, - ACTIONS(4942), 1, + ACTIONS(211), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4944), 1, + ACTIONS(213), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4946), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(4948), 1, + ACTIONS(217), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4952), 1, - sym_test_operator, - ACTIONS(4954), 1, + ACTIONS(227), 1, sym__brace_start, - STATE(2818), 1, - aux_sym__literal_repeat1, - ACTIONS(4926), 2, + ACTIONS(9635), 1, + sym_word, + ACTIONS(9641), 1, + sym__comment_word, + ACTIONS(193), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4936), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4950), 2, + ACTIONS(219), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(975), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2532), 9, + ACTIONS(9637), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9639), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(508), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [201100] = 8, + [207140] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, - sym_file_descriptor, - ACTIONS(9028), 1, - anon_sym_DQUOTE, - ACTIONS(9032), 1, - sym_variable_name, - STATE(5447), 1, - sym_string, - ACTIONS(9030), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(9026), 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(1227), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [201149] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8376), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, - anon_sym_DOLLAR, - ACTIONS(8380), 1, - sym__special_character, - ACTIONS(8382), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(8386), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(8388), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(8390), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8392), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8406), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(9198), 1, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(9643), 1, sym_word, - ACTIONS(9202), 1, - sym_test_operator, - STATE(2633), 1, - aux_sym__literal_repeat1, - ACTIONS(8372), 2, + ACTIONS(9645), 1, + anon_sym_DOLLAR, + ACTIONS(9651), 1, + sym__comment_word, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8398), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9200), 2, - sym_raw_string, + ACTIONS(9647), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9649), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(882), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2362), 9, + STATE(2410), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [201222] = 20, - ACTIONS(71), 1, + [207211] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8376), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, - anon_sym_DOLLAR, - ACTIONS(8380), 1, - sym__special_character, - ACTIONS(8382), 1, - anon_sym_DQUOTE, - ACTIONS(8386), 1, + ACTIONS(3296), 1, aux_sym_number_token1, - ACTIONS(8388), 1, + ACTIONS(3298), 1, aux_sym_number_token2, - ACTIONS(8390), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8392), 1, + ACTIONS(3302), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(3312), 1, + sym__brace_start, + ACTIONS(9415), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9419), 1, + anon_sym_DQUOTE, + ACTIONS(9421), 1, + anon_sym_SQUOTE, + ACTIONS(9425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9427), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(9429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8406), 1, - sym__brace_start, - ACTIONS(9198), 1, + ACTIONS(9653), 1, sym_word, - ACTIONS(9202), 1, - sym_test_operator, - STATE(2633), 1, - aux_sym__literal_repeat1, - ACTIONS(8372), 2, + ACTIONS(9655), 1, + anon_sym_DOLLAR, + ACTIONS(9661), 1, + sym__comment_word, + ACTIONS(9413), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8398), 2, + ACTIONS(9431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9200), 2, - sym_raw_string, + ACTIONS(9657), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9659), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(881), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2362), 9, + STATE(2029), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [201295] = 19, + [207282] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(9643), 1, sym_word, - ACTIONS(8862), 1, - sym_test_operator, - ACTIONS(9204), 1, - anon_sym_RBRACK, - ACTIONS(288), 2, + ACTIONS(9651), 1, + sym__comment_word, + ACTIONS(9663), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8858), 2, + ACTIONS(9647), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(8860), 3, + ACTIONS(9649), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2670), 9, + STATE(2410), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [201366] = 19, + [207353] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(3288), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(3296), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(3298), 1, aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(3302), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(3312), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(9415), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9419), 1, + anon_sym_DQUOTE, + ACTIONS(9421), 1, + anon_sym_SQUOTE, + ACTIONS(9425), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9427), 1, anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(9429), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9653), 1, sym_word, - ACTIONS(8862), 1, - sym_test_operator, - ACTIONS(9206), 1, - anon_sym_RBRACK, - ACTIONS(288), 2, + ACTIONS(9661), 1, + sym__comment_word, + ACTIONS(9413), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(9431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8858), 2, + ACTIONS(9657), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(8860), 3, + ACTIONS(9659), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2670), 9, + STATE(2029), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [201437] = 20, - ACTIONS(71), 1, + [207424] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3998), 1, - anon_sym_DOLLAR, - ACTIONS(4002), 1, + ACTIONS(3543), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(3545), 1, aux_sym_number_token2, - ACTIONS(4008), 1, + ACTIONS(3549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4018), 1, + ACTIONS(3559), 1, sym__brace_start, - ACTIONS(4098), 1, - sym_word, - ACTIONS(4102), 1, - sym_test_operator, - ACTIONS(8820), 1, + ACTIONS(9503), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, + ACTIONS(9507), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9509), 1, + anon_sym_SQUOTE, + ACTIONS(9513), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9515), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9517), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9034), 1, - sym__special_character, - STATE(2307), 1, - aux_sym__literal_repeat1, - ACTIONS(8818), 2, + ACTIONS(9611), 1, + sym_word, + ACTIONS(9619), 1, + sym__comment_word, + ACTIONS(9665), 1, + anon_sym_DOLLAR, + ACTIONS(9501), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, + ACTIONS(9519), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9036), 2, - sym_raw_string, + ACTIONS(9615), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9617), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(794), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2129), 9, + STATE(1834), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [201510] = 20, - ACTIONS(71), 1, + [207495] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3269), 1, - sym_word, - ACTIONS(3275), 1, - anon_sym_DOLLAR, - ACTIONS(3281), 1, + ACTIONS(3296), 1, aux_sym_number_token1, - ACTIONS(3283), 1, + ACTIONS(3298), 1, aux_sym_number_token2, - ACTIONS(3287), 1, + ACTIONS(3302), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3295), 1, - sym_test_operator, - ACTIONS(3297), 1, + ACTIONS(3312), 1, sym__brace_start, - ACTIONS(9210), 1, + ACTIONS(9415), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9212), 1, - sym__special_character, - ACTIONS(9214), 1, + ACTIONS(9419), 1, anon_sym_DQUOTE, - ACTIONS(9218), 1, + ACTIONS(9421), 1, + anon_sym_SQUOTE, + ACTIONS(9425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9220), 1, + ACTIONS(9427), 1, anon_sym_BQUOTE, - ACTIONS(9222), 1, + ACTIONS(9429), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2234), 1, - aux_sym__literal_repeat1, - ACTIONS(9208), 2, + ACTIONS(9653), 1, + sym_word, + ACTIONS(9661), 1, + sym__comment_word, + ACTIONS(9667), 1, + anon_sym_DOLLAR, + ACTIONS(9413), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9216), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9224), 2, + ACTIONS(9431), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(672), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1559), 9, + ACTIONS(9657), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9659), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2029), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [201583] = 20, - ACTIONS(71), 1, + [207566] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3028), 1, - sym_word, - ACTIONS(3034), 1, - anon_sym_DOLLAR, - ACTIONS(3038), 1, + ACTIONS(2742), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(2744), 1, aux_sym_number_token2, - ACTIONS(3044), 1, + ACTIONS(2748), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3052), 1, - sym_test_operator, - ACTIONS(3054), 1, + ACTIONS(2760), 1, sym__brace_start, - ACTIONS(8892), 1, + ACTIONS(9561), 1, + sym_word, + ACTIONS(9565), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8894), 1, - sym__special_character, - ACTIONS(8896), 1, + ACTIONS(9571), 1, anon_sym_DQUOTE, - ACTIONS(8900), 1, + ACTIONS(9573), 1, + anon_sym_SQUOTE, + ACTIONS(9577), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, + ACTIONS(9579), 1, anon_sym_BQUOTE, - ACTIONS(8904), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2006), 1, - aux_sym__literal_repeat1, - ACTIONS(8890), 2, + ACTIONS(9585), 1, + sym__comment_word, + ACTIONS(9669), 1, + anon_sym_DOLLAR, + ACTIONS(9563), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8898), 2, - sym_raw_string, + ACTIONS(9569), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9575), 2, + sym__bare_dollar, sym_ansi_c_string, - ACTIONS(8906), 2, + ACTIONS(9583), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(660), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1578), 9, + STATE(1572), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [201656] = 20, - ACTIONS(71), 1, + [207637] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3269), 1, - sym_word, - ACTIONS(3275), 1, + ACTIONS(1446), 1, anon_sym_DOLLAR, - ACTIONS(3281), 1, + ACTIONS(1454), 1, aux_sym_number_token1, - ACTIONS(3283), 1, + ACTIONS(1456), 1, aux_sym_number_token2, - ACTIONS(3287), 1, + ACTIONS(1460), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3295), 1, - sym_test_operator, - ACTIONS(3297), 1, + ACTIONS(1472), 1, sym__brace_start, - ACTIONS(9210), 1, + ACTIONS(9161), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9212), 1, + ACTIONS(9163), 1, sym__special_character, - ACTIONS(9214), 1, + ACTIONS(9165), 1, anon_sym_DQUOTE, - ACTIONS(9218), 1, + ACTIONS(9167), 1, + anon_sym_SQUOTE, + ACTIONS(9171), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9220), 1, + ACTIONS(9173), 1, anon_sym_BQUOTE, - ACTIONS(9222), 1, + ACTIONS(9175), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2234), 1, + ACTIONS(9671), 1, + sym_word, + ACTIONS(9673), 1, + sym_ansi_c_string, + ACTIONS(9675), 1, + sym_test_operator, + STATE(1064), 1, aux_sym__literal_repeat1, - ACTIONS(9208), 2, + STATE(1283), 1, + sym_concatenation, + ACTIONS(9159), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9216), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9224), 2, + ACTIONS(9177), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(673), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1559), 9, + STATE(902), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [201729] = 20, - ACTIONS(71), 1, + [207712] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3668), 1, + ACTIONS(4979), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4981), 1, anon_sym_DOLLAR, - ACTIONS(3674), 1, + ACTIONS(4985), 1, + anon_sym_DQUOTE, + ACTIONS(4987), 1, + anon_sym_SQUOTE, + ACTIONS(4991), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(4993), 1, aux_sym_number_token2, - ACTIONS(3680), 1, + ACTIONS(4995), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3692), 1, + ACTIONS(4999), 1, + anon_sym_BQUOTE, + ACTIONS(5001), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5007), 1, sym__brace_start, - ACTIONS(7751), 1, + ACTIONS(9623), 1, + sym__special_character, + ACTIONS(9677), 1, sym_word, - ACTIONS(7759), 1, + ACTIONS(9679), 1, + sym_ansi_c_string, + ACTIONS(9681), 1, sym_test_operator, - ACTIONS(8984), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8986), 1, - sym__special_character, - ACTIONS(8988), 1, - anon_sym_DQUOTE, - ACTIONS(8992), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8994), 1, - anon_sym_BQUOTE, - ACTIONS(8996), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(4920), 1, + STATE(5323), 1, aux_sym__literal_repeat1, - ACTIONS(8982), 2, + STATE(5607), 1, + sym_concatenation, + ACTIONS(4977), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8990), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(8998), 2, + ACTIONS(5003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(3486), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(4539), 9, + STATE(5237), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [201802] = 20, - ACTIONS(71), 1, + [207787] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3159), 1, - sym_word, - ACTIONS(3165), 1, + ACTIONS(1446), 1, anon_sym_DOLLAR, - ACTIONS(3171), 1, + ACTIONS(1454), 1, aux_sym_number_token1, - ACTIONS(3173), 1, + ACTIONS(1456), 1, aux_sym_number_token2, - ACTIONS(3177), 1, + ACTIONS(1460), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3185), 1, - sym_test_operator, - ACTIONS(3187), 1, + ACTIONS(1472), 1, sym__brace_start, - ACTIONS(9176), 1, + ACTIONS(9161), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9178), 1, + ACTIONS(9163), 1, sym__special_character, - ACTIONS(9180), 1, + ACTIONS(9165), 1, anon_sym_DQUOTE, - ACTIONS(9184), 1, + ACTIONS(9167), 1, + anon_sym_SQUOTE, + ACTIONS(9171), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9186), 1, + ACTIONS(9173), 1, anon_sym_BQUOTE, - ACTIONS(9188), 1, + ACTIONS(9175), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1945), 1, + ACTIONS(9683), 1, + sym_word, + ACTIONS(9685), 1, + sym_ansi_c_string, + ACTIONS(9687), 1, + sym_test_operator, + STATE(1082), 1, aux_sym__literal_repeat1, - ACTIONS(9174), 2, + STATE(1286), 1, + sym_concatenation, + ACTIONS(9159), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9182), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9190), 2, + ACTIONS(9177), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(667), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1574), 9, + STATE(916), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [201875] = 20, - ACTIONS(71), 1, + [207862] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(4771), 1, - sym_word, - ACTIONS(4775), 1, + ACTIONS(367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4777), 1, - anon_sym_DOLLAR, - ACTIONS(4781), 1, + ACTIONS(373), 1, anon_sym_DQUOTE, - ACTIONS(4785), 1, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(379), 1, aux_sym_number_token1, - ACTIONS(4787), 1, + ACTIONS(381), 1, aux_sym_number_token2, - ACTIONS(4789), 1, + ACTIONS(383), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4791), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4793), 1, + ACTIONS(387), 1, anon_sym_BQUOTE, - ACTIONS(4795), 1, + ACTIONS(389), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4799), 1, - sym_test_operator, - ACTIONS(4801), 1, + ACTIONS(399), 1, sym__brace_start, - ACTIONS(9140), 1, - sym__special_character, - STATE(2891), 1, - aux_sym__literal_repeat1, - ACTIONS(4773), 2, + ACTIONS(9689), 1, + sym_word, + ACTIONS(9691), 1, + anon_sym_DOLLAR, + ACTIONS(9697), 1, + sym__comment_word, + ACTIONS(365), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4783), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4797), 2, + ACTIONS(391), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(958), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2482), 9, + ACTIONS(9693), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9695), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(1068), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [201948] = 19, + [207933] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, - anon_sym_DOLLAR, - ACTIONS(307), 1, + ACTIONS(373), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(379), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(381), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(383), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(387), 1, + anon_sym_BQUOTE, + ACTIONS(389), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(399), 1, sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(9689), 1, sym_word, - ACTIONS(8862), 1, - sym_test_operator, - ACTIONS(9226), 1, - anon_sym_RBRACK, - ACTIONS(288), 2, + ACTIONS(9697), 1, + sym__comment_word, + ACTIONS(9699), 1, + anon_sym_DOLLAR, + ACTIONS(365), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(391), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8858), 2, + ACTIONS(9693), 2, + sym_test_operator, sym__special_character, - sym__comment_word, - ACTIONS(8860), 3, + ACTIONS(9695), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2670), 9, + STATE(1068), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202019] = 21, - ACTIONS(71), 1, + [208004] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2655), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(2657), 1, - sym__special_character, - ACTIONS(2659), 1, - anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(2665), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(2667), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2669), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2671), 1, - anon_sym_BQUOTE, - ACTIONS(2673), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2681), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(9228), 1, + ACTIONS(9701), 1, sym_word, - ACTIONS(9232), 1, - sym_test_operator, - ACTIONS(9234), 1, - sym_regex, - STATE(2384), 1, - aux_sym__literal_repeat1, - STATE(2533), 1, - sym_concatenation, - ACTIONS(2647), 2, + ACTIONS(9705), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9709), 1, + anon_sym_DQUOTE, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9717), 1, + anon_sym_BQUOTE, + ACTIONS(9719), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9723), 1, + sym__comment_word, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2675), 2, + ACTIONS(9707), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9713), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9230), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2200), 9, + STATE(4347), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202094] = 20, - ACTIONS(71), 1, + [208075] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3992), 1, - sym_word, - ACTIONS(3998), 1, + ACTIONS(3240), 1, anon_sym_DOLLAR, - ACTIONS(4002), 1, + ACTIONS(3248), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(3250), 1, aux_sym_number_token2, - ACTIONS(4008), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4016), 1, - sym_test_operator, - ACTIONS(4018), 1, + ACTIONS(3266), 1, sym__brace_start, - ACTIONS(8820), 1, + ACTIONS(9725), 1, + sym_word, + ACTIONS(9729), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, + ACTIONS(9733), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9735), 1, + anon_sym_SQUOTE, + ACTIONS(9739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9741), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9743), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9090), 1, - sym__special_character, - STATE(2307), 1, - aux_sym__literal_repeat1, - ACTIONS(8818), 2, + ACTIONS(9747), 1, + sym__comment_word, + ACTIONS(9727), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, + ACTIONS(9731), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9737), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(9745), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9092), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(766), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1836), 9, + STATE(1865), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202167] = 20, - ACTIONS(71), 1, + [208146] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4597), 1, - sym_word, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4603), 1, + ACTIONS(2650), 1, anon_sym_DOLLAR, - ACTIONS(4607), 1, - anon_sym_DQUOTE, - ACTIONS(4611), 1, + ACTIONS(2658), 1, aux_sym_number_token1, - ACTIONS(4613), 1, + ACTIONS(2660), 1, aux_sym_number_token2, - ACTIONS(4615), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4617), 1, + ACTIONS(2664), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4619), 1, + ACTIONS(2674), 1, + sym__brace_start, + ACTIONS(9749), 1, + sym_word, + ACTIONS(9753), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9755), 1, + sym__special_character, + ACTIONS(9757), 1, + anon_sym_DQUOTE, + ACTIONS(9759), 1, + anon_sym_SQUOTE, + ACTIONS(9761), 1, + sym_ansi_c_string, + ACTIONS(9763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9765), 1, anon_sym_BQUOTE, - ACTIONS(4621), 1, + ACTIONS(9767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4625), 1, + ACTIONS(9771), 1, sym_test_operator, - ACTIONS(4627), 1, - sym__brace_start, - ACTIONS(8888), 1, - sym__special_character, - STATE(2607), 1, + STATE(4313), 1, aux_sym__literal_repeat1, - ACTIONS(4599), 2, + STATE(4737), 1, + sym_concatenation, + ACTIONS(9751), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4609), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(4623), 2, + ACTIONS(9769), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(888), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2381), 9, + STATE(4281), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202240] = 20, - ACTIONS(71), 1, + [208221] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 1, + ACTIONS(8339), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, + ACTIONS(8345), 1, anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(8347), 1, + anon_sym_SQUOTE, + ACTIONS(8351), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(8353), 1, aux_sym_number_token2, - ACTIONS(8104), 1, + ACTIONS(8355), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(8357), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(8359), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(8361), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, + ACTIONS(8371), 1, sym__brace_start, - ACTIONS(8264), 1, - sym__special_character, - ACTIONS(9236), 1, + ACTIONS(9773), 1, sym_word, - ACTIONS(9240), 1, - sym_test_operator, - STATE(1777), 1, - aux_sym__literal_repeat1, - ACTIONS(8086), 2, + ACTIONS(9775), 1, + anon_sym_DOLLAR, + ACTIONS(9781), 1, + sym__comment_word, + ACTIONS(8335), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(8363), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9238), 2, - sym_raw_string, + ACTIONS(9777), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9779), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(698), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1646), 9, + STATE(1177), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202313] = 20, - ACTIONS(71), 1, + [208292] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(2806), 1, - sym_word, - ACTIONS(2812), 1, + ACTIONS(2650), 1, anon_sym_DOLLAR, - ACTIONS(2818), 1, + ACTIONS(2658), 1, aux_sym_number_token1, - ACTIONS(2820), 1, + ACTIONS(2660), 1, aux_sym_number_token2, - ACTIONS(2824), 1, + ACTIONS(2664), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2832), 1, - sym_test_operator, - ACTIONS(2834), 1, + ACTIONS(2674), 1, sym__brace_start, - ACTIONS(9244), 1, + ACTIONS(9753), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9246), 1, + ACTIONS(9755), 1, sym__special_character, - ACTIONS(9248), 1, + ACTIONS(9757), 1, anon_sym_DQUOTE, - ACTIONS(9252), 1, + ACTIONS(9759), 1, + anon_sym_SQUOTE, + ACTIONS(9763), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9254), 1, + ACTIONS(9765), 1, anon_sym_BQUOTE, - ACTIONS(9256), 1, + ACTIONS(9767), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1918), 1, + ACTIONS(9783), 1, + sym_word, + ACTIONS(9785), 1, + sym_ansi_c_string, + ACTIONS(9787), 1, + sym_test_operator, + STATE(4316), 1, aux_sym__literal_repeat1, - ACTIONS(9242), 2, + STATE(4745), 1, + sym_concatenation, + ACTIONS(9751), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9250), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9258), 2, + ACTIONS(9769), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(629), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1421), 9, + STATE(4283), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202386] = 20, - ACTIONS(71), 1, + [208367] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, + ACTIONS(264), 1, anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(8104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, - anon_sym_BQUOTE, - ACTIONS(8110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(8264), 1, - sym__special_character, - ACTIONS(9236), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + ACTIONS(9789), 1, sym_word, - ACTIONS(9240), 1, - sym_test_operator, - STATE(1777), 1, - aux_sym__literal_repeat1, - ACTIONS(8086), 2, + ACTIONS(9795), 1, + sym__comment_word, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9238), 2, - sym_raw_string, + ACTIONS(9791), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9793), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(700), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1646), 9, + STATE(2698), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202459] = 20, - ACTIONS(71), 1, + [208438] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(2806), 1, - sym_word, - ACTIONS(2812), 1, - anon_sym_DOLLAR, - ACTIONS(2818), 1, - aux_sym_number_token1, - ACTIONS(2820), 1, - aux_sym_number_token2, - ACTIONS(2824), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2832), 1, - sym_test_operator, - ACTIONS(2834), 1, - sym__brace_start, - ACTIONS(9244), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9246), 1, - sym__special_character, - ACTIONS(9248), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(9252), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, + aux_sym_number_token1, + ACTIONS(8225), 1, + aux_sym_number_token2, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9254), 1, + ACTIONS(8229), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(9256), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - STATE(1918), 1, - aux_sym__literal_repeat1, - ACTIONS(9242), 2, + ACTIONS(8243), 1, + sym__brace_start, + ACTIONS(9797), 1, + sym_word, + ACTIONS(9799), 1, + anon_sym_DOLLAR, + ACTIONS(9805), 1, + sym__comment_word, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9250), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(9258), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(632), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(1421), 9, + ACTIONS(9801), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9803), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(1597), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202532] = 20, - ACTIONS(71), 1, + [208509] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3998), 1, - anon_sym_DOLLAR, - ACTIONS(4002), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(4008), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4018), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(4098), 1, + ACTIONS(9701), 1, sym_word, - ACTIONS(4102), 1, - sym_test_operator, - ACTIONS(8820), 1, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9034), 1, - sym__special_character, - STATE(2307), 1, - aux_sym__literal_repeat1, - ACTIONS(8818), 2, + ACTIONS(9723), 1, + sym__comment_word, + ACTIONS(9807), 1, + anon_sym_DOLLAR, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, + ACTIONS(9707), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9713), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9036), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(779), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2129), 9, + STATE(4347), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202605] = 21, - ACTIONS(71), 1, + [208580] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1494), 1, + ACTIONS(8827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8829), 1, anon_sym_DOLLAR, - ACTIONS(1500), 1, + ACTIONS(8833), 1, + anon_sym_DQUOTE, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(1506), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, - sym__brace_start, - ACTIONS(9066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9070), 1, - anon_sym_DQUOTE, - ACTIONS(9074), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(8845), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9084), 1, - sym_regex, - ACTIONS(9260), 1, + ACTIONS(8855), 1, + sym__brace_start, + ACTIONS(9809), 1, sym_word, - ACTIONS(9262), 1, - sym__special_character, - ACTIONS(9266), 1, - sym_test_operator, - STATE(1372), 1, - aux_sym__literal_repeat1, - STATE(1621), 1, - sym_concatenation, - ACTIONS(9064), 2, + ACTIONS(9815), 1, + sym__comment_word, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9264), 2, - sym_raw_string, + ACTIONS(9811), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9813), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(1272), 9, + STATE(5288), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202680] = 20, - ACTIONS(71), 1, + [208651] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3998), 1, - anon_sym_DOLLAR, - ACTIONS(4002), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(4008), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4018), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(4098), 1, + ACTIONS(9701), 1, sym_word, - ACTIONS(4102), 1, - sym_test_operator, - ACTIONS(8820), 1, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9034), 1, - sym__special_character, - STATE(2307), 1, - aux_sym__literal_repeat1, - ACTIONS(8818), 2, + ACTIONS(9723), 1, + sym__comment_word, + ACTIONS(9817), 1, + anon_sym_DOLLAR, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, + ACTIONS(9707), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9713), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9036), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(788), 2, - sym_concatenation, - aux_sym_for_statement_repeat1, - STATE(2129), 9, + STATE(4347), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202753] = 18, + [208722] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, - aux_sym_number_token1, - ACTIONS(2329), 1, - aux_sym_number_token2, - ACTIONS(2333), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2343), 1, - sym__brace_start, - ACTIONS(9116), 1, + ACTIONS(9111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9120), 1, + ACTIONS(9117), 1, anon_sym_DQUOTE, - ACTIONS(9124), 1, + ACTIONS(9119), 1, + anon_sym_SQUOTE, + ACTIONS(9123), 1, + aux_sym_number_token1, + ACTIONS(9125), 1, + aux_sym_number_token2, + ACTIONS(9127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9126), 1, + ACTIONS(9129), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(9131), 1, anon_sym_BQUOTE, - ACTIONS(9128), 1, + ACTIONS(9133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9268), 1, + ACTIONS(9139), 1, + sym__brace_start, + ACTIONS(9819), 1, sym_word, - ACTIONS(9270), 1, + ACTIONS(9821), 1, anon_sym_DOLLAR, - ACTIONS(9276), 1, + ACTIONS(9827), 1, sym__comment_word, - ACTIONS(9114), 2, + ACTIONS(9109), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9130), 2, + ACTIONS(9135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9272), 2, + ACTIONS(9823), 2, sym_test_operator, sym__special_character, - ACTIONS(9274), 3, + ACTIONS(9825), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1402), 9, + STATE(2400), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202821] = 18, - ACTIONS(3), 1, + [208793] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4928), 1, + ACTIONS(8473), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4934), 1, + ACTIONS(8475), 1, + anon_sym_DOLLAR, + ACTIONS(8477), 1, + sym__special_character, + ACTIONS(8479), 1, anon_sym_DQUOTE, - ACTIONS(4938), 1, + ACTIONS(8481), 1, + anon_sym_SQUOTE, + ACTIONS(8485), 1, aux_sym_number_token1, - ACTIONS(4940), 1, + ACTIONS(8487), 1, aux_sym_number_token2, - ACTIONS(4942), 1, + ACTIONS(8489), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4944), 1, + ACTIONS(8491), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4946), 1, + ACTIONS(8493), 1, anon_sym_BQUOTE, - ACTIONS(4948), 1, + ACTIONS(8495), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4954), 1, + ACTIONS(8505), 1, sym__brace_start, - ACTIONS(9278), 1, + ACTIONS(9829), 1, sym_word, - ACTIONS(9280), 1, - anon_sym_DOLLAR, - ACTIONS(9286), 1, - sym__comment_word, - ACTIONS(4926), 2, + ACTIONS(9831), 1, + sym_ansi_c_string, + ACTIONS(9833), 1, + sym_test_operator, + STATE(1711), 1, + aux_sym__literal_repeat1, + STATE(1989), 1, + sym_concatenation, + ACTIONS(8469), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4950), 2, + ACTIONS(8497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9282), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9284), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2604), 9, + STATE(1302), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202889] = 18, + [208868] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5281), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5287), 1, - anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(1454), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(1456), 1, aux_sym_number_token2, - ACTIONS(5295), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(1460), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, + ACTIONS(1472), 1, + sym__brace_start, + ACTIONS(9161), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9165), 1, + anon_sym_DQUOTE, + ACTIONS(9167), 1, + anon_sym_SQUOTE, + ACTIONS(9171), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9173), 1, anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(9175), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5307), 1, - sym__brace_start, - ACTIONS(9288), 1, + ACTIONS(9835), 1, sym_word, - ACTIONS(9290), 1, + ACTIONS(9837), 1, anon_sym_DOLLAR, - ACTIONS(9296), 1, + ACTIONS(9843), 1, sym__comment_word, - ACTIONS(5279), 2, + ACTIONS(9159), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(9177), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9292), 2, + ACTIONS(9839), 2, sym_test_operator, sym__special_character, - ACTIONS(9294), 3, + ACTIONS(9841), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(5487), 9, + STATE(967), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [202957] = 18, - ACTIONS(3), 1, + [208939] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(5281), 1, + ACTIONS(8473), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5287), 1, + ACTIONS(8475), 1, + anon_sym_DOLLAR, + ACTIONS(8477), 1, + sym__special_character, + ACTIONS(8479), 1, anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(8481), 1, + anon_sym_SQUOTE, + ACTIONS(8485), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(8487), 1, aux_sym_number_token2, - ACTIONS(5295), 1, + ACTIONS(8489), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(8491), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, + ACTIONS(8493), 1, anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(8495), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5307), 1, + ACTIONS(8505), 1, sym__brace_start, - ACTIONS(9288), 1, + ACTIONS(9845), 1, sym_word, - ACTIONS(9296), 1, - sym__comment_word, - ACTIONS(9298), 1, - anon_sym_DOLLAR, - ACTIONS(5279), 2, + ACTIONS(9847), 1, + sym_ansi_c_string, + ACTIONS(9849), 1, + sym_test_operator, + STATE(1712), 1, + aux_sym__literal_repeat1, + STATE(1994), 1, + sym_concatenation, + ACTIONS(8469), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(8497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9292), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9294), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5487), 9, + STATE(1304), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [203025] = 18, + [209014] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8292), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8298), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(8302), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(8304), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(8306), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8308), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8310), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(8312), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(8243), 1, sym__brace_start, - ACTIONS(9300), 1, + ACTIONS(9797), 1, sym_word, - ACTIONS(9302), 1, - anon_sym_DOLLAR, - ACTIONS(9308), 1, + ACTIONS(9805), 1, sym__comment_word, - ACTIONS(8288), 2, + ACTIONS(9851), 1, + anon_sym_DOLLAR, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8314), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9304), 2, + ACTIONS(9801), 2, sym_test_operator, sym__special_character, - ACTIONS(9306), 3, + ACTIONS(9803), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1259), 9, + STATE(1597), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [203093] = 18, + [209085] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2125), 1, - anon_sym_DOLLAR, - ACTIONS(2131), 1, + ACTIONS(2132), 1, aux_sym_number_token1, - ACTIONS(2133), 1, + ACTIONS(2134), 1, aux_sym_number_token2, - ACTIONS(2137), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2151), 1, + ACTIONS(2152), 1, sym__brace_start, - ACTIONS(8212), 1, + ACTIONS(8169), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8216), 1, + ACTIONS(8173), 1, anon_sym_DQUOTE, - ACTIONS(8220), 1, + ACTIONS(8175), 1, + anon_sym_SQUOTE, + ACTIONS(8179), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8222), 1, + ACTIONS(8181), 1, anon_sym_BQUOTE, - ACTIONS(8224), 1, + ACTIONS(8183), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9310), 1, + ACTIONS(9853), 1, sym_word, - ACTIONS(9316), 1, + ACTIONS(9855), 1, + anon_sym_DOLLAR, + ACTIONS(9861), 1, sym__comment_word, - ACTIONS(8208), 2, + ACTIONS(8165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8226), 2, + ACTIONS(8185), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9312), 2, + ACTIONS(9857), 2, sym_test_operator, sym__special_character, - ACTIONS(9314), 3, + ACTIONS(9859), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1628), 9, + STATE(1627), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [203161] = 18, + [209156] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8292), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8298), 1, - anon_sym_DQUOTE, - ACTIONS(8302), 1, + ACTIONS(2132), 1, aux_sym_number_token1, - ACTIONS(8304), 1, + ACTIONS(2134), 1, aux_sym_number_token2, - ACTIONS(8306), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8308), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8310), 1, + ACTIONS(2152), 1, + sym__brace_start, + ACTIONS(8169), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8173), 1, + anon_sym_DQUOTE, + ACTIONS(8175), 1, + anon_sym_SQUOTE, + ACTIONS(8179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8181), 1, anon_sym_BQUOTE, - ACTIONS(8312), 1, + ACTIONS(8183), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, - sym__brace_start, - ACTIONS(9300), 1, + ACTIONS(9853), 1, sym_word, - ACTIONS(9308), 1, + ACTIONS(9861), 1, sym__comment_word, - ACTIONS(9318), 1, + ACTIONS(9863), 1, anon_sym_DOLLAR, - ACTIONS(8288), 2, + ACTIONS(8165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8314), 2, + ACTIONS(8185), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9304), 2, + ACTIONS(9857), 2, sym_test_operator, sym__special_character, - ACTIONS(9306), 3, + ACTIONS(9859), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1259), 9, + STATE(1627), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [203229] = 20, - ACTIONS(71), 1, + [209227] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8414), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8416), 1, + ACTIONS(3751), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, - sym__special_character, - ACTIONS(8420), 1, - anon_sym_DQUOTE, - ACTIONS(8424), 1, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(8426), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8430), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8432), 1, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(9305), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9309), 1, + anon_sym_DQUOTE, + ACTIONS(9311), 1, + anon_sym_SQUOTE, + ACTIONS(9315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9317), 1, anon_sym_BQUOTE, - ACTIONS(8434), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8444), 1, - sym__brace_start, - ACTIONS(9320), 1, + ACTIONS(9865), 1, sym_word, - ACTIONS(9324), 1, - sym_test_operator, - STATE(1776), 1, - aux_sym__literal_repeat1, - STATE(2196), 1, - sym_concatenation, - ACTIONS(8410), 2, + ACTIONS(9871), 1, + sym__comment_word, + ACTIONS(9303), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8436), 2, + ACTIONS(9321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9322), 2, - sym_raw_string, + ACTIONS(9867), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9869), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(1422), 9, + STATE(4680), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [203301] = 18, - ACTIONS(3), 1, + [209298] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1700), 1, + ACTIONS(4040), 1, + anon_sym_DOLLAR, + ACTIONS(4048), 1, aux_sym_number_token1, - ACTIONS(1702), 1, + ACTIONS(4050), 1, aux_sym_number_token2, - ACTIONS(1706), 1, + ACTIONS(4054), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1720), 1, + ACTIONS(4064), 1, sym__brace_start, - ACTIONS(8240), 1, + ACTIONS(9873), 1, + sym_word, + ACTIONS(9877), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8244), 1, + ACTIONS(9879), 1, + sym__special_character, + ACTIONS(9881), 1, anon_sym_DQUOTE, - ACTIONS(8248), 1, + ACTIONS(9883), 1, + anon_sym_SQUOTE, + ACTIONS(9885), 1, + sym_ansi_c_string, + ACTIONS(9887), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8250), 1, + ACTIONS(9889), 1, anon_sym_BQUOTE, - ACTIONS(8252), 1, + ACTIONS(9891), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9326), 1, - sym_word, - ACTIONS(9328), 1, - anon_sym_DOLLAR, - ACTIONS(9334), 1, - sym__comment_word, - ACTIONS(8236), 2, + ACTIONS(9895), 1, + sym_test_operator, + STATE(4803), 1, + aux_sym__literal_repeat1, + STATE(5147), 1, + sym_concatenation, + ACTIONS(9875), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8254), 2, + ACTIONS(9893), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9330), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9332), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1269), 9, + STATE(4606), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [203369] = 18, - ACTIONS(3), 1, + [209373] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1700), 1, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(1702), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(1706), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1720), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(8240), 1, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8244), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(8248), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8250), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(8252), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9326), 1, + ACTIONS(9897), 1, sym_word, - ACTIONS(9334), 1, - sym__comment_word, - ACTIONS(9336), 1, - anon_sym_DOLLAR, - ACTIONS(8236), 2, + ACTIONS(9899), 1, + sym__special_character, + ACTIONS(9901), 1, + sym_ansi_c_string, + ACTIONS(9903), 1, + sym_test_operator, + STATE(4379), 1, + aux_sym__literal_repeat1, + STATE(4689), 1, + sym_concatenation, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8254), 2, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9330), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9332), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1269), 9, + STATE(4634), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [203437] = 21, - ACTIONS(71), 1, + [209448] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(4040), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, - anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(4048), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(4050), 1, aux_sym_number_token2, - ACTIONS(9356), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(4054), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(4064), 1, + sym__brace_start, + ACTIONS(9877), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9879), 1, + sym__special_character, + ACTIONS(9881), 1, + anon_sym_DQUOTE, + ACTIONS(9883), 1, + anon_sym_SQUOTE, + ACTIONS(9887), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9889), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(9891), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9364), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9366), 1, - sym_variable_name, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3321), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9905), 1, + sym_word, + ACTIONS(9907), 1, + sym_ansi_c_string, + ACTIONS(9909), 1, + sym_test_operator, + STATE(4823), 1, + aux_sym__literal_repeat1, + STATE(5141), 1, + sym_concatenation, + ACTIONS(9875), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9893), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4617), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [203511] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [209523] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, - anon_sym_DOLLAR, - ACTIONS(9350), 1, - anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(3248), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(3250), 1, aux_sym_number_token2, - ACTIONS(9356), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(3266), 1, + sym__brace_start, + ACTIONS(9725), 1, + sym_word, + ACTIONS(9729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9733), 1, + anon_sym_DQUOTE, + ACTIONS(9735), 1, + anon_sym_SQUOTE, + ACTIONS(9739), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9741), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(9743), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(9368), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3404), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9747), 1, + sym__comment_word, + ACTIONS(9911), 1, + anon_sym_DOLLAR, + ACTIONS(9727), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9731), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9737), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(9745), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1865), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [203585] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [209594] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, - anon_sym_DOLLAR, - ACTIONS(9350), 1, - anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(3248), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(3250), 1, aux_sym_number_token2, - ACTIONS(9356), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(3266), 1, + sym__brace_start, + ACTIONS(9725), 1, + sym_word, + ACTIONS(9729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9733), 1, + anon_sym_DQUOTE, + ACTIONS(9735), 1, + anon_sym_SQUOTE, + ACTIONS(9739), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9741), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(9743), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(9370), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3425), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9747), 1, + sym__comment_word, + ACTIONS(9913), 1, + anon_sym_DOLLAR, + ACTIONS(9727), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9731), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9737), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(9745), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1865), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [203659] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [209665] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(3823), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, - anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(9356), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(3847), 1, + sym__brace_start, + ACTIONS(9069), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9073), 1, + anon_sym_DQUOTE, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9079), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(9372), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3212), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9915), 1, + sym_word, + ACTIONS(9921), 1, + sym__comment_word, + ACTIONS(9067), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9085), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9917), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9919), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2221), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [203733] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [209736] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, - anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(8827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(9374), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3307), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8855), 1, + sym__brace_start, + ACTIONS(9809), 1, + sym_word, + ACTIONS(9815), 1, + sym__comment_word, + ACTIONS(9923), 1, + anon_sym_DOLLAR, + ACTIONS(8823), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8851), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9811), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9813), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(5288), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [203807] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [209807] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(8211), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8213), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(9376), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3365), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8243), 1, + sym__brace_start, + ACTIONS(8405), 1, + sym__special_character, + ACTIONS(9925), 1, + sym_word, + ACTIONS(9927), 1, + sym_ansi_c_string, + ACTIONS(9929), 1, + sym_test_operator, + STATE(1964), 1, + aux_sym__literal_repeat1, + STATE(2148), 1, + sym_concatenation, + ACTIONS(8207), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8235), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2387), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [203881] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [209882] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, - anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(8827), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8833), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(8835), 1, + anon_sym_SQUOTE, + ACTIONS(8839), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(8841), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(8845), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(9378), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3415), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [203955] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2470), 1, - aux_sym_number_token1, - ACTIONS(2472), 1, - aux_sym_number_token2, - ACTIONS(2476), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2488), 1, + ACTIONS(8855), 1, sym__brace_start, - ACTIONS(9380), 1, + ACTIONS(9809), 1, sym_word, - ACTIONS(9384), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9386), 1, - anon_sym_DOLLAR, - ACTIONS(9390), 1, - anon_sym_DQUOTE, - ACTIONS(9394), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9396), 1, - anon_sym_BQUOTE, - ACTIONS(9398), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9402), 1, + ACTIONS(9815), 1, sym__comment_word, - ACTIONS(9382), 2, + ACTIONS(9931), 1, + anon_sym_DOLLAR, + ACTIONS(8823), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9388), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9400), 2, + ACTIONS(8851), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9392), 3, + ACTIONS(9811), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9813), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1465), 9, + STATE(5288), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [204023] = 21, - ACTIONS(71), 1, + [209953] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(1488), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, - anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(9356), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(1514), 1, + sym__brace_start, + ACTIONS(9357), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9359), 1, + sym__special_character, + ACTIONS(9361), 1, + anon_sym_DQUOTE, + ACTIONS(9363), 1, + anon_sym_SQUOTE, + ACTIONS(9367), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9369), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(9371), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(9404), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3432), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9933), 1, + sym_word, + ACTIONS(9935), 1, + sym_ansi_c_string, + ACTIONS(9937), 1, + sym_test_operator, + STATE(1309), 1, + aux_sym__literal_repeat1, + STATE(1483), 1, + sym_concatenation, + ACTIONS(9355), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9373), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(949), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [204097] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [210028] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(1488), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, - anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(9356), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(1514), 1, + sym__brace_start, + ACTIONS(9357), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9359), 1, + sym__special_character, + ACTIONS(9361), 1, + anon_sym_DQUOTE, + ACTIONS(9363), 1, + anon_sym_SQUOTE, + ACTIONS(9367), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9369), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(9371), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(9406), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3172), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9939), 1, + sym_word, + ACTIONS(9941), 1, + sym_ansi_c_string, + ACTIONS(9943), 1, + sym_test_operator, + STATE(1310), 1, + aux_sym__literal_repeat1, + STATE(1486), 1, + sym_concatenation, + ACTIONS(9355), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9373), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(952), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [204171] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [210103] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, - anon_sym_DOLLAR, - ACTIONS(9350), 1, - anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(9356), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(1662), 1, + sym__brace_start, + ACTIONS(9253), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9257), 1, + anon_sym_DQUOTE, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(9408), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3178), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9945), 1, + sym_word, + ACTIONS(9947), 1, + anon_sym_DOLLAR, + ACTIONS(9953), 1, + sym__comment_word, + ACTIONS(9251), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9269), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9949), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9951), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(1271), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [204245] = 18, + sym_process_substitution, + [210174] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2470), 1, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(2472), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(2476), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2488), 1, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(9380), 1, - sym_word, - ACTIONS(9384), 1, + ACTIONS(9253), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9390), 1, + ACTIONS(9257), 1, anon_sym_DQUOTE, - ACTIONS(9394), 1, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9396), 1, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(9398), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9402), 1, + ACTIONS(9945), 1, + sym_word, + ACTIONS(9953), 1, sym__comment_word, - ACTIONS(9410), 1, + ACTIONS(9955), 1, anon_sym_DOLLAR, - ACTIONS(9382), 2, + ACTIONS(9251), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9388), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9400), 2, + ACTIONS(9269), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9392), 3, + ACTIONS(9949), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9951), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1465), 9, + STATE(1271), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [204313] = 18, + [210245] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(3419), 1, + anon_sym_DOLLAR, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(2133), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(2137), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2151), 1, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(8212), 1, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8216), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(8220), 1, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9099), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8222), 1, + ACTIONS(9101), 1, anon_sym_BQUOTE, - ACTIONS(8224), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9310), 1, + ACTIONS(9957), 1, sym_word, - ACTIONS(9316), 1, + ACTIONS(9963), 1, sym__comment_word, - ACTIONS(9412), 1, - anon_sym_DOLLAR, - ACTIONS(8208), 2, + ACTIONS(9087), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8226), 2, + ACTIONS(9105), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9312), 2, + ACTIONS(9959), 2, sym_test_operator, sym__special_character, - ACTIONS(9314), 3, + ACTIONS(9961), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1628), 9, + STATE(2073), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [204381] = 21, - ACTIONS(71), 1, + [210316] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(8211), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8213), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(9414), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3202), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8243), 1, + sym__brace_start, + ACTIONS(8405), 1, + sym__special_character, + ACTIONS(9965), 1, + sym_word, + ACTIONS(9967), 1, + sym_ansi_c_string, + ACTIONS(9969), 1, + sym_test_operator, + STATE(1999), 1, + aux_sym__literal_repeat1, + STATE(2262), 1, + sym_concatenation, + ACTIONS(8207), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8235), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2390), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [204455] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [210391] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(3617), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, - anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(3625), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(3627), 1, aux_sym_number_token2, - ACTIONS(9356), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(3631), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(3641), 1, + sym__brace_start, + ACTIONS(9971), 1, + sym_word, + ACTIONS(9975), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9977), 1, + sym__special_character, + ACTIONS(9979), 1, + anon_sym_DQUOTE, + ACTIONS(9981), 1, + anon_sym_SQUOTE, + ACTIONS(9983), 1, + sym_ansi_c_string, + ACTIONS(9985), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9987), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(9989), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(9416), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3265), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9993), 1, + sym_test_operator, + STATE(4467), 1, + aux_sym__literal_repeat1, + STATE(5077), 1, + sym_concatenation, + ACTIONS(9973), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9991), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4337), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [204529] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [210466] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, - anon_sym_DOLLAR, - ACTIONS(9350), 1, - anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(9356), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(9305), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9309), 1, + anon_sym_DQUOTE, + ACTIONS(9311), 1, + anon_sym_SQUOTE, + ACTIONS(9315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9317), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(9418), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3292), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9865), 1, + sym_word, + ACTIONS(9871), 1, + sym__comment_word, + ACTIONS(9995), 1, + anon_sym_DOLLAR, + ACTIONS(9303), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9321), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9867), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9869), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(4680), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [204603] = 18, + sym_process_substitution, + [210537] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2131), 1, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(2133), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(2137), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2151), 1, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(8212), 1, + ACTIONS(9305), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8216), 1, + ACTIONS(9309), 1, anon_sym_DQUOTE, - ACTIONS(8220), 1, + ACTIONS(9311), 1, + anon_sym_SQUOTE, + ACTIONS(9315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8222), 1, + ACTIONS(9317), 1, anon_sym_BQUOTE, - ACTIONS(8224), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9310), 1, + ACTIONS(9865), 1, sym_word, - ACTIONS(9316), 1, + ACTIONS(9871), 1, sym__comment_word, - ACTIONS(9420), 1, + ACTIONS(9997), 1, anon_sym_DOLLAR, - ACTIONS(8208), 2, + ACTIONS(9303), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8226), 2, + ACTIONS(9321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9312), 2, + ACTIONS(9867), 2, sym_test_operator, sym__special_character, - ACTIONS(9314), 3, + ACTIONS(9869), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1628), 9, + STATE(4680), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [204671] = 18, - ACTIONS(3), 1, + [210608] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(1636), 1, + anon_sym_DOLLAR, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(8928), 1, + ACTIONS(9253), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8932), 1, + ACTIONS(9257), 1, anon_sym_DQUOTE, - ACTIONS(8936), 1, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8938), 1, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(8940), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9422), 1, + ACTIONS(9489), 1, + sym__special_character, + ACTIONS(9999), 1, sym_word, - ACTIONS(9424), 1, - anon_sym_DOLLAR, - ACTIONS(9430), 1, - sym__comment_word, - ACTIONS(8926), 2, + ACTIONS(10001), 1, + sym_ansi_c_string, + ACTIONS(10003), 1, + sym_test_operator, + STATE(1339), 1, + aux_sym__literal_repeat1, + STATE(1521), 1, + sym_concatenation, + ACTIONS(9251), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8942), 2, + ACTIONS(9269), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9426), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9428), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1006), 9, + STATE(1319), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [204739] = 21, - ACTIONS(71), 1, + [210683] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, - anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(9450), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(1662), 1, + sym__brace_start, + ACTIONS(9253), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9257), 1, + anon_sym_DQUOTE, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9458), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3030), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9489), 1, + sym__special_character, + ACTIONS(10005), 1, + sym_word, + ACTIONS(10007), 1, + sym_ansi_c_string, + ACTIONS(10009), 1, + sym_test_operator, + STATE(1352), 1, + aux_sym__literal_repeat1, + STATE(1540), 1, + sym_concatenation, + ACTIONS(9251), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9269), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1254), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [204813] = 18, - ACTIONS(3), 1, + sym_process_substitution, + [210758] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1420), 1, + ACTIONS(3617), 1, + anon_sym_DOLLAR, + ACTIONS(3625), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(3627), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(3631), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(3641), 1, sym__brace_start, - ACTIONS(8928), 1, + ACTIONS(9975), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8932), 1, + ACTIONS(9977), 1, + sym__special_character, + ACTIONS(9979), 1, anon_sym_DQUOTE, - ACTIONS(8936), 1, + ACTIONS(9981), 1, + anon_sym_SQUOTE, + ACTIONS(9985), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8938), 1, + ACTIONS(9987), 1, anon_sym_BQUOTE, - ACTIONS(8940), 1, + ACTIONS(9989), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9422), 1, + ACTIONS(10011), 1, sym_word, - ACTIONS(9430), 1, - sym__comment_word, - ACTIONS(9460), 1, - anon_sym_DOLLAR, - ACTIONS(8926), 2, + ACTIONS(10013), 1, + sym_ansi_c_string, + ACTIONS(10015), 1, + sym_test_operator, + STATE(4472), 1, + aux_sym__literal_repeat1, + STATE(4921), 1, + sym_concatenation, + ACTIONS(9973), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8942), 2, + ACTIONS(9991), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9426), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9428), 3, - sym__bare_dollar, + STATE(4339), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [210833] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(4207), 1, + anon_sym_DOLLAR, + ACTIONS(4215), 1, + aux_sym_number_token1, + ACTIONS(4217), 1, + aux_sym_number_token2, + ACTIONS(4221), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4231), 1, + sym__brace_start, + ACTIONS(10017), 1, + sym_word, + ACTIONS(10021), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10023), 1, + sym__special_character, + ACTIONS(10025), 1, + anon_sym_DQUOTE, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10029), 1, sym_ansi_c_string, - STATE(1006), 9, + ACTIONS(10031), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10033), 1, + anon_sym_BQUOTE, + ACTIONS(10035), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10039), 1, + sym_test_operator, + STATE(4469), 1, + aux_sym__literal_repeat1, + STATE(5082), 1, + sym_concatenation, + ACTIONS(10019), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10037), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5048), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [204881] = 21, - ACTIONS(71), 1, + [210908] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, - anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(9450), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(4231), 1, + sym__brace_start, + ACTIONS(10021), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10023), 1, + sym__special_character, + ACTIONS(10025), 1, + anon_sym_DQUOTE, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9462), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2787), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10041), 1, + sym_word, + ACTIONS(10043), 1, + sym_ansi_c_string, + ACTIONS(10045), 1, + sym_test_operator, + STATE(4482), 1, + aux_sym__literal_repeat1, + STATE(4953), 1, + sym_concatenation, + ACTIONS(10019), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10037), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5052), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [204955] = 18, + sym_process_substitution, + [210983] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 1, + ACTIONS(8433), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1119), 1, + ACTIONS(8439), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(8441), 1, + anon_sym_SQUOTE, + ACTIONS(8445), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(8447), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(8449), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(8451), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(8453), 1, + anon_sym_BQUOTE, + ACTIONS(8455), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(8465), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(9464), 1, + ACTIONS(10047), 1, sym_word, - ACTIONS(9466), 1, + ACTIONS(10049), 1, anon_sym_DOLLAR, - ACTIONS(9472), 1, + ACTIONS(10055), 1, sym__comment_word, - ACTIONS(1099), 2, + ACTIONS(8429), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(8457), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9468), 2, + ACTIONS(10051), 2, sym_test_operator, sym__special_character, - ACTIONS(9470), 3, + ACTIONS(10053), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2365), 9, + STATE(4418), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205023] = 18, - ACTIONS(3), 1, + [211054] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3386), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(3392), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(3394), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(3398), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3410), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(9474), 1, - sym_word, - ACTIONS(9478), 1, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9482), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(9486), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9488), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(9490), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9494), 1, - sym__comment_word, - ACTIONS(9476), 2, + ACTIONS(10057), 1, + sym_word, + ACTIONS(10059), 1, + sym__special_character, + ACTIONS(10061), 1, + sym_ansi_c_string, + ACTIONS(10063), 1, + sym_test_operator, + STATE(4376), 1, + aux_sym__literal_repeat1, + STATE(4666), 1, + sym_concatenation, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9480), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9492), 2, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9484), 3, - sym__bare_dollar, + STATE(4880), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211129] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8609), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8611), 1, + anon_sym_DOLLAR, + ACTIONS(8613), 1, + sym__special_character, + ACTIONS(8615), 1, + anon_sym_DQUOTE, + ACTIONS(8617), 1, + anon_sym_SQUOTE, + ACTIONS(8621), 1, + aux_sym_number_token1, + ACTIONS(8623), 1, + aux_sym_number_token2, + ACTIONS(8625), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8627), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8629), 1, + anon_sym_BQUOTE, + ACTIONS(8631), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8641), 1, + sym__brace_start, + ACTIONS(10065), 1, + sym_word, + ACTIONS(10067), 1, sym_ansi_c_string, - STATE(1822), 9, + ACTIONS(10069), 1, + sym_test_operator, + STATE(2049), 1, + aux_sym__literal_repeat1, + STATE(2169), 1, + sym_concatenation, + ACTIONS(8605), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8633), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1492), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205091] = 18, - ACTIONS(3), 1, + [211204] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(2697), 1, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(2699), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(2703), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2713), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(9096), 1, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9100), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(9104), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9106), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(9108), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9496), 1, + ACTIONS(10059), 1, + sym__special_character, + ACTIONS(10071), 1, sym_word, - ACTIONS(9498), 1, - anon_sym_DOLLAR, - ACTIONS(9504), 1, - sym__comment_word, - ACTIONS(9094), 2, + ACTIONS(10073), 1, + sym_ansi_c_string, + ACTIONS(10075), 1, + sym_test_operator, + STATE(4379), 1, + aux_sym__literal_repeat1, + STATE(4689), 1, + sym_concatenation, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9110), 2, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9500), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9502), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1670), 9, + STATE(4882), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205159] = 18, + [211279] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2697), 1, - aux_sym_number_token1, - ACTIONS(2699), 1, - aux_sym_number_token2, - ACTIONS(2703), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2713), 1, - sym__brace_start, - ACTIONS(9096), 1, + ACTIONS(195), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9100), 1, + ACTIONS(201), 1, anon_sym_DQUOTE, - ACTIONS(9104), 1, + ACTIONS(203), 1, + anon_sym_SQUOTE, + ACTIONS(207), 1, + aux_sym_number_token1, + ACTIONS(209), 1, + aux_sym_number_token2, + ACTIONS(211), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9106), 1, + ACTIONS(213), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(9108), 1, + ACTIONS(217), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9496), 1, + ACTIONS(227), 1, + sym__brace_start, + ACTIONS(9635), 1, sym_word, - ACTIONS(9504), 1, + ACTIONS(9641), 1, sym__comment_word, - ACTIONS(9506), 1, + ACTIONS(10077), 1, anon_sym_DOLLAR, - ACTIONS(9094), 2, + ACTIONS(193), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9110), 2, + ACTIONS(219), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9500), 2, + ACTIONS(9637), 2, sym_test_operator, sym__special_character, - ACTIONS(9502), 3, + ACTIONS(9639), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1670), 9, + STATE(508), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205227] = 18, - ACTIONS(3), 1, + [211350] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3137), 1, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(3139), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(3143), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3153), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(9508), 1, - sym_word, - ACTIONS(9512), 1, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9514), 1, - anon_sym_DOLLAR, - ACTIONS(9518), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(9522), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9524), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(9526), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9530), 1, - sym__comment_word, - ACTIONS(9510), 2, + ACTIONS(10079), 1, + sym_word, + ACTIONS(10081), 1, + sym__special_character, + ACTIONS(10083), 1, + sym_ansi_c_string, + ACTIONS(10085), 1, + sym_test_operator, + STATE(4379), 1, + aux_sym__literal_repeat1, + STATE(4689), 1, + sym_concatenation, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9516), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9528), 2, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9520), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4478), 9, + STATE(4544), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205295] = 18, + [211425] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3137), 1, + ACTIONS(4048), 1, aux_sym_number_token1, - ACTIONS(3139), 1, + ACTIONS(4050), 1, aux_sym_number_token2, - ACTIONS(3143), 1, + ACTIONS(4054), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3153), 1, + ACTIONS(4064), 1, sym__brace_start, - ACTIONS(9508), 1, - sym_word, - ACTIONS(9512), 1, + ACTIONS(9877), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9518), 1, + ACTIONS(9881), 1, anon_sym_DQUOTE, - ACTIONS(9522), 1, + ACTIONS(9883), 1, + anon_sym_SQUOTE, + ACTIONS(9887), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9524), 1, + ACTIONS(9889), 1, anon_sym_BQUOTE, - ACTIONS(9526), 1, + ACTIONS(9891), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9530), 1, - sym__comment_word, - ACTIONS(9532), 1, + ACTIONS(10087), 1, + sym_word, + ACTIONS(10089), 1, anon_sym_DOLLAR, - ACTIONS(9510), 2, + ACTIONS(10095), 1, + sym__comment_word, + ACTIONS(9875), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9516), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9528), 2, + ACTIONS(9893), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9520), 3, + ACTIONS(10091), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10093), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4478), 9, + STATE(4848), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205363] = 18, - ACTIONS(3), 1, + [211496] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(1636), 1, + anon_sym_DOLLAR, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(3394), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(3398), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3410), 1, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(9474), 1, - sym_word, - ACTIONS(9478), 1, + ACTIONS(9253), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9482), 1, + ACTIONS(9255), 1, + sym__special_character, + ACTIONS(9257), 1, anon_sym_DQUOTE, - ACTIONS(9486), 1, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9488), 1, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(9490), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9494), 1, - sym__comment_word, - ACTIONS(9534), 1, - anon_sym_DOLLAR, - ACTIONS(9476), 2, + ACTIONS(10097), 1, + sym_word, + ACTIONS(10099), 1, + sym_ansi_c_string, + ACTIONS(10101), 1, + sym_test_operator, + STATE(1339), 1, + aux_sym__literal_repeat1, + STATE(1521), 1, + sym_concatenation, + ACTIONS(9251), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9480), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9492), 2, + ACTIONS(9269), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9484), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1822), 9, + STATE(2090), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205431] = 18, + [211571] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2327), 1, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(2329), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(2333), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2343), 1, + ACTIONS(3847), 1, sym__brace_start, - ACTIONS(9116), 1, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9120), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(9124), 1, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9079), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9126), 1, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(9128), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9268), 1, + ACTIONS(9915), 1, sym_word, - ACTIONS(9276), 1, + ACTIONS(9921), 1, sym__comment_word, - ACTIONS(9536), 1, + ACTIONS(10103), 1, anon_sym_DOLLAR, - ACTIONS(9114), 2, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9130), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9272), 2, + ACTIONS(9917), 2, sym_test_operator, sym__special_character, - ACTIONS(9274), 3, + ACTIONS(9919), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1402), 9, + STATE(2221), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205499] = 18, + [211642] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3392), 1, + ACTIONS(6675), 1, + anon_sym_DOLLAR, + ACTIONS(6683), 1, aux_sym_number_token1, - ACTIONS(3394), 1, + ACTIONS(6685), 1, aux_sym_number_token2, - ACTIONS(3398), 1, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3410), 1, + ACTIONS(6701), 1, sym__brace_start, - ACTIONS(9474), 1, - sym_word, - ACTIONS(9478), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9482), 1, + ACTIONS(7170), 1, anon_sym_DQUOTE, - ACTIONS(9486), 1, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9488), 1, + ACTIONS(7178), 1, anon_sym_BQUOTE, - ACTIONS(9490), 1, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9494), 1, + ACTIONS(10105), 1, + sym_word, + ACTIONS(10111), 1, sym__comment_word, - ACTIONS(9538), 1, - anon_sym_DOLLAR, - ACTIONS(9476), 2, + ACTIONS(7164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9480), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9492), 2, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9484), 3, + ACTIONS(10107), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10109), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1822), 9, + STATE(6605), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205567] = 18, + [211713] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(195), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(201), 1, + anon_sym_DQUOTE, + ACTIONS(203), 1, + anon_sym_SQUOTE, + ACTIONS(207), 1, aux_sym_number_token1, - ACTIONS(2731), 1, + ACTIONS(209), 1, aux_sym_number_token2, - ACTIONS(2735), 1, + ACTIONS(211), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(213), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2745), 1, + ACTIONS(215), 1, + anon_sym_BQUOTE, + ACTIONS(217), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(227), 1, sym__brace_start, - ACTIONS(9540), 1, + ACTIONS(9635), 1, sym_word, - ACTIONS(9544), 1, + ACTIONS(9641), 1, + sym__comment_word, + ACTIONS(10113), 1, + anon_sym_DOLLAR, + ACTIONS(193), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(219), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9637), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9639), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(508), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [211784] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8609), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9546), 1, + ACTIONS(8611), 1, anon_sym_DOLLAR, - ACTIONS(9550), 1, + ACTIONS(8613), 1, + sym__special_character, + ACTIONS(8615), 1, anon_sym_DQUOTE, - ACTIONS(9554), 1, + ACTIONS(8617), 1, + anon_sym_SQUOTE, + ACTIONS(8621), 1, + aux_sym_number_token1, + ACTIONS(8623), 1, + aux_sym_number_token2, + ACTIONS(8625), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9556), 1, + ACTIONS(8627), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8629), 1, anon_sym_BQUOTE, - ACTIONS(9558), 1, + ACTIONS(8631), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9562), 1, - sym__comment_word, - ACTIONS(9542), 2, + ACTIONS(8641), 1, + sym__brace_start, + ACTIONS(10115), 1, + sym_word, + ACTIONS(10117), 1, + sym_ansi_c_string, + ACTIONS(10119), 1, + sym_test_operator, + STATE(1920), 1, + aux_sym__literal_repeat1, + STATE(2104), 1, + sym_concatenation, + ACTIONS(8605), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9548), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9560), 2, + ACTIONS(8633), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9552), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4277), 9, + STATE(1362), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205635] = 18, + [211859] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2729), 1, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(2731), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(2735), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2745), 1, + ACTIONS(3847), 1, sym__brace_start, - ACTIONS(9540), 1, - sym_word, - ACTIONS(9544), 1, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9550), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(9554), 1, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9079), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9556), 1, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(9558), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9562), 1, + ACTIONS(9915), 1, + sym_word, + ACTIONS(9921), 1, sym__comment_word, - ACTIONS(9564), 1, + ACTIONS(10121), 1, anon_sym_DOLLAR, - ACTIONS(9542), 2, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9548), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9560), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9552), 3, + ACTIONS(9917), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9919), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4277), 9, + STATE(2221), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205703] = 18, + [211930] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1530), 1, - anon_sym_DOLLAR, - ACTIONS(1536), 1, + ACTIONS(4048), 1, aux_sym_number_token1, - ACTIONS(1538), 1, + ACTIONS(4050), 1, aux_sym_number_token2, - ACTIONS(1542), 1, + ACTIONS(4054), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1554), 1, + ACTIONS(4064), 1, sym__brace_start, - ACTIONS(8868), 1, + ACTIONS(9877), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8872), 1, + ACTIONS(9881), 1, anon_sym_DQUOTE, - ACTIONS(8876), 1, + ACTIONS(9883), 1, + anon_sym_SQUOTE, + ACTIONS(9887), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8878), 1, + ACTIONS(9889), 1, anon_sym_BQUOTE, - ACTIONS(8880), 1, + ACTIONS(9891), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9566), 1, + ACTIONS(10087), 1, sym_word, - ACTIONS(9572), 1, + ACTIONS(10095), 1, sym__comment_word, - ACTIONS(8866), 2, + ACTIONS(10123), 1, + anon_sym_DOLLAR, + ACTIONS(9875), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8882), 2, + ACTIONS(9893), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9568), 2, + ACTIONS(10091), 2, sym_test_operator, sym__special_character, - ACTIONS(9570), 3, + ACTIONS(10093), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1222), 9, + STATE(4848), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205771] = 18, - ACTIONS(3), 1, + [212001] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(707), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(713), 1, - anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(1636), 1, + anon_sym_DOLLAR, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(721), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(1662), 1, + sym__brace_start, + ACTIONS(9253), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9255), 1, + sym__special_character, + ACTIONS(9257), 1, + anon_sym_DQUOTE, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(737), 1, - sym__brace_start, - ACTIONS(9574), 1, + ACTIONS(10125), 1, sym_word, - ACTIONS(9576), 1, - anon_sym_DOLLAR, - ACTIONS(9582), 1, - sym__comment_word, - ACTIONS(705), 2, + ACTIONS(10127), 1, + sym_ansi_c_string, + ACTIONS(10129), 1, + sym_test_operator, + STATE(1352), 1, + aux_sym__literal_repeat1, + STATE(1540), 1, + sym_concatenation, + ACTIONS(9251), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(729), 2, + ACTIONS(9269), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9578), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9580), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(903), 9, + STATE(2092), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205839] = 18, + [212076] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(707), 1, + ACTIONS(8609), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(713), 1, + ACTIONS(8611), 1, + anon_sym_DOLLAR, + ACTIONS(8615), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(8617), 1, + anon_sym_SQUOTE, + ACTIONS(8621), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(8623), 1, aux_sym_number_token2, - ACTIONS(721), 1, + ACTIONS(8625), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, + ACTIONS(8627), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(8629), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(8631), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(737), 1, + ACTIONS(8641), 1, sym__brace_start, - ACTIONS(9574), 1, + ACTIONS(10131), 1, sym_word, - ACTIONS(9582), 1, + ACTIONS(10137), 1, sym__comment_word, - ACTIONS(9584), 1, - anon_sym_DOLLAR, - ACTIONS(705), 2, + ACTIONS(8605), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(729), 2, + ACTIONS(8633), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9578), 2, + ACTIONS(10133), 2, sym_test_operator, sym__special_character, - ACTIONS(9580), 3, + ACTIONS(10135), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(903), 9, + STATE(1594), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [205907] = 21, - ACTIONS(71), 1, + [212147] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(8211), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8213), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9586), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2836), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8243), 1, + sym__brace_start, + ACTIONS(8517), 1, + sym__special_character, + ACTIONS(10139), 1, + sym_word, + ACTIONS(10141), 1, + sym_ansi_c_string, + ACTIONS(10143), 1, + sym_test_operator, + STATE(1999), 1, + aux_sym__literal_repeat1, + STATE(2262), 1, + sym_concatenation, + ACTIONS(8207), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8235), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1476), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [205981] = 18, + sym_process_substitution, + [212222] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8024), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8030), 1, - anon_sym_DQUOTE, - ACTIONS(8034), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(8036), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(8038), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8040), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8042), 1, + ACTIONS(4231), 1, + sym__brace_start, + ACTIONS(10021), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10025), 1, + anon_sym_DQUOTE, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(8044), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8054), 1, - sym__brace_start, - ACTIONS(9588), 1, + ACTIONS(10145), 1, sym_word, - ACTIONS(9590), 1, + ACTIONS(10147), 1, anon_sym_DOLLAR, - ACTIONS(9596), 1, + ACTIONS(10153), 1, sym__comment_word, - ACTIONS(8020), 2, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8046), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9592), 2, + ACTIONS(10149), 2, sym_test_operator, sym__special_character, - ACTIONS(9594), 3, + ACTIONS(10151), 2, sym__bare_dollar, + sym_ansi_c_string, + STATE(4478), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212293] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4215), 1, + aux_sym_number_token1, + ACTIONS(4217), 1, + aux_sym_number_token2, + ACTIONS(4221), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4231), 1, + sym__brace_start, + ACTIONS(10021), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10025), 1, + anon_sym_DQUOTE, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10033), 1, + anon_sym_BQUOTE, + ACTIONS(10035), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10145), 1, + sym_word, + ACTIONS(10153), 1, + sym__comment_word, + ACTIONS(10155), 1, + anon_sym_DOLLAR, + ACTIONS(10019), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10037), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10149), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10151), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(4262), 9, + STATE(4478), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [206049] = 18, + [212364] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8024), 1, + ACTIONS(8741), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8030), 1, + ACTIONS(8743), 1, + anon_sym_DOLLAR, + ACTIONS(8747), 1, anon_sym_DQUOTE, - ACTIONS(8034), 1, + ACTIONS(8749), 1, + anon_sym_SQUOTE, + ACTIONS(8753), 1, aux_sym_number_token1, - ACTIONS(8036), 1, + ACTIONS(8755), 1, aux_sym_number_token2, - ACTIONS(8038), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8040), 1, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8042), 1, + ACTIONS(8761), 1, anon_sym_BQUOTE, - ACTIONS(8044), 1, + ACTIONS(8763), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8054), 1, + ACTIONS(8773), 1, sym__brace_start, - ACTIONS(9588), 1, + ACTIONS(10157), 1, sym_word, - ACTIONS(9596), 1, + ACTIONS(10163), 1, sym__comment_word, - ACTIONS(9598), 1, - anon_sym_DOLLAR, - ACTIONS(8020), 2, + ACTIONS(8737), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8046), 2, + ACTIONS(8765), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9592), 2, + ACTIONS(10159), 2, sym_test_operator, sym__special_character, - ACTIONS(9594), 3, + ACTIONS(10161), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4262), 9, + STATE(2554), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [206117] = 21, - ACTIONS(71), 1, + [212435] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(10165), 1, + sym_word, + ACTIONS(10169), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10171), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(10175), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(10177), 1, + anon_sym_SQUOTE, + ACTIONS(10181), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(10183), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(10185), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(10187), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(10189), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(10191), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9600), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2880), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10195), 1, + sym__comment_word, + ACTIONS(10197), 1, + sym__brace_start, + ACTIONS(10167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10173), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10179), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(10193), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6267), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [206191] = 18, + sym_process_substitution, + [212506] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1536), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(1538), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(1542), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1554), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(8868), 1, + ACTIONS(9701), 1, + sym_word, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8872), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(8876), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8878), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(8880), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9566), 1, - sym_word, - ACTIONS(9572), 1, + ACTIONS(9723), 1, sym__comment_word, - ACTIONS(9602), 1, + ACTIONS(10199), 1, anon_sym_DOLLAR, - ACTIONS(8866), 2, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8882), 2, + ACTIONS(9707), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9713), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9568), 2, + STATE(4347), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [212577] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3715), 1, + aux_sym_number_token1, + ACTIONS(3717), 1, + aux_sym_number_token2, + ACTIONS(3721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3731), 1, + sym__brace_start, + ACTIONS(9701), 1, + sym_word, + ACTIONS(9705), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9709), 1, + anon_sym_DQUOTE, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9717), 1, + anon_sym_BQUOTE, + ACTIONS(9719), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9723), 1, + sym__comment_word, + ACTIONS(10201), 1, + anon_sym_DOLLAR, + ACTIONS(9703), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9707), 2, sym_test_operator, sym__special_character, - ACTIONS(9570), 3, + ACTIONS(9713), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1222), 9, + ACTIONS(9721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4347), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [206259] = 21, - ACTIONS(71), 1, + [212648] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(4842), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4844), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(4848), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(4850), 1, + anon_sym_SQUOTE, + ACTIONS(4854), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(4856), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(4858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(4860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(4862), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(4864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9604), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2882), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(4870), 1, + sym__brace_start, + ACTIONS(10203), 1, + sym_word, + ACTIONS(10209), 1, + sym__comment_word, + ACTIONS(4840), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4866), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10205), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10207), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2668), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [206333] = 18, + sym_process_substitution, + [212719] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1536), 1, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(1538), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(1542), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1554), 1, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(8868), 1, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8872), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(8876), 1, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9099), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8878), 1, + ACTIONS(9101), 1, anon_sym_BQUOTE, - ACTIONS(8880), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9566), 1, + ACTIONS(9957), 1, sym_word, - ACTIONS(9572), 1, + ACTIONS(9963), 1, sym__comment_word, - ACTIONS(9606), 1, + ACTIONS(10211), 1, anon_sym_DOLLAR, - ACTIONS(8866), 2, + ACTIONS(9087), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8882), 2, + ACTIONS(9105), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9568), 2, + ACTIONS(9959), 2, sym_test_operator, sym__special_character, - ACTIONS(9570), 3, + ACTIONS(9961), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1222), 9, + STATE(2073), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [206401] = 18, + [212790] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8488), 1, + ACTIONS(724), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8494), 1, + ACTIONS(730), 1, anon_sym_DQUOTE, - ACTIONS(8498), 1, + ACTIONS(732), 1, + anon_sym_SQUOTE, + ACTIONS(736), 1, aux_sym_number_token1, - ACTIONS(8500), 1, + ACTIONS(738), 1, aux_sym_number_token2, - ACTIONS(8502), 1, + ACTIONS(740), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8504), 1, + ACTIONS(742), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8506), 1, + ACTIONS(744), 1, anon_sym_BQUOTE, - ACTIONS(8508), 1, + ACTIONS(746), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8518), 1, + ACTIONS(756), 1, sym__brace_start, - ACTIONS(9608), 1, + ACTIONS(10213), 1, sym_word, - ACTIONS(9610), 1, + ACTIONS(10215), 1, anon_sym_DOLLAR, - ACTIONS(9616), 1, + ACTIONS(10221), 1, sym__comment_word, - ACTIONS(8484), 2, + ACTIONS(722), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8510), 2, + ACTIONS(748), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9612), 2, + ACTIONS(10217), 2, sym_test_operator, sym__special_character, - ACTIONS(9614), 3, + ACTIONS(10219), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1416), 9, + STATE(979), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [206469] = 21, - ACTIONS(71), 1, + [212861] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, - anon_sym_DOLLAR, - ACTIONS(9444), 1, - anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(9450), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(3443), 1, + sym__brace_start, + ACTIONS(9089), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9093), 1, + anon_sym_DQUOTE, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9099), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9101), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9618), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2937), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9957), 1, + sym_word, + ACTIONS(9963), 1, + sym__comment_word, + ACTIONS(10223), 1, + anon_sym_DOLLAR, + ACTIONS(9087), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9105), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9959), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9961), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2073), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [206543] = 18, + sym_process_substitution, + [212932] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8488), 1, + ACTIONS(5202), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8494), 1, + ACTIONS(5204), 1, + anon_sym_DOLLAR, + ACTIONS(5208), 1, anon_sym_DQUOTE, - ACTIONS(8498), 1, + ACTIONS(5210), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, aux_sym_number_token1, - ACTIONS(8500), 1, + ACTIONS(5216), 1, aux_sym_number_token2, - ACTIONS(8502), 1, + ACTIONS(5218), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8504), 1, + ACTIONS(5220), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8506), 1, + ACTIONS(5222), 1, anon_sym_BQUOTE, - ACTIONS(8508), 1, + ACTIONS(5224), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8518), 1, + ACTIONS(5230), 1, sym__brace_start, - ACTIONS(9608), 1, + ACTIONS(10225), 1, sym_word, - ACTIONS(9616), 1, + ACTIONS(10231), 1, sym__comment_word, - ACTIONS(9620), 1, - anon_sym_DOLLAR, - ACTIONS(8484), 2, + ACTIONS(5200), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8510), 2, + ACTIONS(5226), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9612), 2, + ACTIONS(10227), 2, sym_test_operator, sym__special_character, - ACTIONS(9614), 3, + ACTIONS(10229), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1416), 9, + STATE(5558), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [206611] = 21, - ACTIONS(71), 1, + [213003] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(4672), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4674), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(4678), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(4680), 1, + anon_sym_SQUOTE, + ACTIONS(4684), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(4686), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(4688), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(4690), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(4692), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(4694), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9622), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2849), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(4700), 1, + sym__brace_start, + ACTIONS(10233), 1, + sym_word, + ACTIONS(10239), 1, + sym__comment_word, + ACTIONS(4670), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4696), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10235), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10237), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2568), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [206685] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [213074] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(4273), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4275), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(4279), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(4281), 1, + anon_sym_SQUOTE, + ACTIONS(4285), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(4287), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(4289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(4291), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(4293), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(4295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9624), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2752), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(4305), 1, + sym__brace_start, + ACTIONS(10241), 1, + sym_word, + ACTIONS(10247), 1, + sym__comment_word, + ACTIONS(4271), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4297), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10243), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10245), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2496), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [206759] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [213145] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, - anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, - anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9626), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2767), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(337), 1, + sym__brace_start, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(9189), 1, + sym_word, + ACTIONS(9193), 1, + sym__comment_word, + ACTIONS(10249), 1, + anon_sym_DOLLAR, + ACTIONS(296), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(333), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9195), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(9197), 2, + sym_test_operator, + sym__special_character, + STATE(2660), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [206833] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [213216] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(4979), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4981), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(4985), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(4987), 1, + anon_sym_SQUOTE, + ACTIONS(4991), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(4993), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(4995), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(4997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(4999), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(5001), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9628), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2768), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [206907] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1884), 1, - aux_sym_number_token1, - ACTIONS(1886), 1, - aux_sym_number_token2, - ACTIONS(1890), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1904), 1, + ACTIONS(5007), 1, sym__brace_start, - ACTIONS(7996), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8000), 1, - anon_sym_DQUOTE, - ACTIONS(8004), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8006), 1, - anon_sym_BQUOTE, - ACTIONS(8008), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9630), 1, + ACTIONS(10251), 1, sym_word, - ACTIONS(9632), 1, - anon_sym_DOLLAR, - ACTIONS(9638), 1, + ACTIONS(10257), 1, sym__comment_word, - ACTIONS(7992), 2, + ACTIONS(4977), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, + ACTIONS(5003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9634), 2, + ACTIONS(10253), 2, sym_test_operator, sym__special_character, - ACTIONS(9636), 3, + ACTIONS(10255), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1474), 9, + STATE(5425), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [206975] = 18, + [213287] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1884), 1, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(1886), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(1890), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1904), 1, + ACTIONS(3847), 1, sym__brace_start, - ACTIONS(7996), 1, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8000), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(8004), 1, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9079), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8006), 1, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(8008), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9630), 1, + ACTIONS(9915), 1, sym_word, - ACTIONS(9638), 1, + ACTIONS(9921), 1, sym__comment_word, - ACTIONS(9640), 1, + ACTIONS(10259), 1, anon_sym_DOLLAR, - ACTIONS(7992), 2, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9634), 2, + ACTIONS(9917), 2, sym_test_operator, sym__special_character, - ACTIONS(9636), 3, + ACTIONS(9919), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1474), 9, + STATE(2221), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [207043] = 21, - ACTIONS(71), 1, + [213358] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(9338), 1, - anon_sym_LPAREN, - ACTIONS(9340), 1, - anon_sym_BANG, - ACTIONS(9346), 1, - anon_sym_TILDE, - ACTIONS(9348), 1, - anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(8251), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(8265), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(8269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(9642), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, - sym__arithmetic_binary_expression, - STATE(3438), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9344), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3361), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8283), 1, + sym__brace_start, + ACTIONS(10261), 1, + sym_word, + ACTIONS(10263), 1, + anon_sym_DOLLAR, + ACTIONS(10269), 1, + sym__comment_word, + ACTIONS(8247), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8275), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10265), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10267), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(4306), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [207117] = 18, + sym_process_substitution, + [213429] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(2631), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2643), 1, + ACTIONS(3847), 1, sym__brace_start, - ACTIONS(9644), 1, - sym_word, - ACTIONS(9648), 1, + ACTIONS(9069), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9650), 1, - anon_sym_DOLLAR, - ACTIONS(9654), 1, + ACTIONS(9073), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9079), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9666), 1, + ACTIONS(9915), 1, + sym_word, + ACTIONS(9921), 1, sym__comment_word, - ACTIONS(9646), 2, + ACTIONS(10271), 1, + anon_sym_DOLLAR, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9652), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9664), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9656), 3, + ACTIONS(9917), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9919), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1699), 9, + STATE(2221), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [207185] = 18, + [213500] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2625), 1, - aux_sym_number_token1, - ACTIONS(2627), 1, - aux_sym_number_token2, - ACTIONS(2631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2643), 1, - sym__brace_start, - ACTIONS(9644), 1, - sym_word, - ACTIONS(9648), 1, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9654), 1, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, + aux_sym_number_token1, + ACTIONS(8265), 1, + aux_sym_number_token2, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(8269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9666), 1, + ACTIONS(8283), 1, + sym__brace_start, + ACTIONS(10261), 1, + sym_word, + ACTIONS(10269), 1, sym__comment_word, - ACTIONS(9668), 1, + ACTIONS(10273), 1, anon_sym_DOLLAR, - ACTIONS(9646), 2, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9652), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9664), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9656), 3, + ACTIONS(10265), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10267), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1699), 9, + STATE(4306), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [207253] = 18, + [213571] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(307), 1, + ACTIONS(119), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(125), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(127), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(131), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(133), 1, + anon_sym_BQUOTE, + ACTIONS(135), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(145), 1, sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(10275), 1, sym_word, - ACTIONS(8858), 1, - sym__comment_word, - ACTIONS(9670), 1, + ACTIONS(10277), 1, anon_sym_DOLLAR, - ACTIONS(288), 2, + ACTIONS(10283), 1, + sym__comment_word, + ACTIONS(111), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(137), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8862), 2, + ACTIONS(10279), 2, sym_test_operator, sym__special_character, - ACTIONS(8860), 3, + ACTIONS(10281), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2670), 9, + STATE(482), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [207321] = 18, + [213642] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(307), 1, + ACTIONS(8253), 1, + anon_sym_DOLLAR, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(8265), 1, aux_sym_number_token2, - ACTIONS(315), 1, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(8269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, + ACTIONS(8271), 1, + anon_sym_BQUOTE, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(8283), 1, sym__brace_start, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(10261), 1, sym_word, - ACTIONS(8858), 1, + ACTIONS(10269), 1, sym__comment_word, - ACTIONS(9672), 1, - anon_sym_DOLLAR, - ACTIONS(288), 2, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8862), 2, + ACTIONS(10265), 2, sym_test_operator, sym__special_character, - ACTIONS(8860), 3, + ACTIONS(10267), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2670), 9, + STATE(4306), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [207389] = 21, - ACTIONS(71), 1, + [213713] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(8741), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8743), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(8745), 1, + sym__special_character, + ACTIONS(8747), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(8749), 1, + anon_sym_SQUOTE, + ACTIONS(8753), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(8755), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(8761), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(8763), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9674), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2769), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8773), 1, + sym__brace_start, + ACTIONS(10285), 1, + sym_word, + ACTIONS(10287), 1, + sym_ansi_c_string, + ACTIONS(10289), 1, + sym_test_operator, + STATE(2699), 1, + aux_sym__literal_repeat1, + STATE(2945), 1, + sym_concatenation, + ACTIONS(8737), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8765), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2439), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [207463] = 18, + sym_process_substitution, + [213788] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1460), 1, + ACTIONS(2086), 1, + anon_sym_DOLLAR, + ACTIONS(2094), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(2096), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(2100), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(2114), 1, sym__brace_start, - ACTIONS(9146), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9150), 1, + ACTIONS(8653), 1, anon_sym_DQUOTE, - ACTIONS(9154), 1, + ACTIONS(8655), 1, + anon_sym_SQUOTE, + ACTIONS(8659), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9156), 1, + ACTIONS(8661), 1, anon_sym_BQUOTE, - ACTIONS(9158), 1, + ACTIONS(8663), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(10291), 1, sym_word, - ACTIONS(9678), 1, - anon_sym_DOLLAR, - ACTIONS(9684), 1, + ACTIONS(10297), 1, sym__comment_word, - ACTIONS(9144), 2, + ACTIONS(8645), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9160), 2, + ACTIONS(8665), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(10293), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(10295), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1013), 9, + STATE(1715), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [207531] = 18, + [213859] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1460), 1, - aux_sym_number_token1, - ACTIONS(1462), 1, - aux_sym_number_token2, - ACTIONS(1466), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, - sym__brace_start, - ACTIONS(9146), 1, + ACTIONS(8698), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9150), 1, + ACTIONS(8704), 1, anon_sym_DQUOTE, - ACTIONS(9154), 1, + ACTIONS(8706), 1, + anon_sym_SQUOTE, + ACTIONS(8710), 1, + aux_sym_number_token1, + ACTIONS(8712), 1, + aux_sym_number_token2, + ACTIONS(8714), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9156), 1, + ACTIONS(8716), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8718), 1, anon_sym_BQUOTE, - ACTIONS(9158), 1, + ACTIONS(8720), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(8730), 1, + sym__brace_start, + ACTIONS(10299), 1, sym_word, - ACTIONS(9684), 1, - sym__comment_word, - ACTIONS(9686), 1, + ACTIONS(10301), 1, anon_sym_DOLLAR, - ACTIONS(9144), 2, + ACTIONS(10307), 1, + sym__comment_word, + ACTIONS(8694), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9160), 2, + ACTIONS(8722), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, + ACTIONS(10303), 2, sym_test_operator, sym__special_character, - ACTIONS(9682), 3, + ACTIONS(10305), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1013), 9, + STATE(3568), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [207599] = 18, - ACTIONS(3), 1, + [213930] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3281), 1, + ACTIONS(8741), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8743), 1, + anon_sym_DOLLAR, + ACTIONS(8745), 1, + sym__special_character, + ACTIONS(8747), 1, + anon_sym_DQUOTE, + ACTIONS(8749), 1, + anon_sym_SQUOTE, + ACTIONS(8753), 1, aux_sym_number_token1, - ACTIONS(3283), 1, + ACTIONS(8755), 1, aux_sym_number_token2, - ACTIONS(3287), 1, + ACTIONS(8757), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3297), 1, + ACTIONS(8761), 1, + anon_sym_BQUOTE, + ACTIONS(8763), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(8773), 1, sym__brace_start, - ACTIONS(9210), 1, + ACTIONS(10309), 1, + sym_word, + ACTIONS(10311), 1, + sym_ansi_c_string, + ACTIONS(10313), 1, + sym_test_operator, + STATE(2630), 1, + aux_sym__literal_repeat1, + STATE(2950), 1, + sym_concatenation, + ACTIONS(8737), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8765), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2463), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [214005] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9214), 1, + ACTIONS(8301), 1, + anon_sym_DOLLAR, + ACTIONS(8305), 1, anon_sym_DQUOTE, - ACTIONS(9218), 1, + ACTIONS(8307), 1, + anon_sym_SQUOTE, + ACTIONS(8311), 1, + aux_sym_number_token1, + ACTIONS(8313), 1, + aux_sym_number_token2, + ACTIONS(8315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9220), 1, + ACTIONS(8317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8319), 1, anon_sym_BQUOTE, - ACTIONS(9222), 1, + ACTIONS(8321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9688), 1, + ACTIONS(8331), 1, + sym__brace_start, + ACTIONS(10315), 1, sym_word, - ACTIONS(9690), 1, - anon_sym_DOLLAR, - ACTIONS(9696), 1, + ACTIONS(10321), 1, sym__comment_word, - ACTIONS(9208), 2, + ACTIONS(8295), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9224), 2, + ACTIONS(8323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9692), 2, + ACTIONS(10317), 2, sym_test_operator, sym__special_character, - ACTIONS(9694), 3, + ACTIONS(10319), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1799), 9, + STATE(5520), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [207667] = 18, + [214076] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3281), 1, - aux_sym_number_token1, - ACTIONS(3283), 1, - aux_sym_number_token2, - ACTIONS(3287), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3297), 1, - sym__brace_start, - ACTIONS(9210), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9214), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(9218), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, + aux_sym_number_token1, + ACTIONS(8225), 1, + aux_sym_number_token2, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9220), 1, + ACTIONS(8229), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(9222), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9688), 1, + ACTIONS(8243), 1, + sym__brace_start, + ACTIONS(9797), 1, sym_word, - ACTIONS(9696), 1, + ACTIONS(9805), 1, sym__comment_word, - ACTIONS(9698), 1, + ACTIONS(10323), 1, anon_sym_DOLLAR, - ACTIONS(9208), 2, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9224), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9692), 2, + ACTIONS(9801), 2, sym_test_operator, sym__special_character, - ACTIONS(9694), 3, + ACTIONS(9803), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1799), 9, + STATE(1597), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [207735] = 18, + [214147] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3854), 1, - aux_sym_number_token1, - ACTIONS(3856), 1, - aux_sym_number_token2, - ACTIONS(3860), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3870), 1, - sym__brace_start, - ACTIONS(9700), 1, - sym_word, - ACTIONS(9704), 1, + ACTIONS(724), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9706), 1, - anon_sym_DOLLAR, - ACTIONS(9710), 1, + ACTIONS(730), 1, anon_sym_DQUOTE, - ACTIONS(9714), 1, + ACTIONS(732), 1, + anon_sym_SQUOTE, + ACTIONS(736), 1, + aux_sym_number_token1, + ACTIONS(738), 1, + aux_sym_number_token2, + ACTIONS(740), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9716), 1, + ACTIONS(742), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(744), 1, anon_sym_BQUOTE, - ACTIONS(9718), 1, + ACTIONS(746), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9722), 1, + ACTIONS(756), 1, + sym__brace_start, + ACTIONS(10213), 1, + sym_word, + ACTIONS(10221), 1, sym__comment_word, - ACTIONS(9702), 2, + ACTIONS(10325), 1, + anon_sym_DOLLAR, + ACTIONS(722), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9720), 2, + ACTIONS(748), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9712), 3, + ACTIONS(10217), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10219), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4704), 9, + STATE(979), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [207803] = 18, + [214218] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3854), 1, + ACTIONS(2132), 1, aux_sym_number_token1, - ACTIONS(3856), 1, + ACTIONS(2134), 1, aux_sym_number_token2, - ACTIONS(3860), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3870), 1, + ACTIONS(2152), 1, sym__brace_start, - ACTIONS(9700), 1, - sym_word, - ACTIONS(9704), 1, + ACTIONS(8169), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9710), 1, + ACTIONS(8173), 1, anon_sym_DQUOTE, - ACTIONS(9714), 1, + ACTIONS(8175), 1, + anon_sym_SQUOTE, + ACTIONS(8179), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9716), 1, + ACTIONS(8181), 1, anon_sym_BQUOTE, - ACTIONS(9718), 1, + ACTIONS(8183), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9722), 1, + ACTIONS(9853), 1, + sym_word, + ACTIONS(9861), 1, sym__comment_word, - ACTIONS(9724), 1, + ACTIONS(10327), 1, anon_sym_DOLLAR, - ACTIONS(9702), 2, + ACTIONS(8165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9720), 2, + ACTIONS(8185), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9712), 3, + ACTIONS(9857), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9859), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4704), 9, + STATE(1627), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [207871] = 21, - ACTIONS(71), 1, + [214289] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(9111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9113), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(9115), 1, + sym__special_character, + ACTIONS(9117), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(9119), 1, + anon_sym_SQUOTE, + ACTIONS(9123), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(9125), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(9127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(9129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(9131), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(9133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9726), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2771), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9139), 1, + sym__brace_start, + ACTIONS(10329), 1, + sym_word, + ACTIONS(10331), 1, + sym_ansi_c_string, + ACTIONS(10333), 1, + sym_test_operator, + STATE(2542), 1, + aux_sym__literal_repeat1, + STATE(2633), 1, + sym_concatenation, + ACTIONS(9109), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2315), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [207945] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [214364] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, - anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(9450), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(1662), 1, + sym__brace_start, + ACTIONS(9253), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9257), 1, + anon_sym_DQUOTE, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9728), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2772), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9945), 1, + sym_word, + ACTIONS(9953), 1, + sym__comment_word, + ACTIONS(9251), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9269), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9949), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9951), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(1271), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [208019] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [214435] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(5713), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, - anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(5721), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(5723), 1, aux_sym_number_token2, - ACTIONS(9450), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(5727), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(5737), 1, + sym__brace_start, + ACTIONS(9285), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9289), 1, + anon_sym_DQUOTE, + ACTIONS(9291), 1, + anon_sym_SQUOTE, + ACTIONS(9295), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9297), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(9299), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9730), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2773), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10335), 1, + sym_word, + ACTIONS(10341), 1, + sym__comment_word, + ACTIONS(9283), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9301), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10337), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10339), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(3414), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [208093] = 18, + sym_process_substitution, + [214506] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(264), 1, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(284), 1, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(1155), 1, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1161), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9099), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + ACTIONS(9101), 1, anon_sym_BQUOTE, - ACTIONS(9732), 1, + ACTIONS(9103), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9957), 1, sym_word, - ACTIONS(9734), 1, - anon_sym_DOLLAR, - ACTIONS(9740), 1, + ACTIONS(9963), 1, sym__comment_word, - ACTIONS(1153), 2, + ACTIONS(10343), 1, + anon_sym_DOLLAR, + ACTIONS(9087), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1169), 2, + ACTIONS(9105), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9736), 2, + ACTIONS(9959), 2, sym_test_operator, sym__special_character, - ACTIONS(9738), 3, + ACTIONS(9961), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2735), 9, + STATE(2073), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [208161] = 21, - ACTIONS(71), 1, + [214577] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(9111), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9113), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(9115), 1, + sym__special_character, + ACTIONS(9117), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(9119), 1, + anon_sym_SQUOTE, + ACTIONS(9123), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(9125), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(9127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(9129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(9131), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(9133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9742), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3209), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(9139), 1, + sym__brace_start, + ACTIONS(10345), 1, + sym_word, + ACTIONS(10347), 1, + sym_ansi_c_string, + ACTIONS(10349), 1, + sym_test_operator, + STATE(2566), 1, + aux_sym__literal_repeat1, + STATE(2680), 1, + sym_concatenation, + ACTIONS(9109), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9135), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(2323), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [208235] = 18, + sym_process_substitution, + [214652] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(264), 1, + ACTIONS(1860), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(1862), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(1866), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(284), 1, + ACTIONS(1880), 1, sym__brace_start, - ACTIONS(1155), 1, + ACTIONS(8537), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1161), 1, + ACTIONS(8541), 1, anon_sym_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(8543), 1, + anon_sym_SQUOTE, + ACTIONS(8547), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + ACTIONS(8549), 1, anon_sym_BQUOTE, - ACTIONS(9732), 1, + ACTIONS(8551), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10351), 1, sym_word, - ACTIONS(9740), 1, - sym__comment_word, - ACTIONS(9744), 1, + ACTIONS(10353), 1, anon_sym_DOLLAR, - ACTIONS(1153), 2, + ACTIONS(10359), 1, + sym__comment_word, + ACTIONS(8533), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1169), 2, + ACTIONS(8553), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9736), 2, + ACTIONS(10355), 2, sym_test_operator, sym__special_character, - ACTIONS(9738), 3, + ACTIONS(10357), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2735), 9, + STATE(1380), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [208303] = 18, + [214723] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(2820), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(2824), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2834), 1, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(9244), 1, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9248), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(9252), 1, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9099), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9254), 1, + ACTIONS(9101), 1, anon_sym_BQUOTE, - ACTIONS(9256), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9746), 1, + ACTIONS(9957), 1, sym_word, - ACTIONS(9748), 1, - anon_sym_DOLLAR, - ACTIONS(9754), 1, + ACTIONS(9963), 1, sym__comment_word, - ACTIONS(9242), 2, + ACTIONS(10361), 1, + anon_sym_DOLLAR, + ACTIONS(9087), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9258), 2, + ACTIONS(9105), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9750), 2, + ACTIONS(9959), 2, sym_test_operator, sym__special_character, - ACTIONS(9752), 3, + ACTIONS(9961), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1678), 9, + STATE(2073), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [208371] = 18, + [214794] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2818), 1, + ACTIONS(5925), 1, + anon_sym_DOLLAR, + ACTIONS(5933), 1, aux_sym_number_token1, - ACTIONS(2820), 1, + ACTIONS(5935), 1, aux_sym_number_token2, - ACTIONS(2824), 1, + ACTIONS(5939), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2834), 1, + ACTIONS(5949), 1, sym__brace_start, - ACTIONS(9244), 1, + ACTIONS(10363), 1, + sym_word, + ACTIONS(10367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9248), 1, + ACTIONS(10371), 1, anon_sym_DQUOTE, - ACTIONS(9252), 1, + ACTIONS(10373), 1, + anon_sym_SQUOTE, + ACTIONS(10377), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9254), 1, + ACTIONS(10379), 1, anon_sym_BQUOTE, - ACTIONS(9256), 1, + ACTIONS(10381), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9746), 1, - sym_word, - ACTIONS(9754), 1, + ACTIONS(10385), 1, sym__comment_word, - ACTIONS(9756), 1, - anon_sym_DOLLAR, - ACTIONS(9242), 2, + ACTIONS(10365), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9258), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9750), 2, + ACTIONS(10369), 2, sym_test_operator, sym__special_character, - ACTIONS(9752), 3, + ACTIONS(10375), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1678), 9, + ACTIONS(10383), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5706), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [208439] = 18, + [214865] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3356), 1, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(3358), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(3362), 1, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3372), 1, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(9758), 1, - sym_word, - ACTIONS(9762), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9764), 1, - anon_sym_DOLLAR, - ACTIONS(9768), 1, - anon_sym_DQUOTE, - ACTIONS(9772), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9780), 1, + ACTIONS(9643), 1, + sym_word, + ACTIONS(9651), 1, sym__comment_word, - ACTIONS(9760), 2, + ACTIONS(10387), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9766), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9778), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9770), 3, + ACTIONS(9647), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9649), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4467), 9, + STATE(2410), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [208507] = 18, + [214936] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3356), 1, + ACTIONS(2132), 1, aux_sym_number_token1, - ACTIONS(3358), 1, + ACTIONS(2134), 1, aux_sym_number_token2, - ACTIONS(3362), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3372), 1, + ACTIONS(2152), 1, sym__brace_start, - ACTIONS(9758), 1, - sym_word, - ACTIONS(9762), 1, + ACTIONS(8169), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9768), 1, + ACTIONS(8173), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(8175), 1, + anon_sym_SQUOTE, + ACTIONS(8179), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(8181), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(8183), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9780), 1, + ACTIONS(9853), 1, + sym_word, + ACTIONS(9861), 1, sym__comment_word, - ACTIONS(9782), 1, + ACTIONS(10389), 1, anon_sym_DOLLAR, - ACTIONS(9760), 2, + ACTIONS(8165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9766), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9778), 2, + ACTIONS(8185), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9770), 3, + ACTIONS(9857), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9859), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4467), 9, + STATE(1627), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [208575] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, - anon_sym_LPAREN, - ACTIONS(9434), 1, - anon_sym_BANG, - ACTIONS(9440), 1, - anon_sym_TILDE, - ACTIONS(9442), 1, - anon_sym_DOLLAR, - ACTIONS(9444), 1, - anon_sym_DQUOTE, - ACTIONS(9446), 1, - aux_sym_number_token1, - ACTIONS(9448), 1, - aux_sym_number_token2, - ACTIONS(9450), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, - anon_sym_BQUOTE, - ACTIONS(9456), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9784), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, - sym__arithmetic_binary_expression, - STATE(2838), 1, - sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9438), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(2908), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [208649] = 18, + [215007] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8414), 1, + ACTIONS(461), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8416), 1, + ACTIONS(463), 1, anon_sym_DOLLAR, - ACTIONS(8420), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(8424), 1, + ACTIONS(469), 1, + anon_sym_SQUOTE, + ACTIONS(473), 1, aux_sym_number_token1, - ACTIONS(8426), 1, + ACTIONS(475), 1, aux_sym_number_token2, - ACTIONS(8428), 1, + ACTIONS(477), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8430), 1, + ACTIONS(479), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8432), 1, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(8434), 1, + ACTIONS(483), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8444), 1, + ACTIONS(493), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(10391), 1, sym_word, - ACTIONS(9792), 1, + ACTIONS(10397), 1, sym__comment_word, - ACTIONS(8410), 2, + ACTIONS(459), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8436), 2, + ACTIONS(485), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9788), 2, + ACTIONS(10393), 2, sym_test_operator, sym__special_character, - ACTIONS(9790), 3, + ACTIONS(10395), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1599), 9, + STATE(859), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [208717] = 18, + [215078] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8166), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8172), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(8176), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(8178), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(8180), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8182), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8184), 1, - anon_sym_BQUOTE, - ACTIONS(8186), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8196), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(9794), 1, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(9643), 1, sym_word, - ACTIONS(9796), 1, - anon_sym_DOLLAR, - ACTIONS(9802), 1, + ACTIONS(9651), 1, sym__comment_word, - ACTIONS(8162), 2, + ACTIONS(10399), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8188), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9798), 2, + ACTIONS(9647), 2, sym_test_operator, sym__special_character, - ACTIONS(9800), 3, + ACTIONS(9649), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4487), 9, + STATE(2410), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [208785] = 18, + [215149] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8166), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8172), 1, - anon_sym_DQUOTE, - ACTIONS(8176), 1, + ACTIONS(2878), 1, aux_sym_number_token1, - ACTIONS(8178), 1, + ACTIONS(2880), 1, aux_sym_number_token2, - ACTIONS(8180), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8182), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8184), 1, + ACTIONS(2894), 1, + sym__brace_start, + ACTIONS(9523), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9527), 1, + anon_sym_DQUOTE, + ACTIONS(9529), 1, + anon_sym_SQUOTE, + ACTIONS(9533), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9535), 1, anon_sym_BQUOTE, - ACTIONS(8186), 1, + ACTIONS(9537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8196), 1, - sym__brace_start, - ACTIONS(9794), 1, + ACTIONS(10401), 1, sym_word, - ACTIONS(9802), 1, - sym__comment_word, - ACTIONS(9804), 1, + ACTIONS(10403), 1, anon_sym_DOLLAR, - ACTIONS(8162), 2, + ACTIONS(10409), 1, + sym__comment_word, + ACTIONS(9521), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8188), 2, + ACTIONS(9539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9798), 2, + ACTIONS(10405), 2, sym_test_operator, sym__special_character, - ACTIONS(9800), 3, + ACTIONS(10407), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4487), 9, + STATE(1687), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [208853] = 18, + [215220] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 1, + ACTIONS(5293), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8096), 1, + ACTIONS(5295), 1, + anon_sym_DOLLAR, + ACTIONS(5299), 1, anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(5301), 1, + anon_sym_SQUOTE, + ACTIONS(5305), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(5307), 1, aux_sym_number_token2, - ACTIONS(8104), 1, + ACTIONS(5309), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(5311), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(5313), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(5315), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, + ACTIONS(5321), 1, sym__brace_start, - ACTIONS(9806), 1, + ACTIONS(10411), 1, sym_word, - ACTIONS(9808), 1, - anon_sym_DOLLAR, - ACTIONS(9814), 1, + ACTIONS(10417), 1, sym__comment_word, - ACTIONS(8086), 2, + ACTIONS(5291), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(5317), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9810), 2, + ACTIONS(10413), 2, sym_test_operator, sym__special_character, - ACTIONS(9812), 3, + ACTIONS(10415), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1531), 9, + STATE(2988), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [208921] = 18, + [215291] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 1, + ACTIONS(367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8096), 1, + ACTIONS(373), 1, anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(379), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(381), 1, aux_sym_number_token2, - ACTIONS(8104), 1, + ACTIONS(383), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(387), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(389), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, + ACTIONS(399), 1, sym__brace_start, - ACTIONS(9806), 1, + ACTIONS(9689), 1, sym_word, - ACTIONS(9814), 1, + ACTIONS(9697), 1, sym__comment_word, - ACTIONS(9816), 1, + ACTIONS(10419), 1, anon_sym_DOLLAR, - ACTIONS(8086), 2, + ACTIONS(365), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(391), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9810), 2, + ACTIONS(9693), 2, sym_test_operator, sym__special_character, - ACTIONS(9812), 3, + ACTIONS(9695), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1531), 9, + STATE(1068), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [208989] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(3776), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, - anon_sym_DQUOTE, - ACTIONS(9832), 1, - aux_sym_number_token1, - ACTIONS(9834), 1, - aux_sym_number_token2, - ACTIONS(9836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, - anon_sym_BQUOTE, - ACTIONS(9842), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3251), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [209063] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(4066), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, - anon_sym_DQUOTE, - ACTIONS(9832), 1, - aux_sym_number_token1, - ACTIONS(9834), 1, - aux_sym_number_token2, - ACTIONS(9836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, - anon_sym_BQUOTE, - ACTIONS(9842), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3252), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [209137] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3600), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, - anon_sym_DQUOTE, - ACTIONS(9832), 1, - aux_sym_number_token1, - ACTIONS(9834), 1, - aux_sym_number_token2, - ACTIONS(9836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, - anon_sym_BQUOTE, - ACTIONS(9842), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3254), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [209211] = 18, + [215362] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2044), 1, + ACTIONS(6683), 1, aux_sym_number_token1, - ACTIONS(2046), 1, + ACTIONS(6685), 1, aux_sym_number_token2, - ACTIONS(2050), 1, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, + ACTIONS(6701), 1, sym__brace_start, - ACTIONS(8062), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8066), 1, + ACTIONS(7170), 1, anon_sym_DQUOTE, - ACTIONS(8070), 1, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8072), 1, + ACTIONS(7178), 1, anon_sym_BQUOTE, - ACTIONS(8074), 1, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9844), 1, + ACTIONS(10105), 1, sym_word, - ACTIONS(9846), 1, - anon_sym_DOLLAR, - ACTIONS(9852), 1, + ACTIONS(10111), 1, sym__comment_word, - ACTIONS(8058), 2, + ACTIONS(10421), 1, + anon_sym_DOLLAR, + ACTIONS(7164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8076), 2, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9848), 2, + ACTIONS(10107), 2, sym_test_operator, sym__special_character, - ACTIONS(9850), 3, + ACTIONS(10109), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1484), 9, + STATE(6605), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [209279] = 18, + [215433] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2044), 1, + ACTIONS(2878), 1, aux_sym_number_token1, - ACTIONS(2046), 1, + ACTIONS(2880), 1, aux_sym_number_token2, - ACTIONS(2050), 1, + ACTIONS(2884), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, + ACTIONS(2894), 1, sym__brace_start, - ACTIONS(8062), 1, + ACTIONS(9523), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8066), 1, + ACTIONS(9527), 1, anon_sym_DQUOTE, - ACTIONS(8070), 1, + ACTIONS(9529), 1, + anon_sym_SQUOTE, + ACTIONS(9533), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8072), 1, + ACTIONS(9535), 1, anon_sym_BQUOTE, - ACTIONS(8074), 1, + ACTIONS(9537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9844), 1, + ACTIONS(10401), 1, sym_word, - ACTIONS(9852), 1, + ACTIONS(10409), 1, sym__comment_word, - ACTIONS(9854), 1, + ACTIONS(10423), 1, anon_sym_DOLLAR, - ACTIONS(8058), 2, + ACTIONS(9521), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8076), 2, + ACTIONS(9539), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9848), 2, + ACTIONS(10405), 2, sym_test_operator, sym__special_character, - ACTIONS(9850), 3, + ACTIONS(10407), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1484), 9, + STATE(1687), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [209347] = 18, + [215504] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8414), 1, + ACTIONS(5581), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8420), 1, + ACTIONS(5583), 1, + anon_sym_DOLLAR, + ACTIONS(5587), 1, anon_sym_DQUOTE, - ACTIONS(8424), 1, + ACTIONS(5589), 1, + anon_sym_SQUOTE, + ACTIONS(5593), 1, aux_sym_number_token1, - ACTIONS(8426), 1, + ACTIONS(5595), 1, aux_sym_number_token2, - ACTIONS(8428), 1, + ACTIONS(5597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8430), 1, + ACTIONS(5599), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8432), 1, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(8434), 1, + ACTIONS(5603), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8444), 1, + ACTIONS(5609), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(10425), 1, sym_word, - ACTIONS(9792), 1, + ACTIONS(10431), 1, sym__comment_word, - ACTIONS(9856), 1, - anon_sym_DOLLAR, - ACTIONS(8410), 2, + ACTIONS(5579), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8436), 2, + ACTIONS(5605), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9788), 2, + ACTIONS(10427), 2, sym_test_operator, sym__special_character, - ACTIONS(9790), 3, + ACTIONS(10429), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1599), 9, + STATE(5573), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [209415] = 18, + [215575] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(6683), 1, aux_sym_number_token1, - ACTIONS(3251), 1, + ACTIONS(6685), 1, aux_sym_number_token2, - ACTIONS(3255), 1, + ACTIONS(6689), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3267), 1, + ACTIONS(6701), 1, sym__brace_start, - ACTIONS(9858), 1, - sym_word, - ACTIONS(9862), 1, + ACTIONS(7166), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9864), 1, - anon_sym_DOLLAR, - ACTIONS(9868), 1, + ACTIONS(7170), 1, anon_sym_DQUOTE, - ACTIONS(9872), 1, + ACTIONS(7172), 1, + anon_sym_SQUOTE, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9874), 1, + ACTIONS(7178), 1, anon_sym_BQUOTE, - ACTIONS(9876), 1, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9880), 1, + ACTIONS(10105), 1, + sym_word, + ACTIONS(10111), 1, sym__comment_word, - ACTIONS(9860), 2, + ACTIONS(10433), 1, + anon_sym_DOLLAR, + ACTIONS(7164), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9866), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9878), 2, + ACTIONS(7182), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9870), 3, + ACTIONS(10107), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10109), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1880), 9, + STATE(6605), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [209483] = 20, - ACTIONS(71), 1, + [215646] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 1, + ACTIONS(367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, + ACTIONS(373), 1, anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(379), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(381), 1, aux_sym_number_token2, - ACTIONS(8104), 1, + ACTIONS(383), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(387), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(389), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, + ACTIONS(399), 1, sym__brace_start, - ACTIONS(8476), 1, - sym__special_character, - ACTIONS(9882), 1, + ACTIONS(9689), 1, sym_word, - ACTIONS(9886), 1, - sym_test_operator, - STATE(1790), 1, - aux_sym__literal_repeat1, - STATE(1938), 1, - sym_concatenation, - ACTIONS(8086), 2, + ACTIONS(9697), 1, + sym__comment_word, + ACTIONS(10435), 1, + anon_sym_DOLLAR, + ACTIONS(365), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(391), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9884), 2, - sym_raw_string, + ACTIONS(9693), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9695), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(1438), 9, + STATE(1068), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [209555] = 20, - ACTIONS(71), 1, + [215717] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 1, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, + ACTIONS(311), 1, anon_sym_DOLLAR, - ACTIONS(8096), 1, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(8104), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, - anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(8476), 1, - sym__special_character, - ACTIONS(9888), 1, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(9189), 1, sym_word, - ACTIONS(9892), 1, - sym_test_operator, - STATE(1795), 1, - aux_sym__literal_repeat1, - STATE(1947), 1, - sym_concatenation, - ACTIONS(8086), 2, + ACTIONS(9193), 1, + sym__comment_word, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9890), 2, - sym_raw_string, + ACTIONS(9195), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(1476), 9, + ACTIONS(9197), 2, + sym_test_operator, + sym__special_character, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [209627] = 18, + [215788] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(47), 1, + ACTIONS(8433), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, + ACTIONS(8439), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(8441), 1, + anon_sym_SQUOTE, + ACTIONS(8445), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(8447), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(8449), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(8451), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(8453), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(8455), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, + ACTIONS(8465), 1, sym__brace_start, - ACTIONS(9894), 1, + ACTIONS(10047), 1, sym_word, - ACTIONS(9896), 1, - anon_sym_DOLLAR, - ACTIONS(9902), 1, + ACTIONS(10055), 1, sym__comment_word, - ACTIONS(45), 2, + ACTIONS(10437), 1, + anon_sym_DOLLAR, + ACTIONS(8429), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, + ACTIONS(8457), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9898), 2, + ACTIONS(10051), 2, sym_test_operator, sym__special_character, - ACTIONS(9900), 3, + ACTIONS(10053), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1058), 9, + STATE(4418), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [209695] = 18, + [215859] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, - aux_sym_number_token1, - ACTIONS(3251), 1, - aux_sym_number_token2, - ACTIONS(3255), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3267), 1, - sym__brace_start, - ACTIONS(9858), 1, - sym_word, - ACTIONS(9862), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9868), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(9872), 1, + ACTIONS(55), 1, + anon_sym_SQUOTE, + ACTIONS(59), 1, + aux_sym_number_token1, + ACTIONS(61), 1, + aux_sym_number_token2, + ACTIONS(63), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9874), 1, + ACTIONS(65), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(67), 1, anon_sym_BQUOTE, - ACTIONS(9876), 1, + ACTIONS(69), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9880), 1, - sym__comment_word, - ACTIONS(9904), 1, + ACTIONS(81), 1, + sym__brace_start, + ACTIONS(10439), 1, + sym_word, + ACTIONS(10441), 1, anon_sym_DOLLAR, - ACTIONS(9860), 2, + ACTIONS(10447), 1, + sym__comment_word, + ACTIONS(45), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9866), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9878), 2, + ACTIONS(71), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9870), 3, + ACTIONS(10443), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10445), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1880), 9, + STATE(1157), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [209763] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, - anon_sym_DQUOTE, - ACTIONS(9832), 1, - aux_sym_number_token1, - ACTIONS(9834), 1, - aux_sym_number_token2, - ACTIONS(9836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, - anon_sym_BQUOTE, - ACTIONS(9842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9906), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3315), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [209837] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, - anon_sym_DQUOTE, - ACTIONS(9832), 1, - aux_sym_number_token1, - ACTIONS(9834), 1, - aux_sym_number_token2, - ACTIONS(9836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, - anon_sym_BQUOTE, - ACTIONS(9842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9908), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3317), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [209911] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, - anon_sym_DQUOTE, - ACTIONS(9832), 1, - aux_sym_number_token1, - ACTIONS(9834), 1, - aux_sym_number_token2, - ACTIONS(9836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, - anon_sym_BQUOTE, - ACTIONS(9842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9910), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3318), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [209985] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, - anon_sym_DQUOTE, - ACTIONS(9832), 1, - aux_sym_number_token1, - ACTIONS(9834), 1, - aux_sym_number_token2, - ACTIONS(9836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, - anon_sym_BQUOTE, - ACTIONS(9842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9912), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3319), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [210059] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, - anon_sym_DQUOTE, - ACTIONS(9832), 1, - aux_sym_number_token1, - ACTIONS(9834), 1, - aux_sym_number_token2, - ACTIONS(9836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, - anon_sym_BQUOTE, - ACTIONS(9842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9914), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3320), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [210133] = 21, - ACTIONS(71), 1, + [215930] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, + ACTIONS(5056), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5058), 1, anon_sym_DOLLAR, - ACTIONS(9830), 1, + ACTIONS(5062), 1, anon_sym_DQUOTE, - ACTIONS(9832), 1, + ACTIONS(5064), 1, + anon_sym_SQUOTE, + ACTIONS(5068), 1, aux_sym_number_token1, - ACTIONS(9834), 1, + ACTIONS(5070), 1, aux_sym_number_token2, - ACTIONS(9836), 1, + ACTIONS(5072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, + ACTIONS(5074), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, + ACTIONS(5076), 1, anon_sym_BQUOTE, - ACTIONS(9842), 1, + ACTIONS(5078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9916), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3322), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(5084), 1, + sym__brace_start, + ACTIONS(10449), 1, + sym_word, + ACTIONS(10455), 1, + sym__comment_word, + ACTIONS(5054), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5080), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10451), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10453), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2748), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [210207] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [216001] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, + ACTIONS(4739), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4741), 1, anon_sym_DOLLAR, - ACTIONS(9830), 1, + ACTIONS(4745), 1, anon_sym_DQUOTE, - ACTIONS(9832), 1, + ACTIONS(4747), 1, + anon_sym_SQUOTE, + ACTIONS(4751), 1, aux_sym_number_token1, - ACTIONS(9834), 1, + ACTIONS(4753), 1, aux_sym_number_token2, - ACTIONS(9836), 1, + ACTIONS(4755), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, + ACTIONS(4757), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, + ACTIONS(4759), 1, anon_sym_BQUOTE, - ACTIONS(9842), 1, + ACTIONS(4761), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9918), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3323), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(4769), 1, + sym__brace_start, + ACTIONS(10457), 1, + sym_word, + ACTIONS(10463), 1, + sym__comment_word, + ACTIONS(4737), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4763), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10459), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10461), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2768), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [210281] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [216072] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, + ACTIONS(10165), 1, + sym_word, + ACTIONS(10169), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10175), 1, anon_sym_DQUOTE, - ACTIONS(9832), 1, - aux_sym_number_token1, - ACTIONS(9834), 1, - aux_sym_number_token2, - ACTIONS(9836), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, - anon_sym_BQUOTE, - ACTIONS(9842), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9920), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3324), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(10177), 1, + anon_sym_SQUOTE, + ACTIONS(10181), 1, + aux_sym_number_token1, + ACTIONS(10183), 1, + aux_sym_number_token2, + ACTIONS(10185), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10187), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10189), 1, + anon_sym_BQUOTE, + ACTIONS(10191), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10195), 1, + sym__comment_word, + ACTIONS(10197), 1, + sym__brace_start, + ACTIONS(10465), 1, + anon_sym_DOLLAR, + ACTIONS(10167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10173), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10179), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(10193), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6267), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [210355] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [216143] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, + ACTIONS(5378), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5380), 1, anon_sym_DOLLAR, - ACTIONS(9830), 1, + ACTIONS(5384), 1, anon_sym_DQUOTE, - ACTIONS(9832), 1, + ACTIONS(5386), 1, + anon_sym_SQUOTE, + ACTIONS(5390), 1, aux_sym_number_token1, - ACTIONS(9834), 1, + ACTIONS(5392), 1, aux_sym_number_token2, - ACTIONS(9836), 1, + ACTIONS(5394), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, + ACTIONS(5396), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, + ACTIONS(5398), 1, anon_sym_BQUOTE, - ACTIONS(9842), 1, + ACTIONS(5400), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9922), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3325), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(5406), 1, + sym__brace_start, + ACTIONS(10467), 1, + sym_word, + ACTIONS(10473), 1, + sym__comment_word, + ACTIONS(5376), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5402), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10469), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10471), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(5515), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [210429] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [216214] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, + ACTIONS(8741), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8747), 1, anon_sym_DQUOTE, - ACTIONS(9832), 1, + ACTIONS(8749), 1, + anon_sym_SQUOTE, + ACTIONS(8753), 1, aux_sym_number_token1, - ACTIONS(9834), 1, + ACTIONS(8755), 1, aux_sym_number_token2, - ACTIONS(9836), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, + ACTIONS(8761), 1, anon_sym_BQUOTE, - ACTIONS(9842), 1, + ACTIONS(8763), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9924), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3326), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8773), 1, + sym__brace_start, + ACTIONS(10157), 1, + sym_word, + ACTIONS(10163), 1, + sym__comment_word, + ACTIONS(10475), 1, + anon_sym_DOLLAR, + ACTIONS(8737), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8765), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10159), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10161), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2554), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [210503] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [216285] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, + ACTIONS(113), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(119), 1, anon_sym_DQUOTE, - ACTIONS(9832), 1, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(125), 1, aux_sym_number_token1, - ACTIONS(9834), 1, + ACTIONS(127), 1, aux_sym_number_token2, - ACTIONS(9836), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, + ACTIONS(131), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, + ACTIONS(133), 1, anon_sym_BQUOTE, - ACTIONS(9842), 1, + ACTIONS(135), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9926), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3327), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(145), 1, + sym__brace_start, + ACTIONS(10275), 1, + sym_word, + ACTIONS(10283), 1, + sym__comment_word, + ACTIONS(10477), 1, + anon_sym_DOLLAR, + ACTIONS(111), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(137), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10279), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10281), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(482), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [210577] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [216356] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, + ACTIONS(8698), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8700), 1, anon_sym_DOLLAR, - ACTIONS(9830), 1, + ACTIONS(8704), 1, anon_sym_DQUOTE, - ACTIONS(9832), 1, + ACTIONS(8706), 1, + anon_sym_SQUOTE, + ACTIONS(8710), 1, aux_sym_number_token1, - ACTIONS(9834), 1, + ACTIONS(8712), 1, aux_sym_number_token2, - ACTIONS(9836), 1, + ACTIONS(8714), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, + ACTIONS(8716), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, + ACTIONS(8718), 1, anon_sym_BQUOTE, - ACTIONS(9842), 1, + ACTIONS(8720), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9928), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3328), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8730), 1, + sym__brace_start, + ACTIONS(10299), 1, + sym_word, + ACTIONS(10307), 1, + sym__comment_word, + ACTIONS(8694), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8722), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10303), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10305), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(3568), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [210651] = 21, - ACTIONS(71), 1, + sym_process_substitution, + [216427] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, + ACTIONS(8741), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8747), 1, anon_sym_DQUOTE, - ACTIONS(9832), 1, + ACTIONS(8749), 1, + anon_sym_SQUOTE, + ACTIONS(8753), 1, aux_sym_number_token1, - ACTIONS(9834), 1, + ACTIONS(8755), 1, aux_sym_number_token2, - ACTIONS(9836), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, + ACTIONS(8759), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, + ACTIONS(8761), 1, anon_sym_BQUOTE, - ACTIONS(9842), 1, + ACTIONS(8763), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9930), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3329), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, + ACTIONS(8773), 1, + sym__brace_start, + ACTIONS(10157), 1, + sym_word, + ACTIONS(10163), 1, + sym__comment_word, + ACTIONS(10479), 1, + anon_sym_DOLLAR, + ACTIONS(8737), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(8765), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10159), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10161), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2554), 10, + sym_arithmetic_expansion, + sym_brace_expression, sym_string, + sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - [210725] = 18, + sym_process_substitution, + [216498] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 1, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1119), 1, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(3119), 1, + ACTIONS(5851), 1, anon_sym_BQUOTE, - ACTIONS(9464), 1, + ACTIONS(9189), 1, sym_word, - ACTIONS(9472), 1, + ACTIONS(9193), 1, sym__comment_word, - ACTIONS(9932), 1, + ACTIONS(10481), 1, anon_sym_DOLLAR, - ACTIONS(1099), 2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9468), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9470), 3, + ACTIONS(9195), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2365), 9, + ACTIONS(9197), 2, + sym_test_operator, + sym__special_character, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [210793] = 18, + [216569] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1500), 1, + ACTIONS(307), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(315), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(1506), 1, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(9066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9070), 1, - anon_sym_DQUOTE, - ACTIONS(9074), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(5851), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9934), 1, + ACTIONS(9189), 1, sym_word, - ACTIONS(9936), 1, - anon_sym_DOLLAR, - ACTIONS(9942), 1, + ACTIONS(9193), 1, sym__comment_word, - ACTIONS(9064), 2, + ACTIONS(10483), 1, + anon_sym_DOLLAR, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9938), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9940), 3, + ACTIONS(9195), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1221), 9, + ACTIONS(9197), 2, + sym_test_operator, + sym__special_character, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [210861] = 18, + [216640] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8414), 1, + ACTIONS(8339), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8420), 1, + ACTIONS(8341), 1, + anon_sym_DOLLAR, + ACTIONS(8345), 1, anon_sym_DQUOTE, - ACTIONS(8424), 1, + ACTIONS(8347), 1, + anon_sym_SQUOTE, + ACTIONS(8351), 1, aux_sym_number_token1, - ACTIONS(8426), 1, + ACTIONS(8353), 1, aux_sym_number_token2, - ACTIONS(8428), 1, + ACTIONS(8355), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8430), 1, + ACTIONS(8357), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8432), 1, + ACTIONS(8359), 1, anon_sym_BQUOTE, - ACTIONS(8434), 1, + ACTIONS(8361), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8444), 1, + ACTIONS(8371), 1, sym__brace_start, - ACTIONS(9786), 1, + ACTIONS(9773), 1, sym_word, - ACTIONS(9792), 1, + ACTIONS(9781), 1, sym__comment_word, - ACTIONS(9944), 1, - anon_sym_DOLLAR, - ACTIONS(8410), 2, + ACTIONS(8335), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8436), 2, + ACTIONS(8363), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9788), 2, + ACTIONS(9777), 2, sym_test_operator, sym__special_character, - ACTIONS(9790), 3, + ACTIONS(9779), 2, sym__bare_dollar, + sym_ansi_c_string, + STATE(1177), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [216711] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5925), 1, + anon_sym_DOLLAR, + ACTIONS(5933), 1, + aux_sym_number_token1, + ACTIONS(5935), 1, + aux_sym_number_token2, + ACTIONS(5939), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5949), 1, + sym__brace_start, + ACTIONS(10367), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10371), 1, + anon_sym_DQUOTE, + ACTIONS(10373), 1, + anon_sym_SQUOTE, + ACTIONS(10377), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10379), 1, + anon_sym_BQUOTE, + ACTIONS(10381), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10485), 1, + sym_word, + ACTIONS(10487), 1, + sym__special_character, + ACTIONS(10489), 1, sym_ansi_c_string, - STATE(1599), 9, + ACTIONS(10491), 1, + sym_test_operator, + STATE(5689), 1, + aux_sym__literal_repeat1, + STATE(5781), 1, + sym_concatenation, + ACTIONS(10365), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10383), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5624), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [210929] = 18, + [216786] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 1, + ACTIONS(8779), 1, + anon_sym_SLASH, + ACTIONS(8781), 1, + anon_sym_PERCENT, + ACTIONS(8783), 1, + anon_sym_COLON, + ACTIONS(8787), 1, + anon_sym_RBRACE3, + ACTIONS(8789), 1, + anon_sym_AT, + ACTIONS(8791), 1, + anon_sym_STAR2, + ACTIONS(10493), 1, + anon_sym_LBRACK, + STATE(7322), 1, + sym__expansion_expression, + STATE(7363), 1, + sym__expansion_regex, + STATE(7585), 1, + sym__expansion_regex_replacement, + STATE(7587), 1, + sym__expansion_regex_removal, + STATE(7620), 1, + sym__expansion_max_length, + STATE(7651), 1, + sym__expansion_operator, + ACTIONS(8777), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8797), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8785), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8795), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8793), 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, + [216857] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1119), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(8231), 1, + anon_sym_BQUOTE, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(8243), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(9464), 1, + ACTIONS(9797), 1, sym_word, - ACTIONS(9472), 1, + ACTIONS(9805), 1, sym__comment_word, - ACTIONS(9946), 1, + ACTIONS(10495), 1, anon_sym_DOLLAR, - ACTIONS(1099), 2, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9468), 2, + ACTIONS(9801), 2, sym_test_operator, sym__special_character, - ACTIONS(9470), 3, + ACTIONS(9803), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2365), 9, + STATE(1597), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [210997] = 18, + [216928] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(357), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(363), 1, + ACTIONS(49), 1, + anon_sym_DOLLAR, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(367), 1, + ACTIONS(55), 1, + anon_sym_SQUOTE, + ACTIONS(59), 1, aux_sym_number_token1, - ACTIONS(369), 1, + ACTIONS(61), 1, aux_sym_number_token2, - ACTIONS(371), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, + ACTIONS(65), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(67), 1, anon_sym_BQUOTE, - ACTIONS(377), 1, + ACTIONS(69), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(387), 1, + ACTIONS(81), 1, sym__brace_start, - ACTIONS(9948), 1, + ACTIONS(10439), 1, sym_word, - ACTIONS(9950), 1, - anon_sym_DOLLAR, - ACTIONS(9956), 1, + ACTIONS(10447), 1, sym__comment_word, - ACTIONS(355), 2, + ACTIONS(45), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(379), 2, + ACTIONS(71), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9952), 2, + ACTIONS(10443), 2, sym_test_operator, sym__special_character, - ACTIONS(9954), 3, + ACTIONS(10445), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1101), 9, + STATE(1157), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211065] = 18, + [216999] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(357), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(363), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(367), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(369), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(371), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(377), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(387), 1, + ACTIONS(8243), 1, sym__brace_start, - ACTIONS(9948), 1, + ACTIONS(9797), 1, sym_word, - ACTIONS(9956), 1, + ACTIONS(9805), 1, sym__comment_word, - ACTIONS(9958), 1, + ACTIONS(10497), 1, anon_sym_DOLLAR, - ACTIONS(355), 2, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(379), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9952), 2, + ACTIONS(9801), 2, sym_test_operator, sym__special_character, - ACTIONS(9954), 3, + ACTIONS(9803), 2, sym__bare_dollar, + sym_ansi_c_string, + STATE(1597), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217070] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5925), 1, + anon_sym_DOLLAR, + ACTIONS(5933), 1, + aux_sym_number_token1, + ACTIONS(5935), 1, + aux_sym_number_token2, + ACTIONS(5939), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5949), 1, + sym__brace_start, + ACTIONS(10367), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10371), 1, + anon_sym_DQUOTE, + ACTIONS(10373), 1, + anon_sym_SQUOTE, + ACTIONS(10377), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10379), 1, + anon_sym_BQUOTE, + ACTIONS(10381), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10487), 1, + sym__special_character, + ACTIONS(10499), 1, + sym_word, + ACTIONS(10501), 1, sym_ansi_c_string, - STATE(1101), 9, + ACTIONS(10503), 1, + sym_test_operator, + STATE(5725), 1, + aux_sym__literal_repeat1, + STATE(5837), 1, + sym_concatenation, + ACTIONS(10365), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10383), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5630), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211133] = 18, + [217145] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(303), 1, + ACTIONS(1674), 1, anon_sym_DOLLAR, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(1682), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(1684), 1, aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(1688), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(1702), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(8379), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8383), 1, + anon_sym_DQUOTE, + ACTIONS(8385), 1, + anon_sym_SQUOTE, + ACTIONS(8389), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8391), 1, anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(8393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10505), 1, sym_word, - ACTIONS(8858), 1, + ACTIONS(10511), 1, sym__comment_word, - ACTIONS(288), 2, + ACTIONS(8375), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(8395), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8862), 2, + ACTIONS(10507), 2, sym_test_operator, sym__special_character, - ACTIONS(8860), 3, + ACTIONS(10509), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2670), 9, + STATE(1180), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211201] = 18, + [217216] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(2132), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(2134), 1, aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(2152), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(8169), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8173), 1, + anon_sym_DQUOTE, + ACTIONS(8175), 1, + anon_sym_SQUOTE, + ACTIONS(8179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8181), 1, anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(8183), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9853), 1, sym_word, - ACTIONS(8858), 1, + ACTIONS(9861), 1, sym__comment_word, - ACTIONS(9960), 1, + ACTIONS(10513), 1, anon_sym_DOLLAR, - ACTIONS(288), 2, + ACTIONS(8165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(8185), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8862), 2, + ACTIONS(9857), 2, sym_test_operator, sym__special_character, - ACTIONS(8860), 3, + ACTIONS(9859), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2670), 9, + STATE(1627), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211269] = 18, + [217287] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(299), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(307), 1, - anon_sym_DQUOTE, - ACTIONS(311), 1, + ACTIONS(2132), 1, aux_sym_number_token1, - ACTIONS(313), 1, + ACTIONS(2134), 1, aux_sym_number_token2, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(317), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(321), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(327), 1, + ACTIONS(2152), 1, sym__brace_start, - ACTIONS(5884), 1, + ACTIONS(8169), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8173), 1, + anon_sym_DQUOTE, + ACTIONS(8175), 1, + anon_sym_SQUOTE, + ACTIONS(8179), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8181), 1, anon_sym_BQUOTE, - ACTIONS(8854), 1, + ACTIONS(8183), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9853), 1, sym_word, - ACTIONS(8858), 1, + ACTIONS(9861), 1, sym__comment_word, - ACTIONS(9962), 1, + ACTIONS(10515), 1, anon_sym_DOLLAR, - ACTIONS(288), 2, + ACTIONS(8165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(323), 2, + ACTIONS(8185), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(8862), 2, + ACTIONS(9857), 2, sym_test_operator, sym__special_character, - ACTIONS(8860), 3, + ACTIONS(9859), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2670), 9, + STATE(1627), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211337] = 18, + [217358] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8096), 1, - anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(3625), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(3627), 1, aux_sym_number_token2, - ACTIONS(8104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(3631), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(3641), 1, + sym__brace_start, + ACTIONS(9975), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9979), 1, + anon_sym_DQUOTE, + ACTIONS(9981), 1, + anon_sym_SQUOTE, + ACTIONS(9985), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9987), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(9989), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, - sym__brace_start, - ACTIONS(9806), 1, + ACTIONS(10517), 1, sym_word, - ACTIONS(9814), 1, - sym__comment_word, - ACTIONS(9964), 1, + ACTIONS(10519), 1, anon_sym_DOLLAR, - ACTIONS(8086), 2, + ACTIONS(10525), 1, + sym__comment_word, + ACTIONS(9973), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(9991), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9810), 2, + ACTIONS(10521), 2, sym_test_operator, sym__special_character, - ACTIONS(9812), 3, + ACTIONS(10523), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1531), 9, + STATE(4640), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211405] = 18, - ACTIONS(3), 1, + [217429] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8090), 1, + ACTIONS(5202), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8096), 1, + ACTIONS(5204), 1, + anon_sym_DOLLAR, + ACTIONS(5208), 1, anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(5210), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(5216), 1, aux_sym_number_token2, - ACTIONS(8104), 1, + ACTIONS(5218), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(5220), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(5222), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(5224), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, + ACTIONS(5230), 1, sym__brace_start, - ACTIONS(9806), 1, + ACTIONS(10527), 1, sym_word, - ACTIONS(9814), 1, - sym__comment_word, - ACTIONS(9966), 1, - anon_sym_DOLLAR, - ACTIONS(8086), 2, + ACTIONS(10529), 1, + sym__special_character, + ACTIONS(10531), 1, + sym_ansi_c_string, + ACTIONS(10533), 1, + sym_test_operator, + STATE(5468), 1, + aux_sym__literal_repeat1, + STATE(5635), 1, + sym_concatenation, + ACTIONS(5200), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(5226), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9810), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9812), 3, - sym__bare_dollar, + STATE(5418), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217504] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1636), 1, + anon_sym_DOLLAR, + ACTIONS(1644), 1, + aux_sym_number_token1, + ACTIONS(1646), 1, + aux_sym_number_token2, + ACTIONS(1650), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1662), 1, + sym__brace_start, + ACTIONS(9253), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9257), 1, + anon_sym_DQUOTE, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9265), 1, + anon_sym_BQUOTE, + ACTIONS(9267), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9347), 1, + sym__special_character, + ACTIONS(10535), 1, + sym_word, + ACTIONS(10537), 1, sym_ansi_c_string, - STATE(1531), 9, + ACTIONS(10539), 1, + sym_test_operator, + STATE(1339), 1, + aux_sym__literal_repeat1, + STATE(1521), 1, + sym_concatenation, + ACTIONS(9251), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9269), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1155), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211473] = 18, - ACTIONS(3), 1, + [217579] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(2044), 1, + ACTIONS(4207), 1, + anon_sym_DOLLAR, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(2046), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(2050), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(8062), 1, + ACTIONS(10021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8066), 1, + ACTIONS(10025), 1, anon_sym_DQUOTE, - ACTIONS(8070), 1, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8072), 1, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(8074), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9844), 1, + ACTIONS(10541), 1, sym_word, - ACTIONS(9852), 1, - sym__comment_word, - ACTIONS(9968), 1, - anon_sym_DOLLAR, - ACTIONS(8058), 2, + ACTIONS(10543), 1, + sym__special_character, + ACTIONS(10545), 1, + sym_ansi_c_string, + ACTIONS(10547), 1, + sym_test_operator, + STATE(4469), 1, + aux_sym__literal_repeat1, + STATE(5082), 1, + sym_concatenation, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8076), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9848), 2, + STATE(4897), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217654] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2372), 1, + anon_sym_DOLLAR, + ACTIONS(2380), 1, + aux_sym_number_token1, + ACTIONS(2382), 1, + aux_sym_number_token2, + ACTIONS(2386), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2398), 1, + sym__brace_start, + ACTIONS(10549), 1, + sym_word, + ACTIONS(10553), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10557), 1, + anon_sym_DQUOTE, + ACTIONS(10559), 1, + anon_sym_SQUOTE, + ACTIONS(10563), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10565), 1, + anon_sym_BQUOTE, + ACTIONS(10567), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10571), 1, + sym__comment_word, + ACTIONS(10551), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10555), 2, sym_test_operator, sym__special_character, - ACTIONS(9850), 3, + ACTIONS(10561), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1484), 9, + ACTIONS(10569), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1355), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211541] = 18, + [217725] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2044), 1, + ACTIONS(3625), 1, aux_sym_number_token1, - ACTIONS(2046), 1, + ACTIONS(3627), 1, aux_sym_number_token2, - ACTIONS(2050), 1, + ACTIONS(3631), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, + ACTIONS(3641), 1, sym__brace_start, - ACTIONS(8062), 1, + ACTIONS(9975), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8066), 1, + ACTIONS(9979), 1, anon_sym_DQUOTE, - ACTIONS(8070), 1, + ACTIONS(9981), 1, + anon_sym_SQUOTE, + ACTIONS(9985), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8072), 1, + ACTIONS(9987), 1, anon_sym_BQUOTE, - ACTIONS(8074), 1, + ACTIONS(9989), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9844), 1, + ACTIONS(10517), 1, sym_word, - ACTIONS(9852), 1, + ACTIONS(10525), 1, sym__comment_word, - ACTIONS(9970), 1, + ACTIONS(10573), 1, anon_sym_DOLLAR, - ACTIONS(8058), 2, + ACTIONS(9973), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8076), 2, + ACTIONS(9991), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9848), 2, + ACTIONS(10521), 2, sym_test_operator, sym__special_character, - ACTIONS(9850), 3, + ACTIONS(10523), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1484), 9, + STATE(4640), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211609] = 18, + [217796] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3248), 1, aux_sym_number_token1, - ACTIONS(3251), 1, + ACTIONS(3250), 1, aux_sym_number_token2, - ACTIONS(3255), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3267), 1, + ACTIONS(3266), 1, sym__brace_start, - ACTIONS(9858), 1, + ACTIONS(9725), 1, sym_word, - ACTIONS(9862), 1, + ACTIONS(9729), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9868), 1, + ACTIONS(9733), 1, anon_sym_DQUOTE, - ACTIONS(9872), 1, + ACTIONS(9735), 1, + anon_sym_SQUOTE, + ACTIONS(9739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9874), 1, + ACTIONS(9741), 1, anon_sym_BQUOTE, - ACTIONS(9876), 1, + ACTIONS(9743), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9880), 1, + ACTIONS(9747), 1, sym__comment_word, - ACTIONS(9972), 1, + ACTIONS(10575), 1, anon_sym_DOLLAR, - ACTIONS(9860), 2, + ACTIONS(9727), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9866), 2, + ACTIONS(9731), 2, sym_test_operator, sym__special_character, - ACTIONS(9878), 2, + ACTIONS(9737), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(9745), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9870), 3, - sym__bare_dollar, + STATE(1865), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [217867] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4842), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(4848), 1, + anon_sym_DQUOTE, + ACTIONS(4850), 1, + anon_sym_SQUOTE, + ACTIONS(4854), 1, + aux_sym_number_token1, + ACTIONS(4856), 1, + aux_sym_number_token2, + ACTIONS(4858), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4860), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4862), 1, + anon_sym_BQUOTE, + ACTIONS(4864), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(4870), 1, + sym__brace_start, + ACTIONS(10203), 1, + sym_word, + ACTIONS(10209), 1, + sym__comment_word, + ACTIONS(10577), 1, + anon_sym_DOLLAR, + ACTIONS(4840), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(4866), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10205), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10207), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(1880), 9, + STATE(2668), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211677] = 18, + [217938] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3248), 1, aux_sym_number_token1, - ACTIONS(3251), 1, + ACTIONS(3250), 1, aux_sym_number_token2, - ACTIONS(3255), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3267), 1, + ACTIONS(3266), 1, sym__brace_start, - ACTIONS(9858), 1, + ACTIONS(9725), 1, sym_word, - ACTIONS(9862), 1, + ACTIONS(9729), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9868), 1, + ACTIONS(9733), 1, anon_sym_DQUOTE, - ACTIONS(9872), 1, + ACTIONS(9735), 1, + anon_sym_SQUOTE, + ACTIONS(9739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9874), 1, + ACTIONS(9741), 1, anon_sym_BQUOTE, - ACTIONS(9876), 1, + ACTIONS(9743), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9880), 1, + ACTIONS(9747), 1, sym__comment_word, - ACTIONS(9974), 1, + ACTIONS(10579), 1, anon_sym_DOLLAR, - ACTIONS(9860), 2, + ACTIONS(9727), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9866), 2, + ACTIONS(9731), 2, sym_test_operator, sym__special_character, - ACTIONS(9878), 2, + ACTIONS(9737), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(9745), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9870), 3, - sym__bare_dollar, + STATE(1865), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218009] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1135), 1, + anon_sym_DOLLAR, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, + aux_sym_number_token1, + ACTIONS(1147), 1, + aux_sym_number_token2, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, + sym__brace_start, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(9643), 1, + sym_word, + ACTIONS(9651), 1, + sym__comment_word, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9647), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9649), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(1880), 9, + STATE(2410), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211745] = 18, + [218080] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1500), 1, + ACTIONS(1598), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1600), 1, aux_sym_number_token2, - ACTIONS(1506), 1, + ACTIONS(1604), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, + ACTIONS(1616), 1, sym__brace_start, - ACTIONS(9066), 1, + ACTIONS(9213), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9070), 1, + ACTIONS(9217), 1, anon_sym_DQUOTE, - ACTIONS(9074), 1, + ACTIONS(9219), 1, + anon_sym_SQUOTE, + ACTIONS(9223), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9934), 1, + ACTIONS(9551), 1, sym_word, - ACTIONS(9942), 1, + ACTIONS(9559), 1, sym__comment_word, - ACTIONS(9976), 1, + ACTIONS(10581), 1, anon_sym_DOLLAR, - ACTIONS(9064), 2, + ACTIONS(9211), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, + ACTIONS(9229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9938), 2, + ACTIONS(9555), 2, sym_test_operator, sym__special_character, - ACTIONS(9940), 3, + ACTIONS(9557), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1221), 9, + STATE(1238), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211813] = 18, + [218151] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1500), 1, - aux_sym_number_token1, - ACTIONS(1502), 1, - aux_sym_number_token2, - ACTIONS(1506), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, - sym__brace_start, - ACTIONS(9066), 1, + ACTIONS(4842), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9070), 1, + ACTIONS(4848), 1, anon_sym_DQUOTE, - ACTIONS(9074), 1, + ACTIONS(4850), 1, + anon_sym_SQUOTE, + ACTIONS(4854), 1, + aux_sym_number_token1, + ACTIONS(4856), 1, + aux_sym_number_token2, + ACTIONS(4858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(4860), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4862), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, + ACTIONS(4864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9934), 1, + ACTIONS(4870), 1, + sym__brace_start, + ACTIONS(10203), 1, sym_word, - ACTIONS(9942), 1, + ACTIONS(10209), 1, sym__comment_word, - ACTIONS(9978), 1, + ACTIONS(10583), 1, anon_sym_DOLLAR, - ACTIONS(9064), 2, + ACTIONS(4840), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, + ACTIONS(4866), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9938), 2, + ACTIONS(10205), 2, sym_test_operator, sym__special_character, - ACTIONS(9940), 3, + ACTIONS(10207), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1221), 9, + STATE(2668), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211881] = 18, + [218222] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1500), 1, + ACTIONS(1446), 1, + anon_sym_DOLLAR, + ACTIONS(1454), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1456), 1, aux_sym_number_token2, - ACTIONS(1506), 1, + ACTIONS(1460), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, + ACTIONS(1472), 1, sym__brace_start, - ACTIONS(9066), 1, + ACTIONS(9161), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9070), 1, + ACTIONS(9165), 1, anon_sym_DQUOTE, - ACTIONS(9074), 1, + ACTIONS(9167), 1, + anon_sym_SQUOTE, + ACTIONS(9171), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(9173), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, + ACTIONS(9175), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9934), 1, + ACTIONS(9835), 1, sym_word, - ACTIONS(9942), 1, + ACTIONS(9843), 1, sym__comment_word, - ACTIONS(9980), 1, - anon_sym_DOLLAR, - ACTIONS(9064), 2, + ACTIONS(9159), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, + ACTIONS(9177), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9938), 2, + ACTIONS(9839), 2, sym_test_operator, sym__special_character, - ACTIONS(9940), 3, + ACTIONS(9841), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1221), 9, + STATE(967), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [211949] = 18, - ACTIONS(3), 1, + [218293] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(4207), 1, + anon_sym_DOLLAR, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(4086), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(9982), 1, - sym_word, - ACTIONS(9986), 1, + ACTIONS(10021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9988), 1, - anon_sym_DOLLAR, - ACTIONS(9992), 1, + ACTIONS(10025), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10004), 1, - sym__comment_word, - ACTIONS(9984), 2, + ACTIONS(10543), 1, + sym__special_character, + ACTIONS(10585), 1, + sym_word, + ACTIONS(10587), 1, + sym_ansi_c_string, + ACTIONS(10589), 1, + sym_test_operator, + STATE(4482), 1, + aux_sym__literal_repeat1, + STATE(4953), 1, + sym_concatenation, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9990), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10002), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9994), 3, - sym__bare_dollar, + STATE(4901), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218368] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5202), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5204), 1, + anon_sym_DOLLAR, + ACTIONS(5208), 1, + anon_sym_DQUOTE, + ACTIONS(5210), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, + aux_sym_number_token1, + ACTIONS(5216), 1, + aux_sym_number_token2, + ACTIONS(5218), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5220), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5222), 1, + anon_sym_BQUOTE, + ACTIONS(5224), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5230), 1, + sym__brace_start, + ACTIONS(10529), 1, + sym__special_character, + ACTIONS(10591), 1, + sym_word, + ACTIONS(10593), 1, sym_ansi_c_string, - STATE(4446), 9, + ACTIONS(10595), 1, + sym_test_operator, + STATE(5472), 1, + aux_sym__literal_repeat1, + STATE(5663), 1, + sym_concatenation, + ACTIONS(5200), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5226), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5431), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212017] = 18, + [218443] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(2904), 1, + anon_sym_DOLLAR, + ACTIONS(2912), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(2914), 1, aux_sym_number_token2, - ACTIONS(4086), 1, + ACTIONS(2918), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, + ACTIONS(2928), 1, sym__brace_start, - ACTIONS(9982), 1, - sym_word, - ACTIONS(9986), 1, + ACTIONS(9439), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(9443), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(9445), 1, + anon_sym_SQUOTE, + ACTIONS(9449), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(9451), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(9453), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10004), 1, + ACTIONS(10597), 1, + sym_word, + ACTIONS(10603), 1, sym__comment_word, - ACTIONS(10006), 1, - anon_sym_DOLLAR, - ACTIONS(9984), 2, + ACTIONS(9437), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9990), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10002), 2, + ACTIONS(9455), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9994), 3, + ACTIONS(10599), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10601), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4446), 9, + STATE(1577), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212085] = 18, - ACTIONS(3), 1, + [218514] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3632), 1, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(3634), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(3638), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(10008), 1, - sym_word, - ACTIONS(10012), 1, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10014), 1, - anon_sym_DOLLAR, - ACTIONS(10018), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(10022), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10030), 1, - sym__comment_word, - ACTIONS(10010), 2, + ACTIONS(10605), 1, + sym_word, + ACTIONS(10607), 1, + sym__special_character, + ACTIONS(10609), 1, + sym_ansi_c_string, + ACTIONS(10611), 1, + sym_test_operator, + STATE(4376), 1, + aux_sym__literal_repeat1, + STATE(4666), 1, + sym_concatenation, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10016), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10028), 2, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10020), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4300), 9, + STATE(4652), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212153] = 18, + [218589] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, + ACTIONS(2094), 1, aux_sym_number_token1, - ACTIONS(3634), 1, + ACTIONS(2096), 1, aux_sym_number_token2, - ACTIONS(3638), 1, + ACTIONS(2100), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, + ACTIONS(2114), 1, sym__brace_start, - ACTIONS(10008), 1, - sym_word, - ACTIONS(10012), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, + ACTIONS(8653), 1, anon_sym_DQUOTE, - ACTIONS(10022), 1, + ACTIONS(8655), 1, + anon_sym_SQUOTE, + ACTIONS(8659), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(8661), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(8663), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10030), 1, + ACTIONS(10291), 1, + sym_word, + ACTIONS(10297), 1, sym__comment_word, - ACTIONS(10032), 1, + ACTIONS(10613), 1, anon_sym_DOLLAR, - ACTIONS(10010), 2, + ACTIONS(8645), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10016), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10028), 2, + ACTIONS(8665), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10020), 3, + ACTIONS(10293), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10295), 2, sym__bare_dollar, + sym_ansi_c_string, + STATE(1715), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218660] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(3715), 1, + aux_sym_number_token1, + ACTIONS(3717), 1, + aux_sym_number_token2, + ACTIONS(3721), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(3731), 1, + sym__brace_start, + ACTIONS(9705), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9709), 1, + anon_sym_DQUOTE, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9717), 1, + anon_sym_BQUOTE, + ACTIONS(9719), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10607), 1, + sym__special_character, + ACTIONS(10615), 1, + sym_word, + ACTIONS(10617), 1, sym_ansi_c_string, - STATE(4300), 9, + ACTIONS(10619), 1, + sym_test_operator, + STATE(4379), 1, + aux_sym__literal_repeat1, + STATE(4689), 1, + sym_concatenation, + ACTIONS(9703), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4654), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212221] = 18, + [218735] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 1, + ACTIONS(1454), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(1456), 1, aux_sym_number_token2, - ACTIONS(3680), 1, + ACTIONS(1460), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3692), 1, + ACTIONS(1472), 1, sym__brace_start, - ACTIONS(8984), 1, + ACTIONS(9161), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8988), 1, + ACTIONS(9165), 1, anon_sym_DQUOTE, - ACTIONS(8992), 1, + ACTIONS(9167), 1, + anon_sym_SQUOTE, + ACTIONS(9171), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8994), 1, + ACTIONS(9173), 1, anon_sym_BQUOTE, - ACTIONS(8996), 1, + ACTIONS(9175), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10034), 1, + ACTIONS(9835), 1, sym_word, - ACTIONS(10036), 1, - anon_sym_DOLLAR, - ACTIONS(10042), 1, + ACTIONS(9843), 1, sym__comment_word, - ACTIONS(8982), 2, + ACTIONS(10621), 1, + anon_sym_DOLLAR, + ACTIONS(9159), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8998), 2, + ACTIONS(9177), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10038), 2, + ACTIONS(9839), 2, sym_test_operator, sym__special_character, - ACTIONS(10040), 3, + ACTIONS(9841), 2, sym__bare_dollar, + sym_ansi_c_string, + STATE(967), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218806] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5202), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5208), 1, + anon_sym_DQUOTE, + ACTIONS(5210), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, + aux_sym_number_token1, + ACTIONS(5216), 1, + aux_sym_number_token2, + ACTIONS(5218), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5220), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5222), 1, + anon_sym_BQUOTE, + ACTIONS(5224), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5230), 1, + sym__brace_start, + ACTIONS(10225), 1, + sym_word, + ACTIONS(10231), 1, + sym__comment_word, + ACTIONS(10623), 1, + anon_sym_DOLLAR, + ACTIONS(5200), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(5226), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10227), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10229), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(4640), 9, + STATE(5558), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212289] = 18, + [218877] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3674), 1, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(3680), 1, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3692), 1, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(8984), 1, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(9643), 1, + sym_word, + ACTIONS(9651), 1, + sym__comment_word, + ACTIONS(10625), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(1157), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(9647), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9649), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(2410), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [218948] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5202), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8988), 1, + ACTIONS(5208), 1, anon_sym_DQUOTE, - ACTIONS(8992), 1, + ACTIONS(5210), 1, + anon_sym_SQUOTE, + ACTIONS(5214), 1, + aux_sym_number_token1, + ACTIONS(5216), 1, + aux_sym_number_token2, + ACTIONS(5218), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8994), 1, + ACTIONS(5220), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5222), 1, anon_sym_BQUOTE, - ACTIONS(8996), 1, + ACTIONS(5224), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10034), 1, + ACTIONS(5230), 1, + sym__brace_start, + ACTIONS(10225), 1, sym_word, - ACTIONS(10042), 1, + ACTIONS(10231), 1, sym__comment_word, - ACTIONS(10044), 1, + ACTIONS(10627), 1, anon_sym_DOLLAR, - ACTIONS(8982), 2, + ACTIONS(5200), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8998), 2, + ACTIONS(5226), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10038), 2, + ACTIONS(10227), 2, sym_test_operator, sym__special_character, - ACTIONS(10040), 3, + ACTIONS(10229), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4640), 9, + STATE(5558), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212357] = 18, + [219019] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 1, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(4008), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4018), 1, + ACTIONS(1514), 1, sym__brace_start, - ACTIONS(8820), 1, + ACTIONS(9357), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, + ACTIONS(9361), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(9363), 1, + anon_sym_SQUOTE, + ACTIONS(9367), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(9369), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(9371), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10046), 1, + ACTIONS(10629), 1, sym_word, - ACTIONS(10048), 1, + ACTIONS(10631), 1, anon_sym_DOLLAR, - ACTIONS(10054), 1, + ACTIONS(10637), 1, sym__comment_word, - ACTIONS(8818), 2, + ACTIONS(9355), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, + ACTIONS(9373), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10050), 2, + ACTIONS(10633), 2, sym_test_operator, sym__special_character, - ACTIONS(10052), 3, + ACTIONS(10635), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1951), 9, + STATE(1103), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212425] = 18, + [219090] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4002), 1, + ACTIONS(2094), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(2096), 1, aux_sym_number_token2, - ACTIONS(4008), 1, + ACTIONS(2100), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4018), 1, + ACTIONS(2114), 1, sym__brace_start, - ACTIONS(8820), 1, + ACTIONS(8649), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, + ACTIONS(8653), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(8655), 1, + anon_sym_SQUOTE, + ACTIONS(8659), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(8661), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(8663), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10046), 1, + ACTIONS(10291), 1, sym_word, - ACTIONS(10054), 1, + ACTIONS(10297), 1, sym__comment_word, - ACTIONS(10056), 1, + ACTIONS(10639), 1, anon_sym_DOLLAR, - ACTIONS(8818), 2, + ACTIONS(8645), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, + ACTIONS(8665), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10050), 2, + ACTIONS(10293), 2, sym_test_operator, sym__special_character, - ACTIONS(10052), 3, + ACTIONS(10295), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1951), 9, + STATE(1715), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212493] = 18, + [219161] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 1, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(3044), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3054), 1, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(8892), 1, + ACTIONS(9253), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8896), 1, + ACTIONS(9257), 1, anon_sym_DQUOTE, - ACTIONS(8900), 1, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(8904), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10058), 1, + ACTIONS(9945), 1, sym_word, - ACTIONS(10060), 1, - anon_sym_DOLLAR, - ACTIONS(10066), 1, + ACTIONS(9953), 1, sym__comment_word, - ACTIONS(8890), 2, + ACTIONS(10641), 1, + anon_sym_DOLLAR, + ACTIONS(9251), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8906), 2, + ACTIONS(9269), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10062), 2, + ACTIONS(9949), 2, sym_test_operator, sym__special_character, - ACTIONS(10064), 3, + ACTIONS(9951), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1751), 9, + STATE(1271), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212561] = 18, + [219232] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3038), 1, + ACTIONS(3499), 1, + anon_sym_DOLLAR, + ACTIONS(3507), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(3509), 1, aux_sym_number_token2, - ACTIONS(3044), 1, + ACTIONS(3513), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3054), 1, + ACTIONS(3523), 1, sym__brace_start, - ACTIONS(8892), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8896), 1, + ACTIONS(9595), 1, anon_sym_DQUOTE, - ACTIONS(8900), 1, + ACTIONS(9597), 1, + anon_sym_SQUOTE, + ACTIONS(9601), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, + ACTIONS(9603), 1, anon_sym_BQUOTE, - ACTIONS(8904), 1, + ACTIONS(9605), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10058), 1, + ACTIONS(10643), 1, sym_word, - ACTIONS(10066), 1, + ACTIONS(10649), 1, sym__comment_word, - ACTIONS(10068), 1, - anon_sym_DOLLAR, - ACTIONS(8890), 2, + ACTIONS(9589), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8906), 2, + ACTIONS(9607), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10062), 2, + ACTIONS(10645), 2, sym_test_operator, sym__special_character, - ACTIONS(10064), 3, + ACTIONS(10647), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1751), 9, + STATE(4581), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212629] = 18, + [219303] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(7972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(1662), 1, + sym__brace_start, + ACTIONS(9253), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9257), 1, + anon_sym_DQUOTE, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(10070), 1, + ACTIONS(9945), 1, sym_word, - ACTIONS(10072), 1, - anon_sym_DOLLAR, - ACTIONS(10078), 1, + ACTIONS(9953), 1, sym__comment_word, - ACTIONS(7954), 2, + ACTIONS(10651), 1, + anon_sym_DOLLAR, + ACTIONS(9251), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(9269), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10074), 2, + ACTIONS(9949), 2, sym_test_operator, sym__special_character, - ACTIONS(10076), 3, + ACTIONS(9951), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4322), 9, + STATE(1271), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212697] = 18, + [219374] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7958), 1, + ACTIONS(8567), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, + ACTIONS(8573), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(8575), 1, + anon_sym_SQUOTE, + ACTIONS(8579), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(8581), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(8583), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(8585), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(8587), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, + ACTIONS(8599), 1, sym__brace_start, - ACTIONS(10070), 1, + ACTIONS(10653), 1, sym_word, - ACTIONS(10078), 1, - sym__comment_word, - ACTIONS(10080), 1, + ACTIONS(10655), 1, anon_sym_DOLLAR, - ACTIONS(7954), 2, + ACTIONS(10661), 1, + sym__comment_word, + ACTIONS(8563), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(8591), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10074), 2, + ACTIONS(10657), 2, sym_test_operator, sym__special_character, - ACTIONS(10076), 3, + ACTIONS(10659), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4322), 9, + STATE(4548), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212765] = 20, - ACTIONS(71), 1, + [219445] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, + ACTIONS(8567), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8340), 1, - anon_sym_DOLLAR, - ACTIONS(8342), 1, - sym__special_character, - ACTIONS(8344), 1, + ACTIONS(8573), 1, anon_sym_DQUOTE, - ACTIONS(8348), 1, + ACTIONS(8575), 1, + anon_sym_SQUOTE, + ACTIONS(8579), 1, aux_sym_number_token1, - ACTIONS(8350), 1, + ACTIONS(8581), 1, aux_sym_number_token2, - ACTIONS(8352), 1, + ACTIONS(8583), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8354), 1, + ACTIONS(8585), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8356), 1, + ACTIONS(8587), 1, anon_sym_BQUOTE, - ACTIONS(8358), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8368), 1, + ACTIONS(8599), 1, sym__brace_start, - ACTIONS(10082), 1, + ACTIONS(10653), 1, sym_word, - ACTIONS(10086), 1, - sym_test_operator, - STATE(3534), 1, - aux_sym__literal_repeat1, - STATE(3583), 1, - sym_concatenation, - ACTIONS(8334), 2, + ACTIONS(10661), 1, + sym__comment_word, + ACTIONS(10663), 1, + anon_sym_DOLLAR, + ACTIONS(8563), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8360), 2, + ACTIONS(8591), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10084), 2, - sym_raw_string, + ACTIONS(10657), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10659), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(3470), 9, + STATE(4548), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212837] = 20, - ACTIONS(71), 1, + [219516] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8340), 1, - anon_sym_DOLLAR, - ACTIONS(8342), 1, - sym__special_character, - ACTIONS(8344), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(8348), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(8350), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(8352), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8354), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8356), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(8358), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8368), 1, + ACTIONS(8243), 1, sym__brace_start, - ACTIONS(10088), 1, + ACTIONS(9797), 1, sym_word, - ACTIONS(10092), 1, - sym_test_operator, - STATE(3532), 1, - aux_sym__literal_repeat1, - STATE(3592), 1, - sym_concatenation, - ACTIONS(8334), 2, + ACTIONS(9805), 1, + sym__comment_word, + ACTIONS(10665), 1, + anon_sym_DOLLAR, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8360), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10090), 2, - sym_raw_string, + ACTIONS(9801), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9803), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(3466), 9, + STATE(1597), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212909] = 18, + [219587] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8344), 1, - anon_sym_DQUOTE, - ACTIONS(8348), 1, + ACTIONS(2416), 1, + anon_sym_DOLLAR, + ACTIONS(2424), 1, aux_sym_number_token1, - ACTIONS(8350), 1, + ACTIONS(2426), 1, aux_sym_number_token2, - ACTIONS(8352), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8354), 1, + ACTIONS(2430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8356), 1, + ACTIONS(2440), 1, + sym__brace_start, + ACTIONS(9459), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9463), 1, + anon_sym_DQUOTE, + ACTIONS(9465), 1, + anon_sym_SQUOTE, + ACTIONS(9469), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9471), 1, anon_sym_BQUOTE, - ACTIONS(8358), 1, + ACTIONS(9473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8368), 1, - sym__brace_start, - ACTIONS(10094), 1, + ACTIONS(10667), 1, sym_word, - ACTIONS(10096), 1, - anon_sym_DOLLAR, - ACTIONS(10102), 1, + ACTIONS(10673), 1, sym__comment_word, - ACTIONS(8334), 2, + ACTIONS(9457), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8360), 2, + ACTIONS(9475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10098), 2, + ACTIONS(10669), 2, sym_test_operator, sym__special_character, - ACTIONS(10100), 3, + ACTIONS(10671), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(3489), 9, + STATE(1429), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [212977] = 18, + [219658] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8344), 1, - anon_sym_DQUOTE, - ACTIONS(8348), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(8350), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(8352), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8354), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8356), 1, + ACTIONS(4231), 1, + sym__brace_start, + ACTIONS(10021), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10025), 1, + anon_sym_DQUOTE, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(8358), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8368), 1, - sym__brace_start, - ACTIONS(10094), 1, + ACTIONS(10145), 1, sym_word, - ACTIONS(10102), 1, + ACTIONS(10153), 1, sym__comment_word, - ACTIONS(10104), 1, + ACTIONS(10675), 1, anon_sym_DOLLAR, - ACTIONS(8334), 2, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8360), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10098), 2, + ACTIONS(10149), 2, sym_test_operator, sym__special_character, - ACTIONS(10100), 3, + ACTIONS(10151), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(3489), 9, + STATE(4478), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213045] = 18, + [219729] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 1, + ACTIONS(4672), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1119), 1, + ACTIONS(4678), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(4680), 1, + anon_sym_SQUOTE, + ACTIONS(4684), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(4686), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(4688), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(4690), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(4692), 1, + anon_sym_BQUOTE, + ACTIONS(4694), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(4700), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(9464), 1, + ACTIONS(10233), 1, sym_word, - ACTIONS(9472), 1, + ACTIONS(10239), 1, sym__comment_word, - ACTIONS(10106), 1, + ACTIONS(10677), 1, anon_sym_DOLLAR, - ACTIONS(1099), 2, + ACTIONS(4670), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(4696), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9468), 2, + ACTIONS(10235), 2, sym_test_operator, sym__special_character, - ACTIONS(9470), 3, + ACTIONS(10237), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2365), 9, + STATE(2568), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213113] = 18, + [219800] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(2912), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(2914), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(2918), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(2928), 1, sym__brace_start, - ACTIONS(3119), 1, + ACTIONS(9439), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9443), 1, + anon_sym_DQUOTE, + ACTIONS(9445), 1, + anon_sym_SQUOTE, + ACTIONS(9449), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9451), 1, anon_sym_BQUOTE, - ACTIONS(9464), 1, + ACTIONS(9453), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10597), 1, sym_word, - ACTIONS(9472), 1, + ACTIONS(10603), 1, sym__comment_word, - ACTIONS(10108), 1, + ACTIONS(10679), 1, anon_sym_DOLLAR, - ACTIONS(1099), 2, + ACTIONS(9437), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(9455), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9468), 2, + ACTIONS(10599), 2, sym_test_operator, sym__special_character, - ACTIONS(9470), 3, + ACTIONS(10601), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2365), 9, + STATE(1577), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213181] = 18, + [219871] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(357), 1, + ACTIONS(4672), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(363), 1, + ACTIONS(4678), 1, anon_sym_DQUOTE, - ACTIONS(367), 1, + ACTIONS(4680), 1, + anon_sym_SQUOTE, + ACTIONS(4684), 1, aux_sym_number_token1, - ACTIONS(369), 1, + ACTIONS(4686), 1, aux_sym_number_token2, - ACTIONS(371), 1, + ACTIONS(4688), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, + ACTIONS(4690), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(4692), 1, anon_sym_BQUOTE, - ACTIONS(377), 1, + ACTIONS(4694), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(387), 1, + ACTIONS(4700), 1, sym__brace_start, - ACTIONS(9948), 1, + ACTIONS(10233), 1, sym_word, - ACTIONS(9956), 1, + ACTIONS(10239), 1, sym__comment_word, - ACTIONS(10110), 1, + ACTIONS(10681), 1, anon_sym_DOLLAR, - ACTIONS(355), 2, + ACTIONS(4670), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(379), 2, + ACTIONS(4696), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9952), 2, + ACTIONS(10235), 2, sym_test_operator, sym__special_character, - ACTIONS(9954), 3, + ACTIONS(10237), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1101), 9, + STATE(2568), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213249] = 18, + [219942] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(357), 1, + ACTIONS(2688), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(363), 1, + ACTIONS(2694), 1, anon_sym_DQUOTE, - ACTIONS(367), 1, + ACTIONS(2696), 1, + anon_sym_SQUOTE, + ACTIONS(2700), 1, aux_sym_number_token1, - ACTIONS(369), 1, + ACTIONS(2702), 1, aux_sym_number_token2, - ACTIONS(371), 1, + ACTIONS(2704), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, + ACTIONS(2706), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(2708), 1, anon_sym_BQUOTE, - ACTIONS(377), 1, + ACTIONS(2710), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(387), 1, + ACTIONS(2718), 1, sym__brace_start, - ACTIONS(9948), 1, + ACTIONS(10683), 1, sym_word, - ACTIONS(9956), 1, - sym__comment_word, - ACTIONS(10112), 1, + ACTIONS(10685), 1, anon_sym_DOLLAR, - ACTIONS(355), 2, + ACTIONS(10691), 1, + sym__comment_word, + ACTIONS(2682), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(379), 2, + ACTIONS(2712), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9952), 2, + ACTIONS(10687), 2, sym_test_operator, sym__special_character, - ACTIONS(9954), 3, + ACTIONS(10689), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1101), 9, + STATE(2350), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213317] = 18, - ACTIONS(3), 1, + [220013] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(258), 1, + ACTIONS(1636), 1, anon_sym_DOLLAR, - ACTIONS(264), 1, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(266), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(270), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(284), 1, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(1155), 1, + ACTIONS(9253), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1161), 1, + ACTIONS(9257), 1, anon_sym_DQUOTE, - ACTIONS(1165), 1, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(9732), 1, + ACTIONS(9267), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9347), 1, + sym__special_character, + ACTIONS(10693), 1, sym_word, - ACTIONS(9740), 1, - sym__comment_word, - ACTIONS(1153), 2, + ACTIONS(10695), 1, + sym_ansi_c_string, + ACTIONS(10697), 1, + sym_test_operator, + STATE(1352), 1, + aux_sym__literal_repeat1, + STATE(1540), 1, + sym_concatenation, + ACTIONS(9251), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1169), 2, + ACTIONS(9269), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9736), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9738), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2735), 9, + STATE(1169), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213385] = 18, + [220088] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8096), 1, - anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(3921), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(3923), 1, aux_sym_number_token2, - ACTIONS(8104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(3927), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(3937), 1, + sym__brace_start, + ACTIONS(9325), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9329), 1, + anon_sym_DQUOTE, + ACTIONS(9331), 1, + anon_sym_SQUOTE, + ACTIONS(9335), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9337), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(9339), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, - sym__brace_start, - ACTIONS(9806), 1, + ACTIONS(10699), 1, sym_word, - ACTIONS(9814), 1, - sym__comment_word, - ACTIONS(10114), 1, + ACTIONS(10701), 1, anon_sym_DOLLAR, - ACTIONS(8086), 2, + ACTIONS(10707), 1, + sym__comment_word, + ACTIONS(9323), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(9341), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9810), 2, + ACTIONS(10703), 2, sym_test_operator, sym__special_character, - ACTIONS(9812), 3, + ACTIONS(10705), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1531), 9, + STATE(2128), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213453] = 18, + [220159] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8096), 1, - anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(8104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(4231), 1, + sym__brace_start, + ACTIONS(10021), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10025), 1, + anon_sym_DQUOTE, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, - sym__brace_start, - ACTIONS(9806), 1, + ACTIONS(10145), 1, sym_word, - ACTIONS(9814), 1, + ACTIONS(10153), 1, sym__comment_word, - ACTIONS(10116), 1, + ACTIONS(10709), 1, anon_sym_DOLLAR, - ACTIONS(8086), 2, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9810), 2, + ACTIONS(10149), 2, sym_test_operator, sym__special_character, - ACTIONS(9812), 3, + ACTIONS(10151), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1531), 9, + STATE(4478), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213521] = 18, + [220230] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2044), 1, + ACTIONS(1682), 1, aux_sym_number_token1, - ACTIONS(2046), 1, + ACTIONS(1684), 1, aux_sym_number_token2, - ACTIONS(2050), 1, + ACTIONS(1688), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, + ACTIONS(1702), 1, sym__brace_start, - ACTIONS(8062), 1, + ACTIONS(8379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8066), 1, + ACTIONS(8383), 1, anon_sym_DQUOTE, - ACTIONS(8070), 1, + ACTIONS(8385), 1, + anon_sym_SQUOTE, + ACTIONS(8389), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8072), 1, + ACTIONS(8391), 1, anon_sym_BQUOTE, - ACTIONS(8074), 1, + ACTIONS(8393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9844), 1, + ACTIONS(10505), 1, sym_word, - ACTIONS(9852), 1, + ACTIONS(10511), 1, sym__comment_word, - ACTIONS(10118), 1, + ACTIONS(10711), 1, anon_sym_DOLLAR, - ACTIONS(8058), 2, + ACTIONS(8375), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8076), 2, + ACTIONS(8395), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9848), 2, + ACTIONS(10507), 2, sym_test_operator, sym__special_character, - ACTIONS(9850), 3, + ACTIONS(10509), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1484), 9, + STATE(1180), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213589] = 18, + [220301] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2044), 1, + ACTIONS(2650), 1, + anon_sym_DOLLAR, + ACTIONS(2658), 1, aux_sym_number_token1, - ACTIONS(2046), 1, + ACTIONS(2660), 1, aux_sym_number_token2, - ACTIONS(2050), 1, + ACTIONS(2664), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, + ACTIONS(2674), 1, sym__brace_start, - ACTIONS(8062), 1, + ACTIONS(9753), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8066), 1, + ACTIONS(9757), 1, anon_sym_DQUOTE, - ACTIONS(8070), 1, + ACTIONS(9759), 1, + anon_sym_SQUOTE, + ACTIONS(9763), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8072), 1, + ACTIONS(9765), 1, anon_sym_BQUOTE, - ACTIONS(8074), 1, + ACTIONS(9767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9844), 1, + ACTIONS(10713), 1, sym_word, - ACTIONS(9852), 1, + ACTIONS(10719), 1, sym__comment_word, - ACTIONS(10120), 1, - anon_sym_DOLLAR, - ACTIONS(8058), 2, + ACTIONS(9751), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8076), 2, + ACTIONS(9769), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9848), 2, + ACTIONS(10715), 2, sym_test_operator, sym__special_character, - ACTIONS(9850), 3, + ACTIONS(10717), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1484), 9, + STATE(4411), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213657] = 18, + [220372] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(3251), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(3255), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3267), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(9858), 1, + ACTIONS(9701), 1, sym_word, - ACTIONS(9862), 1, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9868), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(9872), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9874), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(9876), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9880), 1, + ACTIONS(9723), 1, sym__comment_word, - ACTIONS(10122), 1, + ACTIONS(10721), 1, anon_sym_DOLLAR, - ACTIONS(9860), 2, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9866), 2, + ACTIONS(9707), 2, sym_test_operator, sym__special_character, - ACTIONS(9878), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9870), 3, + ACTIONS(9713), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1880), 9, + ACTIONS(9721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4347), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213725] = 18, + [220443] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3249), 1, + ACTIONS(3248), 1, aux_sym_number_token1, - ACTIONS(3251), 1, + ACTIONS(3250), 1, aux_sym_number_token2, - ACTIONS(3255), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3267), 1, + ACTIONS(3266), 1, sym__brace_start, - ACTIONS(9858), 1, + ACTIONS(9725), 1, sym_word, - ACTIONS(9862), 1, + ACTIONS(9729), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9868), 1, + ACTIONS(9733), 1, anon_sym_DQUOTE, - ACTIONS(9872), 1, + ACTIONS(9735), 1, + anon_sym_SQUOTE, + ACTIONS(9739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9874), 1, + ACTIONS(9741), 1, anon_sym_BQUOTE, - ACTIONS(9876), 1, + ACTIONS(9743), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9880), 1, + ACTIONS(9747), 1, sym__comment_word, - ACTIONS(10124), 1, + ACTIONS(10723), 1, anon_sym_DOLLAR, - ACTIONS(9860), 2, + ACTIONS(9727), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9866), 2, + ACTIONS(9731), 2, sym_test_operator, sym__special_character, - ACTIONS(9878), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9870), 3, + ACTIONS(9737), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1880), 9, + ACTIONS(9745), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1865), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213793] = 18, + [220514] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1500), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(1506), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(9066), 1, + ACTIONS(9701), 1, + sym_word, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9070), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(9074), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9934), 1, - sym_word, - ACTIONS(9942), 1, + ACTIONS(9723), 1, sym__comment_word, - ACTIONS(10126), 1, + ACTIONS(10725), 1, anon_sym_DOLLAR, - ACTIONS(9064), 2, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9938), 2, + ACTIONS(9707), 2, sym_test_operator, sym__special_character, - ACTIONS(9940), 3, + ACTIONS(9713), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1221), 9, + ACTIONS(9721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4347), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213861] = 18, + [220585] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1500), 1, + ACTIONS(1131), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1139), 1, + anon_sym_DQUOTE, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(1506), 1, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(9066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9070), 1, - anon_sym_DQUOTE, - ACTIONS(9074), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(3216), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9934), 1, + ACTIONS(9643), 1, sym_word, - ACTIONS(9942), 1, + ACTIONS(9651), 1, sym__comment_word, - ACTIONS(10128), 1, + ACTIONS(10727), 1, anon_sym_DOLLAR, - ACTIONS(9064), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9938), 2, + ACTIONS(9647), 2, sym_test_operator, sym__special_character, - ACTIONS(9940), 3, + ACTIONS(9649), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1221), 9, + STATE(2410), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213929] = 18, + [220656] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, - aux_sym_number_token1, - ACTIONS(4082), 1, - aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9982), 1, - sym_word, - ACTIONS(9986), 1, + ACTIONS(724), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(726), 1, + anon_sym_DOLLAR, + ACTIONS(730), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(732), 1, + anon_sym_SQUOTE, + ACTIONS(736), 1, + aux_sym_number_token1, + ACTIONS(738), 1, + aux_sym_number_token2, + ACTIONS(740), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(742), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(744), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(746), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10004), 1, + ACTIONS(756), 1, + sym__brace_start, + ACTIONS(10213), 1, + sym_word, + ACTIONS(10221), 1, sym__comment_word, - ACTIONS(10130), 1, - anon_sym_DOLLAR, - ACTIONS(9984), 2, + ACTIONS(722), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9990), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10002), 2, + ACTIONS(748), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9994), 3, + ACTIONS(10217), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10219), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4446), 9, + STATE(979), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [213997] = 18, + [220727] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3103), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(3105), 1, aux_sym_number_token2, - ACTIONS(4086), 1, + ACTIONS(3109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, + ACTIONS(3121), 1, sym__brace_start, - ACTIONS(9982), 1, + ACTIONS(10729), 1, sym_word, - ACTIONS(9986), 1, + ACTIONS(10733), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(10735), 1, + anon_sym_DOLLAR, + ACTIONS(10739), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(10741), 1, + anon_sym_SQUOTE, + ACTIONS(10745), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(10747), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(10749), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10004), 1, + ACTIONS(10753), 1, sym__comment_word, - ACTIONS(10132), 1, - anon_sym_DOLLAR, - ACTIONS(9984), 2, + ACTIONS(10731), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9990), 2, + ACTIONS(10737), 2, sym_test_operator, sym__special_character, - ACTIONS(10002), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9994), 3, + ACTIONS(10743), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4446), 9, + ACTIONS(10751), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1926), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214065] = 18, + [220798] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3638), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10008), 1, - sym_word, - ACTIONS(10012), 1, + ACTIONS(4979), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, + ACTIONS(4985), 1, anon_sym_DQUOTE, - ACTIONS(10022), 1, + ACTIONS(4987), 1, + anon_sym_SQUOTE, + ACTIONS(4991), 1, + aux_sym_number_token1, + ACTIONS(4993), 1, + aux_sym_number_token2, + ACTIONS(4995), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(4997), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4999), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(5001), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10030), 1, + ACTIONS(5007), 1, + sym__brace_start, + ACTIONS(10251), 1, + sym_word, + ACTIONS(10257), 1, sym__comment_word, - ACTIONS(10134), 1, + ACTIONS(10755), 1, anon_sym_DOLLAR, - ACTIONS(10010), 2, + ACTIONS(4977), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10016), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10028), 2, + ACTIONS(5003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10020), 3, + ACTIONS(10253), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10255), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4300), 9, + STATE(5425), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214133] = 18, + [220869] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, + ACTIONS(2912), 1, aux_sym_number_token1, - ACTIONS(3634), 1, + ACTIONS(2914), 1, aux_sym_number_token2, - ACTIONS(3638), 1, + ACTIONS(2918), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, + ACTIONS(2928), 1, sym__brace_start, - ACTIONS(10008), 1, - sym_word, - ACTIONS(10012), 1, + ACTIONS(9439), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, + ACTIONS(9443), 1, anon_sym_DQUOTE, - ACTIONS(10022), 1, + ACTIONS(9445), 1, + anon_sym_SQUOTE, + ACTIONS(9449), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(9451), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(9453), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10030), 1, + ACTIONS(10597), 1, + sym_word, + ACTIONS(10603), 1, sym__comment_word, - ACTIONS(10136), 1, + ACTIONS(10757), 1, anon_sym_DOLLAR, - ACTIONS(10010), 2, + ACTIONS(9437), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10016), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10028), 2, + ACTIONS(9455), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10020), 3, + ACTIONS(10599), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10601), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4300), 9, + STATE(1577), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214201] = 18, + [220940] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7958), 1, + ACTIONS(4979), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, + ACTIONS(4985), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(4987), 1, + anon_sym_SQUOTE, + ACTIONS(4991), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(4993), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(4995), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(4997), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(4999), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(5001), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, + ACTIONS(5007), 1, sym__brace_start, - ACTIONS(10070), 1, + ACTIONS(10251), 1, sym_word, - ACTIONS(10078), 1, + ACTIONS(10257), 1, sym__comment_word, - ACTIONS(10138), 1, + ACTIONS(10759), 1, anon_sym_DOLLAR, - ACTIONS(7954), 2, + ACTIONS(4977), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(5003), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10074), 2, + ACTIONS(10253), 2, sym_test_operator, sym__special_character, - ACTIONS(10076), 3, + ACTIONS(10255), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4322), 9, + STATE(5425), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214269] = 18, + [221011] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(3248), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(3250), 1, aux_sym_number_token2, - ACTIONS(7972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(3254), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, - anon_sym_BQUOTE, - ACTIONS(7978), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, + ACTIONS(3266), 1, sym__brace_start, - ACTIONS(10070), 1, + ACTIONS(9725), 1, sym_word, - ACTIONS(10078), 1, + ACTIONS(9729), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9733), 1, + anon_sym_DQUOTE, + ACTIONS(9735), 1, + anon_sym_SQUOTE, + ACTIONS(9739), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9741), 1, + anon_sym_BQUOTE, + ACTIONS(9743), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(9747), 1, sym__comment_word, - ACTIONS(10140), 1, + ACTIONS(10761), 1, anon_sym_DOLLAR, - ACTIONS(7954), 2, + ACTIONS(9727), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10074), 2, + ACTIONS(9731), 2, sym_test_operator, sym__special_character, - ACTIONS(10076), 3, + ACTIONS(9737), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4322), 9, + ACTIONS(9745), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1865), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214337] = 20, - ACTIONS(71), 1, + [221082] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8956), 1, - anon_sym_DOLLAR, - ACTIONS(8958), 1, - sym__special_character, - ACTIONS(8960), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(8964), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(8966), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(8968), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8970), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8972), 1, - anon_sym_BQUOTE, - ACTIONS(8974), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8980), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(10142), 1, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(9643), 1, sym_word, - ACTIONS(10146), 1, - sym_test_operator, - STATE(2572), 1, - aux_sym__literal_repeat1, - STATE(2723), 1, - sym_concatenation, - ACTIONS(8952), 2, + ACTIONS(9651), 1, + sym__comment_word, + ACTIONS(10763), 1, + anon_sym_DOLLAR, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8976), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10144), 2, - sym_raw_string, + ACTIONS(9647), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9649), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(2321), 9, + STATE(2410), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214409] = 20, - ACTIONS(71), 1, + [221153] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8956), 1, + ACTIONS(8213), 1, anon_sym_DOLLAR, - ACTIONS(8958), 1, - sym__special_character, - ACTIONS(8960), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(8964), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(8966), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(8968), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8970), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8972), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(8974), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8980), 1, + ACTIONS(8243), 1, sym__brace_start, - ACTIONS(10148), 1, + ACTIONS(9797), 1, sym_word, - ACTIONS(10152), 1, - sym_test_operator, - STATE(2524), 1, - aux_sym__literal_repeat1, - STATE(2619), 1, - sym_concatenation, - ACTIONS(8952), 2, + ACTIONS(9805), 1, + sym__comment_word, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8976), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10150), 2, - sym_raw_string, + ACTIONS(9801), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9803), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(2297), 9, + STATE(1597), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214481] = 18, + [221224] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1119), 1, - anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(1127), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(3119), 1, + ACTIONS(10021), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10025), 1, + anon_sym_DQUOTE, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(9464), 1, + ACTIONS(10035), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10145), 1, sym_word, - ACTIONS(9472), 1, + ACTIONS(10153), 1, sym__comment_word, - ACTIONS(10154), 1, + ACTIONS(10765), 1, anon_sym_DOLLAR, - ACTIONS(1099), 2, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9468), 2, + ACTIONS(10149), 2, sym_test_operator, sym__special_character, - ACTIONS(9470), 3, + ACTIONS(10151), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2365), 9, + STATE(4478), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214549] = 18, + [221295] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 1, + ACTIONS(8433), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1119), 1, + ACTIONS(8435), 1, + anon_sym_DOLLAR, + ACTIONS(8439), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(8441), 1, + anon_sym_SQUOTE, + ACTIONS(8445), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(8447), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(8449), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(8451), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, + ACTIONS(8453), 1, + anon_sym_BQUOTE, + ACTIONS(8455), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, + ACTIONS(8465), 1, sym__brace_start, - ACTIONS(3119), 1, - anon_sym_BQUOTE, - ACTIONS(9464), 1, + ACTIONS(10047), 1, sym_word, - ACTIONS(9472), 1, + ACTIONS(10055), 1, sym__comment_word, - ACTIONS(10156), 1, - anon_sym_DOLLAR, - ACTIONS(1099), 2, + ACTIONS(8429), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, + ACTIONS(8457), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9468), 2, + ACTIONS(10051), 2, sym_test_operator, sym__special_character, - ACTIONS(9470), 3, + ACTIONS(10053), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2365), 9, + STATE(4418), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214617] = 18, + [221366] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8090), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, - anon_sym_DOLLAR, - ACTIONS(8096), 1, - anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(8104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(4231), 1, + sym__brace_start, + ACTIONS(10021), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10025), 1, + anon_sym_DQUOTE, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, - sym__brace_start, - ACTIONS(9806), 1, + ACTIONS(10145), 1, sym_word, - ACTIONS(9814), 1, + ACTIONS(10153), 1, sym__comment_word, - ACTIONS(8086), 2, + ACTIONS(10767), 1, + anon_sym_DOLLAR, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9810), 2, + ACTIONS(10149), 2, sym_test_operator, sym__special_character, - ACTIONS(9812), 3, + ACTIONS(10151), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1531), 9, + STATE(4478), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214685] = 18, + [221437] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(4086), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(9982), 1, + ACTIONS(9701), 1, sym_word, - ACTIONS(9986), 1, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10004), 1, + ACTIONS(9723), 1, sym__comment_word, - ACTIONS(10158), 1, + ACTIONS(10769), 1, anon_sym_DOLLAR, - ACTIONS(9984), 2, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9990), 2, + ACTIONS(9707), 2, sym_test_operator, sym__special_character, - ACTIONS(10002), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9994), 3, + ACTIONS(9713), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4446), 9, + ACTIONS(9721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4347), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214753] = 18, + [221508] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(4086), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(9982), 1, + ACTIONS(9701), 1, sym_word, - ACTIONS(9986), 1, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10004), 1, + ACTIONS(9723), 1, sym__comment_word, - ACTIONS(10160), 1, + ACTIONS(10771), 1, anon_sym_DOLLAR, - ACTIONS(9984), 2, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9990), 2, + ACTIONS(9707), 2, sym_test_operator, sym__special_character, - ACTIONS(10002), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9994), 3, + ACTIONS(9713), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4446), 9, + ACTIONS(9721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4347), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214821] = 18, + [221579] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3638), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10008), 1, - sym_word, - ACTIONS(10012), 1, + ACTIONS(8473), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, + ACTIONS(8475), 1, + anon_sym_DOLLAR, + ACTIONS(8479), 1, anon_sym_DQUOTE, - ACTIONS(10022), 1, + ACTIONS(8481), 1, + anon_sym_SQUOTE, + ACTIONS(8485), 1, + aux_sym_number_token1, + ACTIONS(8487), 1, + aux_sym_number_token2, + ACTIONS(8489), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(8491), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8493), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(8495), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10030), 1, + ACTIONS(8505), 1, + sym__brace_start, + ACTIONS(10773), 1, + sym_word, + ACTIONS(10779), 1, sym__comment_word, - ACTIONS(10162), 1, - anon_sym_DOLLAR, - ACTIONS(10010), 2, + ACTIONS(8469), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10016), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10028), 2, + ACTIONS(8497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10020), 3, + ACTIONS(10775), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10777), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4300), 9, + STATE(1360), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214889] = 18, + [221650] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3638), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10008), 1, - sym_word, - ACTIONS(10012), 1, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(10022), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, + aux_sym_number_token1, + ACTIONS(8265), 1, + aux_sym_number_token2, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(8269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10030), 1, + ACTIONS(8283), 1, + sym__brace_start, + ACTIONS(10261), 1, + sym_word, + ACTIONS(10269), 1, sym__comment_word, - ACTIONS(10164), 1, + ACTIONS(10781), 1, anon_sym_DOLLAR, - ACTIONS(10010), 2, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10016), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10028), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10020), 3, + ACTIONS(10265), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10267), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4300), 9, + STATE(4306), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [214957] = 18, + [221721] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7958), 1, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(8265), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(8269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, + ACTIONS(8283), 1, sym__brace_start, - ACTIONS(10070), 1, + ACTIONS(10261), 1, sym_word, - ACTIONS(10078), 1, + ACTIONS(10269), 1, sym__comment_word, - ACTIONS(10166), 1, + ACTIONS(10783), 1, anon_sym_DOLLAR, - ACTIONS(7954), 2, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10074), 2, + ACTIONS(10265), 2, sym_test_operator, sym__special_character, - ACTIONS(10076), 3, + ACTIONS(10267), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4322), 9, + STATE(4306), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215025] = 18, + [221792] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7958), 1, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(8265), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(8269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, + ACTIONS(8283), 1, sym__brace_start, - ACTIONS(10070), 1, + ACTIONS(10261), 1, sym_word, - ACTIONS(10078), 1, + ACTIONS(10269), 1, sym__comment_word, - ACTIONS(10168), 1, + ACTIONS(10785), 1, anon_sym_DOLLAR, - ACTIONS(7954), 2, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10074), 2, + ACTIONS(10265), 2, sym_test_operator, sym__special_character, - ACTIONS(10076), 3, + ACTIONS(10267), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4322), 9, + STATE(4306), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215093] = 18, + [221863] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 1, + ACTIONS(47), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8960), 1, + ACTIONS(53), 1, anon_sym_DQUOTE, - ACTIONS(8964), 1, + ACTIONS(55), 1, + anon_sym_SQUOTE, + ACTIONS(59), 1, aux_sym_number_token1, - ACTIONS(8966), 1, + ACTIONS(61), 1, aux_sym_number_token2, - ACTIONS(8968), 1, + ACTIONS(63), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8970), 1, + ACTIONS(65), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8972), 1, + ACTIONS(67), 1, anon_sym_BQUOTE, - ACTIONS(8974), 1, + ACTIONS(69), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8980), 1, + ACTIONS(81), 1, sym__brace_start, - ACTIONS(10170), 1, + ACTIONS(10439), 1, sym_word, - ACTIONS(10172), 1, - anon_sym_DOLLAR, - ACTIONS(10178), 1, + ACTIONS(10447), 1, sym__comment_word, - ACTIONS(8952), 2, + ACTIONS(10787), 1, + anon_sym_DOLLAR, + ACTIONS(45), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8976), 2, + ACTIONS(71), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10174), 2, + ACTIONS(10443), 2, sym_test_operator, sym__special_character, - ACTIONS(10176), 3, + ACTIONS(10445), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2442), 9, + STATE(1157), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215161] = 20, - ACTIONS(71), 1, + [221934] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(4074), 1, - anon_sym_DOLLAR, - ACTIONS(4080), 1, + ACTIONS(2424), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(2426), 1, aux_sym_number_token2, - ACTIONS(4086), 1, + ACTIONS(2430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, + ACTIONS(2440), 1, sym__brace_start, - ACTIONS(9986), 1, + ACTIONS(9459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(9463), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(9465), 1, + anon_sym_SQUOTE, + ACTIONS(9469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(9471), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(9473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10180), 1, + ACTIONS(10667), 1, sym_word, - ACTIONS(10182), 1, - sym__special_character, - ACTIONS(10186), 1, - sym_test_operator, - STATE(4505), 1, - aux_sym__literal_repeat1, - STATE(4997), 1, - sym_concatenation, - ACTIONS(9984), 2, + ACTIONS(10673), 1, + sym__comment_word, + ACTIONS(10789), 1, + anon_sym_DOLLAR, + ACTIONS(9457), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10002), 2, + ACTIONS(9475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10184), 2, - sym_raw_string, + ACTIONS(10669), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10671), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(4674), 9, + STATE(1429), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215233] = 20, - ACTIONS(71), 1, + [222005] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(4074), 1, - anon_sym_DOLLAR, - ACTIONS(4080), 1, - aux_sym_number_token1, - ACTIONS(4082), 1, - aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9986), 1, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, + aux_sym_number_token1, + ACTIONS(8265), 1, + aux_sym_number_token2, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(8269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10182), 1, - sym__special_character, - ACTIONS(10188), 1, + ACTIONS(8283), 1, + sym__brace_start, + ACTIONS(10261), 1, sym_word, - ACTIONS(10192), 1, - sym_test_operator, - STATE(4527), 1, - aux_sym__literal_repeat1, - STATE(4876), 1, - sym_concatenation, - ACTIONS(9984), 2, + ACTIONS(10269), 1, + sym__comment_word, + ACTIONS(10791), 1, + anon_sym_DOLLAR, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10002), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10190), 2, - sym_raw_string, + ACTIONS(10265), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10267), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(4607), 9, + STATE(4306), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215305] = 18, - ACTIONS(3), 1, + [222076] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8954), 1, + ACTIONS(10169), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8960), 1, + ACTIONS(10175), 1, anon_sym_DQUOTE, - ACTIONS(8964), 1, + ACTIONS(10177), 1, + anon_sym_SQUOTE, + ACTIONS(10181), 1, aux_sym_number_token1, - ACTIONS(8966), 1, + ACTIONS(10183), 1, aux_sym_number_token2, - ACTIONS(8968), 1, + ACTIONS(10185), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8970), 1, + ACTIONS(10187), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8972), 1, + ACTIONS(10189), 1, anon_sym_BQUOTE, - ACTIONS(8974), 1, + ACTIONS(10191), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8980), 1, + ACTIONS(10197), 1, sym__brace_start, - ACTIONS(10170), 1, - sym_word, - ACTIONS(10178), 1, - sym__comment_word, - ACTIONS(10194), 1, + ACTIONS(10465), 1, anon_sym_DOLLAR, - ACTIONS(8952), 2, + ACTIONS(10793), 1, + sym_word, + ACTIONS(10795), 1, + sym__special_character, + ACTIONS(10797), 1, + sym_ansi_c_string, + ACTIONS(10799), 1, + sym_test_operator, + STATE(6301), 1, + aux_sym__literal_repeat1, + STATE(6507), 1, + sym_concatenation, + ACTIONS(10167), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8976), 2, + ACTIONS(10193), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10174), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10176), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2442), 9, + STATE(6266), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215373] = 18, + [222151] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2038), 1, + ACTIONS(2688), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2690), 1, anon_sym_DOLLAR, - ACTIONS(2044), 1, + ACTIONS(2694), 1, + anon_sym_DQUOTE, + ACTIONS(2696), 1, + anon_sym_SQUOTE, + ACTIONS(2700), 1, aux_sym_number_token1, - ACTIONS(2046), 1, + ACTIONS(2702), 1, aux_sym_number_token2, - ACTIONS(2050), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2064), 1, - sym__brace_start, - ACTIONS(8062), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8066), 1, - anon_sym_DQUOTE, - ACTIONS(8070), 1, + ACTIONS(2704), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8072), 1, + ACTIONS(2706), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2708), 1, anon_sym_BQUOTE, - ACTIONS(8074), 1, + ACTIONS(2710), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9844), 1, + ACTIONS(2718), 1, + sym__brace_start, + ACTIONS(10683), 1, sym_word, - ACTIONS(9852), 1, + ACTIONS(10691), 1, sym__comment_word, - ACTIONS(8058), 2, + ACTIONS(2682), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8076), 2, + ACTIONS(2712), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9848), 2, + ACTIONS(10687), 2, sym_test_operator, sym__special_character, - ACTIONS(9850), 3, + ACTIONS(10689), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1484), 9, + STATE(2350), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215441] = 18, + [222222] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, - aux_sym_number_token1, - ACTIONS(4082), 1, - aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9982), 1, - sym_word, - ACTIONS(9986), 1, + ACTIONS(8609), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(8615), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(8617), 1, + anon_sym_SQUOTE, + ACTIONS(8621), 1, + aux_sym_number_token1, + ACTIONS(8623), 1, + aux_sym_number_token2, + ACTIONS(8625), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(8627), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8629), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(8631), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10004), 1, + ACTIONS(8641), 1, + sym__brace_start, + ACTIONS(10131), 1, + sym_word, + ACTIONS(10137), 1, sym__comment_word, - ACTIONS(10196), 1, + ACTIONS(10801), 1, anon_sym_DOLLAR, - ACTIONS(9984), 2, + ACTIONS(8605), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9990), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10002), 2, + ACTIONS(8633), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9994), 3, + ACTIONS(10133), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10135), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4446), 9, + STATE(1594), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215509] = 18, + [222293] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, - aux_sym_number_token1, - ACTIONS(4082), 1, - aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9982), 1, - sym_word, - ACTIONS(9986), 1, + ACTIONS(4273), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(4279), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(4281), 1, + anon_sym_SQUOTE, + ACTIONS(4285), 1, + aux_sym_number_token1, + ACTIONS(4287), 1, + aux_sym_number_token2, + ACTIONS(4289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(4291), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4293), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(4295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10004), 1, + ACTIONS(4305), 1, + sym__brace_start, + ACTIONS(10241), 1, + sym_word, + ACTIONS(10247), 1, sym__comment_word, - ACTIONS(10198), 1, + ACTIONS(10803), 1, anon_sym_DOLLAR, - ACTIONS(9984), 2, + ACTIONS(4271), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9990), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10002), 2, + ACTIONS(4297), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9994), 3, + ACTIONS(10243), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10245), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4446), 9, + STATE(2496), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215577] = 18, + [222364] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, + ACTIONS(1860), 1, aux_sym_number_token1, - ACTIONS(3634), 1, + ACTIONS(1862), 1, aux_sym_number_token2, - ACTIONS(3638), 1, + ACTIONS(1866), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, + ACTIONS(1880), 1, sym__brace_start, - ACTIONS(10008), 1, - sym_word, - ACTIONS(10012), 1, + ACTIONS(8537), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, + ACTIONS(8541), 1, anon_sym_DQUOTE, - ACTIONS(10022), 1, + ACTIONS(8543), 1, + anon_sym_SQUOTE, + ACTIONS(8547), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(8549), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(8551), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10030), 1, + ACTIONS(10351), 1, + sym_word, + ACTIONS(10359), 1, sym__comment_word, - ACTIONS(10200), 1, + ACTIONS(10805), 1, anon_sym_DOLLAR, - ACTIONS(10010), 2, + ACTIONS(8533), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10016), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10028), 2, + ACTIONS(8553), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10020), 3, + ACTIONS(10355), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10357), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4300), 9, + STATE(1380), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215645] = 18, + [222435] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(10809), 1, + anon_sym_DQUOTE, + ACTIONS(10813), 1, + sym_variable_name, + STATE(5516), 1, + sym_string, + ACTIONS(10811), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10807), 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(1267), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [222484] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3632), 1, + ACTIONS(1852), 1, + anon_sym_DOLLAR, + ACTIONS(1860), 1, aux_sym_number_token1, - ACTIONS(3634), 1, + ACTIONS(1862), 1, aux_sym_number_token2, - ACTIONS(3638), 1, + ACTIONS(1866), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, + ACTIONS(1880), 1, sym__brace_start, - ACTIONS(10008), 1, - sym_word, - ACTIONS(10012), 1, + ACTIONS(8537), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, + ACTIONS(8541), 1, anon_sym_DQUOTE, - ACTIONS(10022), 1, + ACTIONS(8543), 1, + anon_sym_SQUOTE, + ACTIONS(8547), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(8549), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(8551), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10030), 1, + ACTIONS(10351), 1, + sym_word, + ACTIONS(10359), 1, sym__comment_word, - ACTIONS(10202), 1, - anon_sym_DOLLAR, - ACTIONS(10010), 2, + ACTIONS(8533), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10016), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10028), 2, + ACTIONS(8553), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10020), 3, + ACTIONS(10355), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10357), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4300), 9, + STATE(1380), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215713] = 18, + [222555] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7958), 1, + ACTIONS(367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, + ACTIONS(369), 1, + anon_sym_DOLLAR, + ACTIONS(373), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(379), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(381), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(383), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(387), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(389), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, + ACTIONS(399), 1, sym__brace_start, - ACTIONS(10070), 1, + ACTIONS(9689), 1, sym_word, - ACTIONS(10078), 1, + ACTIONS(9697), 1, sym__comment_word, - ACTIONS(10204), 1, - anon_sym_DOLLAR, - ACTIONS(7954), 2, + ACTIONS(365), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(391), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10074), 2, + ACTIONS(9693), 2, sym_test_operator, sym__special_character, - ACTIONS(10076), 3, + ACTIONS(9695), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4322), 9, + STATE(1068), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215781] = 18, + [222626] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(7972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(3777), 1, + sym__brace_start, + ACTIONS(9305), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9309), 1, + anon_sym_DQUOTE, + ACTIONS(9311), 1, + anon_sym_SQUOTE, + ACTIONS(9315), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9317), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(10070), 1, + ACTIONS(9865), 1, sym_word, - ACTIONS(10078), 1, + ACTIONS(9871), 1, sym__comment_word, - ACTIONS(10206), 1, + ACTIONS(10815), 1, anon_sym_DOLLAR, - ACTIONS(7954), 2, + ACTIONS(9303), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(9321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10074), 2, + ACTIONS(9867), 2, sym_test_operator, sym__special_character, - ACTIONS(10076), 3, + ACTIONS(9869), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4322), 9, + STATE(4680), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215849] = 20, - ACTIONS(71), 1, + [222697] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1530), 1, - anon_sym_DOLLAR, - ACTIONS(1536), 1, - aux_sym_number_token1, - ACTIONS(1538), 1, - aux_sym_number_token2, - ACTIONS(1542), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1554), 1, - sym__brace_start, - ACTIONS(8868), 1, + ACTIONS(8299), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8870), 1, - sym__special_character, - ACTIONS(8872), 1, + ACTIONS(8305), 1, anon_sym_DQUOTE, - ACTIONS(8876), 1, + ACTIONS(8307), 1, + anon_sym_SQUOTE, + ACTIONS(8311), 1, + aux_sym_number_token1, + ACTIONS(8313), 1, + aux_sym_number_token2, + ACTIONS(8315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8878), 1, + ACTIONS(8317), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8319), 1, anon_sym_BQUOTE, - ACTIONS(8880), 1, + ACTIONS(8321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10208), 1, + ACTIONS(8331), 1, + sym__brace_start, + ACTIONS(10315), 1, sym_word, - ACTIONS(10212), 1, - sym_test_operator, - STATE(1392), 1, - aux_sym__literal_repeat1, - STATE(1493), 1, - sym_concatenation, - ACTIONS(8866), 2, + ACTIONS(10321), 1, + sym__comment_word, + ACTIONS(10817), 1, + anon_sym_DOLLAR, + ACTIONS(8295), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8882), 2, + ACTIONS(8323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10210), 2, - sym_raw_string, + ACTIONS(10317), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10319), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(1011), 9, + STATE(5520), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215921] = 20, - ACTIONS(71), 1, + [222768] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1530), 1, - anon_sym_DOLLAR, - ACTIONS(1536), 1, + ACTIONS(3759), 1, aux_sym_number_token1, - ACTIONS(1538), 1, + ACTIONS(3761), 1, aux_sym_number_token2, - ACTIONS(1542), 1, + ACTIONS(3765), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1554), 1, + ACTIONS(3777), 1, sym__brace_start, - ACTIONS(8868), 1, + ACTIONS(9305), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8870), 1, - sym__special_character, - ACTIONS(8872), 1, + ACTIONS(9309), 1, anon_sym_DQUOTE, - ACTIONS(8876), 1, + ACTIONS(9311), 1, + anon_sym_SQUOTE, + ACTIONS(9315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8878), 1, + ACTIONS(9317), 1, anon_sym_BQUOTE, - ACTIONS(8880), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10214), 1, + ACTIONS(9865), 1, sym_word, - ACTIONS(10218), 1, - sym_test_operator, - STATE(1413), 1, - aux_sym__literal_repeat1, - STATE(1481), 1, - sym_concatenation, - ACTIONS(8866), 2, + ACTIONS(9871), 1, + sym__comment_word, + ACTIONS(10819), 1, + anon_sym_DOLLAR, + ACTIONS(9303), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8882), 2, + ACTIONS(9321), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10216), 2, - sym_raw_string, + ACTIONS(9867), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9869), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(1029), 9, + STATE(4680), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [215993] = 21, - ACTIONS(71), 1, + [222839] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(9818), 1, - anon_sym_LPAREN, - ACTIONS(9820), 1, - anon_sym_BANG, - ACTIONS(9826), 1, - anon_sym_TILDE, - ACTIONS(9828), 1, - anon_sym_DOLLAR, - ACTIONS(9830), 1, + ACTIONS(8299), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8305), 1, anon_sym_DQUOTE, - ACTIONS(9832), 1, + ACTIONS(8307), 1, + anon_sym_SQUOTE, + ACTIONS(8311), 1, aux_sym_number_token1, - ACTIONS(9834), 1, + ACTIONS(8313), 1, aux_sym_number_token2, - ACTIONS(9836), 1, + ACTIONS(8315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, + ACTIONS(8317), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, + ACTIONS(8319), 1, anon_sym_BQUOTE, - ACTIONS(9842), 1, + ACTIONS(8321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10220), 1, - aux_sym__simple_variable_name_token1, - STATE(3375), 1, - sym__arithmetic_binary_expression, - STATE(3378), 1, - sym__arithmetic_ternary_expression, - STATE(3407), 1, - sym__arithmetic_unary_expression, - STATE(3409), 1, - sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, - anon_sym_PLUS_PLUS2, - anon_sym_DASH_DASH2, - ACTIONS(9824), 2, - anon_sym_DASH2, - anon_sym_PLUS2, - STATE(3362), 9, - sym_subscript, - sym__arithmetic_expression, - sym__arithmetic_literal, - sym__arithmetic_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [216067] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3243), 1, - anon_sym_DOLLAR, - ACTIONS(3249), 1, - aux_sym_number_token1, - ACTIONS(3251), 1, - aux_sym_number_token2, - ACTIONS(3255), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3267), 1, + ACTIONS(8331), 1, sym__brace_start, - ACTIONS(9858), 1, + ACTIONS(10315), 1, sym_word, - ACTIONS(9862), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9868), 1, - anon_sym_DQUOTE, - ACTIONS(9872), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9874), 1, - anon_sym_BQUOTE, - ACTIONS(9876), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9880), 1, + ACTIONS(10321), 1, sym__comment_word, - ACTIONS(9860), 2, + ACTIONS(10821), 1, + anon_sym_DOLLAR, + ACTIONS(8295), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9866), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9878), 2, + ACTIONS(8323), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9870), 3, + ACTIONS(10317), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10319), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1880), 9, + STATE(5520), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [216135] = 20, - ACTIONS(71), 1, + [222910] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, - anon_sym_DOLLAR, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3638), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10012), 1, + ACTIONS(8339), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, + ACTIONS(8345), 1, anon_sym_DQUOTE, - ACTIONS(10022), 1, + ACTIONS(8347), 1, + anon_sym_SQUOTE, + ACTIONS(8351), 1, + aux_sym_number_token1, + ACTIONS(8353), 1, + aux_sym_number_token2, + ACTIONS(8355), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(8357), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8359), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(8361), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10222), 1, + ACTIONS(8371), 1, + sym__brace_start, + ACTIONS(9773), 1, sym_word, - ACTIONS(10224), 1, - sym__special_character, - ACTIONS(10228), 1, - sym_test_operator, - STATE(4364), 1, - aux_sym__literal_repeat1, - STATE(4771), 1, - sym_concatenation, - ACTIONS(10010), 2, + ACTIONS(9781), 1, + sym__comment_word, + ACTIONS(10823), 1, + anon_sym_DOLLAR, + ACTIONS(8335), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10028), 2, + ACTIONS(8363), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10226), 2, - sym_raw_string, + ACTIONS(9777), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9779), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(4562), 9, + STATE(1177), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [216207] = 20, - ACTIONS(71), 1, + [222981] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(3632), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(3634), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(3638), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(10012), 1, + ACTIONS(10021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, + ACTIONS(10025), 1, anon_sym_DQUOTE, - ACTIONS(10022), 1, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10224), 1, - sym__special_character, - ACTIONS(10230), 1, + ACTIONS(10825), 1, sym_word, - ACTIONS(10234), 1, + ACTIONS(10827), 1, + sym__special_character, + ACTIONS(10829), 1, + sym_ansi_c_string, + ACTIONS(10831), 1, sym_test_operator, - STATE(4340), 1, + STATE(4469), 1, aux_sym__literal_repeat1, - STATE(4679), 1, + STATE(5082), 1, sym_concatenation, - ACTIONS(10010), 2, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10028), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10232), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4490), 9, + STATE(4671), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [216279] = 18, + [223056] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(117), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, + ACTIONS(2734), 1, + anon_sym_DOLLAR, + ACTIONS(2742), 1, aux_sym_number_token1, - ACTIONS(123), 1, + ACTIONS(2744), 1, aux_sym_number_token2, - ACTIONS(125), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(127), 1, + ACTIONS(2748), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(129), 1, - anon_sym_BQUOTE, - ACTIONS(131), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(141), 1, + ACTIONS(2760), 1, sym__brace_start, - ACTIONS(10236), 1, + ACTIONS(9561), 1, sym_word, - ACTIONS(10238), 1, - anon_sym_DOLLAR, - ACTIONS(10244), 1, - sym__comment_word, - ACTIONS(109), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(133), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10240), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10242), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(475), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [216347] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, + ACTIONS(9565), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(117), 1, + ACTIONS(9571), 1, anon_sym_DQUOTE, - ACTIONS(121), 1, - aux_sym_number_token1, - ACTIONS(123), 1, - aux_sym_number_token2, - ACTIONS(125), 1, + ACTIONS(9573), 1, + anon_sym_SQUOTE, + ACTIONS(9577), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(127), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(129), 1, + ACTIONS(9579), 1, anon_sym_BQUOTE, - ACTIONS(131), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(141), 1, - sym__brace_start, - ACTIONS(10236), 1, - sym_word, - ACTIONS(10244), 1, + ACTIONS(9585), 1, sym__comment_word, - ACTIONS(10246), 1, - anon_sym_DOLLAR, - ACTIONS(109), 2, + ACTIONS(9563), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(133), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10240), 2, + ACTIONS(9569), 2, sym_test_operator, sym__special_character, - ACTIONS(10242), 3, + ACTIONS(9575), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(475), 9, + ACTIONS(9583), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1572), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [216415] = 18, - ACTIONS(3), 1, + [223127] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1494), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(1500), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(1506), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(9066), 1, + ACTIONS(10021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9070), 1, + ACTIONS(10025), 1, anon_sym_DQUOTE, - ACTIONS(9074), 1, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9934), 1, + ACTIONS(10833), 1, sym_word, - ACTIONS(9942), 1, - sym__comment_word, - ACTIONS(9064), 2, + ACTIONS(10835), 1, + sym__special_character, + ACTIONS(10837), 1, + sym_ansi_c_string, + ACTIONS(10839), 1, + sym_test_operator, + STATE(4469), 1, + aux_sym__literal_repeat1, + STATE(5082), 1, + sym_concatenation, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9938), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9940), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1221), 9, + STATE(5446), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [216483] = 20, - ACTIONS(71), 1, + [223202] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1494), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(1500), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(1506), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(9066), 1, + ACTIONS(10021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9068), 1, - sym__special_character, - ACTIONS(9070), 1, + ACTIONS(10025), 1, anon_sym_DQUOTE, - ACTIONS(9074), 1, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10248), 1, + ACTIONS(10835), 1, + sym__special_character, + ACTIONS(10841), 1, sym_word, - ACTIONS(10252), 1, + ACTIONS(10843), 1, + sym_ansi_c_string, + ACTIONS(10845), 1, sym_test_operator, - STATE(1453), 1, + STATE(4482), 1, aux_sym__literal_repeat1, - STATE(1660), 1, + STATE(4953), 1, sym_concatenation, - ACTIONS(9064), 2, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10250), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1038), 9, + STATE(5450), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [216555] = 20, - ACTIONS(71), 1, + [223277] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1494), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(1500), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(1506), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(9066), 1, + ACTIONS(10021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9068), 1, - sym__special_character, - ACTIONS(9070), 1, + ACTIONS(10025), 1, anon_sym_DQUOTE, - ACTIONS(9074), 1, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10254), 1, + ACTIONS(10827), 1, + sym__special_character, + ACTIONS(10847), 1, sym_word, - ACTIONS(10258), 1, + ACTIONS(10849), 1, + sym_ansi_c_string, + ACTIONS(10851), 1, sym_test_operator, - STATE(1455), 1, + STATE(4482), 1, aux_sym__literal_repeat1, - STATE(1671), 1, + STATE(4953), 1, sym_concatenation, - ACTIONS(9064), 2, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10256), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1040), 9, + STATE(4705), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [216627] = 18, + [223352] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, + ACTIONS(367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8340), 1, - anon_sym_DOLLAR, - ACTIONS(8344), 1, + ACTIONS(373), 1, anon_sym_DQUOTE, - ACTIONS(8348), 1, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(379), 1, aux_sym_number_token1, - ACTIONS(8350), 1, + ACTIONS(381), 1, aux_sym_number_token2, - ACTIONS(8352), 1, + ACTIONS(383), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8354), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8356), 1, + ACTIONS(387), 1, anon_sym_BQUOTE, - ACTIONS(8358), 1, + ACTIONS(389), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8368), 1, + ACTIONS(399), 1, sym__brace_start, - ACTIONS(10094), 1, + ACTIONS(9689), 1, sym_word, - ACTIONS(10102), 1, + ACTIONS(9697), 1, sym__comment_word, - ACTIONS(8334), 2, + ACTIONS(10853), 1, + anon_sym_DOLLAR, + ACTIONS(365), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8360), 2, + ACTIONS(391), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10098), 2, + ACTIONS(9693), 2, sym_test_operator, sym__special_character, - ACTIONS(10100), 3, + ACTIONS(9695), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(3489), 9, + STATE(1068), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [216695] = 20, - ACTIONS(71), 1, + [223423] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(5117), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5119), 1, + ACTIONS(1488), 1, anon_sym_DOLLAR, - ACTIONS(5123), 1, - anon_sym_DQUOTE, - ACTIONS(5127), 1, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(5129), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(5131), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5133), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5135), 1, + ACTIONS(1514), 1, + sym__brace_start, + ACTIONS(9357), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9361), 1, + anon_sym_DQUOTE, + ACTIONS(9363), 1, + anon_sym_SQUOTE, + ACTIONS(9367), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9369), 1, anon_sym_BQUOTE, - ACTIONS(5137), 1, + ACTIONS(9371), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5143), 1, - sym__brace_start, - ACTIONS(10260), 1, + ACTIONS(10629), 1, sym_word, - ACTIONS(10262), 1, - sym__special_character, - ACTIONS(10266), 1, - sym_test_operator, - STATE(5496), 1, - aux_sym__literal_repeat1, - STATE(5610), 1, - sym_concatenation, - ACTIONS(5115), 2, + ACTIONS(10637), 1, + sym__comment_word, + ACTIONS(9355), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5139), 2, + ACTIONS(9373), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10264), 2, - sym_raw_string, + ACTIONS(10633), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10635), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(5335), 9, + STATE(1103), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [216767] = 20, - ACTIONS(71), 1, + [223494] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(5117), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5119), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(5123), 1, - anon_sym_DQUOTE, - ACTIONS(5127), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(5129), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(5131), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5133), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5135), 1, + ACTIONS(3731), 1, + sym__brace_start, + ACTIONS(9705), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9709), 1, + anon_sym_DQUOTE, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(5137), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5143), 1, - sym__brace_start, - ACTIONS(10262), 1, - sym__special_character, - ACTIONS(10268), 1, + ACTIONS(10855), 1, sym_word, - ACTIONS(10272), 1, + ACTIONS(10857), 1, + sym__special_character, + ACTIONS(10859), 1, + sym_ansi_c_string, + ACTIONS(10861), 1, sym_test_operator, - STATE(5407), 1, + STATE(4376), 1, aux_sym__literal_repeat1, - STATE(5607), 1, + STATE(4666), 1, sym_concatenation, - ACTIONS(5115), 2, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5139), 2, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10270), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5258), 9, + STATE(5302), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [216839] = 18, - ACTIONS(3), 1, + [223569] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8954), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8956), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(8960), 1, - anon_sym_DQUOTE, - ACTIONS(8964), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(8966), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(8968), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8970), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8972), 1, + ACTIONS(3731), 1, + sym__brace_start, + ACTIONS(9705), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9709), 1, + anon_sym_DQUOTE, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(8974), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8980), 1, - sym__brace_start, - ACTIONS(10170), 1, + ACTIONS(10857), 1, + sym__special_character, + ACTIONS(10863), 1, sym_word, - ACTIONS(10178), 1, - sym__comment_word, - ACTIONS(8952), 2, + ACTIONS(10865), 1, + sym_ansi_c_string, + ACTIONS(10867), 1, + sym_test_operator, + STATE(4379), 1, + aux_sym__literal_repeat1, + STATE(4689), 1, + sym_concatenation, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8976), 2, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10174), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10176), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2442), 9, + STATE(5304), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [216907] = 20, - ACTIONS(71), 1, + [223644] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2655), 1, - anon_sym_DOLLAR, - ACTIONS(2657), 1, - sym__special_character, - ACTIONS(2659), 1, - anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(3103), 1, aux_sym_number_token1, - ACTIONS(2665), 1, + ACTIONS(3105), 1, aux_sym_number_token2, - ACTIONS(2667), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2669), 1, + ACTIONS(3109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2671), 1, - anon_sym_BQUOTE, - ACTIONS(2673), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(2681), 1, + ACTIONS(3121), 1, sym__brace_start, - ACTIONS(10274), 1, + ACTIONS(10729), 1, sym_word, - ACTIONS(10278), 1, - sym_test_operator, - STATE(2435), 1, - aux_sym__literal_repeat1, - STATE(2457), 1, - sym_concatenation, - ACTIONS(2647), 2, + ACTIONS(10733), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10739), 1, + anon_sym_DQUOTE, + ACTIONS(10741), 1, + anon_sym_SQUOTE, + ACTIONS(10745), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10747), 1, + anon_sym_BQUOTE, + ACTIONS(10749), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10753), 1, + sym__comment_word, + ACTIONS(10869), 1, + anon_sym_DOLLAR, + ACTIONS(10731), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2675), 2, + ACTIONS(10737), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10743), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(10751), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10276), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2008), 9, + STATE(1926), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [216979] = 20, - ACTIONS(71), 1, + [223715] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(2655), 1, + ACTIONS(3535), 1, anon_sym_DOLLAR, - ACTIONS(2657), 1, - sym__special_character, - ACTIONS(2659), 1, - anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(3543), 1, aux_sym_number_token1, - ACTIONS(2665), 1, + ACTIONS(3545), 1, aux_sym_number_token2, - ACTIONS(2667), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(2669), 1, + ACTIONS(3549), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2671), 1, + ACTIONS(3559), 1, + sym__brace_start, + ACTIONS(9503), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9507), 1, + anon_sym_DQUOTE, + ACTIONS(9509), 1, + anon_sym_SQUOTE, + ACTIONS(9513), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9515), 1, anon_sym_BQUOTE, - ACTIONS(2673), 1, + ACTIONS(9517), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2681), 1, - sym__brace_start, - ACTIONS(10280), 1, + ACTIONS(9611), 1, sym_word, - ACTIONS(10284), 1, - sym_test_operator, - STATE(2383), 1, - aux_sym__literal_repeat1, - STATE(2464), 1, - sym_concatenation, - ACTIONS(2647), 2, + ACTIONS(9619), 1, + sym__comment_word, + ACTIONS(9501), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2675), 2, + ACTIONS(9519), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10282), 2, - sym_raw_string, + ACTIONS(9615), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9617), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(2014), 9, + STATE(1834), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217051] = 18, + [223786] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(113), 1, - anon_sym_DOLLAR, - ACTIONS(117), 1, - anon_sym_DQUOTE, - ACTIONS(121), 1, + ACTIONS(3921), 1, aux_sym_number_token1, - ACTIONS(123), 1, + ACTIONS(3923), 1, aux_sym_number_token2, - ACTIONS(125), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(127), 1, + ACTIONS(3927), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(129), 1, + ACTIONS(3937), 1, + sym__brace_start, + ACTIONS(9325), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9329), 1, + anon_sym_DQUOTE, + ACTIONS(9331), 1, + anon_sym_SQUOTE, + ACTIONS(9335), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9337), 1, anon_sym_BQUOTE, - ACTIONS(131), 1, + ACTIONS(9339), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(141), 1, - sym__brace_start, - ACTIONS(10236), 1, + ACTIONS(10699), 1, sym_word, - ACTIONS(10244), 1, + ACTIONS(10707), 1, sym__comment_word, - ACTIONS(109), 2, + ACTIONS(10871), 1, + anon_sym_DOLLAR, + ACTIONS(9323), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(133), 2, + ACTIONS(9341), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10240), 2, + ACTIONS(10703), 2, sym_test_operator, sym__special_character, - ACTIONS(10242), 3, + ACTIONS(10705), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(475), 9, + STATE(2128), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217119] = 20, - ACTIONS(71), 1, + [223857] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(4807), 1, + ACTIONS(367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4809), 1, - anon_sym_DOLLAR, - ACTIONS(4813), 1, + ACTIONS(373), 1, anon_sym_DQUOTE, - ACTIONS(4817), 1, + ACTIONS(375), 1, + anon_sym_SQUOTE, + ACTIONS(379), 1, aux_sym_number_token1, - ACTIONS(4819), 1, + ACTIONS(381), 1, aux_sym_number_token2, - ACTIONS(4821), 1, + ACTIONS(383), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4823), 1, + ACTIONS(385), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4825), 1, + ACTIONS(387), 1, anon_sym_BQUOTE, - ACTIONS(4827), 1, + ACTIONS(389), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4833), 1, + ACTIONS(399), 1, sym__brace_start, - ACTIONS(10286), 1, + ACTIONS(9689), 1, sym_word, - ACTIONS(10288), 1, - sym__special_character, - ACTIONS(10292), 1, - sym_test_operator, - STATE(5340), 1, - aux_sym__literal_repeat1, - STATE(5506), 1, - sym_concatenation, - ACTIONS(4805), 2, + ACTIONS(9697), 1, + sym__comment_word, + ACTIONS(10873), 1, + anon_sym_DOLLAR, + ACTIONS(365), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4829), 2, + ACTIONS(391), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10290), 2, - sym_raw_string, + ACTIONS(9693), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9695), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(5165), 9, + STATE(1068), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217191] = 20, - ACTIONS(71), 1, + [223928] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(4807), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4809), 1, - anon_sym_DOLLAR, - ACTIONS(4813), 1, - anon_sym_DQUOTE, - ACTIONS(4817), 1, + ACTIONS(2658), 1, aux_sym_number_token1, - ACTIONS(4819), 1, + ACTIONS(2660), 1, aux_sym_number_token2, - ACTIONS(4821), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4823), 1, + ACTIONS(2664), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4825), 1, + ACTIONS(2674), 1, + sym__brace_start, + ACTIONS(9753), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9757), 1, + anon_sym_DQUOTE, + ACTIONS(9759), 1, + anon_sym_SQUOTE, + ACTIONS(9763), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9765), 1, anon_sym_BQUOTE, - ACTIONS(4827), 1, + ACTIONS(9767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4833), 1, - sym__brace_start, - ACTIONS(10288), 1, - sym__special_character, - ACTIONS(10294), 1, - sym_word, - ACTIONS(10298), 1, - sym_test_operator, - STATE(5359), 1, - aux_sym__literal_repeat1, - STATE(5520), 1, - sym_concatenation, - ACTIONS(4805), 2, + ACTIONS(10713), 1, + sym_word, + ACTIONS(10719), 1, + sym__comment_word, + ACTIONS(10875), 1, + anon_sym_DOLLAR, + ACTIONS(9751), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4829), 2, + ACTIONS(9769), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10296), 2, - sym_raw_string, + ACTIONS(10715), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10717), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(5146), 9, + STATE(4411), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217263] = 18, + [223999] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4213), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4219), 1, - anon_sym_DQUOTE, - ACTIONS(4223), 1, + ACTIONS(4040), 1, + anon_sym_DOLLAR, + ACTIONS(4048), 1, aux_sym_number_token1, - ACTIONS(4225), 1, + ACTIONS(4050), 1, aux_sym_number_token2, - ACTIONS(4227), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4229), 1, + ACTIONS(4054), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4231), 1, + ACTIONS(4064), 1, + sym__brace_start, + ACTIONS(9877), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9881), 1, + anon_sym_DQUOTE, + ACTIONS(9883), 1, + anon_sym_SQUOTE, + ACTIONS(9887), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9889), 1, anon_sym_BQUOTE, - ACTIONS(4233), 1, + ACTIONS(9891), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4243), 1, - sym__brace_start, - ACTIONS(10300), 1, + ACTIONS(10087), 1, sym_word, - ACTIONS(10302), 1, - anon_sym_DOLLAR, - ACTIONS(10308), 1, + ACTIONS(10095), 1, sym__comment_word, - ACTIONS(4211), 2, + ACTIONS(9875), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4235), 2, + ACTIONS(9893), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10304), 2, + ACTIONS(10091), 2, sym_test_operator, sym__special_character, - ACTIONS(10306), 3, + ACTIONS(10093), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2542), 9, + STATE(4848), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217331] = 18, + [224070] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4213), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4215), 1, - anon_sym_DOLLAR, - ACTIONS(4219), 1, - anon_sym_DQUOTE, - ACTIONS(4223), 1, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(4225), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(4227), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4229), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4231), 1, + ACTIONS(3847), 1, + sym__brace_start, + ACTIONS(9069), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9073), 1, + anon_sym_DQUOTE, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9079), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(4233), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4243), 1, - sym__brace_start, - ACTIONS(10300), 1, + ACTIONS(9915), 1, sym_word, - ACTIONS(10308), 1, + ACTIONS(9921), 1, sym__comment_word, - ACTIONS(4211), 2, + ACTIONS(10877), 1, + anon_sym_DOLLAR, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4235), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10304), 2, + ACTIONS(9917), 2, sym_test_operator, sym__special_character, - ACTIONS(10306), 3, + ACTIONS(9919), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2542), 9, + STATE(2221), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217399] = 18, + [224141] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4213), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4219), 1, - anon_sym_DQUOTE, - ACTIONS(4223), 1, + ACTIONS(3831), 1, aux_sym_number_token1, - ACTIONS(4225), 1, + ACTIONS(3833), 1, aux_sym_number_token2, - ACTIONS(4227), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4229), 1, + ACTIONS(3837), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4231), 1, + ACTIONS(3847), 1, + sym__brace_start, + ACTIONS(9069), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9073), 1, + anon_sym_DQUOTE, + ACTIONS(9075), 1, + anon_sym_SQUOTE, + ACTIONS(9079), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(4233), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4243), 1, - sym__brace_start, - ACTIONS(10300), 1, + ACTIONS(9915), 1, sym_word, - ACTIONS(10308), 1, + ACTIONS(9921), 1, sym__comment_word, - ACTIONS(10310), 1, + ACTIONS(10879), 1, anon_sym_DOLLAR, - ACTIONS(4211), 2, + ACTIONS(9067), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4235), 2, + ACTIONS(9085), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10304), 2, + ACTIONS(9917), 2, sym_test_operator, sym__special_character, - ACTIONS(10306), 3, + ACTIONS(9919), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2542), 9, + STATE(2221), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217467] = 20, - ACTIONS(71), 1, + [224212] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8376), 1, + ACTIONS(5581), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, + ACTIONS(5583), 1, anon_sym_DOLLAR, - ACTIONS(8380), 1, + ACTIONS(5585), 1, sym__special_character, - ACTIONS(8382), 1, + ACTIONS(5587), 1, anon_sym_DQUOTE, - ACTIONS(8386), 1, + ACTIONS(5589), 1, + anon_sym_SQUOTE, + ACTIONS(5593), 1, aux_sym_number_token1, - ACTIONS(8388), 1, + ACTIONS(5595), 1, aux_sym_number_token2, - ACTIONS(8390), 1, + ACTIONS(5597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8392), 1, + ACTIONS(5599), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(5603), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8406), 1, + ACTIONS(5609), 1, sym__brace_start, - ACTIONS(10312), 1, + ACTIONS(10881), 1, sym_word, - ACTIONS(10316), 1, + ACTIONS(10883), 1, + sym_ansi_c_string, + ACTIONS(10885), 1, sym_test_operator, - STATE(2611), 1, + STATE(5563), 1, aux_sym__literal_repeat1, - STATE(2893), 1, + STATE(5722), 1, sym_concatenation, - ACTIONS(8372), 2, + ACTIONS(5579), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8398), 2, + ACTIONS(5605), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10314), 2, + STATE(5530), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [224287] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2870), 1, + anon_sym_DOLLAR, + ACTIONS(2878), 1, + aux_sym_number_token1, + ACTIONS(2880), 1, + aux_sym_number_token2, + ACTIONS(2884), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2894), 1, + sym__brace_start, + ACTIONS(9523), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9527), 1, + anon_sym_DQUOTE, + ACTIONS(9529), 1, + anon_sym_SQUOTE, + ACTIONS(9533), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9535), 1, + anon_sym_BQUOTE, + ACTIONS(9537), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(10401), 1, + sym_word, + ACTIONS(10409), 1, + sym__comment_word, + ACTIONS(9521), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9539), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(10405), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10407), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(2396), 9, + STATE(1687), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217539] = 20, - ACTIONS(71), 1, + [224358] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8376), 1, + ACTIONS(8698), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, - anon_sym_DOLLAR, - ACTIONS(8380), 1, - sym__special_character, - ACTIONS(8382), 1, + ACTIONS(8704), 1, anon_sym_DQUOTE, - ACTIONS(8386), 1, + ACTIONS(8706), 1, + anon_sym_SQUOTE, + ACTIONS(8710), 1, aux_sym_number_token1, - ACTIONS(8388), 1, + ACTIONS(8712), 1, aux_sym_number_token2, - ACTIONS(8390), 1, + ACTIONS(8714), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8392), 1, + ACTIONS(8716), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8718), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8720), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8406), 1, + ACTIONS(8730), 1, sym__brace_start, - ACTIONS(10318), 1, + ACTIONS(10299), 1, sym_word, - ACTIONS(10322), 1, - sym_test_operator, - STATE(2622), 1, - aux_sym__literal_repeat1, - STATE(2914), 1, - sym_concatenation, - ACTIONS(8372), 2, + ACTIONS(10307), 1, + sym__comment_word, + ACTIONS(10887), 1, + anon_sym_DOLLAR, + ACTIONS(8694), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8398), 2, + ACTIONS(8722), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10320), 2, - sym_raw_string, + ACTIONS(10303), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10305), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(2419), 9, + STATE(3568), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217611] = 18, + [224429] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4667), 1, + ACTIONS(4739), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4669), 1, - anon_sym_DOLLAR, - ACTIONS(4673), 1, + ACTIONS(4745), 1, anon_sym_DQUOTE, - ACTIONS(4677), 1, + ACTIONS(4747), 1, + anon_sym_SQUOTE, + ACTIONS(4751), 1, aux_sym_number_token1, - ACTIONS(4679), 1, + ACTIONS(4753), 1, aux_sym_number_token2, - ACTIONS(4681), 1, + ACTIONS(4755), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4683), 1, + ACTIONS(4757), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4685), 1, + ACTIONS(4759), 1, anon_sym_BQUOTE, - ACTIONS(4687), 1, + ACTIONS(4761), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4695), 1, + ACTIONS(4769), 1, sym__brace_start, - ACTIONS(10324), 1, + ACTIONS(10457), 1, sym_word, - ACTIONS(10330), 1, + ACTIONS(10463), 1, sym__comment_word, - ACTIONS(4665), 2, + ACTIONS(10889), 1, + anon_sym_DOLLAR, + ACTIONS(4737), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4689), 2, + ACTIONS(4763), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10326), 2, + ACTIONS(10459), 2, sym_test_operator, sym__special_character, - ACTIONS(10328), 3, + ACTIONS(10461), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2696), 9, + STATE(2768), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217679] = 20, - ACTIONS(71), 1, + [224500] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, + ACTIONS(3617), 1, anon_sym_DOLLAR, - ACTIONS(5779), 1, + ACTIONS(3625), 1, aux_sym_number_token1, - ACTIONS(5781), 1, + ACTIONS(3627), 1, aux_sym_number_token2, - ACTIONS(5785), 1, + ACTIONS(3631), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5795), 1, + ACTIONS(3641), 1, sym__brace_start, - ACTIONS(10332), 1, - sym_word, - ACTIONS(10336), 1, + ACTIONS(9975), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10338), 1, - sym__special_character, - ACTIONS(10340), 1, + ACTIONS(9979), 1, anon_sym_DQUOTE, - ACTIONS(10344), 1, + ACTIONS(9981), 1, + anon_sym_SQUOTE, + ACTIONS(9985), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10346), 1, + ACTIONS(9987), 1, anon_sym_BQUOTE, - ACTIONS(10348), 1, + ACTIONS(9989), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10352), 1, - sym_test_operator, - STATE(5670), 1, - aux_sym__literal_repeat1, - STATE(5704), 1, - sym_concatenation, - ACTIONS(10334), 2, + ACTIONS(10517), 1, + sym_word, + ACTIONS(10525), 1, + sym__comment_word, + ACTIONS(9973), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10342), 2, - sym_raw_string, - sym_ansi_c_string, - ACTIONS(10350), 2, + ACTIONS(9991), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - STATE(5552), 9, + ACTIONS(10521), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10523), 2, + sym__bare_dollar, + sym_ansi_c_string, + STATE(4640), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217751] = 18, + [224571] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(357), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(359), 1, - anon_sym_DOLLAR, - ACTIONS(363), 1, - anon_sym_DQUOTE, - ACTIONS(367), 1, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(369), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(371), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(3443), 1, + sym__brace_start, + ACTIONS(9089), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9093), 1, + anon_sym_DQUOTE, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9099), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9101), 1, anon_sym_BQUOTE, - ACTIONS(377), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(387), 1, - sym__brace_start, - ACTIONS(9948), 1, + ACTIONS(9957), 1, sym_word, - ACTIONS(9956), 1, + ACTIONS(9963), 1, sym__comment_word, - ACTIONS(355), 2, + ACTIONS(10891), 1, + anon_sym_DOLLAR, + ACTIONS(9087), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(379), 2, + ACTIONS(9105), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9952), 2, + ACTIONS(9959), 2, sym_test_operator, sym__special_character, - ACTIONS(9954), 3, + ACTIONS(9961), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1101), 9, + STATE(2073), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217819] = 20, - ACTIONS(71), 1, + [224642] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, - anon_sym_DOLLAR, - ACTIONS(5779), 1, + ACTIONS(3427), 1, aux_sym_number_token1, - ACTIONS(5781), 1, + ACTIONS(3429), 1, aux_sym_number_token2, - ACTIONS(5785), 1, + ACTIONS(3433), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5795), 1, + ACTIONS(3443), 1, sym__brace_start, - ACTIONS(10336), 1, + ACTIONS(9089), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10338), 1, - sym__special_character, - ACTIONS(10340), 1, + ACTIONS(9093), 1, anon_sym_DQUOTE, - ACTIONS(10344), 1, + ACTIONS(9095), 1, + anon_sym_SQUOTE, + ACTIONS(9099), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10346), 1, + ACTIONS(9101), 1, anon_sym_BQUOTE, - ACTIONS(10348), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10354), 1, + ACTIONS(9957), 1, sym_word, - ACTIONS(10358), 1, - sym_test_operator, - STATE(5653), 1, - aux_sym__literal_repeat1, - STATE(5713), 1, - sym_concatenation, - ACTIONS(10334), 2, + ACTIONS(9963), 1, + sym__comment_word, + ACTIONS(10893), 1, + anon_sym_DOLLAR, + ACTIONS(9087), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10350), 2, + ACTIONS(9105), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10356), 2, - sym_raw_string, + ACTIONS(9959), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9961), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(5591), 9, + STATE(2073), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217891] = 18, + [224713] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(9111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2655), 1, + ACTIONS(9113), 1, anon_sym_DOLLAR, - ACTIONS(2659), 1, + ACTIONS(9117), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(9119), 1, + anon_sym_SQUOTE, + ACTIONS(9123), 1, aux_sym_number_token1, - ACTIONS(2665), 1, + ACTIONS(9125), 1, aux_sym_number_token2, - ACTIONS(2667), 1, + ACTIONS(9127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2669), 1, + ACTIONS(9129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2671), 1, + ACTIONS(9131), 1, anon_sym_BQUOTE, - ACTIONS(2673), 1, + ACTIONS(9133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2681), 1, + ACTIONS(9139), 1, sym__brace_start, - ACTIONS(10360), 1, + ACTIONS(9819), 1, sym_word, - ACTIONS(10366), 1, + ACTIONS(9827), 1, sym__comment_word, - ACTIONS(2647), 2, + ACTIONS(9109), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2675), 2, + ACTIONS(9135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10362), 2, + ACTIONS(9823), 2, sym_test_operator, sym__special_character, - ACTIONS(10364), 3, + ACTIONS(9825), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2310), 9, + STATE(2400), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [217959] = 20, - ACTIONS(71), 1, + [224784] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(5432), 1, + ACTIONS(8567), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5434), 1, + ACTIONS(8569), 1, anon_sym_DOLLAR, - ACTIONS(5436), 1, - sym__special_character, - ACTIONS(5438), 1, + ACTIONS(8573), 1, anon_sym_DQUOTE, - ACTIONS(5442), 1, + ACTIONS(8575), 1, + anon_sym_SQUOTE, + ACTIONS(8579), 1, aux_sym_number_token1, - ACTIONS(5444), 1, + ACTIONS(8581), 1, aux_sym_number_token2, - ACTIONS(5446), 1, + ACTIONS(8583), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5448), 1, + ACTIONS(8585), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5450), 1, + ACTIONS(8587), 1, anon_sym_BQUOTE, - ACTIONS(5452), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5458), 1, + ACTIONS(8599), 1, sym__brace_start, - ACTIONS(10368), 1, + ACTIONS(10653), 1, sym_word, - ACTIONS(10372), 1, - sym_test_operator, - STATE(5533), 1, - aux_sym__literal_repeat1, - STATE(5649), 1, - sym_concatenation, - ACTIONS(5430), 2, + ACTIONS(10661), 1, + sym__comment_word, + ACTIONS(8563), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5454), 2, + ACTIONS(8591), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10370), 2, - sym_raw_string, + ACTIONS(10657), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10659), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(5423), 9, + STATE(4548), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218031] = 20, - ACTIONS(71), 1, + [224855] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(5432), 1, + ACTIONS(5581), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5434), 1, + ACTIONS(5583), 1, anon_sym_DOLLAR, - ACTIONS(5436), 1, + ACTIONS(5585), 1, sym__special_character, - ACTIONS(5438), 1, + ACTIONS(5587), 1, anon_sym_DQUOTE, - ACTIONS(5442), 1, + ACTIONS(5589), 1, + anon_sym_SQUOTE, + ACTIONS(5593), 1, aux_sym_number_token1, - ACTIONS(5444), 1, + ACTIONS(5595), 1, aux_sym_number_token2, - ACTIONS(5446), 1, + ACTIONS(5597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5448), 1, + ACTIONS(5599), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5450), 1, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(5452), 1, + ACTIONS(5603), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5458), 1, + ACTIONS(5609), 1, sym__brace_start, - ACTIONS(10374), 1, + ACTIONS(10895), 1, sym_word, - ACTIONS(10378), 1, + ACTIONS(10897), 1, + sym_ansi_c_string, + ACTIONS(10899), 1, sym_test_operator, - STATE(5542), 1, + STATE(5571), 1, aux_sym__literal_repeat1, - STATE(5680), 1, + STATE(5685), 1, sym_concatenation, - ACTIONS(5430), 2, + ACTIONS(5579), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5454), 2, + ACTIONS(5605), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10376), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5425), 9, + STATE(5537), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218103] = 18, + [224930] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1043), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1045), 1, - anon_sym_DOLLAR, - ACTIONS(1049), 1, - anon_sym_DQUOTE, - ACTIONS(1053), 1, + ACTIONS(5721), 1, aux_sym_number_token1, - ACTIONS(1055), 1, + ACTIONS(5723), 1, aux_sym_number_token2, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, + ACTIONS(5727), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1061), 1, + ACTIONS(5737), 1, + sym__brace_start, + ACTIONS(9285), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9289), 1, + anon_sym_DQUOTE, + ACTIONS(9291), 1, + anon_sym_SQUOTE, + ACTIONS(9295), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9297), 1, anon_sym_BQUOTE, - ACTIONS(1063), 1, + ACTIONS(9299), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1071), 1, - sym__brace_start, - ACTIONS(10380), 1, + ACTIONS(10335), 1, sym_word, - ACTIONS(10386), 1, + ACTIONS(10341), 1, sym__comment_word, - ACTIONS(1041), 2, + ACTIONS(10901), 1, + anon_sym_DOLLAR, + ACTIONS(9283), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1065), 2, + ACTIONS(9301), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10382), 2, + ACTIONS(10337), 2, sym_test_operator, sym__special_character, - ACTIONS(10384), 3, + ACTIONS(10339), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2257), 9, + STATE(3414), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218171] = 20, - ACTIONS(71), 1, + [225001] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(5281), 1, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5283), 1, - anon_sym_DOLLAR, - ACTIONS(5285), 1, - sym__special_character, - ACTIONS(5287), 1, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(8265), 1, aux_sym_number_token2, - ACTIONS(5295), 1, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(8269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5307), 1, + ACTIONS(8283), 1, sym__brace_start, - ACTIONS(10388), 1, + ACTIONS(10261), 1, sym_word, - ACTIONS(10392), 1, - sym_test_operator, - STATE(5459), 1, - aux_sym__literal_repeat1, - STATE(5559), 1, - sym_concatenation, - ACTIONS(5279), 2, + ACTIONS(10269), 1, + sym__comment_word, + ACTIONS(10903), 1, + anon_sym_DOLLAR, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10390), 2, - sym_raw_string, + ACTIONS(10265), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10267), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(5358), 9, + STATE(4306), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218243] = 20, - ACTIONS(71), 1, + [225072] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(5281), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5283), 1, - anon_sym_DOLLAR, - ACTIONS(5285), 1, - sym__special_character, - ACTIONS(5287), 1, - anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(5721), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(5723), 1, aux_sym_number_token2, - ACTIONS(5295), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(5727), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, + ACTIONS(5737), 1, + sym__brace_start, + ACTIONS(9285), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9289), 1, + anon_sym_DQUOTE, + ACTIONS(9291), 1, + anon_sym_SQUOTE, + ACTIONS(9295), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9297), 1, anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(9299), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5307), 1, - sym__brace_start, - ACTIONS(10394), 1, + ACTIONS(10335), 1, sym_word, - ACTIONS(10398), 1, - sym_test_operator, - STATE(5481), 1, - aux_sym__literal_repeat1, - STATE(5590), 1, - sym_concatenation, - ACTIONS(5279), 2, + ACTIONS(10341), 1, + sym__comment_word, + ACTIONS(10905), 1, + anon_sym_DOLLAR, + ACTIONS(9283), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(9301), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10396), 2, - sym_raw_string, + ACTIONS(10337), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10339), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(5376), 9, + STATE(3414), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218315] = 18, + [225143] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3738), 1, - anon_sym_DOLLAR, - ACTIONS(3742), 1, - aux_sym_number_token1, - ACTIONS(3744), 1, - aux_sym_number_token2, - ACTIONS(3748), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3758), 1, - sym__brace_start, - ACTIONS(8838), 1, + ACTIONS(8473), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8842), 1, + ACTIONS(8479), 1, anon_sym_DQUOTE, - ACTIONS(8846), 1, + ACTIONS(8481), 1, + anon_sym_SQUOTE, + ACTIONS(8485), 1, + aux_sym_number_token1, + ACTIONS(8487), 1, + aux_sym_number_token2, + ACTIONS(8489), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8848), 1, + ACTIONS(8491), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8493), 1, anon_sym_BQUOTE, - ACTIONS(8850), 1, + ACTIONS(8495), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10400), 1, + ACTIONS(8505), 1, + sym__brace_start, + ACTIONS(10773), 1, sym_word, - ACTIONS(10406), 1, + ACTIONS(10779), 1, sym__comment_word, - ACTIONS(8836), 2, + ACTIONS(10907), 1, + anon_sym_DOLLAR, + ACTIONS(8469), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8852), 2, + ACTIONS(8497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10402), 2, + ACTIONS(10775), 2, sym_test_operator, sym__special_character, - ACTIONS(10404), 3, + ACTIONS(10777), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1974), 9, + STATE(1360), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218383] = 20, - ACTIONS(71), 1, + [225214] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8292), 1, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8294), 1, - anon_sym_DOLLAR, - ACTIONS(8296), 1, - sym__special_character, - ACTIONS(8298), 1, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(8302), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, aux_sym_number_token1, - ACTIONS(8304), 1, + ACTIONS(8265), 1, aux_sym_number_token2, - ACTIONS(8306), 1, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8308), 1, + ACTIONS(8269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8310), 1, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(8312), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(8283), 1, sym__brace_start, - ACTIONS(10408), 1, + ACTIONS(10261), 1, sym_word, - ACTIONS(10412), 1, - sym_test_operator, - STATE(1369), 1, - aux_sym__literal_repeat1, - STATE(1624), 1, - sym_concatenation, - ACTIONS(8288), 2, + ACTIONS(10269), 1, + sym__comment_word, + ACTIONS(10909), 1, + anon_sym_DOLLAR, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8314), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10410), 2, - sym_raw_string, + ACTIONS(10265), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10267), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(1078), 9, + STATE(4306), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218455] = 20, - ACTIONS(71), 1, + [225285] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8292), 1, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8294), 1, + ACTIONS(8213), 1, anon_sym_DOLLAR, - ACTIONS(8296), 1, + ACTIONS(8215), 1, sym__special_character, - ACTIONS(8298), 1, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(8302), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(8304), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(8306), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8308), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8310), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(8312), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(8243), 1, sym__brace_start, - ACTIONS(10414), 1, + ACTIONS(10911), 1, sym_word, - ACTIONS(10418), 1, + ACTIONS(10913), 1, + sym_ansi_c_string, + ACTIONS(10915), 1, sym_test_operator, - STATE(1373), 1, + STATE(1964), 1, aux_sym__literal_repeat1, - STATE(1674), 1, + STATE(2148), 1, sym_concatenation, - ACTIONS(8288), 2, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8314), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10416), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1080), 9, + STATE(1750), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218527] = 18, + [225360] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4074), 1, - anon_sym_DOLLAR, - ACTIONS(4080), 1, - aux_sym_number_token1, - ACTIONS(4082), 1, - aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9982), 1, - sym_word, - ACTIONS(9986), 1, + ACTIONS(1065), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(1071), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(1073), 1, + anon_sym_SQUOTE, + ACTIONS(1077), 1, + aux_sym_number_token1, + ACTIONS(1079), 1, + aux_sym_number_token2, + ACTIONS(1081), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(1083), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1085), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10004), 1, + ACTIONS(1095), 1, + sym__brace_start, + ACTIONS(10917), 1, + sym_word, + ACTIONS(10919), 1, + anon_sym_DOLLAR, + ACTIONS(10925), 1, sym__comment_word, - ACTIONS(9984), 2, + ACTIONS(1063), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9990), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10002), 2, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9994), 3, + ACTIONS(10921), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10923), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4446), 9, + STATE(2114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218595] = 20, - ACTIONS(71), 1, + [225431] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3131), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(3507), 1, aux_sym_number_token1, - ACTIONS(3139), 1, + ACTIONS(3509), 1, aux_sym_number_token2, - ACTIONS(3143), 1, + ACTIONS(3513), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3153), 1, + ACTIONS(3523), 1, sym__brace_start, - ACTIONS(9512), 1, + ACTIONS(9591), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9518), 1, + ACTIONS(9595), 1, anon_sym_DQUOTE, - ACTIONS(9522), 1, + ACTIONS(9597), 1, + anon_sym_SQUOTE, + ACTIONS(9601), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9524), 1, + ACTIONS(9603), 1, anon_sym_BQUOTE, - ACTIONS(9526), 1, + ACTIONS(9605), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10420), 1, + ACTIONS(10643), 1, sym_word, - ACTIONS(10422), 1, - sym__special_character, - ACTIONS(10426), 1, - sym_test_operator, - STATE(4531), 1, - aux_sym__literal_repeat1, - STATE(4879), 1, - sym_concatenation, - ACTIONS(9510), 2, + ACTIONS(10649), 1, + sym__comment_word, + ACTIONS(10927), 1, + anon_sym_DOLLAR, + ACTIONS(9589), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9528), 2, + ACTIONS(9607), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10424), 2, - sym_raw_string, + ACTIONS(10645), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10647), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(4336), 9, + STATE(4581), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218667] = 18, + [225502] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4667), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4673), 1, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(10809), 1, anon_sym_DQUOTE, - ACTIONS(4677), 1, + ACTIONS(10813), 1, + sym_variable_name, + STATE(5516), 1, + sym_string, + ACTIONS(10811), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10807), 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(1255), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [225551] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1496), 1, aux_sym_number_token1, - ACTIONS(4679), 1, + ACTIONS(1498), 1, aux_sym_number_token2, - ACTIONS(4681), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4683), 1, + ACTIONS(1502), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4685), 1, + ACTIONS(1514), 1, + sym__brace_start, + ACTIONS(9357), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9361), 1, + anon_sym_DQUOTE, + ACTIONS(9363), 1, + anon_sym_SQUOTE, + ACTIONS(9367), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9369), 1, anon_sym_BQUOTE, - ACTIONS(4687), 1, + ACTIONS(9371), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4695), 1, - sym__brace_start, - ACTIONS(10324), 1, + ACTIONS(10629), 1, sym_word, - ACTIONS(10330), 1, + ACTIONS(10637), 1, sym__comment_word, - ACTIONS(10428), 1, + ACTIONS(10929), 1, anon_sym_DOLLAR, - ACTIONS(4665), 2, + ACTIONS(9355), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4689), 2, + ACTIONS(9373), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10326), 2, + ACTIONS(10633), 2, sym_test_operator, sym__special_character, - ACTIONS(10328), 3, + ACTIONS(10635), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2696), 9, + STATE(1103), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218735] = 20, - ACTIONS(71), 1, + [225622] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3131), 1, + ACTIONS(2688), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(2690), 1, anon_sym_DOLLAR, - ACTIONS(3137), 1, + ACTIONS(2692), 1, + sym__special_character, + ACTIONS(2694), 1, + anon_sym_DQUOTE, + ACTIONS(2696), 1, + anon_sym_SQUOTE, + ACTIONS(2700), 1, aux_sym_number_token1, - ACTIONS(3139), 1, + ACTIONS(2702), 1, aux_sym_number_token2, - ACTIONS(3143), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3153), 1, - sym__brace_start, - ACTIONS(9512), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9518), 1, - anon_sym_DQUOTE, - ACTIONS(9522), 1, + ACTIONS(2704), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9524), 1, + ACTIONS(2706), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2708), 1, anon_sym_BQUOTE, - ACTIONS(9526), 1, + ACTIONS(2710), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10422), 1, - sym__special_character, - ACTIONS(10430), 1, + ACTIONS(2718), 1, + sym__brace_start, + ACTIONS(10931), 1, sym_word, - ACTIONS(10434), 1, + ACTIONS(10933), 1, + sym_ansi_c_string, + ACTIONS(10935), 1, sym_test_operator, - STATE(4536), 1, + STATE(2403), 1, aux_sym__literal_repeat1, - STATE(4888), 1, + STATE(2534), 1, sym_concatenation, - ACTIONS(9510), 2, + ACTIONS(2682), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9528), 2, + ACTIONS(2712), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10432), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4346), 9, + STATE(2208), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218807] = 18, + [225697] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3165), 1, - anon_sym_DOLLAR, - ACTIONS(3171), 1, + ACTIONS(5933), 1, aux_sym_number_token1, - ACTIONS(3173), 1, + ACTIONS(5935), 1, aux_sym_number_token2, - ACTIONS(3177), 1, + ACTIONS(5939), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3187), 1, + ACTIONS(5949), 1, sym__brace_start, - ACTIONS(9176), 1, + ACTIONS(10363), 1, + sym_word, + ACTIONS(10367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9180), 1, + ACTIONS(10371), 1, anon_sym_DQUOTE, - ACTIONS(9184), 1, + ACTIONS(10373), 1, + anon_sym_SQUOTE, + ACTIONS(10377), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9186), 1, + ACTIONS(10379), 1, anon_sym_BQUOTE, - ACTIONS(9188), 1, + ACTIONS(10381), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10436), 1, - sym_word, - ACTIONS(10442), 1, + ACTIONS(10385), 1, sym__comment_word, - ACTIONS(9174), 2, + ACTIONS(10937), 1, + anon_sym_DOLLAR, + ACTIONS(10365), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9190), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10438), 2, + ACTIONS(10369), 2, sym_test_operator, sym__special_character, - ACTIONS(10440), 3, + ACTIONS(10375), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1733), 9, + ACTIONS(10383), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(5706), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218875] = 20, - ACTIONS(71), 1, + [225768] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1420), 1, + ACTIONS(5933), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(5935), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(5939), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(5949), 1, sym__brace_start, - ACTIONS(8928), 1, + ACTIONS(10363), 1, + sym_word, + ACTIONS(10367), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, - sym__special_character, - ACTIONS(8932), 1, + ACTIONS(10371), 1, anon_sym_DQUOTE, - ACTIONS(8936), 1, + ACTIONS(10373), 1, + anon_sym_SQUOTE, + ACTIONS(10377), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8938), 1, + ACTIONS(10379), 1, anon_sym_BQUOTE, - ACTIONS(8940), 1, + ACTIONS(10381), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10444), 1, - sym_word, - ACTIONS(10448), 1, - sym_test_operator, - STATE(1088), 1, - aux_sym__literal_repeat1, - STATE(1293), 1, - sym_concatenation, - ACTIONS(8926), 2, + ACTIONS(10385), 1, + sym__comment_word, + ACTIONS(10939), 1, + anon_sym_DOLLAR, + ACTIONS(10365), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8942), 2, + ACTIONS(10369), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10375), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(10383), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10446), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(873), 9, + STATE(5706), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [218947] = 18, + [225839] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4667), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4673), 1, - anon_sym_DQUOTE, - ACTIONS(4677), 1, + ACTIONS(3507), 1, aux_sym_number_token1, - ACTIONS(4679), 1, + ACTIONS(3509), 1, aux_sym_number_token2, - ACTIONS(4681), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4683), 1, + ACTIONS(3513), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4685), 1, + ACTIONS(3523), 1, + sym__brace_start, + ACTIONS(9591), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9595), 1, + anon_sym_DQUOTE, + ACTIONS(9597), 1, + anon_sym_SQUOTE, + ACTIONS(9601), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9603), 1, anon_sym_BQUOTE, - ACTIONS(4687), 1, + ACTIONS(9605), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4695), 1, - sym__brace_start, - ACTIONS(10324), 1, + ACTIONS(10643), 1, sym_word, - ACTIONS(10330), 1, + ACTIONS(10649), 1, sym__comment_word, - ACTIONS(10450), 1, + ACTIONS(10941), 1, anon_sym_DOLLAR, - ACTIONS(4665), 2, + ACTIONS(9589), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4689), 2, + ACTIONS(9607), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10326), 2, + ACTIONS(10645), 2, sym_test_operator, sym__special_character, - ACTIONS(10328), 3, + ACTIONS(10647), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2696), 9, + STATE(4581), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219015] = 20, - ACTIONS(71), 1, + [225910] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1414), 1, - anon_sym_DOLLAR, - ACTIONS(1420), 1, - aux_sym_number_token1, - ACTIONS(1422), 1, - aux_sym_number_token2, - ACTIONS(1426), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, - sym__brace_start, - ACTIONS(8928), 1, + ACTIONS(10169), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8930), 1, - sym__special_character, - ACTIONS(8932), 1, + ACTIONS(10175), 1, anon_sym_DQUOTE, - ACTIONS(8936), 1, + ACTIONS(10177), 1, + anon_sym_SQUOTE, + ACTIONS(10181), 1, + aux_sym_number_token1, + ACTIONS(10183), 1, + aux_sym_number_token2, + ACTIONS(10185), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8938), 1, + ACTIONS(10187), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10189), 1, anon_sym_BQUOTE, - ACTIONS(8940), 1, + ACTIONS(10191), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10452), 1, + ACTIONS(10197), 1, + sym__brace_start, + ACTIONS(10465), 1, + anon_sym_DOLLAR, + ACTIONS(10795), 1, + sym__special_character, + ACTIONS(10943), 1, sym_word, - ACTIONS(10456), 1, + ACTIONS(10945), 1, + sym_ansi_c_string, + ACTIONS(10947), 1, sym_test_operator, - STATE(1093), 1, + STATE(6309), 1, aux_sym__literal_repeat1, - STATE(1240), 1, + STATE(6475), 1, sym_concatenation, - ACTIONS(8926), 2, + ACTIONS(10167), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8942), 2, + ACTIONS(10193), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10454), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(886), 9, + STATE(6264), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219087] = 18, + [225985] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, - anon_sym_DOLLAR, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3638), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10008), 1, - sym_word, - ACTIONS(10012), 1, + ACTIONS(461), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(10022), 1, + ACTIONS(469), 1, + anon_sym_SQUOTE, + ACTIONS(473), 1, + aux_sym_number_token1, + ACTIONS(475), 1, + aux_sym_number_token2, + ACTIONS(477), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(479), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(483), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10030), 1, + ACTIONS(493), 1, + sym__brace_start, + ACTIONS(10391), 1, + sym_word, + ACTIONS(10397), 1, sym__comment_word, - ACTIONS(10010), 2, + ACTIONS(10949), 1, + anon_sym_DOLLAR, + ACTIONS(459), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10016), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10028), 2, + ACTIONS(485), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10020), 3, + ACTIONS(10393), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10395), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4300), 9, + STATE(859), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219155] = 20, - ACTIONS(71), 1, + [226056] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(3095), 1, anon_sym_DOLLAR, - ACTIONS(2729), 1, + ACTIONS(3103), 1, aux_sym_number_token1, - ACTIONS(2731), 1, + ACTIONS(3105), 1, aux_sym_number_token2, - ACTIONS(2735), 1, + ACTIONS(3109), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2745), 1, + ACTIONS(3121), 1, sym__brace_start, - ACTIONS(9544), 1, + ACTIONS(10729), 1, + sym_word, + ACTIONS(10733), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9550), 1, + ACTIONS(10739), 1, anon_sym_DQUOTE, - ACTIONS(9554), 1, + ACTIONS(10741), 1, + anon_sym_SQUOTE, + ACTIONS(10745), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9556), 1, + ACTIONS(10747), 1, anon_sym_BQUOTE, - ACTIONS(9558), 1, + ACTIONS(10749), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10458), 1, - sym_word, - ACTIONS(10460), 1, - sym__special_character, - ACTIONS(10464), 1, - sym_test_operator, - STATE(4321), 1, - aux_sym__literal_repeat1, - STATE(4765), 1, - sym_concatenation, - ACTIONS(9542), 2, + ACTIONS(10753), 1, + sym__comment_word, + ACTIONS(10731), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9560), 2, + ACTIONS(10737), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10743), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(10751), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10462), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4244), 9, + STATE(1926), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219227] = 20, - ACTIONS(71), 1, + [226127] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(2723), 1, + ACTIONS(3707), 1, anon_sym_DOLLAR, - ACTIONS(2729), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(2731), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(2735), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2745), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(9544), 1, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9550), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(9554), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9556), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(9558), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10460), 1, + ACTIONS(10081), 1, sym__special_character, - ACTIONS(10466), 1, + ACTIONS(10951), 1, sym_word, - ACTIONS(10470), 1, + ACTIONS(10953), 1, + sym_ansi_c_string, + ACTIONS(10955), 1, sym_test_operator, - STATE(4337), 1, + STATE(4376), 1, aux_sym__literal_repeat1, - STATE(4772), 1, + STATE(4666), 1, sym_concatenation, - ACTIONS(9542), 2, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9560), 2, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10468), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4247), 9, + STATE(4536), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219299] = 18, + [226202] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8573), 1, + ACTIONS(461), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8575), 1, - anon_sym_DOLLAR, - ACTIONS(8579), 1, + ACTIONS(467), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(469), 1, + anon_sym_SQUOTE, + ACTIONS(473), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(475), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(477), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(479), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(483), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8599), 1, + ACTIONS(493), 1, sym__brace_start, - ACTIONS(10472), 1, + ACTIONS(10391), 1, sym_word, - ACTIONS(10478), 1, + ACTIONS(10397), 1, sym__comment_word, - ACTIONS(8569), 2, + ACTIONS(10957), 1, + anon_sym_DOLLAR, + ACTIONS(459), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8595), 2, + ACTIONS(485), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10474), 2, + ACTIONS(10393), 2, sym_test_operator, sym__special_character, - ACTIONS(10476), 3, + ACTIONS(10395), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(5126), 9, + STATE(859), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219367] = 20, - ACTIONS(71), 1, + [226273] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(8488), 1, + ACTIONS(1065), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8490), 1, + ACTIONS(1067), 1, anon_sym_DOLLAR, - ACTIONS(8492), 1, - sym__special_character, - ACTIONS(8494), 1, + ACTIONS(1071), 1, anon_sym_DQUOTE, - ACTIONS(8498), 1, + ACTIONS(1073), 1, + anon_sym_SQUOTE, + ACTIONS(1077), 1, aux_sym_number_token1, - ACTIONS(8500), 1, + ACTIONS(1079), 1, aux_sym_number_token2, - ACTIONS(8502), 1, + ACTIONS(1081), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8504), 1, + ACTIONS(1083), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8506), 1, + ACTIONS(1085), 1, anon_sym_BQUOTE, - ACTIONS(8508), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8518), 1, + ACTIONS(1095), 1, sym__brace_start, - ACTIONS(10480), 1, + ACTIONS(10917), 1, sym_word, - ACTIONS(10484), 1, - sym_test_operator, - STATE(1542), 1, - aux_sym__literal_repeat1, - STATE(1910), 1, - sym_concatenation, - ACTIONS(8484), 2, + ACTIONS(10925), 1, + sym__comment_word, + ACTIONS(1063), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8510), 2, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10482), 2, - sym_raw_string, + ACTIONS(10921), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10923), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(1193), 9, + STATE(2114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219439] = 20, - ACTIONS(71), 1, + [226344] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8488), 1, + ACTIONS(2688), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8490), 1, + ACTIONS(2690), 1, anon_sym_DOLLAR, - ACTIONS(8492), 1, + ACTIONS(2692), 1, sym__special_character, - ACTIONS(8494), 1, + ACTIONS(2694), 1, anon_sym_DQUOTE, - ACTIONS(8498), 1, + ACTIONS(2696), 1, + anon_sym_SQUOTE, + ACTIONS(2700), 1, aux_sym_number_token1, - ACTIONS(8500), 1, + ACTIONS(2702), 1, aux_sym_number_token2, - ACTIONS(8502), 1, + ACTIONS(2704), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8504), 1, + ACTIONS(2706), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8506), 1, + ACTIONS(2708), 1, anon_sym_BQUOTE, - ACTIONS(8508), 1, + ACTIONS(2710), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8518), 1, + ACTIONS(2718), 1, sym__brace_start, - ACTIONS(10486), 1, + ACTIONS(10959), 1, sym_word, - ACTIONS(10490), 1, + ACTIONS(10961), 1, + sym_ansi_c_string, + ACTIONS(10963), 1, sym_test_operator, - STATE(1548), 1, + STATE(2413), 1, aux_sym__literal_repeat1, - STATE(1912), 1, + STATE(2547), 1, sym_concatenation, - ACTIONS(8484), 2, + ACTIONS(2682), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8510), 2, + ACTIONS(2712), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10488), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1197), 9, + STATE(2110), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219511] = 18, + [226419] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3668), 1, + ACTIONS(2124), 1, anon_sym_DOLLAR, - ACTIONS(3674), 1, + ACTIONS(2132), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(2134), 1, aux_sym_number_token2, - ACTIONS(3680), 1, + ACTIONS(2138), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3692), 1, + ACTIONS(2152), 1, sym__brace_start, - ACTIONS(8984), 1, + ACTIONS(8169), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8988), 1, + ACTIONS(8173), 1, anon_sym_DQUOTE, - ACTIONS(8992), 1, + ACTIONS(8175), 1, + anon_sym_SQUOTE, + ACTIONS(8179), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8994), 1, + ACTIONS(8181), 1, anon_sym_BQUOTE, - ACTIONS(8996), 1, + ACTIONS(8183), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10034), 1, + ACTIONS(9853), 1, sym_word, - ACTIONS(10042), 1, + ACTIONS(9861), 1, sym__comment_word, - ACTIONS(8982), 2, + ACTIONS(8165), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8998), 2, + ACTIONS(8185), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10038), 2, + ACTIONS(9857), 2, sym_test_operator, sym__special_character, - ACTIONS(10040), 3, + ACTIONS(9859), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4640), 9, + STATE(1627), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219579] = 20, - ACTIONS(71), 1, + [226490] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, - anon_sym_DOLLAR, - ACTIONS(3854), 1, + ACTIONS(2380), 1, aux_sym_number_token1, - ACTIONS(3856), 1, + ACTIONS(2382), 1, aux_sym_number_token2, - ACTIONS(3860), 1, + ACTIONS(2386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3870), 1, + ACTIONS(2398), 1, sym__brace_start, - ACTIONS(9704), 1, + ACTIONS(10549), 1, + sym_word, + ACTIONS(10553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9710), 1, + ACTIONS(10557), 1, anon_sym_DQUOTE, - ACTIONS(9714), 1, + ACTIONS(10559), 1, + anon_sym_SQUOTE, + ACTIONS(10563), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9716), 1, + ACTIONS(10565), 1, anon_sym_BQUOTE, - ACTIONS(9718), 1, + ACTIONS(10567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10492), 1, - sym_word, - ACTIONS(10494), 1, - sym__special_character, - ACTIONS(10498), 1, - sym_test_operator, - STATE(4776), 1, - aux_sym__literal_repeat1, - STATE(5120), 1, - sym_concatenation, - ACTIONS(9702), 2, + ACTIONS(10571), 1, + sym__comment_word, + ACTIONS(10965), 1, + anon_sym_DOLLAR, + ACTIONS(10551), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9720), 2, + ACTIONS(10555), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10561), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(10569), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10496), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4427), 9, + STATE(1355), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219651] = 18, + [226561] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3998), 1, - anon_sym_DOLLAR, - ACTIONS(4002), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(4008), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4018), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(8820), 1, + ACTIONS(10021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, + ACTIONS(10025), 1, anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10046), 1, + ACTIONS(10145), 1, sym_word, - ACTIONS(10054), 1, + ACTIONS(10153), 1, sym__comment_word, - ACTIONS(8818), 2, + ACTIONS(10967), 1, + anon_sym_DOLLAR, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10050), 2, + ACTIONS(10149), 2, sym_test_operator, sym__special_character, - ACTIONS(10052), 3, + ACTIONS(10151), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1951), 9, + STATE(4478), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219719] = 20, - ACTIONS(71), 1, + [226632] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1454), 1, - anon_sym_DOLLAR, - ACTIONS(1460), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(1462), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(1466), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(9146), 1, + ACTIONS(10021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9148), 1, - sym__special_character, - ACTIONS(9150), 1, + ACTIONS(10025), 1, anon_sym_DQUOTE, - ACTIONS(9154), 1, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9156), 1, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(9158), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10500), 1, + ACTIONS(10145), 1, sym_word, - ACTIONS(10504), 1, - sym_test_operator, - STATE(1213), 1, - aux_sym__literal_repeat1, - STATE(1423), 1, - sym_concatenation, - ACTIONS(9144), 2, + ACTIONS(10153), 1, + sym__comment_word, + ACTIONS(10969), 1, + anon_sym_DOLLAR, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9160), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10502), 2, - sym_raw_string, + ACTIONS(10149), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10151), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(988), 9, + STATE(4478), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219791] = 20, - ACTIONS(71), 1, + [226703] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(1454), 1, - anon_sym_DOLLAR, - ACTIONS(1460), 1, - aux_sym_number_token1, - ACTIONS(1462), 1, - aux_sym_number_token2, - ACTIONS(1466), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, - sym__brace_start, - ACTIONS(9146), 1, + ACTIONS(4739), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9148), 1, - sym__special_character, - ACTIONS(9150), 1, + ACTIONS(4745), 1, anon_sym_DQUOTE, - ACTIONS(9154), 1, + ACTIONS(4747), 1, + anon_sym_SQUOTE, + ACTIONS(4751), 1, + aux_sym_number_token1, + ACTIONS(4753), 1, + aux_sym_number_token2, + ACTIONS(4755), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9156), 1, + ACTIONS(4757), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4759), 1, anon_sym_BQUOTE, - ACTIONS(9158), 1, + ACTIONS(4761), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10506), 1, + ACTIONS(4769), 1, + sym__brace_start, + ACTIONS(10457), 1, sym_word, - ACTIONS(10510), 1, - sym_test_operator, - STATE(1219), 1, - aux_sym__literal_repeat1, - STATE(1427), 1, - sym_concatenation, - ACTIONS(9144), 2, + ACTIONS(10463), 1, + sym__comment_word, + ACTIONS(10971), 1, + anon_sym_DOLLAR, + ACTIONS(4737), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9160), 2, + ACTIONS(4763), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10508), 2, - sym_raw_string, + ACTIONS(10459), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10461), 2, + sym__bare_dollar, sym_ansi_c_string, - STATE(991), 9, + STATE(2768), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219863] = 18, + [226774] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3034), 1, - anon_sym_DOLLAR, - ACTIONS(3038), 1, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(3044), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3054), 1, + ACTIONS(1662), 1, sym__brace_start, - ACTIONS(8892), 1, + ACTIONS(9253), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8896), 1, + ACTIONS(9257), 1, anon_sym_DQUOTE, - ACTIONS(8900), 1, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(8904), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10058), 1, + ACTIONS(9945), 1, sym_word, - ACTIONS(10066), 1, + ACTIONS(9953), 1, sym__comment_word, - ACTIONS(8890), 2, + ACTIONS(10973), 1, + anon_sym_DOLLAR, + ACTIONS(9251), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8906), 2, + ACTIONS(9269), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10062), 2, + ACTIONS(9949), 2, sym_test_operator, sym__special_character, - ACTIONS(10064), 3, + ACTIONS(9951), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1751), 9, + STATE(1271), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [219931] = 20, - ACTIONS(71), 1, + [226845] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3350), 1, - anon_sym_DOLLAR, - ACTIONS(3356), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(3358), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(3362), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3372), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(9701), 1, + sym_word, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9768), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10512), 1, - sym_word, - ACTIONS(10514), 1, - sym__special_character, - ACTIONS(10518), 1, - sym_test_operator, - STATE(4440), 1, - aux_sym__literal_repeat1, - STATE(4867), 1, - sym_concatenation, - ACTIONS(9760), 2, + ACTIONS(9723), 1, + sym__comment_word, + ACTIONS(10975), 1, + anon_sym_DOLLAR, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9778), 2, + ACTIONS(9707), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9713), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10516), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4268), 9, + STATE(4347), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220003] = 20, - ACTIONS(71), 1, + [226916] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(3350), 1, - anon_sym_DOLLAR, - ACTIONS(3356), 1, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(3358), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(3362), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3372), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(9762), 1, + ACTIONS(9701), 1, + sym_word, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9768), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(9772), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10514), 1, + ACTIONS(9723), 1, + sym__comment_word, + ACTIONS(10977), 1, + anon_sym_DOLLAR, + ACTIONS(9703), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(9707), 2, + sym_test_operator, + sym__special_character, + ACTIONS(9713), 2, + sym__bare_dollar, + sym_ansi_c_string, + ACTIONS(9721), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(4347), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [226987] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5378), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(5380), 1, + anon_sym_DOLLAR, + ACTIONS(5382), 1, sym__special_character, - ACTIONS(10520), 1, + ACTIONS(5384), 1, + anon_sym_DQUOTE, + ACTIONS(5386), 1, + anon_sym_SQUOTE, + ACTIONS(5390), 1, + aux_sym_number_token1, + ACTIONS(5392), 1, + aux_sym_number_token2, + ACTIONS(5394), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5396), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5398), 1, + anon_sym_BQUOTE, + ACTIONS(5400), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5406), 1, + sym__brace_start, + ACTIONS(10979), 1, sym_word, - ACTIONS(10524), 1, + ACTIONS(10981), 1, + sym_ansi_c_string, + ACTIONS(10983), 1, sym_test_operator, - STATE(4443), 1, + STATE(5548), 1, aux_sym__literal_repeat1, - STATE(4896), 1, + STATE(5651), 1, sym_concatenation, - ACTIONS(9760), 2, + ACTIONS(5376), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9778), 2, + ACTIONS(5402), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10522), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4276), 9, + STATE(5416), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220075] = 18, + [227062] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 1, - anon_sym_DOLLAR, - ACTIONS(6496), 1, - aux_sym_number_token1, - ACTIONS(6498), 1, - aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(7204), 1, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(7208), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, + aux_sym_number_token1, + ACTIONS(8265), 1, + aux_sym_number_token2, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, + ACTIONS(8269), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(7212), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10526), 1, + ACTIONS(8283), 1, + sym__brace_start, + ACTIONS(10261), 1, sym_word, - ACTIONS(10532), 1, + ACTIONS(10269), 1, sym__comment_word, - ACTIONS(7196), 2, + ACTIONS(10985), 1, + anon_sym_DOLLAR, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7214), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10528), 2, + ACTIONS(10265), 2, sym_test_operator, sym__special_character, - ACTIONS(10530), 3, + ACTIONS(10267), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(6506), 9, + STATE(4306), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220143] = 18, + [227133] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8376), 1, + ACTIONS(8251), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8378), 1, - anon_sym_DOLLAR, - ACTIONS(8382), 1, + ACTIONS(8257), 1, anon_sym_DQUOTE, - ACTIONS(8386), 1, + ACTIONS(8259), 1, + anon_sym_SQUOTE, + ACTIONS(8263), 1, aux_sym_number_token1, - ACTIONS(8388), 1, + ACTIONS(8265), 1, aux_sym_number_token2, - ACTIONS(8390), 1, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8392), 1, + ACTIONS(8269), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8406), 1, + ACTIONS(8283), 1, sym__brace_start, - ACTIONS(10534), 1, + ACTIONS(10261), 1, sym_word, - ACTIONS(10540), 1, + ACTIONS(10269), 1, sym__comment_word, - ACTIONS(8372), 2, + ACTIONS(10987), 1, + anon_sym_DOLLAR, + ACTIONS(8247), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8398), 2, + ACTIONS(8275), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10536), 2, + ACTIONS(10265), 2, sym_test_operator, sym__special_character, - ACTIONS(10538), 3, + ACTIONS(10267), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2473), 9, + STATE(4306), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220211] = 18, + [227204] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4775), 1, + ACTIONS(5293), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4777), 1, - anon_sym_DOLLAR, - ACTIONS(4781), 1, + ACTIONS(5299), 1, anon_sym_DQUOTE, - ACTIONS(4785), 1, + ACTIONS(5301), 1, + anon_sym_SQUOTE, + ACTIONS(5305), 1, aux_sym_number_token1, - ACTIONS(4787), 1, + ACTIONS(5307), 1, aux_sym_number_token2, - ACTIONS(4789), 1, + ACTIONS(5309), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4791), 1, + ACTIONS(5311), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4793), 1, + ACTIONS(5313), 1, anon_sym_BQUOTE, - ACTIONS(4795), 1, + ACTIONS(5315), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4801), 1, + ACTIONS(5321), 1, sym__brace_start, - ACTIONS(10542), 1, + ACTIONS(10411), 1, sym_word, - ACTIONS(10548), 1, + ACTIONS(10417), 1, sym__comment_word, - ACTIONS(4773), 2, + ACTIONS(10989), 1, + anon_sym_DOLLAR, + ACTIONS(5291), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4797), 2, + ACTIONS(5317), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10544), 2, + ACTIONS(10413), 2, sym_test_operator, sym__special_character, - ACTIONS(10546), 3, + ACTIONS(10415), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2599), 9, + STATE(2988), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220279] = 18, + [227275] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(1131), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2659), 1, + ACTIONS(1139), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(1141), 1, + anon_sym_SQUOTE, + ACTIONS(1145), 1, aux_sym_number_token1, - ACTIONS(2665), 1, + ACTIONS(1147), 1, aux_sym_number_token2, - ACTIONS(2667), 1, + ACTIONS(1149), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2669), 1, + ACTIONS(1151), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2671), 1, - anon_sym_BQUOTE, - ACTIONS(2673), 1, + ACTIONS(1155), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2681), 1, + ACTIONS(1161), 1, sym__brace_start, - ACTIONS(10360), 1, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(9643), 1, sym_word, - ACTIONS(10366), 1, + ACTIONS(9651), 1, sym__comment_word, - ACTIONS(10550), 1, + ACTIONS(10991), 1, anon_sym_DOLLAR, - ACTIONS(2647), 2, + ACTIONS(1119), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2675), 2, + ACTIONS(1157), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10362), 2, + ACTIONS(9647), 2, sym_test_operator, sym__special_character, - ACTIONS(10364), 3, + ACTIONS(9649), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2310), 9, + STATE(2410), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220347] = 18, + [227346] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5117), 1, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(10995), 1, + anon_sym_DQUOTE, + ACTIONS(10999), 1, + sym_variable_name, + STATE(5595), 1, + sym_string, + ACTIONS(10997), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10993), 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(1267), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [227395] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5119), 1, + ACTIONS(8213), 1, anon_sym_DOLLAR, - ACTIONS(5123), 1, + ACTIONS(8215), 1, + sym__special_character, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(5127), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, aux_sym_number_token1, - ACTIONS(5129), 1, + ACTIONS(8225), 1, aux_sym_number_token2, - ACTIONS(5131), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5133), 1, + ACTIONS(8229), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5135), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(5137), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5143), 1, + ACTIONS(8243), 1, sym__brace_start, - ACTIONS(10552), 1, + ACTIONS(11001), 1, sym_word, - ACTIONS(10558), 1, - sym__comment_word, - ACTIONS(5115), 2, + ACTIONS(11003), 1, + sym_ansi_c_string, + ACTIONS(11005), 1, + sym_test_operator, + STATE(1999), 1, + aux_sym__literal_repeat1, + STATE(2262), 1, + sym_concatenation, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5139), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10554), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10556), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5433), 9, + STATE(1755), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220415] = 18, - ACTIONS(3), 1, + [227470] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(2653), 1, + ACTIONS(10169), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(2659), 1, + ACTIONS(10175), 1, anon_sym_DQUOTE, - ACTIONS(2663), 1, + ACTIONS(10177), 1, + anon_sym_SQUOTE, + ACTIONS(10181), 1, aux_sym_number_token1, - ACTIONS(2665), 1, + ACTIONS(10183), 1, aux_sym_number_token2, - ACTIONS(2667), 1, + ACTIONS(10185), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2669), 1, + ACTIONS(10187), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2671), 1, + ACTIONS(10189), 1, anon_sym_BQUOTE, - ACTIONS(2673), 1, + ACTIONS(10191), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(2681), 1, + ACTIONS(10197), 1, + sym__brace_start, + ACTIONS(10465), 1, + anon_sym_DOLLAR, + ACTIONS(10795), 1, + sym__special_character, + ACTIONS(11007), 1, + sym_word, + ACTIONS(11009), 1, + sym_ansi_c_string, + ACTIONS(11011), 1, + sym_test_operator, + STATE(6300), 1, + aux_sym__literal_repeat1, + STATE(6462), 1, + sym_concatenation, + ACTIONS(10167), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(10193), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6257), 10, + sym_arithmetic_expansion, + sym_brace_expression, + sym_string, + sym_translated_string, + sym_raw_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [227545] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(272), 1, + aux_sym_number_token1, + ACTIONS(274), 1, + aux_sym_number_token2, + ACTIONS(278), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(10360), 1, + ACTIONS(1099), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(1105), 1, + anon_sym_DQUOTE, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1111), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + ACTIONS(9789), 1, sym_word, - ACTIONS(10366), 1, + ACTIONS(9795), 1, sym__comment_word, - ACTIONS(10560), 1, + ACTIONS(11013), 1, anon_sym_DOLLAR, - ACTIONS(2647), 2, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(2675), 2, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10362), 2, + ACTIONS(9791), 2, sym_test_operator, sym__special_character, - ACTIONS(10364), 3, + ACTIONS(9793), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2310), 9, + STATE(2698), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220483] = 18, + [227616] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4601), 1, + ACTIONS(5293), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4603), 1, - anon_sym_DOLLAR, - ACTIONS(4607), 1, + ACTIONS(5299), 1, anon_sym_DQUOTE, - ACTIONS(4611), 1, + ACTIONS(5301), 1, + anon_sym_SQUOTE, + ACTIONS(5305), 1, aux_sym_number_token1, - ACTIONS(4613), 1, + ACTIONS(5307), 1, aux_sym_number_token2, - ACTIONS(4615), 1, + ACTIONS(5309), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4617), 1, + ACTIONS(5311), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4619), 1, + ACTIONS(5313), 1, anon_sym_BQUOTE, - ACTIONS(4621), 1, + ACTIONS(5315), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4627), 1, + ACTIONS(5321), 1, sym__brace_start, - ACTIONS(10562), 1, + ACTIONS(10411), 1, sym_word, - ACTIONS(10568), 1, + ACTIONS(10417), 1, sym__comment_word, - ACTIONS(4599), 2, + ACTIONS(11015), 1, + anon_sym_DOLLAR, + ACTIONS(5291), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4623), 2, + ACTIONS(5317), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10564), 2, + ACTIONS(10413), 2, sym_test_operator, sym__special_character, - ACTIONS(10566), 3, + ACTIONS(10415), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2527), 9, + STATE(2988), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220551] = 18, - ACTIONS(3), 1, + [227687] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4807), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4809), 1, + ACTIONS(1590), 1, anon_sym_DOLLAR, - ACTIONS(4813), 1, - anon_sym_DQUOTE, - ACTIONS(4817), 1, + ACTIONS(1598), 1, aux_sym_number_token1, - ACTIONS(4819), 1, + ACTIONS(1600), 1, aux_sym_number_token2, - ACTIONS(4821), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4823), 1, + ACTIONS(1604), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4825), 1, + ACTIONS(1616), 1, + sym__brace_start, + ACTIONS(9213), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9215), 1, + sym__special_character, + ACTIONS(9217), 1, + anon_sym_DQUOTE, + ACTIONS(9219), 1, + anon_sym_SQUOTE, + ACTIONS(9223), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(4827), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4833), 1, - sym__brace_start, - ACTIONS(10570), 1, + ACTIONS(11017), 1, sym_word, - ACTIONS(10576), 1, - sym__comment_word, - ACTIONS(4805), 2, + ACTIONS(11019), 1, + sym_ansi_c_string, + ACTIONS(11021), 1, + sym_test_operator, + STATE(1458), 1, + aux_sym__literal_repeat1, + STATE(1675), 1, + sym_concatenation, + ACTIONS(9211), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4829), 2, + ACTIONS(9229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10572), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10574), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5347), 9, + STATE(1125), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220619] = 18, + [227762] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7960), 1, - anon_sym_DOLLAR, - ACTIONS(7964), 1, - anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(1644), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(1646), 1, aux_sym_number_token2, - ACTIONS(7972), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(1650), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(1662), 1, + sym__brace_start, + ACTIONS(9253), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(9257), 1, + anon_sym_DQUOTE, + ACTIONS(9259), 1, + anon_sym_SQUOTE, + ACTIONS(9263), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(10070), 1, + ACTIONS(9945), 1, sym_word, - ACTIONS(10078), 1, + ACTIONS(9953), 1, sym__comment_word, - ACTIONS(7954), 2, + ACTIONS(11023), 1, + anon_sym_DOLLAR, + ACTIONS(9251), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, + ACTIONS(9269), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10074), 2, + ACTIONS(9949), 2, sym_test_operator, sym__special_character, - ACTIONS(10076), 3, + ACTIONS(9951), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4322), 9, + STATE(1271), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220687] = 18, + [227833] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(357), 1, + ACTIONS(8473), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(363), 1, + ACTIONS(8479), 1, anon_sym_DQUOTE, - ACTIONS(367), 1, + ACTIONS(8481), 1, + anon_sym_SQUOTE, + ACTIONS(8485), 1, aux_sym_number_token1, - ACTIONS(369), 1, + ACTIONS(8487), 1, aux_sym_number_token2, - ACTIONS(371), 1, + ACTIONS(8489), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, + ACTIONS(8491), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, + ACTIONS(8493), 1, anon_sym_BQUOTE, - ACTIONS(377), 1, + ACTIONS(8495), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(387), 1, + ACTIONS(8505), 1, sym__brace_start, - ACTIONS(9948), 1, + ACTIONS(10773), 1, sym_word, - ACTIONS(9956), 1, + ACTIONS(10779), 1, sym__comment_word, - ACTIONS(10578), 1, + ACTIONS(11025), 1, anon_sym_DOLLAR, - ACTIONS(355), 2, + ACTIONS(8469), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(379), 2, + ACTIONS(8497), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9952), 2, + ACTIONS(10775), 2, sym_test_operator, sym__special_character, - ACTIONS(9954), 3, + ACTIONS(10777), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1101), 9, + STATE(1360), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220755] = 18, - ACTIONS(3), 1, + [227904] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8128), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8130), 1, + ACTIONS(5380), 1, anon_sym_DOLLAR, - ACTIONS(8134), 1, + ACTIONS(5382), 1, + sym__special_character, + ACTIONS(5384), 1, anon_sym_DQUOTE, - ACTIONS(8138), 1, + ACTIONS(5386), 1, + anon_sym_SQUOTE, + ACTIONS(5390), 1, aux_sym_number_token1, - ACTIONS(8140), 1, + ACTIONS(5392), 1, aux_sym_number_token2, - ACTIONS(8142), 1, + ACTIONS(5394), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8144), 1, + ACTIONS(5396), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8146), 1, + ACTIONS(5398), 1, anon_sym_BQUOTE, - ACTIONS(8148), 1, + ACTIONS(5400), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8158), 1, + ACTIONS(5406), 1, sym__brace_start, - ACTIONS(10580), 1, + ACTIONS(11027), 1, sym_word, - ACTIONS(10586), 1, - sym__comment_word, - ACTIONS(8124), 2, + ACTIONS(11029), 1, + sym_ansi_c_string, + ACTIONS(11031), 1, + sym_test_operator, + STATE(5551), 1, + aux_sym__literal_repeat1, + STATE(5656), 1, + sym_concatenation, + ACTIONS(5376), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8150), 2, + ACTIONS(5402), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10582), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10584), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5450), 9, + STATE(5434), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220823] = 18, - ACTIONS(3), 1, + [227979] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(5617), 1, + ACTIONS(1590), 1, anon_sym_DOLLAR, - ACTIONS(5621), 1, + ACTIONS(1598), 1, aux_sym_number_token1, - ACTIONS(5623), 1, + ACTIONS(1600), 1, aux_sym_number_token2, - ACTIONS(5627), 1, + ACTIONS(1604), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5637), 1, + ACTIONS(1616), 1, sym__brace_start, - ACTIONS(9008), 1, + ACTIONS(9213), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9012), 1, + ACTIONS(9215), 1, + sym__special_character, + ACTIONS(9217), 1, anon_sym_DQUOTE, - ACTIONS(9016), 1, + ACTIONS(9219), 1, + anon_sym_SQUOTE, + ACTIONS(9223), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9018), 1, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(9020), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10588), 1, + ACTIONS(11033), 1, sym_word, - ACTIONS(10594), 1, - sym__comment_word, - ACTIONS(9006), 2, + ACTIONS(11035), 1, + sym_ansi_c_string, + ACTIONS(11037), 1, + sym_test_operator, + STATE(1366), 1, + aux_sym__literal_repeat1, + STATE(1514), 1, + sym_concatenation, + ACTIONS(9211), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9022), 2, + ACTIONS(9229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10590), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10592), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3431), 9, + STATE(1042), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220891] = 18, + [228054] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5773), 1, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(10995), 1, + anon_sym_DQUOTE, + ACTIONS(10999), 1, + sym_variable_name, + STATE(5595), 1, + sym_string, + ACTIONS(10997), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10993), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(5779), 1, - aux_sym_number_token1, - ACTIONS(5781), 1, - aux_sym_number_token2, - ACTIONS(5785), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5795), 1, - sym__brace_start, - ACTIONS(10336), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + ACTIONS(1255), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [228103] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8211), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(10340), 1, + ACTIONS(8213), 1, + anon_sym_DOLLAR, + ACTIONS(8217), 1, anon_sym_DQUOTE, - ACTIONS(10344), 1, + ACTIONS(8219), 1, + anon_sym_SQUOTE, + ACTIONS(8223), 1, + aux_sym_number_token1, + ACTIONS(8225), 1, + aux_sym_number_token2, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10346), 1, + ACTIONS(8229), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(10348), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10596), 1, + ACTIONS(8243), 1, + sym__brace_start, + ACTIONS(8517), 1, + sym__special_character, + ACTIONS(11039), 1, sym_word, - ACTIONS(10602), 1, - sym__comment_word, - ACTIONS(10334), 2, + ACTIONS(11041), 1, + sym_ansi_c_string, + ACTIONS(11043), 1, + sym_test_operator, + STATE(1964), 1, + aux_sym__literal_repeat1, + STATE(2148), 1, + sym_concatenation, + ACTIONS(8207), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10350), 2, + ACTIONS(8235), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10598), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10600), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5658), 9, + STATE(1448), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [220959] = 18, - ACTIONS(3), 1, + [228178] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(449), 1, + ACTIONS(8698), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(451), 1, + ACTIONS(8700), 1, anon_sym_DOLLAR, - ACTIONS(455), 1, + ACTIONS(8702), 1, + sym__special_character, + ACTIONS(8704), 1, anon_sym_DQUOTE, - ACTIONS(459), 1, + ACTIONS(8706), 1, + anon_sym_SQUOTE, + ACTIONS(8710), 1, aux_sym_number_token1, - ACTIONS(461), 1, + ACTIONS(8712), 1, aux_sym_number_token2, - ACTIONS(463), 1, + ACTIONS(8714), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(465), 1, + ACTIONS(8716), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(467), 1, + ACTIONS(8718), 1, anon_sym_BQUOTE, - ACTIONS(469), 1, + ACTIONS(8720), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(479), 1, + ACTIONS(8730), 1, sym__brace_start, - ACTIONS(10604), 1, + ACTIONS(11045), 1, sym_word, - ACTIONS(10610), 1, - sym__comment_word, - ACTIONS(447), 2, + ACTIONS(11047), 1, + sym_ansi_c_string, + ACTIONS(11049), 1, + sym_test_operator, + STATE(3600), 1, + aux_sym__literal_repeat1, + STATE(3672), 1, + sym_concatenation, + ACTIONS(8694), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(471), 2, + ACTIONS(8722), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10606), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10608), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(836), 9, + STATE(3540), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221027] = 18, + [228253] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5195), 1, - anon_sym_DOLLAR, - ACTIONS(5199), 1, - anon_sym_DQUOTE, - ACTIONS(5203), 1, + ACTIONS(1682), 1, aux_sym_number_token1, - ACTIONS(5205), 1, + ACTIONS(1684), 1, aux_sym_number_token2, - ACTIONS(5207), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5209), 1, + ACTIONS(1688), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5211), 1, + ACTIONS(1702), 1, + sym__brace_start, + ACTIONS(8379), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8383), 1, + anon_sym_DQUOTE, + ACTIONS(8385), 1, + anon_sym_SQUOTE, + ACTIONS(8389), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8391), 1, anon_sym_BQUOTE, - ACTIONS(5213), 1, + ACTIONS(8393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5219), 1, - sym__brace_start, - ACTIONS(10612), 1, + ACTIONS(10505), 1, sym_word, - ACTIONS(10618), 1, + ACTIONS(10511), 1, sym__comment_word, - ACTIONS(5191), 2, + ACTIONS(11051), 1, + anon_sym_DOLLAR, + ACTIONS(8375), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5215), 2, + ACTIONS(8395), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10614), 2, + ACTIONS(10507), 2, sym_test_operator, sym__special_character, - ACTIONS(10616), 3, + ACTIONS(10509), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2939), 9, + STATE(1180), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221095] = 18, + [228324] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5432), 1, + ACTIONS(5581), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(5434), 1, - anon_sym_DOLLAR, - ACTIONS(5438), 1, + ACTIONS(5587), 1, anon_sym_DQUOTE, - ACTIONS(5442), 1, + ACTIONS(5589), 1, + anon_sym_SQUOTE, + ACTIONS(5593), 1, aux_sym_number_token1, - ACTIONS(5444), 1, + ACTIONS(5595), 1, aux_sym_number_token2, - ACTIONS(5446), 1, + ACTIONS(5597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5448), 1, + ACTIONS(5599), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5450), 1, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(5452), 1, + ACTIONS(5603), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5458), 1, + ACTIONS(5609), 1, sym__brace_start, - ACTIONS(10620), 1, + ACTIONS(10425), 1, sym_word, - ACTIONS(10626), 1, + ACTIONS(10431), 1, sym__comment_word, - ACTIONS(5430), 2, + ACTIONS(11053), 1, + anon_sym_DOLLAR, + ACTIONS(5579), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5454), 2, + ACTIONS(5605), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10622), 2, + ACTIONS(10427), 2, sym_test_operator, sym__special_character, - ACTIONS(10624), 3, + ACTIONS(10429), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(5526), 9, + STATE(5573), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221163] = 18, + [228395] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, + ACTIONS(5581), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(4930), 1, - anon_sym_DOLLAR, - ACTIONS(4934), 1, + ACTIONS(5587), 1, anon_sym_DQUOTE, - ACTIONS(4938), 1, + ACTIONS(5589), 1, + anon_sym_SQUOTE, + ACTIONS(5593), 1, aux_sym_number_token1, - ACTIONS(4940), 1, + ACTIONS(5595), 1, aux_sym_number_token2, - ACTIONS(4942), 1, + ACTIONS(5597), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4944), 1, + ACTIONS(5599), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4946), 1, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(4948), 1, + ACTIONS(5603), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4954), 1, + ACTIONS(5609), 1, sym__brace_start, - ACTIONS(9278), 1, + ACTIONS(10425), 1, sym_word, - ACTIONS(9286), 1, + ACTIONS(10431), 1, sym__comment_word, - ACTIONS(4926), 2, + ACTIONS(11055), 1, + anon_sym_DOLLAR, + ACTIONS(5579), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4950), 2, + ACTIONS(5605), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9282), 2, + ACTIONS(10427), 2, sym_test_operator, sym__special_character, - ACTIONS(9284), 3, + ACTIONS(10429), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2604), 9, + STATE(5573), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221231] = 18, + [228466] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5281), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5283), 1, - anon_sym_DOLLAR, - ACTIONS(5287), 1, - anon_sym_DQUOTE, - ACTIONS(5291), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(5293), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(5295), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5297), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5299), 1, + ACTIONS(4231), 1, + sym__brace_start, + ACTIONS(10021), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10025), 1, + anon_sym_DQUOTE, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5307), 1, - sym__brace_start, - ACTIONS(9288), 1, + ACTIONS(10145), 1, sym_word, - ACTIONS(9296), 1, + ACTIONS(10153), 1, sym__comment_word, - ACTIONS(5279), 2, + ACTIONS(11057), 1, + anon_sym_DOLLAR, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5303), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9292), 2, + ACTIONS(10149), 2, sym_test_operator, sym__special_character, - ACTIONS(9294), 3, + ACTIONS(10151), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(5487), 9, + STATE(4478), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221299] = 18, + [228537] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8292), 1, + ACTIONS(9111), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8294), 1, - anon_sym_DOLLAR, - ACTIONS(8298), 1, + ACTIONS(9117), 1, anon_sym_DQUOTE, - ACTIONS(8302), 1, + ACTIONS(9119), 1, + anon_sym_SQUOTE, + ACTIONS(9123), 1, aux_sym_number_token1, - ACTIONS(8304), 1, + ACTIONS(9125), 1, aux_sym_number_token2, - ACTIONS(8306), 1, + ACTIONS(9127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8308), 1, + ACTIONS(9129), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8310), 1, + ACTIONS(9131), 1, anon_sym_BQUOTE, - ACTIONS(8312), 1, + ACTIONS(9133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8322), 1, + ACTIONS(9139), 1, sym__brace_start, - ACTIONS(9300), 1, + ACTIONS(9819), 1, sym_word, - ACTIONS(9308), 1, + ACTIONS(9827), 1, sym__comment_word, - ACTIONS(8288), 2, + ACTIONS(11059), 1, + anon_sym_DOLLAR, + ACTIONS(9109), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8314), 2, + ACTIONS(9135), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9304), 2, + ACTIONS(9823), 2, sym_test_operator, sym__special_character, - ACTIONS(9306), 3, + ACTIONS(9825), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1259), 9, + STATE(2400), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221367] = 18, + [228608] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1694), 1, - anon_sym_DOLLAR, - ACTIONS(1700), 1, - aux_sym_number_token1, - ACTIONS(1702), 1, - aux_sym_number_token2, - ACTIONS(1706), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1720), 1, - sym__brace_start, - ACTIONS(8240), 1, + ACTIONS(4273), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8244), 1, + ACTIONS(4279), 1, anon_sym_DQUOTE, - ACTIONS(8248), 1, + ACTIONS(4281), 1, + anon_sym_SQUOTE, + ACTIONS(4285), 1, + aux_sym_number_token1, + ACTIONS(4287), 1, + aux_sym_number_token2, + ACTIONS(4289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8250), 1, + ACTIONS(4291), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(4293), 1, anon_sym_BQUOTE, - ACTIONS(8252), 1, + ACTIONS(4295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9326), 1, + ACTIONS(4305), 1, + sym__brace_start, + ACTIONS(10241), 1, sym_word, - ACTIONS(9334), 1, + ACTIONS(10247), 1, sym__comment_word, - ACTIONS(8236), 2, + ACTIONS(11061), 1, + anon_sym_DOLLAR, + ACTIONS(4271), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8254), 2, + ACTIONS(4297), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9330), 2, + ACTIONS(10243), 2, sym_test_operator, sym__special_character, - ACTIONS(9332), 3, + ACTIONS(10245), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1269), 9, + STATE(2496), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221435] = 18, + [228679] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1043), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1049), 1, - anon_sym_DQUOTE, - ACTIONS(1053), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(1055), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(1057), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1061), 1, + ACTIONS(4231), 1, + sym__brace_start, + ACTIONS(10021), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(10025), 1, + anon_sym_DQUOTE, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(1063), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1071), 1, - sym__brace_start, - ACTIONS(10380), 1, + ACTIONS(10145), 1, sym_word, - ACTIONS(10386), 1, + ACTIONS(10153), 1, sym__comment_word, - ACTIONS(10628), 1, + ACTIONS(11063), 1, anon_sym_DOLLAR, - ACTIONS(1041), 2, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1065), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10382), 2, + ACTIONS(10149), 2, sym_test_operator, sym__special_character, - ACTIONS(10384), 3, + ACTIONS(10151), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2257), 9, + STATE(4478), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221503] = 18, + [228750] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2464), 1, - anon_sym_DOLLAR, - ACTIONS(2470), 1, - aux_sym_number_token1, - ACTIONS(2472), 1, - aux_sym_number_token2, - ACTIONS(2476), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2488), 1, - sym__brace_start, - ACTIONS(9380), 1, + ACTIONS(10165), 1, sym_word, - ACTIONS(9384), 1, + ACTIONS(10169), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9390), 1, + ACTIONS(10175), 1, anon_sym_DQUOTE, - ACTIONS(9394), 1, + ACTIONS(10177), 1, + anon_sym_SQUOTE, + ACTIONS(10181), 1, + aux_sym_number_token1, + ACTIONS(10183), 1, + aux_sym_number_token2, + ACTIONS(10185), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9396), 1, + ACTIONS(10187), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10189), 1, anon_sym_BQUOTE, - ACTIONS(9398), 1, + ACTIONS(10191), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9402), 1, + ACTIONS(10195), 1, sym__comment_word, - ACTIONS(9382), 2, + ACTIONS(10197), 1, + sym__brace_start, + ACTIONS(11065), 1, + anon_sym_DOLLAR, + ACTIONS(10167), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9388), 2, + ACTIONS(10173), 2, sym_test_operator, sym__special_character, - ACTIONS(9400), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9392), 3, + ACTIONS(10179), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1465), 9, + ACTIONS(10193), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(6267), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221571] = 18, + [228821] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(357), 1, + ACTIONS(307), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(363), 1, + ACTIONS(315), 1, anon_sym_DQUOTE, - ACTIONS(367), 1, + ACTIONS(317), 1, + anon_sym_SQUOTE, + ACTIONS(321), 1, aux_sym_number_token1, - ACTIONS(369), 1, + ACTIONS(323), 1, aux_sym_number_token2, - ACTIONS(371), 1, + ACTIONS(325), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(373), 1, + ACTIONS(327), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(375), 1, - anon_sym_BQUOTE, - ACTIONS(377), 1, + ACTIONS(331), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(387), 1, + ACTIONS(337), 1, sym__brace_start, - ACTIONS(9948), 1, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(9189), 1, sym_word, - ACTIONS(9956), 1, + ACTIONS(9193), 1, sym__comment_word, - ACTIONS(10630), 1, + ACTIONS(11067), 1, anon_sym_DOLLAR, - ACTIONS(355), 2, + ACTIONS(296), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(379), 2, + ACTIONS(333), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9952), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9954), 3, + ACTIONS(9195), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1101), 9, + ACTIONS(9197), 2, + sym_test_operator, + sym__special_character, + STATE(2660), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221639] = 18, + [228892] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1414), 1, + ACTIONS(3913), 1, anon_sym_DOLLAR, - ACTIONS(1420), 1, + ACTIONS(3921), 1, aux_sym_number_token1, - ACTIONS(1422), 1, + ACTIONS(3923), 1, aux_sym_number_token2, - ACTIONS(1426), 1, + ACTIONS(3927), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1438), 1, + ACTIONS(3937), 1, sym__brace_start, - ACTIONS(8928), 1, + ACTIONS(9325), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8932), 1, + ACTIONS(9329), 1, anon_sym_DQUOTE, - ACTIONS(8936), 1, + ACTIONS(9331), 1, + anon_sym_SQUOTE, + ACTIONS(9335), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8938), 1, + ACTIONS(9337), 1, anon_sym_BQUOTE, - ACTIONS(8940), 1, + ACTIONS(9339), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9422), 1, + ACTIONS(10699), 1, sym_word, - ACTIONS(9430), 1, + ACTIONS(10707), 1, sym__comment_word, - ACTIONS(8926), 2, + ACTIONS(9323), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8942), 2, + ACTIONS(9341), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9426), 2, + ACTIONS(10703), 2, sym_test_operator, sym__special_character, - ACTIONS(9428), 3, + ACTIONS(10705), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1006), 9, + STATE(2128), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221707] = 18, + [228963] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1043), 1, + ACTIONS(8609), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(1049), 1, + ACTIONS(8615), 1, anon_sym_DQUOTE, - ACTIONS(1053), 1, + ACTIONS(8617), 1, + anon_sym_SQUOTE, + ACTIONS(8621), 1, aux_sym_number_token1, - ACTIONS(1055), 1, + ACTIONS(8623), 1, aux_sym_number_token2, - ACTIONS(1057), 1, + ACTIONS(8625), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1059), 1, + ACTIONS(8627), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1061), 1, + ACTIONS(8629), 1, anon_sym_BQUOTE, - ACTIONS(1063), 1, + ACTIONS(8631), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(1071), 1, + ACTIONS(8641), 1, sym__brace_start, - ACTIONS(10380), 1, + ACTIONS(10131), 1, sym_word, - ACTIONS(10386), 1, + ACTIONS(10137), 1, sym__comment_word, - ACTIONS(10632), 1, + ACTIONS(11069), 1, anon_sym_DOLLAR, - ACTIONS(1041), 2, + ACTIONS(8605), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1065), 2, + ACTIONS(8633), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10382), 2, + ACTIONS(10133), 2, sym_test_operator, sym__special_character, - ACTIONS(10384), 3, + ACTIONS(10135), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(2257), 9, + STATE(1594), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221775] = 18, + [229034] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2691), 1, - anon_sym_DOLLAR, - ACTIONS(2697), 1, + ACTIONS(2380), 1, aux_sym_number_token1, - ACTIONS(2699), 1, + ACTIONS(2382), 1, aux_sym_number_token2, - ACTIONS(2703), 1, + ACTIONS(2386), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2713), 1, + ACTIONS(2398), 1, sym__brace_start, - ACTIONS(9096), 1, + ACTIONS(10549), 1, + sym_word, + ACTIONS(10553), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9100), 1, + ACTIONS(10557), 1, anon_sym_DQUOTE, - ACTIONS(9104), 1, + ACTIONS(10559), 1, + anon_sym_SQUOTE, + ACTIONS(10563), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9106), 1, + ACTIONS(10565), 1, anon_sym_BQUOTE, - ACTIONS(9108), 1, + ACTIONS(10567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9496), 1, - sym_word, - ACTIONS(9504), 1, + ACTIONS(10571), 1, sym__comment_word, - ACTIONS(9094), 2, + ACTIONS(11071), 1, + anon_sym_DOLLAR, + ACTIONS(10551), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9110), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9500), 2, + ACTIONS(10555), 2, sym_test_operator, sym__special_character, - ACTIONS(9502), 3, + ACTIONS(10561), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1670), 9, + ACTIONS(10569), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + STATE(1355), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221843] = 18, + [229105] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3131), 1, - anon_sym_DOLLAR, - ACTIONS(3137), 1, - aux_sym_number_token1, - ACTIONS(3139), 1, - aux_sym_number_token2, - ACTIONS(3143), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3153), 1, - sym__brace_start, - ACTIONS(9508), 1, - sym_word, - ACTIONS(9512), 1, + ACTIONS(1065), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9518), 1, + ACTIONS(1071), 1, anon_sym_DQUOTE, - ACTIONS(9522), 1, + ACTIONS(1073), 1, + anon_sym_SQUOTE, + ACTIONS(1077), 1, + aux_sym_number_token1, + ACTIONS(1079), 1, + aux_sym_number_token2, + ACTIONS(1081), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9524), 1, + ACTIONS(1083), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(1085), 1, anon_sym_BQUOTE, - ACTIONS(9526), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9530), 1, + ACTIONS(1095), 1, + sym__brace_start, + ACTIONS(10917), 1, + sym_word, + ACTIONS(10925), 1, sym__comment_word, - ACTIONS(9510), 2, + ACTIONS(11073), 1, + anon_sym_DOLLAR, + ACTIONS(1063), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9516), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9528), 2, + ACTIONS(1089), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9520), 3, + ACTIONS(10921), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10923), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4478), 9, + STATE(2114), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221911] = 18, + [229176] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2323), 1, - anon_sym_DOLLAR, - ACTIONS(2327), 1, + ACTIONS(272), 1, aux_sym_number_token1, - ACTIONS(2329), 1, + ACTIONS(274), 1, aux_sym_number_token2, - ACTIONS(2333), 1, + ACTIONS(278), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(2343), 1, + ACTIONS(292), 1, sym__brace_start, - ACTIONS(9116), 1, + ACTIONS(1099), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9120), 1, + ACTIONS(1105), 1, anon_sym_DQUOTE, - ACTIONS(9124), 1, + ACTIONS(1107), 1, + anon_sym_SQUOTE, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9126), 1, - anon_sym_BQUOTE, - ACTIONS(9128), 1, + ACTIONS(1113), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9268), 1, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + ACTIONS(9789), 1, sym_word, - ACTIONS(9276), 1, + ACTIONS(9795), 1, sym__comment_word, - ACTIONS(9114), 2, + ACTIONS(11075), 1, + anon_sym_DOLLAR, + ACTIONS(1097), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9130), 2, + ACTIONS(1115), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9272), 2, + ACTIONS(9791), 2, sym_test_operator, sym__special_character, - ACTIONS(9274), 3, + ACTIONS(9793), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1402), 9, + STATE(2698), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [221979] = 18, + [229247] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2723), 1, - anon_sym_DOLLAR, - ACTIONS(2729), 1, - aux_sym_number_token1, - ACTIONS(2731), 1, - aux_sym_number_token2, - ACTIONS(2735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2745), 1, - sym__brace_start, - ACTIONS(9540), 1, - sym_word, - ACTIONS(9544), 1, + ACTIONS(5056), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9550), 1, + ACTIONS(5062), 1, anon_sym_DQUOTE, - ACTIONS(9554), 1, + ACTIONS(5064), 1, + anon_sym_SQUOTE, + ACTIONS(5068), 1, + aux_sym_number_token1, + ACTIONS(5070), 1, + aux_sym_number_token2, + ACTIONS(5072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9556), 1, + ACTIONS(5074), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5076), 1, anon_sym_BQUOTE, - ACTIONS(9558), 1, + ACTIONS(5078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9562), 1, + ACTIONS(5084), 1, + sym__brace_start, + ACTIONS(10449), 1, + sym_word, + ACTIONS(10455), 1, sym__comment_word, - ACTIONS(9542), 2, + ACTIONS(11077), 1, + anon_sym_DOLLAR, + ACTIONS(5054), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9548), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9560), 2, + ACTIONS(5080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9552), 3, + ACTIONS(10451), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10453), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4277), 9, + STATE(2748), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222047] = 18, + [229318] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(707), 1, + ACTIONS(5056), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(709), 1, - anon_sym_DOLLAR, - ACTIONS(713), 1, + ACTIONS(5062), 1, anon_sym_DQUOTE, - ACTIONS(717), 1, + ACTIONS(5064), 1, + anon_sym_SQUOTE, + ACTIONS(5068), 1, aux_sym_number_token1, - ACTIONS(719), 1, + ACTIONS(5070), 1, aux_sym_number_token2, - ACTIONS(721), 1, + ACTIONS(5072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(723), 1, + ACTIONS(5074), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(725), 1, + ACTIONS(5076), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(5078), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(737), 1, + ACTIONS(5084), 1, sym__brace_start, - ACTIONS(9574), 1, + ACTIONS(10449), 1, sym_word, - ACTIONS(9582), 1, + ACTIONS(10455), 1, sym__comment_word, - ACTIONS(705), 2, + ACTIONS(11079), 1, + anon_sym_DOLLAR, + ACTIONS(5054), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(729), 2, + ACTIONS(5080), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9578), 2, + ACTIONS(10451), 2, sym_test_operator, sym__special_character, - ACTIONS(9580), 3, + ACTIONS(10453), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(903), 9, + STATE(2748), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222115] = 18, - ACTIONS(3), 1, + [229389] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8024), 1, + ACTIONS(8339), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8026), 1, + ACTIONS(8341), 1, anon_sym_DOLLAR, - ACTIONS(8030), 1, + ACTIONS(8343), 1, + sym__special_character, + ACTIONS(8345), 1, anon_sym_DQUOTE, - ACTIONS(8034), 1, + ACTIONS(8347), 1, + anon_sym_SQUOTE, + ACTIONS(8351), 1, aux_sym_number_token1, - ACTIONS(8036), 1, + ACTIONS(8353), 1, aux_sym_number_token2, - ACTIONS(8038), 1, + ACTIONS(8355), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8040), 1, + ACTIONS(8357), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8042), 1, + ACTIONS(8359), 1, anon_sym_BQUOTE, - ACTIONS(8044), 1, + ACTIONS(8361), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8054), 1, + ACTIONS(8371), 1, sym__brace_start, - ACTIONS(9588), 1, + ACTIONS(11081), 1, sym_word, - ACTIONS(9596), 1, - sym__comment_word, - ACTIONS(8020), 2, + ACTIONS(11083), 1, + sym_ansi_c_string, + ACTIONS(11085), 1, + sym_test_operator, + STATE(1423), 1, + aux_sym__literal_repeat1, + STATE(1667), 1, + sym_concatenation, + ACTIONS(8335), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8046), 2, + ACTIONS(8363), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9592), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9594), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4262), 9, + STATE(1160), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222183] = 18, + [229464] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(8488), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8490), 1, - anon_sym_DOLLAR, - ACTIONS(8494), 1, + ACTIONS(5384), 1, anon_sym_DQUOTE, - ACTIONS(8498), 1, + ACTIONS(5386), 1, + anon_sym_SQUOTE, + ACTIONS(5390), 1, aux_sym_number_token1, - ACTIONS(8500), 1, + ACTIONS(5392), 1, aux_sym_number_token2, - ACTIONS(8502), 1, + ACTIONS(5394), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8504), 1, + ACTIONS(5396), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8506), 1, + ACTIONS(5398), 1, anon_sym_BQUOTE, - ACTIONS(8508), 1, + ACTIONS(5400), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8518), 1, + ACTIONS(5406), 1, sym__brace_start, - ACTIONS(9608), 1, + ACTIONS(10467), 1, sym_word, - ACTIONS(9616), 1, + ACTIONS(10473), 1, sym__comment_word, - ACTIONS(8484), 2, + ACTIONS(11087), 1, + anon_sym_DOLLAR, + ACTIONS(5376), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8510), 2, + ACTIONS(5402), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9612), 2, + ACTIONS(10469), 2, sym_test_operator, sym__special_character, - ACTIONS(9614), 3, + ACTIONS(10471), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1416), 9, + STATE(5515), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222251] = 18, + [229535] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1878), 1, + ACTIONS(1590), 1, anon_sym_DOLLAR, - ACTIONS(1884), 1, + ACTIONS(1598), 1, aux_sym_number_token1, - ACTIONS(1886), 1, + ACTIONS(1600), 1, aux_sym_number_token2, - ACTIONS(1890), 1, + ACTIONS(1604), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1904), 1, + ACTIONS(1616), 1, sym__brace_start, - ACTIONS(7996), 1, + ACTIONS(9213), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8000), 1, + ACTIONS(9217), 1, anon_sym_DQUOTE, - ACTIONS(8004), 1, + ACTIONS(9219), 1, + anon_sym_SQUOTE, + ACTIONS(9223), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8006), 1, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(8008), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9630), 1, + ACTIONS(9551), 1, sym_word, - ACTIONS(9638), 1, + ACTIONS(9559), 1, sym__comment_word, - ACTIONS(7992), 2, + ACTIONS(9211), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8010), 2, + ACTIONS(9229), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9634), 2, + ACTIONS(9555), 2, sym_test_operator, sym__special_character, - ACTIONS(9636), 3, + ACTIONS(9557), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1474), 9, + STATE(1238), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222319] = 18, - ACTIONS(3), 1, + [229606] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(2619), 1, + ACTIONS(8339), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(8341), 1, anon_sym_DOLLAR, - ACTIONS(2625), 1, + ACTIONS(8343), 1, + sym__special_character, + ACTIONS(8345), 1, + anon_sym_DQUOTE, + ACTIONS(8347), 1, + anon_sym_SQUOTE, + ACTIONS(8351), 1, aux_sym_number_token1, - ACTIONS(2627), 1, + ACTIONS(8353), 1, aux_sym_number_token2, - ACTIONS(2631), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2643), 1, - sym__brace_start, - ACTIONS(9644), 1, - sym_word, - ACTIONS(9648), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9654), 1, - anon_sym_DQUOTE, - ACTIONS(9658), 1, + ACTIONS(8355), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(8357), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(8359), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(8361), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9666), 1, - sym__comment_word, - ACTIONS(9646), 2, + ACTIONS(8371), 1, + sym__brace_start, + ACTIONS(11089), 1, + sym_word, + ACTIONS(11091), 1, + sym_ansi_c_string, + ACTIONS(11093), 1, + sym_test_operator, + STATE(1427), 1, + aux_sym__literal_repeat1, + STATE(1677), 1, + sym_concatenation, + ACTIONS(8335), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9652), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9664), 2, + ACTIONS(8363), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9656), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1699), 9, + STATE(1168), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222387] = 18, - ACTIONS(3), 1, + [229681] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1454), 1, - anon_sym_DOLLAR, - ACTIONS(1460), 1, - aux_sym_number_token1, - ACTIONS(1462), 1, - aux_sym_number_token2, - ACTIONS(1466), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1478), 1, - sym__brace_start, - ACTIONS(9146), 1, + ACTIONS(10169), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9150), 1, + ACTIONS(10175), 1, anon_sym_DQUOTE, - ACTIONS(9154), 1, + ACTIONS(10177), 1, + anon_sym_SQUOTE, + ACTIONS(10181), 1, + aux_sym_number_token1, + ACTIONS(10183), 1, + aux_sym_number_token2, + ACTIONS(10185), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9156), 1, + ACTIONS(10187), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(10189), 1, anon_sym_BQUOTE, - ACTIONS(9158), 1, + ACTIONS(10191), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9676), 1, + ACTIONS(10197), 1, + sym__brace_start, + ACTIONS(10465), 1, + anon_sym_DOLLAR, + ACTIONS(10795), 1, + sym__special_character, + ACTIONS(11095), 1, sym_word, - ACTIONS(9684), 1, - sym__comment_word, - ACTIONS(9144), 2, + ACTIONS(11097), 1, + sym_ansi_c_string, + ACTIONS(11099), 1, + sym_test_operator, + STATE(6268), 1, + aux_sym__literal_repeat1, + STATE(6451), 1, + sym_concatenation, + ACTIONS(10167), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9160), 2, + ACTIONS(10193), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9680), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9682), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1013), 9, + STATE(6260), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222455] = 18, - ACTIONS(3), 1, + [229756] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3275), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(3281), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(3283), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(3287), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3297), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(9210), 1, + ACTIONS(10021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9214), 1, + ACTIONS(10025), 1, anon_sym_DQUOTE, - ACTIONS(9218), 1, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9220), 1, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(9222), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9688), 1, + ACTIONS(11101), 1, sym_word, - ACTIONS(9696), 1, - sym__comment_word, - ACTIONS(9208), 2, + ACTIONS(11103), 1, + sym__special_character, + ACTIONS(11105), 1, + sym_ansi_c_string, + ACTIONS(11107), 1, + sym_test_operator, + STATE(4469), 1, + aux_sym__literal_repeat1, + STATE(5082), 1, + sym_concatenation, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9224), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9692), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9694), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1799), 9, + STATE(4836), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222523] = 18, + [229831] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3742), 1, - aux_sym_number_token1, - ACTIONS(3744), 1, - aux_sym_number_token2, - ACTIONS(3748), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3758), 1, - sym__brace_start, - ACTIONS(8838), 1, + ACTIONS(113), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8842), 1, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(119), 1, anon_sym_DQUOTE, - ACTIONS(8846), 1, + ACTIONS(121), 1, + anon_sym_SQUOTE, + ACTIONS(125), 1, + aux_sym_number_token1, + ACTIONS(127), 1, + aux_sym_number_token2, + ACTIONS(129), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8848), 1, + ACTIONS(131), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(133), 1, anon_sym_BQUOTE, - ACTIONS(8850), 1, + ACTIONS(135), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10400), 1, + ACTIONS(145), 1, + sym__brace_start, + ACTIONS(10275), 1, sym_word, - ACTIONS(10406), 1, + ACTIONS(10283), 1, sym__comment_word, - ACTIONS(10634), 1, - anon_sym_DOLLAR, - ACTIONS(8836), 2, + ACTIONS(111), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8852), 2, + ACTIONS(137), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10402), 2, + ACTIONS(10279), 2, sym_test_operator, sym__special_character, - ACTIONS(10404), 3, + ACTIONS(10281), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1974), 9, + STATE(482), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222591] = 18, - ACTIONS(3), 1, + [229902] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3848), 1, + ACTIONS(4207), 1, anon_sym_DOLLAR, - ACTIONS(3854), 1, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(3856), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(3860), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3870), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(9700), 1, - sym_word, - ACTIONS(9704), 1, + ACTIONS(10021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9710), 1, + ACTIONS(10025), 1, anon_sym_DQUOTE, - ACTIONS(9714), 1, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9716), 1, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(9718), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9722), 1, - sym__comment_word, - ACTIONS(9702), 2, + ACTIONS(11103), 1, + sym__special_character, + ACTIONS(11109), 1, + sym_word, + ACTIONS(11111), 1, + sym_ansi_c_string, + ACTIONS(11113), 1, + sym_test_operator, + STATE(4482), 1, + aux_sym__literal_repeat1, + STATE(4953), 1, + sym_concatenation, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9708), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9720), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9712), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4704), 9, + STATE(4840), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222659] = 18, + [229977] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3742), 1, + ACTIONS(2658), 1, aux_sym_number_token1, - ACTIONS(3744), 1, + ACTIONS(2660), 1, aux_sym_number_token2, - ACTIONS(3748), 1, + ACTIONS(2664), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3758), 1, + ACTIONS(2674), 1, sym__brace_start, - ACTIONS(8838), 1, + ACTIONS(9753), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8842), 1, + ACTIONS(9757), 1, anon_sym_DQUOTE, - ACTIONS(8846), 1, + ACTIONS(9759), 1, + anon_sym_SQUOTE, + ACTIONS(9763), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8848), 1, + ACTIONS(9765), 1, anon_sym_BQUOTE, - ACTIONS(8850), 1, + ACTIONS(9767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10400), 1, + ACTIONS(10713), 1, sym_word, - ACTIONS(10406), 1, + ACTIONS(10719), 1, sym__comment_word, - ACTIONS(10636), 1, + ACTIONS(11115), 1, anon_sym_DOLLAR, - ACTIONS(8836), 2, + ACTIONS(9751), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8852), 2, + ACTIONS(9769), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10402), 2, + ACTIONS(10715), 2, sym_test_operator, sym__special_character, - ACTIONS(10404), 3, + ACTIONS(10717), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1974), 9, + STATE(4411), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222727] = 18, + [230048] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(2812), 1, - anon_sym_DOLLAR, - ACTIONS(2818), 1, - aux_sym_number_token1, - ACTIONS(2820), 1, - aux_sym_number_token2, - ACTIONS(2824), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(2834), 1, - sym__brace_start, - ACTIONS(9244), 1, + ACTIONS(2688), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9248), 1, + ACTIONS(2694), 1, anon_sym_DQUOTE, - ACTIONS(9252), 1, + ACTIONS(2696), 1, + anon_sym_SQUOTE, + ACTIONS(2700), 1, + aux_sym_number_token1, + ACTIONS(2702), 1, + aux_sym_number_token2, + ACTIONS(2704), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9254), 1, + ACTIONS(2706), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(2708), 1, anon_sym_BQUOTE, - ACTIONS(9256), 1, + ACTIONS(2710), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9746), 1, + ACTIONS(2718), 1, + sym__brace_start, + ACTIONS(10683), 1, sym_word, - ACTIONS(9754), 1, + ACTIONS(10691), 1, sym__comment_word, - ACTIONS(9242), 2, + ACTIONS(11117), 1, + anon_sym_DOLLAR, + ACTIONS(2682), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9258), 2, + ACTIONS(2712), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9750), 2, + ACTIONS(10687), 2, sym_test_operator, sym__special_character, - ACTIONS(9752), 3, + ACTIONS(10689), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(1678), 9, + STATE(2350), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222795] = 18, + [230119] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(3350), 1, - anon_sym_DOLLAR, - ACTIONS(3356), 1, + ACTIONS(2424), 1, aux_sym_number_token1, - ACTIONS(3358), 1, + ACTIONS(2426), 1, aux_sym_number_token2, - ACTIONS(3362), 1, + ACTIONS(2430), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3372), 1, + ACTIONS(2440), 1, sym__brace_start, - ACTIONS(9758), 1, - sym_word, - ACTIONS(9762), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9768), 1, - anon_sym_DQUOTE, - ACTIONS(9772), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, - anon_sym_BQUOTE, - ACTIONS(9776), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9780), 1, - sym__comment_word, - ACTIONS(9760), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9766), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9778), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9770), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4467), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [222863] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8166), 1, + ACTIONS(9459), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(8168), 1, - anon_sym_DOLLAR, - ACTIONS(8172), 1, + ACTIONS(9463), 1, anon_sym_DQUOTE, - ACTIONS(8176), 1, - aux_sym_number_token1, - ACTIONS(8178), 1, - aux_sym_number_token2, - ACTIONS(8180), 1, + ACTIONS(9465), 1, + anon_sym_SQUOTE, + ACTIONS(9469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8182), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8184), 1, + ACTIONS(9471), 1, anon_sym_BQUOTE, - ACTIONS(8186), 1, + ACTIONS(9473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8196), 1, - sym__brace_start, - ACTIONS(9794), 1, + ACTIONS(10667), 1, sym_word, - ACTIONS(9802), 1, + ACTIONS(10673), 1, sym__comment_word, - ACTIONS(8162), 2, + ACTIONS(11119), 1, + anon_sym_DOLLAR, + ACTIONS(9457), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8188), 2, + ACTIONS(9475), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9798), 2, + ACTIONS(10669), 2, sym_test_operator, sym__special_character, - ACTIONS(9800), 3, + ACTIONS(10671), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4487), 9, + STATE(1429), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222931] = 18, + [230190] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, + ACTIONS(4207), 1, + anon_sym_DOLLAR, + ACTIONS(4215), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(4217), 1, aux_sym_number_token2, - ACTIONS(4086), 1, + ACTIONS(4221), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, + ACTIONS(4231), 1, sym__brace_start, - ACTIONS(9982), 1, - sym_word, - ACTIONS(9986), 1, + ACTIONS(10021), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(10025), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(10027), 1, + anon_sym_SQUOTE, + ACTIONS(10031), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10004), 1, + ACTIONS(10145), 1, + sym_word, + ACTIONS(10153), 1, sym__comment_word, - ACTIONS(10638), 1, - anon_sym_DOLLAR, - ACTIONS(9984), 2, + ACTIONS(10019), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9990), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10002), 2, + ACTIONS(10037), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9994), 3, + ACTIONS(10149), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10151), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4446), 9, + STATE(4478), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [222999] = 18, + [230261] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4080), 1, - aux_sym_number_token1, - ACTIONS(4082), 1, - aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9982), 1, - sym_word, - ACTIONS(9986), 1, + ACTIONS(5378), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(5384), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(5386), 1, + anon_sym_SQUOTE, + ACTIONS(5390), 1, + aux_sym_number_token1, + ACTIONS(5392), 1, + aux_sym_number_token2, + ACTIONS(5394), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(5396), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(5398), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(5400), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10004), 1, + ACTIONS(5406), 1, + sym__brace_start, + ACTIONS(10467), 1, + sym_word, + ACTIONS(10473), 1, sym__comment_word, - ACTIONS(10640), 1, + ACTIONS(11121), 1, anon_sym_DOLLAR, - ACTIONS(9984), 2, + ACTIONS(5376), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9990), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10002), 2, + ACTIONS(5402), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(9994), 3, + ACTIONS(10469), 2, + sym_test_operator, + sym__special_character, + ACTIONS(10471), 2, sym__bare_dollar, - sym_raw_string, sym_ansi_c_string, - STATE(4446), 9, + STATE(5515), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [223067] = 18, - ACTIONS(3), 1, + [230332] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(3707), 1, + anon_sym_DOLLAR, + ACTIONS(3715), 1, aux_sym_number_token1, - ACTIONS(3173), 1, + ACTIONS(3717), 1, aux_sym_number_token2, - ACTIONS(3177), 1, + ACTIONS(3721), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3187), 1, + ACTIONS(3731), 1, sym__brace_start, - ACTIONS(9176), 1, + ACTIONS(9705), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(9180), 1, + ACTIONS(9709), 1, anon_sym_DQUOTE, - ACTIONS(9184), 1, + ACTIONS(9711), 1, + anon_sym_SQUOTE, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9186), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(9188), 1, + ACTIONS(9719), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10436), 1, + ACTIONS(9899), 1, + sym__special_character, + ACTIONS(11123), 1, sym_word, - ACTIONS(10442), 1, - sym__comment_word, - ACTIONS(10642), 1, - anon_sym_DOLLAR, - ACTIONS(9174), 2, + ACTIONS(11125), 1, + sym_ansi_c_string, + ACTIONS(11127), 1, + sym_test_operator, + STATE(4376), 1, + aux_sym__literal_repeat1, + STATE(4666), 1, + sym_concatenation, + ACTIONS(9703), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9190), 2, + ACTIONS(9721), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(10438), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10440), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1733), 9, + STATE(4632), 10, sym_arithmetic_expansion, sym_brace_expression, sym_string, sym_translated_string, + sym_raw_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, sym_process_substitution, - [223135] = 21, - ACTIONS(71), 1, + [230407] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(3268), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10644), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2940), 9, + STATE(2830), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -263935,50 +270654,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [223209] = 21, - ACTIONS(71), 1, + [230481] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(3272), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(10646), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3314), 9, + STATE(2877), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -263988,100 +270707,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [223283] = 18, - ACTIONS(3), 1, + [230555] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3171), 1, + ACTIONS(3793), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3795), 1, + sym_variable_name, + ACTIONS(11155), 1, + anon_sym_LPAREN, + ACTIONS(11157), 1, + anon_sym_BANG, + ACTIONS(11163), 1, + anon_sym_TILDE, + ACTIONS(11165), 1, + anon_sym_DOLLAR, + ACTIONS(11167), 1, + anon_sym_DQUOTE, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(3173), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(3177), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3187), 1, - sym__brace_start, - ACTIONS(9176), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9180), 1, - anon_sym_DQUOTE, - ACTIONS(9184), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9186), 1, + ACTIONS(11175), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9188), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10436), 1, - sym_word, - ACTIONS(10442), 1, - sym__comment_word, - ACTIONS(10648), 1, - anon_sym_DOLLAR, - ACTIONS(9174), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9190), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10438), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10440), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1733), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(3332), 1, + sym__arithmetic_binary_expression, + STATE(3336), 1, + sym__arithmetic_ternary_expression, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11161), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3476), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [223351] = 21, - ACTIONS(71), 1, + [230629] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3795), 1, sym_variable_name, - ACTIONS(9818), 1, + ACTIONS(11155), 1, anon_sym_LPAREN, - ACTIONS(9820), 1, + ACTIONS(11157), 1, anon_sym_BANG, - ACTIONS(9826), 1, + ACTIONS(11163), 1, anon_sym_TILDE, - ACTIONS(9828), 1, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(9830), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(9832), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(9834), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(9836), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9842), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10650), 1, + ACTIONS(11181), 1, aux_sym__simple_variable_name_token1, - STATE(3375), 1, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(3378), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - STATE(3407), 1, + STATE(3337), 1, sym__arithmetic_unary_expression, - STATE(3409), 1, + STATE(3338), 1, sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, + ACTIONS(11159), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9824), 2, + ACTIONS(11161), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3412), 9, + STATE(3256), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -264091,50 +270813,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [223425] = 21, - ACTIONS(71), 1, + [230703] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10652), 1, + ACTIONS(11183), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3437), 9, + STATE(2809), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -264144,666 +270866,368 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [223499] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3638), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10008), 1, - sym_word, - ACTIONS(10012), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, - anon_sym_DQUOTE, - ACTIONS(10022), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, - anon_sym_BQUOTE, - ACTIONS(10026), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10030), 1, - sym__comment_word, - ACTIONS(10654), 1, - anon_sym_DOLLAR, - ACTIONS(10010), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10016), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10020), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4300), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [223567] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3638), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10008), 1, - sym_word, - ACTIONS(10012), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, - anon_sym_DQUOTE, - ACTIONS(10022), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, - anon_sym_BQUOTE, - ACTIONS(10026), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10030), 1, - sym__comment_word, - ACTIONS(10656), 1, - anon_sym_DOLLAR, - ACTIONS(10010), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10016), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10020), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4300), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [223635] = 20, - ACTIONS(71), 1, + [230777] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8090), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(8096), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(8104), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, - sym__brace_start, - ACTIONS(8264), 1, - sym__special_character, - ACTIONS(10658), 1, - sym_word, - ACTIONS(10662), 1, - sym_test_operator, - STATE(1790), 1, - aux_sym__literal_repeat1, - STATE(1938), 1, - sym_concatenation, - ACTIONS(8086), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10660), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1654), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11185), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2903), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [223707] = 20, - ACTIONS(71), 1, + [230851] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8090), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(8096), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(8104), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, - sym__brace_start, - ACTIONS(8264), 1, - sym__special_character, - ACTIONS(10664), 1, - sym_word, - ACTIONS(10668), 1, - sym_test_operator, - STATE(1795), 1, - aux_sym__literal_repeat1, - STATE(1947), 1, - sym_concatenation, - ACTIONS(8086), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10666), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1664), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11213), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11215), 1, + sym_variable_name, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3254), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [223779] = 20, - ACTIONS(71), 1, + [230925] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4074), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(4080), 1, - aux_sym_number_token1, - ACTIONS(4082), 1, - aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9986), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, - anon_sym_BQUOTE, - ACTIONS(10000), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10670), 1, - sym_word, - ACTIONS(10672), 1, - sym__special_character, - ACTIONS(10676), 1, - sym_test_operator, - STATE(4505), 1, - aux_sym__literal_repeat1, - STATE(4997), 1, - sym_concatenation, - ACTIONS(9984), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10002), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10674), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4800), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [223851] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4074), 1, - anon_sym_DOLLAR, - ACTIONS(4080), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9986), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, - anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, - anon_sym_BQUOTE, - ACTIONS(10000), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10672), 1, - sym__special_character, - ACTIONS(10678), 1, - sym_word, - ACTIONS(10682), 1, - sym_test_operator, - STATE(4527), 1, - aux_sym__literal_repeat1, - STATE(4876), 1, - sym_concatenation, - ACTIONS(9984), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10002), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10680), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4804), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [223923] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3626), 1, - anon_sym_DOLLAR, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3638), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10012), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, - anon_sym_DQUOTE, - ACTIONS(10022), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10684), 1, - sym_word, - ACTIONS(10686), 1, - sym__special_character, - ACTIONS(10690), 1, - sym_test_operator, - STATE(4364), 1, - aux_sym__literal_repeat1, - STATE(4771), 1, - sym_concatenation, - ACTIONS(10010), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10688), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4581), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11217), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3456), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [223995] = 20, - ACTIONS(71), 1, + [230999] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3638), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10012), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, - anon_sym_DQUOTE, - ACTIONS(10022), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, - anon_sym_BQUOTE, - ACTIONS(10026), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10686), 1, - sym__special_character, - ACTIONS(10692), 1, - sym_word, - ACTIONS(10696), 1, - sym_test_operator, - STATE(4340), 1, - aux_sym__literal_repeat1, - STATE(4679), 1, - sym_concatenation, - ACTIONS(10010), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10694), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4583), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [224067] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8573), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8579), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8599), 1, - sym__brace_start, - ACTIONS(10472), 1, - sym_word, - ACTIONS(10478), 1, - sym__comment_word, - ACTIONS(10698), 1, - anon_sym_DOLLAR, - ACTIONS(8569), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8595), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10474), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10476), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5126), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11219), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2793), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [224135] = 20, - ACTIONS(71), 1, + [231073] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1494), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(1500), 1, - aux_sym_number_token1, - ACTIONS(1502), 1, - aux_sym_number_token2, - ACTIONS(1506), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, - sym__brace_start, - ACTIONS(9066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9070), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9074), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, - anon_sym_BQUOTE, - ACTIONS(9078), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9262), 1, - sym__special_character, - ACTIONS(10700), 1, - sym_word, - ACTIONS(10704), 1, - sym_test_operator, - STATE(1453), 1, - aux_sym__literal_repeat1, - STATE(1660), 1, - sym_concatenation, - ACTIONS(9064), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10702), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1281), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [224207] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1494), 1, - anon_sym_DOLLAR, - ACTIONS(1500), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(1506), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, - sym__brace_start, - ACTIONS(9066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9070), 1, - anon_sym_DQUOTE, - ACTIONS(9074), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(11149), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9262), 1, - sym__special_character, - ACTIONS(10706), 1, - sym_word, - ACTIONS(10710), 1, - sym_test_operator, - STATE(1455), 1, - aux_sym__literal_repeat1, - STATE(1671), 1, - sym_concatenation, - ACTIONS(9064), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10708), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1283), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11221), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2870), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [224279] = 18, - ACTIONS(3), 1, + [231147] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8573), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8579), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, + anon_sym_DOLLAR, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(8583), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(8585), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(8587), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8589), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8591), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8599), 1, - sym__brace_start, - ACTIONS(10472), 1, - sym_word, - ACTIONS(10478), 1, - sym__comment_word, - ACTIONS(10712), 1, - anon_sym_DOLLAR, - ACTIONS(8569), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8595), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10474), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10476), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5126), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11223), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2886), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [224347] = 21, - ACTIONS(71), 1, + [231221] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10714), 1, + ACTIONS(11225), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2846), 9, + STATE(2904), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -264813,50 +271237,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [224421] = 21, - ACTIONS(71), 1, + [231295] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10716), 1, + ACTIONS(11227), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3249), 9, + STATE(3262), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -264866,50 +271290,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [224495] = 21, - ACTIONS(71), 1, + [231369] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3602), 1, - sym_variable_name, - ACTIONS(4030), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9818), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9820), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9826), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9828), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9830), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9832), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9834), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9836), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9842), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3375), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11229), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3378), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - STATE(3407), 1, + STATE(3367), 1, sym__arithmetic_unary_expression, - STATE(3409), 1, + STATE(3391), 1, sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9824), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3271), 9, + STATE(3258), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -264919,50 +271343,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [224569] = 21, - ACTIONS(71), 1, + [231443] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10718), 1, + ACTIONS(11231), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3303), 9, + STATE(3453), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -264972,666 +271396,421 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [224643] = 18, - ACTIONS(3), 1, + [231517] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3674), 1, - aux_sym_number_token1, - ACTIONS(3676), 1, - aux_sym_number_token2, - ACTIONS(3680), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3692), 1, - sym__brace_start, - ACTIONS(8984), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8988), 1, - anon_sym_DQUOTE, - ACTIONS(8992), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8994), 1, - anon_sym_BQUOTE, - ACTIONS(8996), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10034), 1, - sym_word, - ACTIONS(10042), 1, - sym__comment_word, - ACTIONS(10720), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(8982), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8998), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10038), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10040), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4640), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [224711] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3674), 1, + ACTIONS(11199), 1, + anon_sym_DQUOTE, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(3676), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(3680), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3692), 1, - sym__brace_start, - ACTIONS(8984), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8988), 1, - anon_sym_DQUOTE, - ACTIONS(8992), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8994), 1, + ACTIONS(11207), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(8996), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10034), 1, - sym_word, - ACTIONS(10042), 1, - sym__comment_word, - ACTIONS(10722), 1, - anon_sym_DOLLAR, - ACTIONS(8982), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8998), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10038), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10040), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4640), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11233), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3295), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [224779] = 18, - ACTIONS(3), 1, + [231591] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(10724), 1, - sym_word, - ACTIONS(10728), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10730), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(10734), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(10738), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(10740), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(10742), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10744), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10746), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(10748), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10752), 1, - sym__comment_word, - ACTIONS(10754), 1, - sym__brace_start, - ACTIONS(10726), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10732), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10750), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10736), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(6232), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11235), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2878), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [224847] = 20, - ACTIONS(71), 1, + [231665] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8090), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, + ACTIONS(3795), 1, + sym_variable_name, + ACTIONS(4120), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11155), 1, + anon_sym_LPAREN, + ACTIONS(11157), 1, + anon_sym_BANG, + ACTIONS(11163), 1, + anon_sym_TILDE, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(8094), 1, - sym__special_character, - ACTIONS(8096), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(8104), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, - sym__brace_start, - ACTIONS(10756), 1, - sym_word, - ACTIONS(10760), 1, - sym_test_operator, - STATE(1790), 1, - aux_sym__literal_repeat1, - STATE(1938), 1, - sym_concatenation, - ACTIONS(8086), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10758), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2330), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(3332), 1, + sym__arithmetic_binary_expression, + STATE(3336), 1, + sym__arithmetic_ternary_expression, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11161), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3349), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [224919] = 20, - ACTIONS(71), 1, + [231739] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8090), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8092), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(8094), 1, - sym__special_character, - ACTIONS(8096), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(8100), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(8102), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(8104), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8106), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8108), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(8110), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8120), 1, - sym__brace_start, - ACTIONS(10762), 1, - sym_word, - ACTIONS(10766), 1, - sym_test_operator, - STATE(1795), 1, - aux_sym__literal_repeat1, - STATE(1947), 1, - sym_concatenation, - ACTIONS(8086), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8112), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10764), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(2333), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11237), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2906), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [224991] = 20, - ACTIONS(71), 1, + [231813] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4074), 1, + ACTIONS(3795), 1, + sym_variable_name, + ACTIONS(4122), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11155), 1, + anon_sym_LPAREN, + ACTIONS(11157), 1, + anon_sym_BANG, + ACTIONS(11163), 1, + anon_sym_TILDE, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(4080), 1, - aux_sym_number_token1, - ACTIONS(4082), 1, - aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9986), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, - anon_sym_BQUOTE, - ACTIONS(10000), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10768), 1, - sym_word, - ACTIONS(10770), 1, - sym__special_character, - ACTIONS(10774), 1, - sym_test_operator, - STATE(4505), 1, - aux_sym__literal_repeat1, - STATE(4997), 1, - sym_concatenation, - ACTIONS(9984), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10002), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10772), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5007), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [225063] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4074), 1, - anon_sym_DOLLAR, - ACTIONS(4080), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(4082), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9986), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, - anon_sym_DQUOTE, - ACTIONS(9996), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, - anon_sym_BQUOTE, - ACTIONS(10000), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10770), 1, - sym__special_character, - ACTIONS(10776), 1, - sym_word, - ACTIONS(10780), 1, - sym_test_operator, - STATE(4527), 1, - aux_sym__literal_repeat1, - STATE(4876), 1, - sym_concatenation, - ACTIONS(9984), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10002), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10778), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5011), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [225135] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3626), 1, - anon_sym_DOLLAR, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3638), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10012), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, - anon_sym_DQUOTE, - ACTIONS(10022), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10782), 1, - sym_word, - ACTIONS(10784), 1, - sym__special_character, - ACTIONS(10788), 1, - sym_test_operator, - STATE(4364), 1, - aux_sym__literal_repeat1, - STATE(4771), 1, - sym_concatenation, - ACTIONS(10010), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10786), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4836), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(3332), 1, + sym__arithmetic_binary_expression, + STATE(3336), 1, + sym__arithmetic_ternary_expression, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11161), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3482), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [225207] = 20, - ACTIONS(71), 1, + [231887] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3638), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10012), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(10022), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, - anon_sym_BQUOTE, - ACTIONS(10026), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10784), 1, - sym__special_character, - ACTIONS(10790), 1, - sym_word, - ACTIONS(10794), 1, - sym_test_operator, - STATE(4340), 1, - aux_sym__literal_repeat1, - STATE(4679), 1, - sym_concatenation, - ACTIONS(10010), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10792), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4838), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [225279] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1494), 1, - anon_sym_DOLLAR, - ACTIONS(1500), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(1502), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(1506), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, - sym__brace_start, - ACTIONS(9066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9070), 1, - anon_sym_DQUOTE, - ACTIONS(9074), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(11207), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9168), 1, - sym__special_character, - ACTIONS(10796), 1, - sym_word, - ACTIONS(10800), 1, - sym_test_operator, - STATE(1453), 1, - aux_sym__literal_repeat1, - STATE(1660), 1, - sym_concatenation, - ACTIONS(9064), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10798), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1927), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11239), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3291), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [225351] = 20, - ACTIONS(71), 1, + [231961] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1494), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(1500), 1, - aux_sym_number_token1, - ACTIONS(1502), 1, - aux_sym_number_token2, - ACTIONS(1506), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(1518), 1, - sym__brace_start, - ACTIONS(9066), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9070), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9074), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, - anon_sym_BQUOTE, - ACTIONS(9078), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(9168), 1, - sym__special_character, - ACTIONS(10802), 1, - sym_word, - ACTIONS(10806), 1, - sym_test_operator, - STATE(1455), 1, - aux_sym__literal_repeat1, - STATE(1671), 1, - sym_concatenation, - ACTIONS(9064), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9080), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10804), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1838), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [225423] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4002), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(4008), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4018), 1, - sym__brace_start, - ACTIONS(8820), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(11207), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10046), 1, - sym_word, - ACTIONS(10054), 1, - sym__comment_word, - ACTIONS(10808), 1, - anon_sym_DOLLAR, - ACTIONS(8818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10050), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10052), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1951), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11241), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3344), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [225491] = 21, - ACTIONS(71), 1, + [232035] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(3552), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + ACTIONS(11243), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2876), 9, + STATE(2888), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -265641,50 +271820,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225565] = 21, - ACTIONS(71), 1, + [232109] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10810), 1, + ACTIONS(11245), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3419), 9, + STATE(3505), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -265694,308 +271873,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [225639] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4002), 1, - aux_sym_number_token1, - ACTIONS(4004), 1, - aux_sym_number_token2, - ACTIONS(4008), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4018), 1, - sym__brace_start, - ACTIONS(8820), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - ACTIONS(8828), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, - anon_sym_BQUOTE, - ACTIONS(8832), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10046), 1, - sym_word, - ACTIONS(10054), 1, - sym__comment_word, - ACTIONS(10812), 1, - anon_sym_DOLLAR, - ACTIONS(8818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10050), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10052), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1951), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [225707] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4074), 1, - anon_sym_DOLLAR, - ACTIONS(4080), 1, - aux_sym_number_token1, - ACTIONS(4082), 1, - aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9986), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, - anon_sym_DQUOTE, - ACTIONS(9996), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, - anon_sym_BQUOTE, - ACTIONS(10000), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10814), 1, - sym_word, - ACTIONS(10816), 1, - sym__special_character, - ACTIONS(10820), 1, - sym_test_operator, - STATE(4505), 1, - aux_sym__literal_repeat1, - STATE(4997), 1, - sym_concatenation, - ACTIONS(9984), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10002), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10818), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4850), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [225779] = 20, - ACTIONS(71), 1, + [232183] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4074), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(4080), 1, - aux_sym_number_token1, - ACTIONS(4082), 1, - aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9986), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, - anon_sym_BQUOTE, - ACTIONS(10000), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10816), 1, - sym__special_character, - ACTIONS(10822), 1, - sym_word, - ACTIONS(10826), 1, - sym_test_operator, - STATE(4527), 1, - aux_sym__literal_repeat1, - STATE(4876), 1, - sym_concatenation, - ACTIONS(9984), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10002), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10824), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4854), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [225851] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3626), 1, - anon_sym_DOLLAR, - ACTIONS(3632), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(3634), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(3638), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10012), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, - anon_sym_DQUOTE, - ACTIONS(10022), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, - anon_sym_BQUOTE, - ACTIONS(10026), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10828), 1, - sym_word, - ACTIONS(10830), 1, - sym__special_character, - ACTIONS(10834), 1, - sym_test_operator, - STATE(4364), 1, - aux_sym__literal_repeat1, - STATE(4771), 1, - sym_concatenation, - ACTIONS(10010), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10832), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4603), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [225923] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3626), 1, - anon_sym_DOLLAR, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3638), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10012), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, - anon_sym_DQUOTE, - ACTIONS(10022), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10830), 1, - sym__special_character, - ACTIONS(10836), 1, - sym_word, - ACTIONS(10840), 1, - sym_test_operator, - STATE(4340), 1, - aux_sym__literal_repeat1, - STATE(4679), 1, - sym_concatenation, - ACTIONS(10010), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10838), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4605), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11247), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3301), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [225995] = 21, - ACTIONS(71), 1, + [232257] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10842), 1, + ACTIONS(11249), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2905), 9, + STATE(2907), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266005,50 +271979,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [226069] = 21, - ACTIONS(71), 1, + [232331] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10844), 1, + ACTIONS(11251), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3200), 9, + STATE(3298), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266058,358 +272032,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [226143] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3038), 1, - aux_sym_number_token1, - ACTIONS(3040), 1, - aux_sym_number_token2, - ACTIONS(3044), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3054), 1, - sym__brace_start, - ACTIONS(8892), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8896), 1, - anon_sym_DQUOTE, - ACTIONS(8900), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, - anon_sym_BQUOTE, - ACTIONS(8904), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10058), 1, - sym_word, - ACTIONS(10066), 1, - sym__comment_word, - ACTIONS(10846), 1, - anon_sym_DOLLAR, - ACTIONS(8890), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8906), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10062), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10064), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1751), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [226211] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3038), 1, - aux_sym_number_token1, - ACTIONS(3040), 1, - aux_sym_number_token2, - ACTIONS(3044), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3054), 1, - sym__brace_start, - ACTIONS(8892), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8896), 1, - anon_sym_DQUOTE, - ACTIONS(8900), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, - anon_sym_BQUOTE, - ACTIONS(8904), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10058), 1, - sym_word, - ACTIONS(10066), 1, - sym__comment_word, - ACTIONS(10848), 1, - anon_sym_DOLLAR, - ACTIONS(8890), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8906), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10062), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10064), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1751), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [226279] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4074), 1, - anon_sym_DOLLAR, - ACTIONS(4080), 1, - aux_sym_number_token1, - ACTIONS(4082), 1, - aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9986), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, - anon_sym_DQUOTE, - ACTIONS(9996), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, - anon_sym_BQUOTE, - ACTIONS(10000), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10850), 1, - sym_word, - ACTIONS(10852), 1, - sym__special_character, - ACTIONS(10856), 1, - sym_test_operator, - STATE(4505), 1, - aux_sym__literal_repeat1, - STATE(4997), 1, - sym_concatenation, - ACTIONS(9984), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10002), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10854), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5394), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [226351] = 20, - ACTIONS(71), 1, + [232405] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4074), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(4080), 1, - aux_sym_number_token1, - ACTIONS(4082), 1, - aux_sym_number_token2, - ACTIONS(4086), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4096), 1, - sym__brace_start, - ACTIONS(9986), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9992), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9996), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, - anon_sym_BQUOTE, - ACTIONS(10000), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10852), 1, - sym__special_character, - ACTIONS(10858), 1, - sym_word, - ACTIONS(10862), 1, - sym_test_operator, - STATE(4527), 1, - aux_sym__literal_repeat1, - STATE(4876), 1, - sym_concatenation, - ACTIONS(9984), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10002), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10860), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5398), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [226423] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3626), 1, - anon_sym_DOLLAR, - ACTIONS(3632), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(3634), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(3638), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10012), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, - anon_sym_DQUOTE, - ACTIONS(10022), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, - anon_sym_BQUOTE, - ACTIONS(10026), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10864), 1, - sym_word, - ACTIONS(10866), 1, - sym__special_character, - ACTIONS(10870), 1, - sym_test_operator, - STATE(4364), 1, - aux_sym__literal_repeat1, - STATE(4771), 1, - sym_concatenation, - ACTIONS(10010), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10868), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5240), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [226495] = 20, - ACTIONS(71), 1, - sym_comment, - ACTIONS(3626), 1, - anon_sym_DOLLAR, - ACTIONS(3632), 1, - aux_sym_number_token1, - ACTIONS(3634), 1, - aux_sym_number_token2, - ACTIONS(3638), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(3648), 1, - sym__brace_start, - ACTIONS(10012), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10018), 1, - anon_sym_DQUOTE, - ACTIONS(10022), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10866), 1, - sym__special_character, - ACTIONS(10872), 1, - sym_word, - ACTIONS(10876), 1, - sym_test_operator, - STATE(4340), 1, - aux_sym__literal_repeat1, - STATE(4679), 1, - sym_concatenation, - ACTIONS(10010), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10028), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10874), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(5242), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11253), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3458), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [226567] = 21, - ACTIONS(71), 1, + [232479] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3795), 1, sym_variable_name, - ACTIONS(3541), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9432), 1, + ACTIONS(11155), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11157), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11163), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + ACTIONS(11255), 1, + aux_sym__simple_variable_name_token1, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11161), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2927), 9, + STATE(3246), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266419,50 +272138,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [226641] = 21, - ACTIONS(71), 1, + [232553] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10878), 1, + ACTIONS(11257), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3227), 9, + STATE(3245), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266472,50 +272191,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [226715] = 21, - ACTIONS(71), 1, + [232627] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10880), 1, + ACTIONS(11259), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2782), 9, + STATE(2908), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266525,50 +272244,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [226789] = 21, - ACTIONS(71), 1, + [232701] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10882), 1, + ACTIONS(11261), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3250), 9, + STATE(3302), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266578,50 +272297,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [226863] = 21, - ACTIONS(71), 1, + [232775] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10884), 1, + ACTIONS(11263), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2785), 9, + STATE(2812), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266631,50 +272350,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [226937] = 21, - ACTIONS(71), 1, + [232849] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(10886), 1, + ACTIONS(11265), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3290), 9, + STATE(2873), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266684,100 +272403,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227011] = 18, - ACTIONS(3), 1, + [232923] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4002), 1, + ACTIONS(3795), 1, + sym_variable_name, + ACTIONS(11155), 1, + anon_sym_LPAREN, + ACTIONS(11157), 1, + anon_sym_BANG, + ACTIONS(11163), 1, + anon_sym_TILDE, + ACTIONS(11165), 1, + anon_sym_DOLLAR, + ACTIONS(11167), 1, + anon_sym_DQUOTE, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(4004), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(4008), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4018), 1, - sym__brace_start, - ACTIONS(8820), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - ACTIONS(8828), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(11175), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10046), 1, - sym_word, - ACTIONS(10054), 1, - sym__comment_word, - ACTIONS(10888), 1, - anon_sym_DOLLAR, - ACTIONS(8818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10050), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10052), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1951), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11267), 1, + aux_sym__simple_variable_name_token1, + STATE(3332), 1, + sym__arithmetic_binary_expression, + STATE(3336), 1, + sym__arithmetic_ternary_expression, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11161), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3252), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [227079] = 21, - ACTIONS(71), 1, + [232997] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10890), 1, + ACTIONS(11269), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2866), 9, + STATE(2889), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266787,50 +272509,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227153] = 21, - ACTIONS(71), 1, + [233071] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(10892), 1, + ACTIONS(11271), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3302), 9, + STATE(2910), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266840,100 +272562,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227227] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4002), 1, - aux_sym_number_token1, - ACTIONS(4004), 1, - aux_sym_number_token2, - ACTIONS(4008), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4018), 1, - sym__brace_start, - ACTIONS(8820), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8824), 1, - anon_sym_DQUOTE, - ACTIONS(8828), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, - anon_sym_BQUOTE, - ACTIONS(8832), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10046), 1, - sym_word, - ACTIONS(10054), 1, - sym__comment_word, - ACTIONS(10894), 1, - anon_sym_DOLLAR, - ACTIONS(8818), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8834), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10050), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10052), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1951), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [227295] = 21, - ACTIONS(71), 1, + [233145] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10896), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11273), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2870), 9, + STATE(3311), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266943,50 +272615,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227369] = 21, - ACTIONS(71), 1, + [233219] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10898), 1, + ACTIONS(11275), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3316), 9, + STATE(3315), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -266996,50 +272668,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227443] = 21, - ACTIONS(71), 1, + [233293] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10900), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11277), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2872), 9, + STATE(3247), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267049,50 +272721,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227517] = 21, - ACTIONS(71), 1, + [233367] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10902), 1, + ACTIONS(11279), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3501), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [233441] = 21, + ACTIONS(73), 1, + sym_comment, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(4126), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, + anon_sym_DOLLAR, + ACTIONS(11141), 1, + anon_sym_DQUOTE, + ACTIONS(11143), 1, + aux_sym_number_token1, + ACTIONS(11145), 1, + aux_sym_number_token2, + ACTIONS(11147), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(11149), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11151), 1, + anon_sym_BQUOTE, + ACTIONS(11153), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3351), 9, + STATE(2819), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267102,50 +272827,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227591] = 21, - ACTIONS(71), 1, + [233515] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10904), 1, + ACTIONS(11281), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2873), 9, + STATE(2912), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267155,50 +272880,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227665] = 21, - ACTIONS(71), 1, + [233589] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10906), 1, + ACTIONS(11283), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3359), 9, + STATE(3314), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267208,50 +272933,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227739] = 21, - ACTIONS(71), 1, + [233663] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10908), 1, + ACTIONS(11285), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2875), 9, + STATE(2879), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267261,50 +272986,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227813] = 21, - ACTIONS(71), 1, + [233737] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10910), 1, + ACTIONS(11287), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3373), 9, + STATE(3464), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267314,50 +273039,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227887] = 21, - ACTIONS(71), 1, + [233811] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10912), 1, + ACTIONS(11289), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2878), 9, + STATE(2868), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267367,50 +273092,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [227961] = 21, - ACTIONS(71), 1, + [233885] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10914), 1, + ACTIONS(11291), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3380), 9, + STATE(3248), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267420,50 +273145,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228035] = 21, - ACTIONS(71), 1, + [233959] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10916), 1, + ACTIONS(11293), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2881), 9, + STATE(2914), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267473,50 +273198,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228109] = 21, - ACTIONS(71), 1, + [234033] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10918), 1, + ACTIONS(11295), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3406), 9, + STATE(3317), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267526,50 +273251,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228183] = 21, - ACTIONS(71), 1, + [234107] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3795), 1, sym_variable_name, - ACTIONS(3556), 1, + ACTIONS(4124), 1, aux_sym__simple_variable_name_token1, - ACTIONS(9432), 1, + ACTIONS(11155), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11157), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11163), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11161), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2824), 9, + STATE(3297), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267579,50 +273304,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228257] = 21, - ACTIONS(71), 1, + [234181] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10920), 1, + ACTIONS(11297), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2883), 9, + STATE(2890), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267632,50 +273357,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228331] = 21, - ACTIONS(71), 1, + [234255] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10922), 1, + ACTIONS(11299), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3408), 9, + STATE(3321), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267685,100 +273410,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228405] = 18, - ACTIONS(3), 1, + [234329] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3038), 1, - aux_sym_number_token1, - ACTIONS(3040), 1, - aux_sym_number_token2, - ACTIONS(3044), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3054), 1, - sym__brace_start, - ACTIONS(8892), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8896), 1, - anon_sym_DQUOTE, - ACTIONS(8900), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, - anon_sym_BQUOTE, - ACTIONS(8904), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10058), 1, - sym_word, - ACTIONS(10066), 1, - sym__comment_word, - ACTIONS(10924), 1, - anon_sym_DOLLAR, - ACTIONS(8890), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8906), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10062), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10064), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1751), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [228473] = 21, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10926), 1, + ACTIONS(11301), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3223), 9, + STATE(3327), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267788,50 +273463,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228547] = 21, - ACTIONS(71), 1, + [234403] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10928), 1, + ACTIONS(11303), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2886), 9, + STATE(2869), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267841,50 +273516,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228621] = 21, - ACTIONS(71), 1, + [234477] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(10930), 1, + ACTIONS(11305), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3413), 9, + STATE(2915), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267894,100 +273569,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228695] = 18, - ACTIONS(3), 1, + [234551] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3038), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, + anon_sym_DOLLAR, + ACTIONS(11199), 1, + anon_sym_DQUOTE, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(3040), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(3044), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3054), 1, - sym__brace_start, - ACTIONS(8892), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8896), 1, - anon_sym_DQUOTE, - ACTIONS(8900), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, + ACTIONS(11207), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(8904), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10058), 1, - sym_word, - ACTIONS(10066), 1, - sym__comment_word, - ACTIONS(10932), 1, - anon_sym_DOLLAR, - ACTIONS(8890), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8906), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10062), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10064), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1751), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11307), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3320), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [228763] = 21, - ACTIONS(71), 1, + [234625] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10934), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11309), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2895), 9, + STATE(3455), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -267997,50 +273675,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228837] = 21, - ACTIONS(71), 1, + [234699] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10936), 1, + ACTIONS(11311), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3420), 9, + STATE(3249), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268050,50 +273728,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228911] = 21, - ACTIONS(71), 1, + [234773] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(3412), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + ACTIONS(11313), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2897), 9, + STATE(2880), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268103,50 +273781,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [228985] = 21, - ACTIONS(71), 1, + [234847] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(10938), 1, + ACTIONS(11315), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3424), 9, + STATE(2891), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268156,50 +273834,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229059] = 21, - ACTIONS(71), 1, + [234921] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10940), 1, + ACTIONS(11317), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2900), 9, + STATE(2917), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268209,50 +273887,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229133] = 21, - ACTIONS(71), 1, + [234995] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10942), 1, + ACTIONS(11319), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3428), 9, + STATE(3323), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268262,50 +273940,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229207] = 21, - ACTIONS(71), 1, + [235069] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10944), 1, + ACTIONS(11321), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2909), 9, + STATE(2806), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268315,50 +273993,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229281] = 21, - ACTIONS(71), 1, + [235143] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10946), 1, + ACTIONS(11323), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3433), 9, + STATE(3365), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268368,50 +274046,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229355] = 21, - ACTIONS(71), 1, + [235217] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3218), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10948), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2911), 9, + STATE(2855), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268421,50 +274099,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229429] = 21, - ACTIONS(71), 1, + [235291] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3795), 1, + sym_variable_name, + ACTIONS(4140), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11155), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11157), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11163), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(10950), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11161), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3436), 9, + STATE(3407), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268474,50 +274152,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229503] = 21, - ACTIONS(71), 1, + [235365] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(3378), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11325), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2919), 9, + STATE(3308), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268527,50 +274205,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229577] = 21, - ACTIONS(71), 1, + [235439] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10952), 1, + ACTIONS(11327), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3439), 9, + STATE(3408), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268580,150 +274258,156 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229651] = 18, - ACTIONS(3), 1, + [235513] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6496), 1, + ACTIONS(3795), 1, + sym_variable_name, + ACTIONS(11155), 1, + anon_sym_LPAREN, + ACTIONS(11157), 1, + anon_sym_BANG, + ACTIONS(11163), 1, + anon_sym_TILDE, + ACTIONS(11165), 1, + anon_sym_DOLLAR, + ACTIONS(11167), 1, + anon_sym_DQUOTE, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(6498), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, + ACTIONS(11175), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(7212), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10526), 1, - sym_word, - ACTIONS(10532), 1, - sym__comment_word, - ACTIONS(10954), 1, - anon_sym_DOLLAR, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10528), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10530), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(6506), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11329), 1, + aux_sym__simple_variable_name_token1, + STATE(3332), 1, + sym__arithmetic_binary_expression, + STATE(3336), 1, + sym__arithmetic_ternary_expression, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11161), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3236), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [229719] = 18, - ACTIONS(3), 1, + [235587] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(10724), 1, - sym_word, - ACTIONS(10728), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10734), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, + anon_sym_DOLLAR, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(10738), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(10740), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(10742), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10744), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10746), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(10748), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10752), 1, - sym__comment_word, - ACTIONS(10754), 1, - sym__brace_start, - ACTIONS(10956), 1, - anon_sym_DOLLAR, - ACTIONS(10726), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10732), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10750), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10736), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(6232), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11331), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2918), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [229787] = 21, - ACTIONS(71), 1, + [235661] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10958), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11333), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2921), 9, + STATE(3351), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268733,50 +274417,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229861] = 21, - ACTIONS(71), 1, + [235735] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10960), 1, + ACTIONS(11335), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3444), 9, + STATE(3326), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268786,100 +274470,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [229935] = 18, - ACTIONS(3), 1, + [235809] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(6496), 1, + ACTIONS(3795), 1, + sym_variable_name, + ACTIONS(11155), 1, + anon_sym_LPAREN, + ACTIONS(11157), 1, + anon_sym_BANG, + ACTIONS(11163), 1, + anon_sym_TILDE, + ACTIONS(11165), 1, + anon_sym_DOLLAR, + ACTIONS(11167), 1, + anon_sym_DQUOTE, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(6498), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(6502), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(6514), 1, - sym__brace_start, - ACTIONS(7200), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7204), 1, - anon_sym_DQUOTE, - ACTIONS(7208), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, + ACTIONS(11175), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(7212), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10526), 1, - sym_word, - ACTIONS(10532), 1, - sym__comment_word, - ACTIONS(10962), 1, - anon_sym_DOLLAR, - ACTIONS(7196), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10528), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10530), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(6506), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11337), 1, + aux_sym__simple_variable_name_token1, + STATE(3332), 1, + sym__arithmetic_binary_expression, + STATE(3336), 1, + sym__arithmetic_ternary_expression, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11161), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3386), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [230003] = 21, - ACTIONS(71), 1, + [235883] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10964), 1, + ACTIONS(11339), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2925), 9, + STATE(2875), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268889,50 +274576,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230077] = 21, - ACTIONS(71), 1, + [235957] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10966), 1, + ACTIONS(11341), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3447), 9, + STATE(3380), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268942,50 +274629,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230151] = 21, - ACTIONS(71), 1, + [236031] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(3232), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10968), 1, - aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2931), 9, + STATE(2919), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -268995,50 +274682,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230225] = 21, - ACTIONS(71), 1, + [236105] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(3609), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(10970), 1, - aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3213), 9, + STATE(2859), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269048,50 +274735,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230299] = 21, - ACTIONS(71), 1, + [236179] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10972), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11343), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2932), 9, + STATE(3354), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269101,50 +274788,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230373] = 21, - ACTIONS(71), 1, + [236253] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(10974), 1, + ACTIONS(11345), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3300), 9, + STATE(2892), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269154,50 +274841,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230447] = 21, - ACTIONS(71), 1, + [236327] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3795), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11155), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11157), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11163), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10976), 1, + ACTIONS(11347), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11161), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2936), 9, + STATE(3237), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269207,50 +274894,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230521] = 21, - ACTIONS(71), 1, + [236401] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10978), 1, + ACTIONS(11349), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3235), 9, + STATE(3379), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269260,50 +274947,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230595] = 21, - ACTIONS(71), 1, + [236475] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10980), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11351), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2738), 9, + STATE(3383), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269313,50 +275000,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230669] = 21, - ACTIONS(71), 1, + [236549] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(10982), 1, + ACTIONS(11353), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3331), 9, + STATE(2814), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269366,50 +275053,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230743] = 21, - ACTIONS(71), 1, + [236623] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10984), 1, + ACTIONS(11355), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2740), 9, + STATE(2920), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269419,50 +275106,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230817] = 21, - ACTIONS(71), 1, + [236697] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(10986), 1, + ACTIONS(11357), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3186), 9, + STATE(3366), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269472,100 +275159,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [230891] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8376), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8382), 1, - anon_sym_DQUOTE, - ACTIONS(8386), 1, - aux_sym_number_token1, - ACTIONS(8388), 1, - aux_sym_number_token2, - ACTIONS(8390), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8392), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, - anon_sym_BQUOTE, - ACTIONS(8396), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(8406), 1, - sym__brace_start, - ACTIONS(10534), 1, - sym_word, - ACTIONS(10540), 1, - sym__comment_word, - ACTIONS(10988), 1, - anon_sym_DOLLAR, - ACTIONS(8372), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8398), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10536), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10538), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2473), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [230959] = 21, - ACTIONS(71), 1, + [236771] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10990), 1, + ACTIONS(11359), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2745), 9, + STATE(2805), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269575,50 +275212,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231033] = 21, - ACTIONS(71), 1, + [236845] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(10992), 1, + ACTIONS(11361), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3224), 9, + STATE(2881), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269628,100 +275265,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231107] = 18, - ACTIONS(3), 1, + [236919] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8376), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8382), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, + anon_sym_DOLLAR, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(8386), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(8388), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(8390), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8392), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8394), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8406), 1, - sym__brace_start, - ACTIONS(10534), 1, - sym_word, - ACTIONS(10540), 1, - sym__comment_word, - ACTIONS(10994), 1, - anon_sym_DOLLAR, - ACTIONS(8372), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8398), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10536), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10538), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2473), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11363), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2795), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [231175] = 21, - ACTIONS(71), 1, + [236993] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10996), 1, + ACTIONS(11365), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2750), 9, + STATE(3316), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269731,50 +275371,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231249] = 21, - ACTIONS(71), 1, + [237067] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(10998), 1, + ACTIONS(11367), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3244), 9, + STATE(2797), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269784,100 +275424,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231323] = 18, - ACTIONS(3), 1, + [237141] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1115), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(1119), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9464), 1, - sym_word, - ACTIONS(9472), 1, - sym__comment_word, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9468), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9470), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2365), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11153), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(11369), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2921), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [231391] = 21, - ACTIONS(71), 1, + [237215] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11000), 1, + ACTIONS(11371), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2754), 9, + STATE(2858), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269887,50 +275530,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231465] = 21, - ACTIONS(71), 1, + [237289] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11002), 1, + ACTIONS(11373), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3269), 9, + STATE(3378), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269940,50 +275583,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231539] = 21, - ACTIONS(71), 1, + [237363] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11004), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11375), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2757), 9, + STATE(3242), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -269993,50 +275636,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231613] = 21, - ACTIONS(71), 1, + [237437] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11006), 1, + ACTIONS(11377), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3294), 9, + STATE(3310), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270046,50 +275689,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231687] = 21, - ACTIONS(71), 1, + [237511] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11008), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11379), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2758), 9, + STATE(3443), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270099,50 +275742,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231761] = 21, - ACTIONS(71), 1, + [237585] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(11010), 1, + ACTIONS(11381), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3306), 9, + STATE(2893), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270152,100 +275795,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231835] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10724), 1, - sym_word, - ACTIONS(10728), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10734), 1, - anon_sym_DQUOTE, - ACTIONS(10738), 1, - aux_sym_number_token1, - ACTIONS(10740), 1, - aux_sym_number_token2, - ACTIONS(10742), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10744), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(10746), 1, - anon_sym_BQUOTE, - ACTIONS(10748), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10752), 1, - sym__comment_word, - ACTIONS(10754), 1, - sym__brace_start, - ACTIONS(11012), 1, - anon_sym_DOLLAR, - ACTIONS(10726), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10732), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10750), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10736), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(6232), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [231903] = 21, - ACTIONS(71), 1, + [237659] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11014), 1, + ACTIONS(11383), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2760), 9, + STATE(2810), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270255,50 +275848,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [231977] = 21, - ACTIONS(71), 1, + [237733] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11016), 1, + ACTIONS(11385), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3330), 9, + STATE(3404), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270308,50 +275901,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232051] = 21, - ACTIONS(71), 1, + [237807] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11018), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11387), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2763), 9, + STATE(3377), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270361,50 +275954,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232125] = 21, - ACTIONS(71), 1, + [237881] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(11020), 1, + ACTIONS(11389), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3369), 9, + STATE(2808), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270414,100 +276007,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232199] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4775), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4781), 1, - anon_sym_DQUOTE, - ACTIONS(4785), 1, - aux_sym_number_token1, - ACTIONS(4787), 1, - aux_sym_number_token2, - ACTIONS(4789), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4791), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4793), 1, - anon_sym_BQUOTE, - ACTIONS(4795), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4801), 1, - sym__brace_start, - ACTIONS(10542), 1, - sym_word, - ACTIONS(10548), 1, - sym__comment_word, - ACTIONS(11022), 1, - anon_sym_DOLLAR, - ACTIONS(4773), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4797), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10544), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10546), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [232267] = 21, - ACTIONS(71), 1, + [237955] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11024), 1, + ACTIONS(11391), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2764), 9, + STATE(2923), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270517,50 +276060,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232341] = 21, - ACTIONS(71), 1, + [238029] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11026), 1, + ACTIONS(11393), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3405), 9, + STATE(3232), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270570,100 +276113,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232415] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4775), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4781), 1, - anon_sym_DQUOTE, - ACTIONS(4785), 1, - aux_sym_number_token1, - ACTIONS(4787), 1, - aux_sym_number_token2, - ACTIONS(4789), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4791), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4793), 1, - anon_sym_BQUOTE, - ACTIONS(4795), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4801), 1, - sym__brace_start, - ACTIONS(10542), 1, - sym_word, - ACTIONS(10548), 1, - sym__comment_word, - ACTIONS(11028), 1, - anon_sym_DOLLAR, - ACTIONS(4773), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4797), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10544), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10546), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2599), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [232483] = 21, - ACTIONS(71), 1, + [238103] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11030), 1, + ACTIONS(11395), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2770), 9, + STATE(2871), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270673,50 +276166,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232557] = 21, - ACTIONS(71), 1, + [238177] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(11032), 1, + ACTIONS(11397), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3418), 9, + STATE(2901), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270726,50 +276219,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232631] = 21, - ACTIONS(71), 1, + [238251] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11034), 1, + ACTIONS(11399), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2774), 9, + STATE(2894), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270779,50 +276272,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232705] = 21, - ACTIONS(71), 1, + [238325] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11036), 1, + ACTIONS(11401), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3168), 9, + STATE(3415), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270832,50 +276325,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232779] = 21, - ACTIONS(71), 1, + [238399] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11038), 1, + ACTIONS(11403), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2777), 9, + STATE(2924), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270885,50 +276378,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232853] = 21, - ACTIONS(71), 1, + [238473] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11040), 1, + ACTIONS(11405), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3171), 9, + STATE(3385), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270938,50 +276431,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [232927] = 21, - ACTIONS(71), 1, + [238547] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11042), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11407), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2778), 9, + STATE(3306), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -270991,50 +276484,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233001] = 21, - ACTIONS(71), 1, + [238621] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11044), 1, + ACTIONS(11409), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3176), 9, + STATE(3469), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271044,50 +276537,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233075] = 21, - ACTIONS(71), 1, + [238695] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3121), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(3815), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2779), 9, + STATE(2909), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271097,50 +276590,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233149] = 21, - ACTIONS(71), 1, + [238769] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11046), 1, + ACTIONS(11411), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3183), 9, + STATE(3452), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271150,50 +276643,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233223] = 21, - ACTIONS(71), 1, + [238843] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11048), 1, + ACTIONS(11413), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2783), 9, + STATE(2925), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271203,50 +276696,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233297] = 21, - ACTIONS(71), 1, + [238917] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11050), 1, + ACTIONS(11415), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3194), 9, + STATE(3398), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271256,50 +276749,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233371] = 21, - ACTIONS(71), 1, + [238991] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11052), 1, + ACTIONS(11417), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2786), 9, + STATE(2896), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271309,50 +276802,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233445] = 21, - ACTIONS(71), 1, + [239065] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11054), 1, + ACTIONS(11419), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3199), 9, + STATE(3457), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271362,152 +276855,156 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233519] = 18, - ACTIONS(3), 1, + [239139] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(5117), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5123), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, + anon_sym_DOLLAR, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(5127), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(5129), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(5131), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5133), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5135), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(5137), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5143), 1, - sym__brace_start, - ACTIONS(10552), 1, - sym_word, - ACTIONS(10558), 1, - sym__comment_word, - ACTIONS(11056), 1, - anon_sym_DOLLAR, - ACTIONS(5115), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5139), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10554), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10556), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5433), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11421), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3441), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [233587] = 20, - ACTIONS(71), 1, + [239213] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8414), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8416), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(8418), 1, - sym__special_character, - ACTIONS(8420), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(8424), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(8426), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(8428), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8430), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8432), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(8434), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8444), 1, - sym__brace_start, - ACTIONS(11058), 1, - sym_word, - ACTIONS(11062), 1, - sym_test_operator, - STATE(1895), 1, - aux_sym__literal_repeat1, - STATE(2195), 1, - sym_concatenation, - ACTIONS(8410), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8436), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11060), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(1449), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11423), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3329), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [233659] = 21, - ACTIONS(71), 1, + [239287] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11064), 1, + ACTIONS(11425), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2790), 9, + STATE(2926), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271517,50 +277014,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233733] = 21, - ACTIONS(71), 1, + [239361] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11066), 1, + ACTIONS(11427), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3206), 9, + STATE(3402), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271570,100 +277067,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233807] = 18, - ACTIONS(3), 1, + [239435] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(5117), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5123), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, + anon_sym_DOLLAR, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(5127), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(5129), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(5131), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5133), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5135), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(5137), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5143), 1, - sym__brace_start, - ACTIONS(10552), 1, - sym_word, - ACTIONS(10558), 1, - sym__comment_word, - ACTIONS(11068), 1, - anon_sym_DOLLAR, - ACTIONS(5115), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5139), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10554), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10556), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5433), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11429), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2860), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [233875] = 21, - ACTIONS(71), 1, + [239509] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11070), 1, + ACTIONS(11431), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2793), 9, + STATE(2882), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271673,50 +277173,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [233949] = 21, - ACTIONS(71), 1, + [239583] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11072), 1, + ACTIONS(11433), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3211), 9, + STATE(3370), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271726,50 +277226,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234023] = 21, - ACTIONS(71), 1, + [239657] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3795), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11155), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11157), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11163), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11074), 1, + ACTIONS(11435), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11161), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2795), 9, + STATE(3257), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271779,50 +277279,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234097] = 21, - ACTIONS(71), 1, + [239731] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(11076), 1, + ACTIONS(11437), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3216), 9, + STATE(2897), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271832,102 +277332,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234171] = 20, - ACTIONS(71), 1, + [239805] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(10728), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10730), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(10734), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(10738), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(10740), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(10742), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10744), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10746), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(10748), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10754), 1, - sym__brace_start, - ACTIONS(11078), 1, - sym_word, - ACTIONS(11080), 1, - sym__special_character, - ACTIONS(11084), 1, - sym_test_operator, - STATE(6213), 1, - aux_sym__literal_repeat1, - STATE(6397), 1, - sym_concatenation, - ACTIONS(10726), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10750), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11082), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6202), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11439), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3461), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [234243] = 21, - ACTIONS(71), 1, + [239879] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11086), 1, + ACTIONS(11441), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2801), 9, + STATE(2927), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271937,50 +277438,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234317] = 21, - ACTIONS(71), 1, + [239953] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11088), 1, + ACTIONS(11443), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3218), 9, + STATE(3406), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -271990,50 +277491,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234391] = 21, - ACTIONS(71), 1, + [240027] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11090), 1, + ACTIONS(11445), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2804), 9, + STATE(2813), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272043,50 +277544,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234465] = 21, - ACTIONS(71), 1, + [240101] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3795), 1, + sym_variable_name, + ACTIONS(11155), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11157), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11163), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(11092), 1, + ACTIONS(11447), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11161), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3221), 9, + STATE(3261), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272096,50 +277597,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234539] = 21, - ACTIONS(71), 1, + [240175] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11094), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11449), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2805), 9, + STATE(3483), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272149,50 +277650,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234613] = 21, - ACTIONS(71), 1, + [240249] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11096), 1, + ACTIONS(11451), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3222), 9, + STATE(3421), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272202,50 +277703,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234687] = 21, - ACTIONS(71), 1, + [240323] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11098), 1, + ACTIONS(11453), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2806), 9, + STATE(2811), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272255,50 +277756,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234761] = 21, - ACTIONS(71), 1, + [240397] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(11100), 1, + ACTIONS(11455), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3226), 9, + STATE(2928), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272308,100 +277809,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234835] = 18, - ACTIONS(3), 1, + [240471] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4607), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, + anon_sym_DOLLAR, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(4611), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(4613), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(4615), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4617), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4619), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(4621), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4627), 1, - sym__brace_start, - ACTIONS(10562), 1, - sym_word, - ACTIONS(10568), 1, - sym__comment_word, - ACTIONS(11102), 1, - anon_sym_DOLLAR, - ACTIONS(4599), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4623), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10564), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10566), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2527), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11457), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3411), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [234903] = 21, - ACTIONS(71), 1, + [240545] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11104), 1, + ACTIONS(11459), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2810), 9, + STATE(2861), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272411,50 +277915,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [234977] = 21, - ACTIONS(71), 1, + [240619] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11106), 1, + ACTIONS(11461), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3229), 9, + STATE(3387), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272464,100 +277968,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235051] = 18, - ACTIONS(3), 1, + [240693] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4601), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4607), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, + anon_sym_DOLLAR, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(4611), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(4613), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(4615), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4617), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4619), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(4621), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4627), 1, - sym__brace_start, - ACTIONS(10562), 1, - sym_word, - ACTIONS(10568), 1, - sym__comment_word, - ACTIONS(11108), 1, - anon_sym_DOLLAR, - ACTIONS(4599), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4623), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10564), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10566), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2527), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11463), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3424), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [235119] = 21, - ACTIONS(71), 1, + [240767] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11110), 1, + ACTIONS(11465), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2814), 9, + STATE(2898), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272567,50 +278074,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235193] = 21, - ACTIONS(71), 1, + [240841] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11112), 1, + ACTIONS(11467), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3232), 9, + STATE(3468), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272620,50 +278127,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235267] = 21, - ACTIONS(71), 1, + [240915] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11114), 1, + ACTIONS(11469), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2816), 9, + STATE(2876), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272673,50 +278180,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235341] = 21, - ACTIONS(71), 1, + [240989] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(11116), 1, + ACTIONS(11471), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3237), 9, + STATE(2862), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272726,50 +278233,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235415] = 21, - ACTIONS(71), 1, + [241063] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3795), 1, sym_variable_name, - ACTIONS(3485), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9432), 1, + ACTIONS(11155), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11157), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11163), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + ACTIONS(11473), 1, + aux_sym__simple_variable_name_token1, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11161), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2817), 9, + STATE(3239), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272779,50 +278286,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235489] = 21, - ACTIONS(71), 1, + [241137] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11118), 1, + ACTIONS(11475), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3240), 9, + STATE(3392), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272832,50 +278339,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235563] = 21, - ACTIONS(71), 1, + [241211] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11120), 1, + ACTIONS(11477), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2821), 9, + STATE(2929), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272885,50 +278392,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235637] = 21, - ACTIONS(71), 1, + [241285] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11122), 1, + ACTIONS(11479), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3248), 9, + STATE(3417), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272938,50 +278445,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235711] = 21, - ACTIONS(71), 1, + [241359] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11124), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11481), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2826), 9, + STATE(3253), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -272991,50 +278498,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235785] = 21, - ACTIONS(71), 1, + [241433] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(11126), 1, + ACTIONS(11483), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3253), 9, + STATE(2986), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273044,50 +278551,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235859] = 21, - ACTIONS(71), 1, + [241507] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11128), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11485), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2829), 9, + STATE(3251), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273097,50 +278604,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [235933] = 21, - ACTIONS(71), 1, + [241581] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(11130), 1, + ACTIONS(11487), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3255), 9, + STATE(3000), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273150,100 +278657,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236007] = 18, - ACTIONS(3), 1, + [241655] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4807), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4813), 1, + ACTIONS(3795), 1, + sym_variable_name, + ACTIONS(11155), 1, + anon_sym_LPAREN, + ACTIONS(11157), 1, + anon_sym_BANG, + ACTIONS(11163), 1, + anon_sym_TILDE, + ACTIONS(11165), 1, + anon_sym_DOLLAR, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(4817), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(4819), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(4821), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4823), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4825), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(4827), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4833), 1, - sym__brace_start, - ACTIONS(10570), 1, - sym_word, - ACTIONS(10576), 1, - sym__comment_word, - ACTIONS(11132), 1, - anon_sym_DOLLAR, - ACTIONS(4805), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4829), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10572), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10574), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5347), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11489), 1, + aux_sym__simple_variable_name_token1, + STATE(3332), 1, + sym__arithmetic_binary_expression, + STATE(3336), 1, + sym__arithmetic_ternary_expression, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11161), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3240), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [236075] = 21, - ACTIONS(71), 1, + [241729] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3795), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11155), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11157), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11163), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11134), 1, + ACTIONS(11491), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11161), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2830), 9, + STATE(3241), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273253,50 +278763,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236149] = 21, - ACTIONS(71), 1, + [241803] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(11136), 1, + ACTIONS(11493), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3258), 9, + STATE(3036), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273306,100 +278816,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236223] = 18, - ACTIONS(3), 1, + [241877] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(4807), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4813), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, + anon_sym_DOLLAR, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(4817), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(4819), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(4821), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4823), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(4825), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(4827), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(4833), 1, - sym__brace_start, - ACTIONS(10570), 1, - sym_word, - ACTIONS(10576), 1, - sym__comment_word, - ACTIONS(11138), 1, - anon_sym_DOLLAR, - ACTIONS(4805), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4829), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10572), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10574), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5347), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11495), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2930), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [236291] = 21, - ACTIONS(71), 1, + [241951] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3795), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11155), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11157), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11163), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11140), 1, + ACTIONS(11497), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11161), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2831), 9, + STATE(3255), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273409,50 +278922,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236365] = 21, - ACTIONS(71), 1, + [242025] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(11142), 1, + ACTIONS(11499), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3261), 9, + STATE(2790), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273462,50 +278975,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236439] = 21, - ACTIONS(71), 1, + [242099] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11144), 1, + ACTIONS(11501), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2839), 9, + STATE(2863), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273515,50 +279028,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236513] = 21, - ACTIONS(71), 1, + [242173] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11146), 1, + ACTIONS(11503), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3264), 9, + STATE(3420), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273568,50 +279081,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236587] = 21, - ACTIONS(71), 1, + [242247] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11148), 1, + ACTIONS(11505), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2840), 9, + STATE(2792), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273621,50 +279134,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236661] = 21, - ACTIONS(71), 1, + [242321] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(11150), 1, + ACTIONS(11507), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3268), 9, + STATE(2791), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273674,50 +279187,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236735] = 21, - ACTIONS(71), 1, + [242395] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11152), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11509), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2850), 9, + STATE(3389), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273727,50 +279240,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236809] = 21, - ACTIONS(71), 1, + [242469] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11154), 1, + ACTIONS(11511), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3273), 9, + STATE(3397), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273780,50 +279293,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236883] = 21, - ACTIONS(71), 1, + [242543] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11156), 1, + ACTIONS(11513), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2853), 9, + STATE(2848), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273833,50 +279346,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [236957] = 21, - ACTIONS(71), 1, + [242617] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11158), 1, + ACTIONS(11515), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3275), 9, + STATE(3463), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273886,50 +279399,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [237031] = 21, - ACTIONS(71), 1, + [242691] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11160), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11517), 1, aux_sym__simple_variable_name_token1, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2855), 9, + STATE(3382), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273939,50 +279452,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [237105] = 21, - ACTIONS(71), 1, + [242765] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11162), 1, + ACTIONS(11519), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3285), 9, + STATE(3396), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -273992,352 +279505,368 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [237179] = 18, - ACTIONS(3), 1, + [242839] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, + anon_sym_DOLLAR, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(10070), 1, - sym_word, - ACTIONS(10078), 1, - sym__comment_word, - ACTIONS(11164), 1, - anon_sym_DOLLAR, - ACTIONS(7954), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10074), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10076), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4322), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11521), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3471), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [237247] = 18, - ACTIONS(3), 1, + [242913] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(7958), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(7964), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, + anon_sym_DOLLAR, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(7968), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(7970), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(7972), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7974), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(7976), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7988), 1, - sym__brace_start, - ACTIONS(10070), 1, - sym_word, - ACTIONS(10078), 1, - sym__comment_word, - ACTIONS(11166), 1, - anon_sym_DOLLAR, - ACTIONS(7954), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(7980), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10074), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10076), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(4322), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11523), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3403), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [237315] = 18, - ACTIONS(3), 1, + [242987] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8128), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8134), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, + anon_sym_DOLLAR, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(8138), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(8140), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(8142), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8144), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8146), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(8148), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8158), 1, - sym__brace_start, - ACTIONS(10580), 1, - sym_word, - ACTIONS(10586), 1, - sym__comment_word, - ACTIONS(11168), 1, - anon_sym_DOLLAR, - ACTIONS(8124), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8150), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10582), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10584), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5450), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11525), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2883), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [237383] = 18, - ACTIONS(3), 1, + [243061] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(8128), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(8134), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, + anon_sym_DOLLAR, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(8138), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(8140), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(8142), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8144), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(8146), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(8148), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(8158), 1, - sym__brace_start, - ACTIONS(10580), 1, - sym_word, - ACTIONS(10586), 1, - sym__comment_word, - ACTIONS(11170), 1, - anon_sym_DOLLAR, - ACTIONS(8124), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(8150), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10582), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10584), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5450), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11527), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3459), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [237451] = 18, - ACTIONS(3), 1, + [243135] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(191), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(193), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(3807), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(197), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(201), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(203), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(205), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(207), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(209), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(221), 1, - sym__brace_start, - ACTIONS(11172), 1, - sym_word, - ACTIONS(11178), 1, - sym__comment_word, - ACTIONS(189), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(213), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11174), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11176), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(510), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2895), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [237519] = 20, - ACTIONS(71), 1, + [243209] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(10728), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10730), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(10734), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(10738), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(10740), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(10742), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10744), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10746), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(10748), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10754), 1, - sym__brace_start, - ACTIONS(11080), 1, - sym__special_character, - ACTIONS(11180), 1, - sym_word, - ACTIONS(11184), 1, - sym_test_operator, - STATE(6220), 1, - aux_sym__literal_repeat1, - STATE(6369), 1, - sym_concatenation, - ACTIONS(10726), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10750), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11182), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6204), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11529), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2865), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [237591] = 21, - ACTIONS(71), 1, + [243283] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11186), 1, + ACTIONS(11531), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3382), 9, + STATE(3405), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -274347,50 +279876,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [237665] = 21, - ACTIONS(71), 1, + [243357] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, + ACTIONS(11215), 1, sym_variable_name, - ACTIONS(11188), 1, + ACTIONS(11533), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, - sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3384), 9, + STATE(3325), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -274400,50 +279929,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [237739] = 21, - ACTIONS(71), 1, + [243431] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9340), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9346), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9348), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9350), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9352), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9354), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9356), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(9366), 1, - sym_variable_name, - ACTIONS(11190), 1, + ACTIONS(11535), 1, aux_sym__simple_variable_name_token1, - STATE(3173), 1, - sym__arithmetic_unary_expression, - STATE(3180), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(3376), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(3438), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9342), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9344), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3385), 9, + STATE(2867), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -274453,200 +279982,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [237813] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5621), 1, - aux_sym_number_token1, - ACTIONS(5623), 1, - aux_sym_number_token2, - ACTIONS(5627), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5637), 1, - sym__brace_start, - ACTIONS(9008), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9012), 1, - anon_sym_DQUOTE, - ACTIONS(9016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9018), 1, - anon_sym_BQUOTE, - ACTIONS(9020), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10588), 1, - sym_word, - ACTIONS(10594), 1, - sym__comment_word, - ACTIONS(11192), 1, - anon_sym_DOLLAR, - ACTIONS(9006), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10590), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10592), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3431), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [237881] = 18, - ACTIONS(3), 1, + [243505] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(49), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(53), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, - anon_sym_BQUOTE, - ACTIONS(67), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(9894), 1, - sym_word, - ACTIONS(9902), 1, - sym__comment_word, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9898), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9900), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1058), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [237949] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5621), 1, - aux_sym_number_token1, - ACTIONS(5623), 1, - aux_sym_number_token2, - ACTIONS(5627), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5637), 1, - sym__brace_start, - ACTIONS(9008), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9012), 1, - anon_sym_DQUOTE, - ACTIONS(9016), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9018), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9020), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10588), 1, - sym_word, - ACTIONS(10594), 1, - sym__comment_word, - ACTIONS(11194), 1, - anon_sym_DOLLAR, - ACTIONS(9006), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9022), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10590), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10592), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(3431), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11537), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3324), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [238017] = 21, - ACTIONS(71), 1, + [243579] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3602), 1, + ACTIONS(3795), 1, sym_variable_name, - ACTIONS(3618), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9818), 1, + ACTIONS(11155), 1, anon_sym_LPAREN, - ACTIONS(9820), 1, + ACTIONS(11157), 1, anon_sym_BANG, - ACTIONS(9826), 1, + ACTIONS(11163), 1, anon_sym_TILDE, - ACTIONS(9828), 1, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(9830), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(9832), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(9834), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(9836), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9842), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3375), 1, + ACTIONS(11539), 1, + aux_sym__simple_variable_name_token1, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(3378), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - STATE(3407), 1, + STATE(3337), 1, sym__arithmetic_unary_expression, - STATE(3409), 1, + STATE(3338), 1, sym__arithmetic_postfix_expression, - ACTIONS(9822), 2, + ACTIONS(11159), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9824), 2, + ACTIONS(11161), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(3267), 9, + STATE(3243), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -274656,50 +280088,50 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [238091] = 21, - ACTIONS(71), 1, + [243653] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3220), 1, sym_variable_name, - ACTIONS(3718), 1, + ACTIONS(3222), 1, aux_sym__simple_variable_name_token1, - ACTIONS(9432), 1, + ACTIONS(11129), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11131), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11137), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, + STATE(2913), 1, sym__arithmetic_postfix_expression, - STATE(2837), 1, + STATE(2951), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(2977), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11135), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2761), 9, + STATE(2900), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -274709,100 +280141,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [238165] = 18, - ACTIONS(3), 1, + [243727] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(47), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(53), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, + anon_sym_DOLLAR, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(57), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(59), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(61), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(63), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(65), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(79), 1, - sym__brace_start, - ACTIONS(9894), 1, - sym_word, - ACTIONS(9902), 1, - sym__comment_word, - ACTIONS(11196), 1, - anon_sym_DOLLAR, - ACTIONS(45), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(69), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9898), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9900), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(1058), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11541), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2866), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [238233] = 21, - ACTIONS(71), 1, + [243801] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, - sym_variable_name, - ACTIONS(3945), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9432), 1, + ACTIONS(11187), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11189), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11195), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11197), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11543), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3334), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11193), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2844), 9, + STATE(3479), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -274812,150 +280247,103 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [238307] = 18, - ACTIONS(3), 1, + [243875] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(5779), 1, - aux_sym_number_token1, - ACTIONS(5781), 1, - aux_sym_number_token2, - ACTIONS(5785), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5795), 1, - sym__brace_start, - ACTIONS(10336), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10340), 1, - anon_sym_DQUOTE, - ACTIONS(10344), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10346), 1, - anon_sym_BQUOTE, - ACTIONS(10348), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(10596), 1, - sym_word, - ACTIONS(10602), 1, - sym__comment_word, - ACTIONS(11198), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(3274), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(10334), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10350), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10598), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10600), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5658), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [238375] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5779), 1, + ACTIONS(11141), 1, + anon_sym_DQUOTE, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(5781), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(5785), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5795), 1, - sym__brace_start, - ACTIONS(10336), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10340), 1, - anon_sym_DQUOTE, - ACTIONS(10344), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10346), 1, + ACTIONS(11149), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(10348), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10596), 1, - sym_word, - ACTIONS(10602), 1, - sym__comment_word, - ACTIONS(11200), 1, - anon_sym_DOLLAR, - ACTIONS(10334), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10350), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10598), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10600), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5658), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2872), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [238443] = 21, - ACTIONS(71), 1, + [243949] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(3123), 1, + ACTIONS(3795), 1, sym_variable_name, - ACTIONS(3586), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(9432), 1, + ACTIONS(11155), 1, anon_sym_LPAREN, - ACTIONS(9434), 1, + ACTIONS(11157), 1, anon_sym_BANG, - ACTIONS(9440), 1, + ACTIONS(11163), 1, anon_sym_TILDE, - ACTIONS(9442), 1, + ACTIONS(11165), 1, anon_sym_DOLLAR, - ACTIONS(9444), 1, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(9446), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(9448), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(9450), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2776), 1, - sym__arithmetic_unary_expression, - STATE(2780), 1, - sym__arithmetic_postfix_expression, - STATE(2837), 1, + ACTIONS(11545), 1, + aux_sym__simple_variable_name_token1, + STATE(3332), 1, sym__arithmetic_binary_expression, - STATE(2838), 1, + STATE(3336), 1, sym__arithmetic_ternary_expression, - ACTIONS(9436), 2, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, anon_sym_PLUS_PLUS2, anon_sym_DASH_DASH2, - ACTIONS(9438), 2, + ACTIONS(11161), 2, anon_sym_DASH2, anon_sym_PLUS2, - STATE(2868), 9, + STATE(3492), 9, sym_subscript, sym__arithmetic_expression, sym__arithmetic_literal, @@ -274965,692 +280353,927 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [238517] = 18, - ACTIONS(3), 1, + [244023] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(449), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(455), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, + anon_sym_DOLLAR, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(459), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(461), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(463), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(465), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(467), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(469), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(479), 1, - sym__brace_start, - ACTIONS(10604), 1, - sym_word, - ACTIONS(10610), 1, - sym__comment_word, - ACTIONS(11202), 1, - anon_sym_DOLLAR, - ACTIONS(447), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(471), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10606), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10608), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(836), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11547), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3495), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [238585] = 18, - ACTIONS(3), 1, + [244097] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(449), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(455), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, + anon_sym_DOLLAR, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(459), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(461), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(463), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(465), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(467), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(469), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(479), 1, - sym__brace_start, - ACTIONS(10604), 1, - sym_word, - ACTIONS(10610), 1, - sym__comment_word, - ACTIONS(11204), 1, - anon_sym_DOLLAR, - ACTIONS(447), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(471), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10606), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10608), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(836), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11549), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3416), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [238653] = 20, - ACTIONS(71), 1, + [244171] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(10728), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10730), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, anon_sym_DOLLAR, - ACTIONS(10734), 1, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(10738), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(10740), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(10742), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10744), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10746), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(10748), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10754), 1, - sym__brace_start, - ACTIONS(11080), 1, - sym__special_character, - ACTIONS(11206), 1, - sym_word, - ACTIONS(11210), 1, - sym_test_operator, - STATE(6226), 1, - aux_sym__literal_repeat1, - STATE(6453), 1, - sym_concatenation, - ACTIONS(10726), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10750), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11208), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6198), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11551), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(2885), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [238725] = 18, - ACTIONS(3), 1, + [244245] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5199), 1, + ACTIONS(11187), 1, + anon_sym_LPAREN, + ACTIONS(11189), 1, + anon_sym_BANG, + ACTIONS(11195), 1, + anon_sym_TILDE, + ACTIONS(11197), 1, + anon_sym_DOLLAR, + ACTIONS(11199), 1, anon_sym_DQUOTE, - ACTIONS(5203), 1, + ACTIONS(11201), 1, aux_sym_number_token1, - ACTIONS(5205), 1, + ACTIONS(11203), 1, aux_sym_number_token2, - ACTIONS(5207), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5209), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5211), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(5213), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5219), 1, - sym__brace_start, - ACTIONS(10612), 1, - sym_word, - ACTIONS(10618), 1, - sym__comment_word, - ACTIONS(11212), 1, - anon_sym_DOLLAR, - ACTIONS(5191), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5215), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10614), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10616), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2939), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11215), 1, + sym_variable_name, + ACTIONS(11553), 1, + aux_sym__simple_variable_name_token1, + STATE(3300), 1, + sym__arithmetic_binary_expression, + STATE(3334), 1, + sym__arithmetic_ternary_expression, + STATE(3367), 1, + sym__arithmetic_unary_expression, + STATE(3391), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11191), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11193), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3244), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [238793] = 18, - ACTIONS(3), 1, + [244319] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(5193), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5199), 1, + ACTIONS(3220), 1, + sym_variable_name, + ACTIONS(11129), 1, + anon_sym_LPAREN, + ACTIONS(11131), 1, + anon_sym_BANG, + ACTIONS(11137), 1, + anon_sym_TILDE, + ACTIONS(11139), 1, + anon_sym_DOLLAR, + ACTIONS(11141), 1, anon_sym_DQUOTE, - ACTIONS(5203), 1, + ACTIONS(11143), 1, aux_sym_number_token1, - ACTIONS(5205), 1, + ACTIONS(11145), 1, aux_sym_number_token2, - ACTIONS(5207), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5209), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(5211), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(5213), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5219), 1, - sym__brace_start, - ACTIONS(10612), 1, - sym_word, - ACTIONS(10618), 1, - sym__comment_word, - ACTIONS(11214), 1, - anon_sym_DOLLAR, - ACTIONS(5191), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5215), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10614), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10616), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2939), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11555), 1, + aux_sym__simple_variable_name_token1, + STATE(2913), 1, + sym__arithmetic_postfix_expression, + STATE(2951), 1, + sym__arithmetic_binary_expression, + STATE(2977), 1, + sym__arithmetic_ternary_expression, + STATE(2980), 1, + sym__arithmetic_unary_expression, + ACTIONS(11133), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11135), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3312), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [238861] = 18, - ACTIONS(3), 1, + [244393] = 21, + ACTIONS(73), 1, sym_comment, - ACTIONS(191), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(197), 1, + ACTIONS(3795), 1, + sym_variable_name, + ACTIONS(11155), 1, + anon_sym_LPAREN, + ACTIONS(11157), 1, + anon_sym_BANG, + ACTIONS(11163), 1, + anon_sym_TILDE, + ACTIONS(11165), 1, + anon_sym_DOLLAR, + ACTIONS(11167), 1, anon_sym_DQUOTE, - ACTIONS(201), 1, + ACTIONS(11169), 1, aux_sym_number_token1, - ACTIONS(203), 1, + ACTIONS(11171), 1, aux_sym_number_token2, - ACTIONS(205), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(207), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(209), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(221), 1, - sym__brace_start, - ACTIONS(11172), 1, - sym_word, - ACTIONS(11178), 1, - sym__comment_word, - ACTIONS(11216), 1, - anon_sym_DOLLAR, - ACTIONS(189), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(213), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11174), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11176), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(510), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11557), 1, + aux_sym__simple_variable_name_token1, + STATE(3332), 1, + sym__arithmetic_binary_expression, + STATE(3336), 1, + sym__arithmetic_ternary_expression, + STATE(3337), 1, + sym__arithmetic_unary_expression, + STATE(3338), 1, + sym__arithmetic_postfix_expression, + ACTIONS(11159), 2, + anon_sym_PLUS_PLUS2, + anon_sym_DASH_DASH2, + ACTIONS(11161), 2, + anon_sym_DASH2, + anon_sym_PLUS2, + STATE(3263), 9, + sym_subscript, + sym__arithmetic_expression, + sym__arithmetic_literal, + sym__arithmetic_parenthesized_expression, sym_string, - sym_translated_string, sym_number, sym_simple_expansion, sym_expansion, sym_command_substitution, - sym_process_substitution, - [238929] = 18, + [244467] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5432), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5438), 1, + ACTIONS(1269), 1, + sym_file_descriptor, + ACTIONS(5929), 1, anon_sym_DQUOTE, - ACTIONS(5442), 1, - aux_sym_number_token1, - ACTIONS(5444), 1, - aux_sym_number_token2, - ACTIONS(5446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5448), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5450), 1, - anon_sym_BQUOTE, - ACTIONS(5452), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5458), 1, - sym__brace_start, - ACTIONS(10620), 1, - sym_word, - ACTIONS(10626), 1, - sym__comment_word, - ACTIONS(11218), 1, - anon_sym_DOLLAR, - ACTIONS(5430), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5454), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10622), 2, - sym_test_operator, - sym__special_character, - ACTIONS(10624), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5526), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11563), 1, + sym_variable_name, + STATE(5684), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [238997] = 18, + ACTIONS(11561), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(11559), 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(1267), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [244514] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5432), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(5438), 1, - anon_sym_DQUOTE, - ACTIONS(5442), 1, - aux_sym_number_token1, - ACTIONS(5444), 1, - aux_sym_number_token2, - ACTIONS(5446), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(5448), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(5450), 1, - anon_sym_BQUOTE, - ACTIONS(5452), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5458), 1, - sym__brace_start, - ACTIONS(10620), 1, - sym_word, - ACTIONS(10626), 1, - sym__comment_word, - ACTIONS(11220), 1, - anon_sym_DOLLAR, - ACTIONS(5430), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(5454), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(10622), 2, - sym_test_operator, + ACTIONS(4539), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11569), 1, + anon_sym_LT_LT_LT, + ACTIONS(11571), 1, + sym_file_descriptor, + STATE(5032), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4519), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4521), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4537), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11567), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3280), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11565), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [244571] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11573), 1, + aux_sym_concatenation_token1, + ACTIONS(11575), 1, + sym__concat, + STATE(4295), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, sym__special_character, - ACTIONS(10624), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(5526), 9, - sym_arithmetic_expansion, - sym_brace_expression, - sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [239065] = 18, + [244614] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(191), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(197), 1, + ACTIONS(11581), 1, + anon_sym_LPAREN, + ACTIONS(11583), 1, + aux_sym__c_word_token1, + ACTIONS(11585), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11589), 1, anon_sym_DQUOTE, - ACTIONS(201), 1, + ACTIONS(11591), 1, aux_sym_number_token1, - ACTIONS(203), 1, + ACTIONS(11593), 1, aux_sym_number_token2, - ACTIONS(205), 1, + ACTIONS(11595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(207), 1, + ACTIONS(11597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(209), 1, + ACTIONS(11599), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(11601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(221), 1, - sym__brace_start, - ACTIONS(11172), 1, - sym_word, - ACTIONS(11178), 1, - sym__comment_word, - ACTIONS(11222), 1, - anon_sym_DOLLAR, - ACTIONS(189), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(213), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11174), 2, - sym_test_operator, - sym__special_character, - ACTIONS(11176), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(510), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + STATE(4279), 1, + sym__c_terminator, + STATE(6399), 1, + sym__c_expression, + STATE(6575), 1, + sym__c_variable_assignment, + STATE(7414), 1, + sym__for_body, + ACTIONS(11577), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11579), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3200), 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, - [239133] = 20, - ACTIONS(71), 1, + [244689] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(10728), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(10730), 1, + ACTIONS(11581), 1, + anon_sym_LPAREN, + ACTIONS(11583), 1, + aux_sym__c_word_token1, + ACTIONS(11585), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11587), 1, anon_sym_DOLLAR, - ACTIONS(10734), 1, + ACTIONS(11589), 1, anon_sym_DQUOTE, - ACTIONS(10738), 1, + ACTIONS(11591), 1, aux_sym_number_token1, - ACTIONS(10740), 1, + ACTIONS(11593), 1, aux_sym_number_token2, - ACTIONS(10742), 1, + ACTIONS(11595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10744), 1, + ACTIONS(11597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(10746), 1, + ACTIONS(11599), 1, anon_sym_BQUOTE, - ACTIONS(10748), 1, + ACTIONS(11601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10754), 1, - sym__brace_start, - ACTIONS(11080), 1, - sym__special_character, - ACTIONS(11224), 1, - sym_word, - ACTIONS(11228), 1, - sym_test_operator, - STATE(6208), 1, - aux_sym__literal_repeat1, - STATE(6390), 1, - sym_concatenation, - ACTIONS(10726), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(10750), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11226), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(6190), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + STATE(4279), 1, + sym__c_terminator, + STATE(6399), 1, + sym__c_expression, + STATE(6575), 1, + sym__c_variable_assignment, + STATE(7278), 1, + sym__for_body, + ACTIONS(11577), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11579), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3200), 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, - [239205] = 18, + [244764] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4928), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(4934), 1, - anon_sym_DQUOTE, - ACTIONS(4938), 1, - aux_sym_number_token1, - ACTIONS(4940), 1, - aux_sym_number_token2, - ACTIONS(4942), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(4944), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(4946), 1, - anon_sym_BQUOTE, - ACTIONS(4948), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(4954), 1, - sym__brace_start, - ACTIONS(9278), 1, - sym_word, - ACTIONS(9286), 1, - sym__comment_word, - ACTIONS(11230), 1, - anon_sym_DOLLAR, - ACTIONS(4926), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(4950), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9282), 2, - sym_test_operator, + ACTIONS(11603), 1, + aux_sym_concatenation_token1, + ACTIONS(11605), 1, + sym__concat, + STATE(4274), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, sym__special_character, - ACTIONS(9284), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2604), 9, - sym_arithmetic_expansion, - sym_brace_expression, + [244807] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11569), 1, + anon_sym_LT_LT_LT, + ACTIONS(11571), 1, + sym_file_descriptor, + STATE(5032), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4517), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4519), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4521), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11567), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4523), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11565), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [244864] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11569), 1, + anon_sym_LT_LT_LT, + STATE(5032), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4501), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [244909] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1263), 1, + sym_file_descriptor, + ACTIONS(5929), 1, + anon_sym_DQUOTE, + ACTIONS(11563), 1, + sym_variable_name, + STATE(5684), 1, sym_string, - sym_translated_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [239273] = 18, + ACTIONS(11561), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(11559), 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(1255), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + aux_sym_heredoc_redirect_token1, + anon_sym_LT_LT_LT, + [244956] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1111), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(1119), 1, + ACTIONS(8779), 1, + anon_sym_SLASH, + ACTIONS(8781), 1, + anon_sym_PERCENT, + ACTIONS(8783), 1, + anon_sym_COLON, + ACTIONS(8815), 1, + anon_sym_AT, + ACTIONS(10493), 1, + anon_sym_LBRACK, + STATE(7031), 1, + sym__expansion_expression, + STATE(7045), 1, + sym__expansion_regex, + STATE(7202), 1, + sym__expansion_regex_replacement, + STATE(7213), 1, + sym__expansion_regex_removal, + STATE(7216), 1, + sym__expansion_max_length, + STATE(7224), 1, + sym__expansion_operator, + ACTIONS(8777), 2, + anon_sym_COMMA, + anon_sym_CARET, + ACTIONS(8797), 2, + anon_sym_COMMA_COMMA, + anon_sym_CARET_CARET, + ACTIONS(8785), 3, + sym__immediate_double_hash, + anon_sym_POUND, + anon_sym_PERCENT_PERCENT, + ACTIONS(8795), 3, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_POUND, + anon_sym_SLASH_PERCENT, + ACTIONS(8793), 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, + [245021] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11569), 1, + anon_sym_LT_LT_LT, + STATE(5032), 1, + sym_herestring_redirect, + ACTIONS(4508), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4499), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [245064] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11581), 1, + anon_sym_LPAREN, + ACTIONS(11583), 1, + aux_sym__c_word_token1, + ACTIONS(11585), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11589), 1, anon_sym_DQUOTE, - ACTIONS(1123), 1, + ACTIONS(11591), 1, aux_sym_number_token1, - ACTIONS(1125), 1, + ACTIONS(11593), 1, aux_sym_number_token2, - ACTIONS(1127), 1, + ACTIONS(11595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1129), 1, + ACTIONS(11597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(1139), 1, - sym__brace_start, - ACTIONS(3119), 1, + ACTIONS(11599), 1, anon_sym_BQUOTE, - ACTIONS(9464), 1, - sym_word, - ACTIONS(9472), 1, - sym__comment_word, - ACTIONS(11232), 1, - anon_sym_DOLLAR, - ACTIONS(1099), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(1135), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(9468), 2, - sym_test_operator, - sym__special_character, - ACTIONS(9470), 3, - sym__bare_dollar, - sym_raw_string, - sym_ansi_c_string, - STATE(2365), 9, - sym_arithmetic_expansion, - sym_brace_expression, + ACTIONS(11601), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + STATE(4279), 1, + sym__c_terminator, + STATE(6399), 1, + sym__c_expression, + STATE(6575), 1, + sym__c_variable_assignment, + STATE(7625), 1, + sym__for_body, + ACTIONS(11577), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11579), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3200), 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, - [239341] = 20, - ACTIONS(71), 1, + [245139] = 22, + ACTIONS(3), 1, sym_comment, - ACTIONS(3848), 1, + ACTIONS(11581), 1, + anon_sym_LPAREN, + ACTIONS(11583), 1, + aux_sym__c_word_token1, + ACTIONS(11585), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11587), 1, anon_sym_DOLLAR, - ACTIONS(3854), 1, + ACTIONS(11589), 1, + anon_sym_DQUOTE, + ACTIONS(11591), 1, aux_sym_number_token1, - ACTIONS(3856), 1, + ACTIONS(11593), 1, aux_sym_number_token2, - ACTIONS(3860), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(3870), 1, - sym__brace_start, - ACTIONS(9704), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(9710), 1, - anon_sym_DQUOTE, - ACTIONS(9714), 1, + ACTIONS(11595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9716), 1, + ACTIONS(11597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(11599), 1, anon_sym_BQUOTE, - ACTIONS(9718), 1, + ACTIONS(11601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(10494), 1, - sym__special_character, - ACTIONS(11234), 1, - sym_word, - ACTIONS(11238), 1, - sym_test_operator, - STATE(4664), 1, - aux_sym__literal_repeat1, - STATE(5107), 1, - sym_concatenation, - ACTIONS(9702), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - ACTIONS(9720), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(11236), 2, - sym_raw_string, - sym_ansi_c_string, - STATE(4418), 9, - sym_arithmetic_expansion, - sym_brace_expression, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + STATE(4279), 1, + sym__c_terminator, + STATE(6399), 1, + sym__c_expression, + STATE(6575), 1, + sym__c_variable_assignment, + STATE(7144), 1, + sym__for_body, + ACTIONS(11577), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11579), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3200), 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, - [239413] = 8, + [245214] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1241), 1, + ACTIONS(11603), 1, + aux_sym_concatenation_token1, + ACTIONS(11607), 1, + sym__concat, + STATE(4299), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 3, sym_file_descriptor, - ACTIONS(5777), 1, - anon_sym_DQUOTE, - ACTIONS(11244), 1, sym_variable_name, - STATE(5671), 1, - sym_string, - ACTIONS(11242), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(11240), 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(1239), 14, + aux_sym_heredoc_redirect_token1, + ACTIONS(1294), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -275658,44 +281281,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - aux_sym_heredoc_redirect_token1, - anon_sym_LT_LT_LT, - [239460] = 13, + anon_sym_LT_LT_DASH, + [245256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11250), 1, - anon_sym_LT_LT_LT, - ACTIONS(11252), 1, + ACTIONS(11573), 1, + aux_sym_concatenation_token1, + ACTIONS(11575), 1, + sym__concat, + STATE(4296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 2, sym_file_descriptor, - STATE(5018), 1, - sym_herestring_redirect, - ACTIONS(4308), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(2158), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4310), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4312), 2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(4344), 2, + anon_sym_LT_LT_LT, + [245298] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11609), 1, + aux_sym_concatenation_token1, + ACTIONS(11611), 1, + sym__concat, + STATE(4452), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 23, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11248), 2, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4407), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2755), 4, - anon_sym_esac, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [245340] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11613), 1, + aux_sym_concatenation_token1, + ACTIONS(11615), 1, + sym__concat, + STATE(4462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(11246), 8, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, + [245382] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11623), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11625), 1, + anon_sym_LT_LT_LT, + ACTIONS(11627), 1, + sym_file_descriptor, + ACTIONS(11621), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4288), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11619), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -275704,52 +281415,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [239517] = 22, + ACTIONS(11617), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [245428] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(11258), 1, + ACTIONS(11581), 1, anon_sym_LPAREN, - ACTIONS(11260), 1, + ACTIONS(11583), 1, aux_sym__c_word_token1, - ACTIONS(11262), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11264), 1, + ACTIONS(11587), 1, anon_sym_DOLLAR, - ACTIONS(11266), 1, + ACTIONS(11589), 1, anon_sym_DQUOTE, - ACTIONS(11268), 1, + ACTIONS(11591), 1, aux_sym_number_token1, - ACTIONS(11270), 1, + ACTIONS(11593), 1, aux_sym_number_token2, - ACTIONS(11272), 1, + ACTIONS(11595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11274), 1, + ACTIONS(11597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11276), 1, + ACTIONS(11599), 1, anon_sym_BQUOTE, - ACTIONS(11278), 1, + ACTIONS(11601), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, + ACTIONS(11631), 1, + aux_sym_heredoc_redirect_token1, + STATE(3201), 1, sym__c_unary_expression, - STATE(3118), 1, + STATE(3202), 1, sym__c_binary_expression, - STATE(4260), 1, + STATE(3209), 1, + sym__c_postfix_expression, + STATE(4791), 1, sym__c_terminator, - STATE(6272), 1, + STATE(6403), 1, sym__c_expression, - STATE(6521), 1, + STATE(6575), 1, sym__c_variable_assignment, - STATE(7337), 1, - sym__for_body, - ACTIONS(11254), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(11256), 2, + ACTIONS(11579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2990), 7, + ACTIONS(11629), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3200), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -275757,64 +281479,91 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [239592] = 13, + [245500] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(11573), 1, + aux_sym_concatenation_token1, + ACTIONS(11575), 1, + sym__concat, + STATE(4295), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11250), 1, + ACTIONS(4971), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - ACTIONS(11252), 1, + [245542] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11573), 1, + aux_sym_concatenation_token1, + ACTIONS(11575), 1, + sym__concat, + STATE(4296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 2, sym_file_descriptor, - STATE(5018), 1, - sym_herestring_redirect, - ACTIONS(4306), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5015), 23, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4308), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4310), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4312), 2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11248), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4407), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4314), 4, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(11246), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [239649] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [245584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11280), 1, + ACTIONS(11573), 1, aux_sym_concatenation_token1, - ACTIONS(11282), 1, + ACTIONS(11575), 1, sym__concat, - STATE(4256), 1, + STATE(4295), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 3, + ACTIONS(5046), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(5044), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275837,22 +281586,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [239692] = 6, + anon_sym_LT_LT_LT, + [245626] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11250), 1, - anon_sym_LT_LT_LT, - STATE(5018), 1, - sym_herestring_redirect, - ACTIONS(4323), 2, + ACTIONS(11573), 1, + aux_sym_concatenation_token1, + ACTIONS(11575), 1, + sym__concat, + STATE(4296), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4407), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4310), 22, + ACTIONS(5048), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -275875,33 +281622,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239735] = 6, + anon_sym_LT_LT_LT, + [245668] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, - aux_sym_concatenation_token1, - ACTIONS(11286), 1, - sym__concat, - STATE(4234), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 2, + ACTIONS(11633), 1, + anon_sym_LT_LT_LT, + STATE(5089), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4501), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 24, + STATE(4473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -275910,54 +281660,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [239778] = 22, + [245712] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(11258), 1, + ACTIONS(11581), 1, anon_sym_LPAREN, - ACTIONS(11260), 1, + ACTIONS(11583), 1, aux_sym__c_word_token1, - ACTIONS(11262), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11264), 1, + ACTIONS(11587), 1, anon_sym_DOLLAR, - ACTIONS(11266), 1, + ACTIONS(11589), 1, anon_sym_DQUOTE, - ACTIONS(11268), 1, + ACTIONS(11591), 1, aux_sym_number_token1, - ACTIONS(11270), 1, + ACTIONS(11593), 1, aux_sym_number_token2, - ACTIONS(11272), 1, + ACTIONS(11595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11274), 1, + ACTIONS(11597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11276), 1, + ACTIONS(11599), 1, anon_sym_BQUOTE, - ACTIONS(11278), 1, + ACTIONS(11601), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, + ACTIONS(11637), 1, + aux_sym_heredoc_redirect_token1, + STATE(3201), 1, sym__c_unary_expression, - STATE(3118), 1, + STATE(3202), 1, sym__c_binary_expression, - STATE(4260), 1, + STATE(3209), 1, + sym__c_postfix_expression, + STATE(4902), 1, sym__c_terminator, - STATE(6272), 1, + STATE(6405), 1, sym__c_expression, - STATE(6521), 1, + STATE(6575), 1, sym__c_variable_assignment, - STATE(7405), 1, - sym__for_body, - ACTIONS(11254), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(11256), 2, + ACTIONS(11579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2990), 7, + ACTIONS(11635), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3200), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -275965,36 +281711,34 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [239853] = 7, + [245784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11250), 1, + ACTIONS(11633), 1, anon_sym_LT_LT_LT, - STATE(5018), 1, + STATE(5089), 1, sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4327), 2, + ACTIONS(4508), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4407), 3, + STATE(4473), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 20, + ACTIONS(4499), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -276003,33 +281747,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [239898] = 8, + [245826] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1235), 1, + ACTIONS(4733), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11633), 1, + anon_sym_LT_LT_LT, + ACTIONS(11643), 1, sym_file_descriptor, - ACTIONS(5777), 1, - anon_sym_DQUOTE, - ACTIONS(11244), 1, - sym_variable_name, - STATE(5671), 1, - sym_string, - ACTIONS(11242), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(11240), 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(1227), 14, + STATE(5089), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4727), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4729), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(4731), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11641), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3280), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11639), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -276038,109 +281790,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + [245882] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11653), 1, aux_sym_heredoc_redirect_token1, + ACTIONS(11655), 1, anon_sym_LT_LT_LT, - [239945] = 22, + ACTIONS(11658), 1, + sym_file_descriptor, + ACTIONS(11650), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4288), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11647), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11645), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [245928] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11258), 1, - anon_sym_LPAREN, - ACTIONS(11260), 1, - aux_sym__c_word_token1, - ACTIONS(11262), 1, + ACTIONS(11661), 1, + aux_sym_concatenation_token1, + ACTIONS(11664), 1, + sym__concat, + STATE(4289), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11266), 1, - anon_sym_DQUOTE, - ACTIONS(11268), 1, - aux_sym_number_token1, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(11272), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11274), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11276), 1, - anon_sym_BQUOTE, - ACTIONS(11278), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, - sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - STATE(4260), 1, - sym__c_terminator, - STATE(6272), 1, - sym__c_expression, - STATE(6521), 1, - sym__c_variable_assignment, - STATE(7669), 1, - sym__for_body, - ACTIONS(11254), 2, + ACTIONS(1304), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11256), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2990), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [240020] = 22, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [245970] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(11258), 1, + ACTIONS(11581), 1, anon_sym_LPAREN, - ACTIONS(11260), 1, + ACTIONS(11583), 1, aux_sym__c_word_token1, - ACTIONS(11262), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11264), 1, + ACTIONS(11587), 1, anon_sym_DOLLAR, - ACTIONS(11266), 1, + ACTIONS(11589), 1, anon_sym_DQUOTE, - ACTIONS(11268), 1, + ACTIONS(11591), 1, aux_sym_number_token1, - ACTIONS(11270), 1, + ACTIONS(11593), 1, aux_sym_number_token2, - ACTIONS(11272), 1, + ACTIONS(11595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11274), 1, + ACTIONS(11597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11276), 1, + ACTIONS(11599), 1, anon_sym_BQUOTE, - ACTIONS(11278), 1, + ACTIONS(11601), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, + ACTIONS(11669), 1, + aux_sym_heredoc_redirect_token1, + STATE(3201), 1, sym__c_unary_expression, - STATE(3118), 1, + STATE(3202), 1, sym__c_binary_expression, - STATE(4260), 1, + STATE(3209), 1, + sym__c_postfix_expression, + STATE(4749), 1, sym__c_terminator, - STATE(6272), 1, + STATE(6337), 1, sym__c_expression, - STATE(6521), 1, + STATE(6575), 1, sym__c_variable_assignment, - STATE(6913), 1, - sym__for_body, - ACTIONS(11254), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(11256), 2, + ACTIONS(11579), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2990), 7, + ACTIONS(11667), 2, + anon_sym_SEMI, + anon_sym_AMP, + STATE(3200), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -276148,104 +281915,21 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [240095] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8522), 1, - anon_sym_SLASH, - ACTIONS(8524), 1, - anon_sym_PERCENT, - ACTIONS(8526), 1, - anon_sym_COLON, - ACTIONS(8551), 1, - anon_sym_AT, - ACTIONS(9058), 1, - anon_sym_LBRACK, - STATE(7196), 1, - sym__expansion_expression, - STATE(7197), 1, - sym__expansion_regex, - STATE(7287), 1, - sym__expansion_regex_replacement, - STATE(7365), 1, - sym__expansion_regex_removal, - STATE(7369), 1, - sym__expansion_max_length, - STATE(7424), 1, - sym__expansion_operator, - ACTIONS(8520), 2, - anon_sym_COMMA, - anon_sym_CARET, - ACTIONS(8540), 2, - anon_sym_COMMA_COMMA, - anon_sym_CARET_CARET, - ACTIONS(8528), 3, - sym__immediate_double_hash, - anon_sym_POUND, - anon_sym_PERCENT_PERCENT, - ACTIONS(8538), 3, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_POUND, - anon_sym_SLASH_PERCENT, - ACTIONS(8536), 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, - [240160] = 6, + [246042] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11288), 1, + ACTIONS(11671), 1, aux_sym_concatenation_token1, - ACTIONS(11290), 1, + ACTIONS(11674), 1, sym__concat, - STATE(4414), 1, + STATE(4291), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 2, + ACTIONS(1306), 4, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - sym__special_character, - [240202] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11296), 1, sym_variable_name, - STATE(6744), 1, - sym_subscript, - ACTIONS(11294), 2, - sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4230), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11292), 22, + ACTIONS(1304), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276255,10 +281939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276268,41 +281950,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240244] = 13, + anon_sym_BQUOTE, + [246084] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4471), 1, + ACTIONS(4830), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11303), 1, + ACTIONS(11633), 1, anon_sym_LT_LT_LT, - ACTIONS(11305), 1, + ACTIONS(11643), 1, sym_file_descriptor, - STATE(5103), 1, + STATE(5089), 1, sym_herestring_redirect, - ACTIONS(4310), 2, + ACTIONS(4499), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4465), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4467), 2, + ACTIONS(4729), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4469), 2, + ACTIONS(4731), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11301), 2, + ACTIONS(4828), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11641), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(2755), 3, + ACTIONS(4523), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(4509), 3, + STATE(4473), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11299), 8, + ACTIONS(11639), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -276311,20 +281994,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [240300] = 6, + [246140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11311), 1, + ACTIONS(11681), 1, sym_variable_name, - STATE(6744), 1, + STATE(6828), 1, sym_subscript, - ACTIONS(11309), 2, + ACTIONS(11679), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4230), 2, + STATE(4302), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(11307), 22, + ACTIONS(11677), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276347,20 +282030,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240342] = 6, + [246182] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11313), 1, + ACTIONS(11683), 1, aux_sym_concatenation_token1, - ACTIONS(11316), 1, + ACTIONS(11685), 1, sym__concat, - STATE(4233), 1, + STATE(4402), 1, aux_sym_concatenation_repeat1, - ACTIONS(1278), 3, + ACTIONS(1302), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276383,19 +282065,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240384] = 6, + sym__special_character, + [246224] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, + ACTIONS(11573), 1, aux_sym_concatenation_token1, - ACTIONS(11319), 1, + ACTIONS(11687), 1, sym__concat, - STATE(4248), 1, + STATE(4297), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, + ACTIONS(1296), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 23, + ACTIONS(1294), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276419,35 +282102,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [240426] = 7, + [246266] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 1, - anon_sym_LT_LT_LT, - STATE(5103), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4327), 2, + ACTIONS(11573), 1, + aux_sym_concatenation_token1, + ACTIONS(11689), 1, + sym__concat, + STATE(4297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4509), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 19, + ACTIONS(1314), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -276456,70 +282137,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [240470] = 21, + anon_sym_LT_LT_LT, + [246308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11258), 1, - anon_sym_LPAREN, - ACTIONS(11260), 1, - aux_sym__c_word_token1, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11266), 1, - anon_sym_DQUOTE, - ACTIONS(11268), 1, - aux_sym_number_token1, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(11272), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11274), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11276), 1, - anon_sym_BQUOTE, - ACTIONS(11278), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11323), 1, + ACTIONS(11691), 1, + aux_sym_concatenation_token1, + ACTIONS(11694), 1, + sym__concat, + STATE(4297), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, - sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - STATE(4617), 1, - sym__c_terminator, - STATE(6255), 1, - sym__c_expression, - STATE(6521), 1, - sym__c_variable_assignment, - ACTIONS(11256), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(11321), 2, + ACTIONS(1304), 23, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - STATE(2990), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [240542] = 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [246350] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, + ACTIONS(11603), 1, aux_sym_concatenation_token1, - ACTIONS(11325), 1, + ACTIONS(11697), 1, sym__concat, - STATE(4248), 1, + STATE(4299), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(1316), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 23, + ACTIONS(1314), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276542,20 +282210,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [240584] = 6, + [246392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, + ACTIONS(11699), 1, aux_sym_concatenation_token1, - ACTIONS(11286), 1, + ACTIONS(11702), 1, sym__concat, - STATE(4234), 1, + STATE(4299), 1, aux_sym_concatenation_repeat1, - ACTIONS(5589), 2, + ACTIONS(1306), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 23, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276578,20 +282246,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [240626] = 6, + [246434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, + ACTIONS(11603), 1, aux_sym_concatenation_token1, - ACTIONS(11286), 1, + ACTIONS(11605), 1, sym__concat, - STATE(4237), 1, + STATE(4274), 1, aux_sym_concatenation_repeat1, - ACTIONS(2169), 2, + ACTIONS(5495), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 23, + ACTIONS(5493), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276614,21 +282282,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [240668] = 6, + [246476] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11327), 1, + ACTIONS(11603), 1, aux_sym_concatenation_token1, - ACTIONS(11330), 1, + ACTIONS(11605), 1, sym__concat, - STATE(4240), 1, + STATE(4298), 1, aux_sym_concatenation_repeat1, - ACTIONS(1278), 3, + ACTIONS(5501), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(5499), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276638,8 +282305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -276649,21 +282318,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [240710] = 6, + [246518] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, - aux_sym_concatenation_token1, - ACTIONS(11286), 1, - sym__concat, - STATE(4234), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5595), 2, + ACTIONS(11709), 1, + sym_variable_name, + STATE(6828), 1, + sym_subscript, + ACTIONS(11707), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 23, + STATE(4302), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11705), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276686,20 +282354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [240752] = 6, + [246560] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, + ACTIONS(11573), 1, aux_sym_concatenation_token1, - ACTIONS(11286), 1, + ACTIONS(11575), 1, sym__concat, - STATE(4237), 1, + STATE(4295), 1, aux_sym_concatenation_repeat1, - ACTIONS(2173), 2, + ACTIONS(5901), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 23, + ACTIONS(5899), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276723,19 +282390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [240794] = 6, + [246602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, + ACTIONS(11573), 1, aux_sym_concatenation_token1, - ACTIONS(11286), 1, + ACTIONS(11575), 1, sym__concat, - STATE(4234), 1, + STATE(4296), 1, aux_sym_concatenation_repeat1, - ACTIONS(4428), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 23, + ACTIONS(2154), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276759,19 +282426,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [240836] = 6, + [246644] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, + ACTIONS(11573), 1, aux_sym_concatenation_token1, - ACTIONS(11286), 1, + ACTIONS(11575), 1, sym__concat, - STATE(4237), 1, + STATE(4295), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 2, + ACTIONS(5907), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 23, + ACTIONS(5905), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276795,21 +282462,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [240878] = 6, + [246686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11333), 1, - aux_sym_concatenation_token1, - ACTIONS(11336), 1, - sym__concat, - STATE(4245), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 4, + ACTIONS(1306), 5, sym_file_descriptor, + sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 21, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276830,20 +282492,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [240920] = 6, + [246721] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, + ACTIONS(11609), 1, aux_sym_concatenation_token1, - ACTIONS(11286), 1, + ACTIONS(11611), 1, sym__concat, - STATE(4234), 1, + STATE(4452), 1, aux_sym_concatenation_repeat1, - ACTIONS(4579), 2, + ACTIONS(5907), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 23, + ACTIONS(5905), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276853,7 +282516,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -276867,19 +282529,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [240962] = 6, + [246762] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11284), 1, + ACTIONS(11609), 1, aux_sym_concatenation_token1, - ACTIONS(11286), 1, + ACTIONS(11611), 1, sym__concat, - STATE(4237), 1, + STATE(4455), 1, aux_sym_concatenation_repeat1, - ACTIONS(4595), 2, + ACTIONS(2160), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 23, + ACTIONS(2158), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276889,7 +282551,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -276903,19 +282564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [241004] = 6, + [246803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11339), 1, - aux_sym_concatenation_token1, - ACTIONS(11342), 1, - sym__concat, - STATE(4248), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 2, + ACTIONS(1322), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(1320), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -276938,75 +282595,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [241046] = 21, + aux_sym_concatenation_token1, + [246838] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11258), 1, - anon_sym_LPAREN, - ACTIONS(11260), 1, - aux_sym__c_word_token1, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11266), 1, - anon_sym_DQUOTE, - ACTIONS(11268), 1, - aux_sym_number_token1, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(11272), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11274), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11276), 1, - anon_sym_BQUOTE, - ACTIONS(11278), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11347), 1, + ACTIONS(4523), 1, + anon_sym_RPAREN, + ACTIONS(4830), 1, aux_sym_heredoc_redirect_token1, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, - sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - STATE(4658), 1, - sym__c_terminator, - STATE(6349), 1, - sym__c_expression, - STATE(6521), 1, - sym__c_variable_assignment, - ACTIONS(11256), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(11345), 2, + ACTIONS(11716), 1, + anon_sym_LT_LT_LT, + ACTIONS(11718), 1, + sym_file_descriptor, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5164), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11714), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4828), 3, anon_sym_SEMI, anon_sym_AMP, - STATE(2990), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [241118] = 8, + anon_sym_SEMI_SEMI, + STATE(4739), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11712), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [246893] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11355), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11357), 1, + ACTIONS(11569), 1, anon_sym_LT_LT_LT, - ACTIONS(11359), 1, + ACTIONS(11722), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11724), 1, sym_file_descriptor, - ACTIONS(11353), 2, + ACTIONS(11567), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4254), 3, + STATE(4927), 2, sym_file_redirect, sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11351), 8, + ACTIONS(11565), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -277015,7 +282662,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11349), 12, + ACTIONS(11720), 12, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277028,21 +282675,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [241164] = 6, + [246938] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 1, - anon_sym_LT_LT_LT, - STATE(5103), 1, - sym_herestring_redirect, - ACTIONS(4323), 2, + ACTIONS(1326), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(4509), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4310), 21, + ACTIONS(1324), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277052,6 +282692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -277064,62 +282705,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241206] = 13, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [246973] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4527), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11303), 1, - anon_sym_LT_LT_LT, - ACTIONS(11305), 1, + ACTIONS(11726), 1, + sym__special_character, + STATE(4427), 1, + aux_sym__literal_repeat1, + ACTIONS(4973), 2, sym_file_descriptor, - STATE(5103), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4467), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(4971), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4469), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4525), 2, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11301), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4314), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4509), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11299), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [241262] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [247012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11361), 1, - aux_sym_concatenation_token1, - ACTIONS(11363), 1, - sym__concat, - STATE(4284), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 2, + ACTIONS(1378), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(1376), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277129,6 +282758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -277142,72 +282772,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [241304] = 8, + aux_sym_concatenation_token1, + [247047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11373), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11375), 1, - anon_sym_LT_LT_LT, - ACTIONS(11378), 1, + ACTIONS(1338), 3, sym_file_descriptor, - ACTIONS(11370), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4254), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11367), 8, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 24, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11365), 12, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [247082] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11726), 1, + sym__special_character, + STATE(4427), 1, + aux_sym__literal_repeat1, + ACTIONS(5046), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5044), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241350] = 6, + anon_sym_LT_LT_LT, + [247121] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11381), 1, - aux_sym_concatenation_token1, - ACTIONS(11383), 1, - sym__concat, - STATE(4342), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 3, + ACTIONS(11716), 1, + anon_sym_LT_LT_LT, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4501), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + STATE(4739), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -277216,21 +282875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [241392] = 6, + [247164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11280), 1, - aux_sym_concatenation_token1, - ACTIONS(11385), 1, - sym__concat, - STATE(4233), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 3, + ACTIONS(1382), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 22, + ACTIONS(1380), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277253,56 +282905,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241434] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [247199] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11280), 1, - aux_sym_concatenation_token1, - ACTIONS(11387), 1, - sym__concat, - STATE(4233), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, - sym_file_descriptor, - sym_variable_name, + ACTIONS(11739), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 22, + ACTIONS(11741), 1, + sym_file_descriptor, + ACTIONS(11733), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11736), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4319), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11730), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11728), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + [247244] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4525), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11744), 1, + sym_file_descriptor, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4517), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4519), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4521), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11567), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4523), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11565), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [241476] = 6, + [247295] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11280), 1, - aux_sym_concatenation_token1, - ACTIONS(11282), 1, - sym__concat, - STATE(4256), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5167), 3, + ACTIONS(11716), 1, + anon_sym_LT_LT_LT, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4508), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 22, + STATE(4739), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4499), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277312,10 +283008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277325,20 +283019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241518] = 6, + [247336] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11280), 1, - aux_sym_concatenation_token1, - ACTIONS(11282), 1, - sym__concat, - STATE(4257), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5175), 3, - sym_file_descriptor, + ACTIONS(11746), 1, sym_variable_name, + STATE(6809), 1, + sym_subscript, + ACTIONS(11707), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 22, + STATE(4322), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11705), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277348,7 +283042,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -277361,69 +283054,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241560] = 21, + [247377] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11258), 1, - anon_sym_LPAREN, - ACTIONS(11260), 1, - aux_sym__c_word_token1, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11266), 1, - anon_sym_DQUOTE, - ACTIONS(11268), 1, - aux_sym_number_token1, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(11272), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11274), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11276), 1, - anon_sym_BQUOTE, - ACTIONS(11278), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11391), 1, - aux_sym_heredoc_redirect_token1, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, - sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - STATE(4785), 1, - sym__c_terminator, - STATE(6348), 1, - sym__c_expression, - STATE(6521), 1, - sym__c_variable_assignment, - ACTIONS(11256), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(11389), 2, - anon_sym_SEMI, - anon_sym_AMP, - STATE(2990), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [241632] = 5, + ACTIONS(11749), 1, + sym__concat, + ACTIONS(7019), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7017), 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, + [247414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11393), 1, - sym__special_character, - STATE(4261), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 3, + ACTIONS(11751), 1, + sym__concat, + ACTIONS(7028), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7026), 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, + [247451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 22, + ACTIONS(1332), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277433,8 +283137,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277445,30 +283151,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [247486] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11753), 1, + sym__concat, + ACTIONS(6995), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6993), 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, + [247523] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11755), 1, + sym__concat, + ACTIONS(7003), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7001), 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, + [247560] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4523), 1, anon_sym_BQUOTE, - [241671] = 3, + ACTIONS(5629), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11761), 1, + anon_sym_LT_LT_LT, + ACTIONS(11763), 1, + sym_file_descriptor, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5559), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11759), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5627), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4824), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11757), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [247615] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(11761), 1, + anon_sym_LT_LT_LT, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4501), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + STATE(4824), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -277477,35 +283295,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [241706] = 7, + anon_sym_BQUOTE, + [247658] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11396), 1, + ACTIONS(11761), 1, anon_sym_LT_LT_LT, - STATE(4954), 1, + STATE(5030), 1, sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4327), 3, + ACTIONS(4508), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4634), 3, + STATE(4824), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 17, + ACTIONS(4499), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -277514,15 +283330,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241749] = 3, + anon_sym_BQUOTE, + [247699] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 4, + ACTIONS(11765), 1, + anon_sym_LT_LT_LT, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4508), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 23, + STATE(4869), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4499), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277532,7 +283356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -277543,27 +283366,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [247740] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11623), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11771), 1, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [241784] = 8, + ACTIONS(11773), 1, + sym_file_descriptor, + ACTIONS(11769), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4366), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11767), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11617), 11, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [247785] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11409), 1, + ACTIONS(5184), 1, + ts_builtin_sym_end, + ACTIONS(5190), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11411), 1, + ACTIONS(11765), 1, + anon_sym_LT_LT_LT, + ACTIONS(11779), 1, sym_file_descriptor, - ACTIONS(11403), 2, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11406), 2, + ACTIONS(5188), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11777), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4265), 3, + ACTIONS(5186), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4869), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11400), 8, + ACTIONS(11775), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -277572,33 +283445,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11398), 10, + [247840] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - [241829] = 8, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [247875] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11250), 1, - anon_sym_LT_LT_LT, - ACTIONS(11416), 1, + ACTIONS(3278), 1, + ts_builtin_sym_end, + ACTIONS(5261), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11418), 1, + ACTIONS(11765), 1, + anon_sym_LT_LT_LT, + ACTIONS(11779), 1, sym_file_descriptor, - ACTIONS(11248), 2, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5188), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11777), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4936), 2, + ACTIONS(5259), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4869), 3, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11246), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11775), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -277607,32 +283519,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11414), 12, + [247930] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11609), 1, + aux_sym_concatenation_token1, + ACTIONS(11611), 1, + sym__concat, + STATE(4452), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4971), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [241874] = 6, + anon_sym_LT_LT_LT, + [247971] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11361), 1, + ACTIONS(11609), 1, aux_sym_concatenation_token1, - ACTIONS(11363), 1, + ACTIONS(11611), 1, sym__concat, - STATE(4284), 1, + STATE(4455), 1, aux_sym_concatenation_repeat1, - ACTIONS(4428), 2, + ACTIONS(5017), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 22, + ACTIONS(5015), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277655,19 +283589,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [241915] = 6, + [248012] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11361), 1, + ACTIONS(11609), 1, aux_sym_concatenation_token1, - ACTIONS(11363), 1, + ACTIONS(11611), 1, sym__concat, - STATE(4308), 1, + STATE(4452), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 2, + ACTIONS(5046), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 22, + ACTIONS(5044), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277690,15 +283624,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [241956] = 3, + [248053] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 4, - sym_file_descriptor, + ACTIONS(11609), 1, + aux_sym_concatenation_token1, + ACTIONS(11611), 1, sym__concat, - sym_variable_name, + STATE(4455), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 23, + ACTIONS(5048), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277708,7 +283646,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -277721,16 +283658,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [241991] = 3, + anon_sym_LT_LT_LT, + [248094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1326), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1324), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277754,20 +283691,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [242026] = 6, + [248129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11420), 1, - sym_variable_name, - STATE(6765), 1, - sym_subscript, - ACTIONS(11294), 2, + ACTIONS(1378), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4271), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11292), 21, + ACTIONS(1376), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277777,6 +283709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -277789,17 +283722,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [242067] = 5, + aux_sym_concatenation_token1, + [248164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11423), 1, - sym__special_character, - STATE(4272), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 2, + ACTIONS(11781), 1, + aux_sym_concatenation_token1, + ACTIONS(11784), 1, + sym__concat, + STATE(4342), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 23, + ACTIONS(1304), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277809,10 +283746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277822,15 +283757,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [242106] = 3, + anon_sym_BQUOTE, + [248205] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(11787), 1, + sym__special_character, + STATE(4381), 1, + aux_sym__literal_repeat1, + ACTIONS(5495), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 24, + ACTIONS(5493), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277840,10 +283780,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277853,89 +283791,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [242141] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11426), 1, - sym__concat, - ACTIONS(6859), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6857), 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, - [242178] = 6, + anon_sym_BQUOTE, + [248244] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(11361), 1, - aux_sym_concatenation_token1, - ACTIONS(11363), 1, - sym__concat, - STATE(4284), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 2, - sym_file_descriptor, + ACTIONS(3280), 1, + anon_sym_RPAREN, + ACTIONS(4733), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 22, - anon_sym_SEMI, + ACTIONS(11716), 1, + anon_sym_LT_LT_LT, + ACTIONS(11718), 1, + sym_file_descriptor, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5164), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11714), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4727), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4739), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11712), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [242219] = 6, + [248299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11361), 1, - aux_sym_concatenation_token1, - ACTIONS(11363), 1, - sym__concat, - STATE(4308), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 2, + ACTIONS(1346), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 22, + ACTIONS(1344), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277945,9 +283852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277958,14 +283864,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [242260] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [248334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(1350), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 24, + ACTIONS(1348), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -277975,10 +283884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -277990,48 +283897,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [242295] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11428), 1, - sym__concat, - ACTIONS(6865), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6863), 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, - [242332] = 3, + anon_sym_BQUOTE, + [248369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 23, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278041,10 +283916,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278054,16 +283927,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [242367] = 3, + anon_sym_BQUOTE, + [248404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1338), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 23, + ACTIONS(1336), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278087,15 +283962,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [242402] = 3, + [248439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1354), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1352), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278105,10 +283980,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278118,16 +283991,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [242437] = 3, + anon_sym_BQUOTE, + [248474] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1362), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1360), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278137,10 +284012,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278150,20 +284023,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [242472] = 6, + anon_sym_BQUOTE, + [248509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11430), 1, - aux_sym_concatenation_token1, - ACTIONS(11432), 1, - sym__concat, - STATE(4437), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 2, + ACTIONS(1366), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(1364), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278173,9 +284044,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278185,20 +284055,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [242513] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [248544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11361), 1, - aux_sym_concatenation_token1, - ACTIONS(11434), 1, - sym__concat, - STATE(4326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, + ACTIONS(1358), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 22, + ACTIONS(1356), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278208,9 +284076,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278221,19 +284088,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [242554] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [248579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11361), 1, - aux_sym_concatenation_token1, - ACTIONS(11363), 1, - sym__concat, - STATE(4284), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5589), 2, + ACTIONS(1374), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 22, + ACTIONS(1372), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278243,9 +284108,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278256,19 +284120,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [242595] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [248614] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11361), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11363), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4308), 1, + STATE(4492), 1, aux_sym_concatenation_repeat1, - ACTIONS(2169), 2, + ACTIONS(1302), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 22, + ACTIONS(1300), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278279,8 +284146,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278291,20 +284156,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [242636] = 6, + sym__special_character, + [248655] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11436), 1, - aux_sym_concatenation_token1, - ACTIONS(11439), 1, - sym__concat, - STATE(4287), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 3, + ACTIONS(11793), 1, + sym__special_character, + STATE(4355), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 21, + ACTIONS(1394), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278325,17 +284189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [242677] = 3, + [248694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1390), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 22, + ACTIONS(1388), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278356,83 +284220,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [242712] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11442), 1, - sym__concat, - ACTIONS(6837), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6835), 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, - [242749] = 4, + [248729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11444), 1, - sym__concat, - ACTIONS(6819), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6817), 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, - [242786] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 4, + ACTIONS(1326), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 23, + ACTIONS(1324), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278442,10 +284241,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278455,18 +284252,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [242821] = 5, + anon_sym_BQUOTE, + [248764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11446), 1, - sym__special_character, - STATE(4272), 1, - aux_sym__literal_repeat1, - ACTIONS(5589), 2, + ACTIONS(1330), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 23, + ACTIONS(1328), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278476,10 +284273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278490,56 +284285,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [242860] = 8, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [248799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11250), 1, - anon_sym_LT_LT_LT, - ACTIONS(11418), 1, + ACTIONS(1338), 4, sym_file_descriptor, - ACTIONS(11450), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11248), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4949), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11246), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11448), 12, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [242905] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11361), 1, - aux_sym_concatenation_token1, - ACTIONS(11363), 1, sym__concat, - STATE(4284), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5595), 2, - sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 22, + ACTIONS(1336), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278549,9 +284305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278562,19 +284317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [242946] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [248834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11361), 1, - aux_sym_concatenation_token1, - ACTIONS(11363), 1, - sym__concat, - STATE(4308), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2173), 2, + ACTIONS(1334), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 22, + ACTIONS(1332), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278584,9 +284337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278597,27 +284349,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [242987] = 7, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [248869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11452), 1, - anon_sym_LT_LT_LT, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4327), 2, + ACTIONS(1342), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 18, + ACTIONS(1340), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -278625,6 +284371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -278633,15 +284380,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243030] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [248904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1322), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1320), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278665,16 +284415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243065] = 3, + [248939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 5, + ACTIONS(1378), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 22, + ACTIONS(1376), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278695,17 +284444,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243100] = 3, + [248974] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1382), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(1380), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278729,15 +284479,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243135] = 3, + [249009] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(11796), 1, + sym__special_character, + STATE(4355), 1, + aux_sym__literal_repeat1, + ACTIONS(5901), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(5899), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278759,49 +284512,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243170] = 3, + [249048] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(11653), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 24, + ACTIONS(11804), 1, + anon_sym_LT_LT_LT, + ACTIONS(11807), 1, + sym_file_descriptor, + ACTIONS(11801), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4366), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11798), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11645), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [243205] = 3, + [249093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(1370), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 23, + ACTIONS(1368), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278811,10 +284568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278824,15 +284579,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [243240] = 3, + anon_sym_BQUOTE, + [249128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1386), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 24, + ACTIONS(1384), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278842,10 +284600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278857,15 +284613,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [243275] = 3, + anon_sym_BQUOTE, + [249163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1370), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1368), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278889,15 +284646,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243310] = 3, + [249198] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(11796), 1, + sym__special_character, + STATE(4355), 1, + aux_sym__literal_repeat1, + ACTIONS(5907), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(5905), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278919,21 +284679,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243345] = 6, + [249237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4462), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 2, + ACTIONS(1382), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(1380), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278943,8 +284698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -278954,22 +284711,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [243386] = 6, + aux_sym_concatenation_token1, + [249272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, - aux_sym_concatenation_token1, - ACTIONS(11460), 1, - sym__concat, - STATE(4465), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 3, + ACTIONS(1346), 5, sym_file_descriptor, + sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 21, + ACTIONS(1344), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -278990,20 +284742,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [243427] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [249307] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11361), 1, - aux_sym_concatenation_token1, - ACTIONS(11462), 1, - sym__concat, - STATE(4326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(1350), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 22, + ACTIONS(1348), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279013,9 +284763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279025,53 +284774,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [243468] = 8, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [249342] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11250), 1, - anon_sym_LT_LT_LT, - ACTIONS(11418), 1, + ACTIONS(11613), 1, + aux_sym_concatenation_token1, + ACTIONS(11810), 1, + sym__concat, + STATE(4390), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 3, sym_file_descriptor, - ACTIONS(11466), 1, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(11248), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4884), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11246), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11464), 12, + ACTIONS(1314), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_esac, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243513] = 3, + [249383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(1370), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 23, + ACTIONS(1368), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279094,64 +284841,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [243548] = 13, + [249418] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, - anon_sym_BQUOTE, - ACTIONS(5107), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11472), 1, - anon_sym_LT_LT_LT, - ACTIONS(11474), 1, + ACTIONS(11796), 1, + sym__special_character, + STATE(4355), 1, + aux_sym__literal_repeat1, + ACTIONS(4973), 3, sym_file_descriptor, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5077), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(4971), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11470), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5105), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11468), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [243603] = 6, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [249457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11452), 1, - anon_sym_LT_LT_LT, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4323), 2, + ACTIONS(1362), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4310), 20, + ACTIONS(1360), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279172,19 +284907,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243644] = 5, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [249492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11476), 1, - sym__special_character, - STATE(4361), 1, - aux_sym__literal_repeat1, - ACTIONS(5167), 4, + ACTIONS(1366), 5, sym_file_descriptor, + sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 21, + ACTIONS(1364), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279205,16 +284939,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243683] = 3, + [249527] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 4, + ACTIONS(11796), 1, + sym__special_character, + STATE(4355), 1, + aux_sym__literal_repeat1, + ACTIONS(5046), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 23, + ACTIONS(5044), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279224,10 +284962,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279237,16 +284973,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [243718] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [249566] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, - sym_file_descriptor, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(11814), 1, sym__concat, + STATE(4532), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 4, + sym_file_descriptor, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(1300), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279256,10 +284999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279269,17 +285009,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [243753] = 3, + sym__special_character, + [249607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 5, + ACTIONS(11816), 1, + sym__special_character, + STATE(4381), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 4, sym_file_descriptor, - sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(1394), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279300,19 +285043,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243788] = 5, + [249646] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11446), 1, - sym__special_character, - STATE(4272), 1, - aux_sym__literal_repeat1, - ACTIONS(5595), 2, + ACTIONS(1358), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 23, + ACTIONS(1356), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279322,10 +285063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279335,16 +285074,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [243827] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [249681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1354), 5, sym_file_descriptor, sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 23, + ACTIONS(1352), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279365,19 +285106,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243862] = 3, + [249716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 5, + ACTIONS(1374), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1372), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279400,20 +285140,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [243897] = 6, + [249751] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11381), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11383), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4342), 1, + STATE(4551), 1, aux_sym_concatenation_repeat1, - ACTIONS(5167), 3, + ACTIONS(1302), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 21, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279423,9 +285162,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279435,17 +285173,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [243938] = 5, + anon_sym_LT_LT_LT, + sym__special_character, + [249792] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11446), 1, - sym__special_character, - STATE(4272), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 2, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(11814), 1, + sym__concat, + STATE(4553), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 23, + ACTIONS(1300), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279455,10 +285198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279468,17 +285209,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [243977] = 3, + sym__special_character, + [249833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 5, + ACTIONS(1390), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(1388), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279501,20 +285242,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [244012] = 6, + [249868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11381), 1, - aux_sym_concatenation_token1, - ACTIONS(11383), 1, - sym__concat, - STATE(4344), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5175), 3, + ACTIONS(1330), 5, sym_file_descriptor, + sym__concat, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 21, + ACTIONS(1328), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279524,9 +285261,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279536,14 +285272,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244053] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [249903] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, - sym_file_descriptor, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, sym__concat, + STATE(4564), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 24, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279553,10 +285296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279567,16 +285307,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [244088] = 3, + sym__special_character, + anon_sym_BQUOTE, + [249944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym_file_descriptor, + ACTIONS(11819), 1, + aux_sym_concatenation_token1, + ACTIONS(11822), 1, sym__concat, - ts_builtin_sym_end, + STATE(4390), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1304), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279586,8 +285332,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279597,22 +285344,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [244123] = 6, + [249985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11478), 1, - aux_sym_concatenation_token1, - ACTIONS(11481), 1, - sym__concat, - STATE(4326), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 2, + ACTIONS(1342), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(1340), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279622,9 +285363,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279634,20 +285374,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [244164] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [250020] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11288), 1, - aux_sym_concatenation_token1, - ACTIONS(11484), 1, - sym__concat, - STATE(4343), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(1322), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 22, + ACTIONS(1320), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279657,10 +285395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279670,20 +285406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244205] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [250055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4458), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 3, + ACTIONS(1326), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 21, + ACTIONS(1324), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279693,6 +285427,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -279703,16 +285438,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [244246] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [250090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, + ACTIONS(1378), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 24, + ACTIONS(1376), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279722,10 +285459,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279735,18 +285470,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [244281] = 3, + anon_sym_BQUOTE, + [250125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 5, + ACTIONS(1338), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(1336), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279769,22 +285504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [244316] = 6, + [250160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11396), 1, - anon_sym_LT_LT_LT, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4323), 3, + ACTIONS(1382), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4634), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4310), 19, + ACTIONS(1380), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279794,6 +285523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -279804,14 +285534,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244357] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [250195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, + ACTIONS(1334), 5, sym_file_descriptor, sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 24, + ACTIONS(1332), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279821,10 +285555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279834,21 +285566,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [244392] = 6, + anon_sym_BQUOTE, + [250230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11288), 1, - aux_sym_concatenation_token1, - ACTIONS(11290), 1, - sym__concat, - STATE(4414), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 2, + ACTIONS(1370), 5, sym_file_descriptor, + sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 22, + ACTIONS(1368), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279858,10 +285587,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279871,16 +285598,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244433] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [250265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 5, + ACTIONS(1386), 5, sym_file_descriptor, sym__concat, sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(1384), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279903,56 +285632,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [244468] = 8, + [250300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11355), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11490), 1, - anon_sym_LT_LT_LT, - ACTIONS(11492), 1, + ACTIONS(1370), 5, sym_file_descriptor, - ACTIONS(11488), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4389), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11486), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11349), 11, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [244513] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11288), 1, - aux_sym_concatenation_token1, - ACTIONS(11290), 1, sym__concat, - STATE(4327), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4513), 2, - sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 22, + ACTIONS(1368), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -279962,10 +285651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -279975,17 +285662,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244554] = 5, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [250335] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11446), 1, - sym__special_character, - STATE(4272), 1, - aux_sym__literal_repeat1, - ACTIONS(4579), 2, + ACTIONS(1386), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 23, + ACTIONS(1384), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280009,15 +285695,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [244593] = 3, + aux_sym_concatenation_token1, + [250370] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, - sym_file_descriptor, + ACTIONS(11683), 1, + aux_sym_concatenation_token1, + ACTIONS(11825), 1, sym__concat, - sym_variable_name, + STATE(4405), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 23, + ACTIONS(1294), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280040,20 +285731,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [244628] = 6, + [250411] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11288), 1, + ACTIONS(11683), 1, aux_sym_concatenation_token1, - ACTIONS(11290), 1, + ACTIONS(11827), 1, sym__concat, - STATE(4414), 1, + STATE(4405), 1, aux_sym_concatenation_repeat1, - ACTIONS(4579), 2, + ACTIONS(1316), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 22, + ACTIONS(1314), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280076,18 +285766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244669] = 5, + [250452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11494), 1, - sym__special_character, - STATE(4261), 1, - aux_sym__literal_repeat1, - ACTIONS(4579), 3, + ACTIONS(1370), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 22, + ACTIONS(1368), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280097,8 +285783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280109,15 +285797,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [244708] = 3, + aux_sym_concatenation_token1, + [250487] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, - sym_file_descriptor, + ACTIONS(11829), 1, + aux_sym_concatenation_token1, + ACTIONS(11832), 1, sym__concat, + STATE(4405), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 24, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280140,22 +285833,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [250528] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3280), 1, + anon_sym_BQUOTE, + ACTIONS(5561), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11761), 1, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [244743] = 6, + ACTIONS(11763), 1, + sym_file_descriptor, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5559), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11759), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5557), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4824), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11757), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [250583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11381), 1, - aux_sym_concatenation_token1, - ACTIONS(11496), 1, - sym__concat, - STATE(4348), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 3, + ACTIONS(1334), 4, sym_file_descriptor, + sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 21, + ACTIONS(1332), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280165,6 +285893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -280177,19 +285906,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244784] = 6, + aux_sym_concatenation_token1, + [250618] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11498), 1, + ACTIONS(11683), 1, aux_sym_concatenation_token1, - ACTIONS(11501), 1, + ACTIONS(11685), 1, sym__concat, - STATE(4343), 1, + STATE(4402), 1, aux_sym_concatenation_repeat1, - ACTIONS(1278), 2, + ACTIONS(4973), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(4971), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280212,20 +285942,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244825] = 6, + [250659] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11381), 1, + ACTIONS(11683), 1, aux_sym_concatenation_token1, - ACTIONS(11504), 1, + ACTIONS(11685), 1, sym__concat, - STATE(4348), 1, + STATE(4403), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + ACTIONS(5017), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 21, + ACTIONS(5015), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280235,6 +285964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -280247,15 +285977,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244866] = 3, + [250700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(1350), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 23, + ACTIONS(1348), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280265,8 +285994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280278,20 +286009,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [244901] = 6, + [250735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11288), 1, - aux_sym_concatenation_token1, - ACTIONS(11290), 1, - sym__concat, - STATE(4327), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 2, + ACTIONS(1306), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 22, + ACTIONS(1304), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280314,15 +286039,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [244942] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [250770] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1370), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1368), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280346,20 +286073,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [244977] = 6, + [250805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11506), 1, - aux_sym_concatenation_token1, - ACTIONS(11509), 1, - sym__concat, - STATE(4348), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 3, + ACTIONS(1346), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 21, + ACTIONS(1344), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280369,6 +286090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -280381,14 +286103,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245018] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [250840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1362), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 24, + ACTIONS(1360), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280413,55 +286137,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [245053] = 11, + [250875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11512), 1, + ACTIONS(1366), 3, sym_file_descriptor, - ACTIONS(4306), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1364), 24, anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4308), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4310), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4312), 2, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11248), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4407), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4314), 4, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(11246), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [245104] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [250910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1386), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 23, + ACTIONS(1384), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280471,8 +286187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280482,18 +286200,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [245139] = 3, + [250945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1350), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 23, + ACTIONS(1348), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280503,8 +286219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280514,18 +286232,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [245174] = 3, + [250980] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 23, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280535,8 +286251,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280546,24 +286264,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [245209] = 6, + [251015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, - aux_sym_concatenation_token1, - ACTIONS(11460), 1, - sym__concat, - STATE(4550), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 4, + ACTIONS(1370), 4, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 20, + ACTIONS(1368), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280573,7 +286283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280583,20 +286296,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [245250] = 6, + aux_sym_concatenation_token1, + [251050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4498), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 2, + ACTIONS(1358), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(1356), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280606,7 +286314,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280617,22 +286328,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_BQUOTE, - [245291] = 6, + aux_sym_concatenation_token1, + [251085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, - aux_sym_concatenation_token1, - ACTIONS(11460), 1, - sym__concat, - STATE(4500), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 3, + ACTIONS(1354), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 21, + ACTIONS(1352), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280642,7 +286346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280652,21 +286359,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - anon_sym_BQUOTE, - [245332] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [251120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11288), 1, - aux_sym_concatenation_token1, - ACTIONS(11290), 1, - sym__concat, - STATE(4414), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5589), 2, + ACTIONS(1374), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 22, + ACTIONS(1372), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280689,19 +286391,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245373] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [251155] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11288), 1, + ACTIONS(11683), 1, aux_sym_concatenation_token1, - ACTIONS(11290), 1, + ACTIONS(11685), 1, sym__concat, - STATE(4327), 1, + STATE(4402), 1, aux_sym_concatenation_repeat1, - ACTIONS(2169), 2, + ACTIONS(5046), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 22, + ACTIONS(5044), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280724,15 +286428,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245414] = 3, + [251196] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 4, - sym_file_descriptor, + ACTIONS(11683), 1, + aux_sym_concatenation_token1, + ACTIONS(11685), 1, sym__concat, - sym_variable_name, + STATE(4403), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 23, + ACTIONS(5048), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280755,16 +286463,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [245449] = 3, + [251237] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(11835), 1, + sym__special_character, + STATE(4437), 1, + aux_sym__literal_repeat1, + ACTIONS(5495), 3, sym_file_descriptor, - sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(5493), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280787,20 +286497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [245484] = 5, + [251276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11514), 1, - sym__special_character, - STATE(4361), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 4, + ACTIONS(1346), 4, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 21, + ACTIONS(1344), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280810,8 +286515,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280821,19 +286528,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [245523] = 5, + aux_sym_concatenation_token1, + [251311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11517), 1, + ACTIONS(11837), 1, sym__special_character, - STATE(4362), 1, + STATE(4427), 1, aux_sym__literal_repeat1, - ACTIONS(1362), 3, + ACTIONS(1396), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 22, + ACTIONS(1394), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280856,16 +286562,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245562] = 3, + anon_sym_LT_LT_LT, + [251350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 5, + ACTIONS(1362), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(1360), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280875,8 +286581,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280887,51 +286595,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [245597] = 5, + [251385] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11494), 1, - sym__special_character, - STATE(4261), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 3, + ACTIONS(11569), 1, + anon_sym_LT_LT_LT, + ACTIONS(11724), 1, sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(11842), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11567), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5039), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11565), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11840), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [245636] = 3, + [251430] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 5, + ACTIONS(1366), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1364), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280941,8 +286650,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -280953,15 +286664,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [245671] = 3, + [251465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, + ACTIONS(1358), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 24, + ACTIONS(1356), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -280984,17 +286695,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [245706] = 3, + [251500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 4, + ACTIONS(1354), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 23, + ACTIONS(1352), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281004,8 +286714,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281015,22 +286727,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [245741] = 3, + [251535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4501), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 23, + STATE(4436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -281040,7 +286754,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -281049,21 +286762,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [245776] = 6, + [251574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11520), 1, - sym_variable_name, - STATE(6765), 1, - sym_subscript, - ACTIONS(11309), 2, + ACTIONS(4501), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4271), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11307), 21, + STATE(4436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281073,6 +286782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -281085,15 +286795,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245817] = 3, + [251611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 4, + ACTIONS(1374), 4, sym_file_descriptor, sym__concat, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 23, + ACTIONS(1372), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281117,54 +286827,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [245852] = 6, + [251646] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11288), 1, - aux_sym_concatenation_token1, - ACTIONS(11290), 1, - sym__concat, - STATE(4414), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5595), 2, + ACTIONS(11744), 1, sym_file_descriptor, + ACTIONS(11846), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 22, + ACTIONS(4521), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11567), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4319), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11565), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11844), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [245893] = 6, + [251691] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11288), 1, - aux_sym_concatenation_token1, - ACTIONS(11290), 1, - sym__concat, - STATE(4327), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2173), 2, + ACTIONS(11848), 1, + sym__special_character, + STATE(4437), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 22, + ACTIONS(1394), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281187,20 +286898,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245934] = 5, + [251730] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 2, + ACTIONS(11765), 1, + anon_sym_LT_LT_LT, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4327), 2, + ACTIONS(4501), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4407), 3, + STATE(4869), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 20, + ACTIONS(4497), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281209,10 +286925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -281221,97 +286934,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [245973] = 11, + [251773] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4346), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11512), 1, + ACTIONS(11683), 1, + aux_sym_concatenation_token1, + ACTIONS(11685), 1, + sym__concat, + STATE(4402), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5901), 2, sym_file_descriptor, - ACTIONS(4308), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5899), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4310), 2, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4312), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4344), 2, - anon_sym_SEMI, anon_sym_AMP, - ACTIONS(11248), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4407), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2755), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - ACTIONS(11246), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [246024] = 13, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [251814] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 1, - ts_builtin_sym_end, - ACTIONS(4707), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11396), 1, - anon_sym_LT_LT_LT, - ACTIONS(11526), 1, + ACTIONS(11683), 1, + aux_sym_concatenation_token1, + ACTIONS(11685), 1, + sym__concat, + STATE(4403), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2156), 2, sym_file_descriptor, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4703), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(2154), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11524), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4701), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4634), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11522), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [246079] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [251855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(1390), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 23, + ACTIONS(1388), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281321,8 +287021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281334,16 +287036,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246114] = 3, + [251890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 4, + ACTIONS(1330), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 23, + ACTIONS(1328), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281353,8 +287053,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281366,19 +287068,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246149] = 5, + [251925] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11494), 1, - sym__special_character, - STATE(4261), 1, - aux_sym__literal_repeat1, - ACTIONS(5589), 3, + ACTIONS(11683), 1, + aux_sym_concatenation_token1, + ACTIONS(11685), 1, + sym__concat, + STATE(4402), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5907), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 22, + ACTIONS(5905), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281388,8 +287090,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281399,17 +287103,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [246188] = 3, + [251966] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, - sym_file_descriptor, + ACTIONS(11683), 1, + aux_sym_concatenation_token1, + ACTIONS(11685), 1, sym__concat, - ts_builtin_sym_end, + STATE(4403), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(2158), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281419,8 +287125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281430,43 +287138,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246223] = 13, + [252007] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4714), 1, - ts_builtin_sym_end, - ACTIONS(4718), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11396), 1, + ACTIONS(11569), 1, anon_sym_LT_LT_LT, - ACTIONS(11526), 1, + ACTIONS(11724), 1, sym_file_descriptor, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4703), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11524), 2, + ACTIONS(11853), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11567), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4716), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4634), 3, + STATE(4947), 2, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11522), 8, + sym_herestring_redirect, + ACTIONS(11565), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -281475,17 +287162,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [246278] = 4, + ACTIONS(11851), 12, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [252052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 2, + ACTIONS(1390), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4407), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 22, + ACTIONS(1388), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281508,15 +287206,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246315] = 3, + aux_sym_concatenation_token1, + [252087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 4, + ACTIONS(1330), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 23, + ACTIONS(1328), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281526,8 +287225,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281537,17 +287238,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246350] = 3, + [252122] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, + ACTIONS(11609), 1, + aux_sym_concatenation_token1, + ACTIONS(11611), 1, sym__concat, + STATE(4452), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5901), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 24, + ACTIONS(5899), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281557,7 +287261,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -281571,15 +287274,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [246385] = 3, + [252163] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, - sym_file_descriptor, + ACTIONS(11609), 1, + aux_sym_concatenation_token1, + ACTIONS(11611), 1, sym__concat, + STATE(4455), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2156), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 24, + ACTIONS(2154), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281589,7 +287296,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -281603,17 +287309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [246420] = 3, + [252204] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 5, + ACTIONS(11726), 1, + sym__special_character, + STATE(4427), 1, + aux_sym__literal_repeat1, + ACTIONS(5901), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 22, + ACTIONS(5899), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281623,8 +287329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281634,18 +287342,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246455] = 3, + anon_sym_LT_LT_LT, + [252243] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 5, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4621), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 22, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281655,8 +287365,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281666,16 +287377,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246490] = 3, + sym__special_character, + [252284] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 3, - sym_file_descriptor, + ACTIONS(11609), 1, + aux_sym_concatenation_token1, + ACTIONS(11859), 1, sym__concat, + STATE(4456), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 24, + ACTIONS(1294), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281685,7 +287400,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -281699,15 +287413,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [246525] = 3, + [252325] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 3, + ACTIONS(1342), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 24, + ACTIONS(1340), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281732,95 +287445,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [246560] = 8, + [252360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11373), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11534), 1, - anon_sym_LT_LT_LT, - ACTIONS(11537), 1, + ACTIONS(1322), 3, sym_file_descriptor, - ACTIONS(11531), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4389), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11528), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11365), 11, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [246605] = 13, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [252395] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, - anon_sym_RPAREN, - ACTIONS(4471), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11452), 1, - anon_sym_LT_LT_LT, - ACTIONS(11544), 1, + ACTIONS(11609), 1, + aux_sym_concatenation_token1, + ACTIONS(11861), 1, + sym__concat, + STATE(4456), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 2, sym_file_descriptor, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5012), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4465), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [246660] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [252436] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 5, - sym_file_descriptor, + ACTIONS(11863), 1, + aux_sym_concatenation_token1, + ACTIONS(11866), 1, sym__concat, - sym_variable_name, - ts_builtin_sym_end, + STATE(4456), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 22, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281830,8 +287534,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281841,18 +287546,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246695] = 3, + anon_sym_LT_LT_LT, + [252477] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 5, - sym_file_descriptor, - sym__concat, + ACTIONS(11869), 1, sym_variable_name, - ts_builtin_sym_end, + STATE(6809), 1, + sym_subscript, + ACTIONS(11679), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + STATE(4322), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11677), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281862,8 +287570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281873,16 +287582,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [246730] = 3, + [252518] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 3, + ACTIONS(4539), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11744), 1, + sym_file_descriptor, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4519), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4521), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4537), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11567), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3280), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11565), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [252569] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11726), 1, + sym__special_character, + STATE(4427), 1, + aux_sym__literal_repeat1, + ACTIONS(5907), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 24, + ACTIONS(5905), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281906,16 +287656,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [246765] = 3, + [252608] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 4, - sym_file_descriptor, + ACTIONS(11613), 1, + aux_sym_concatenation_token1, + ACTIONS(11615), 1, sym__concat, + STATE(4462), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5495), 3, + sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 23, + ACTIONS(5493), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281925,7 +287679,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -281938,19 +287691,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [246800] = 5, + [252649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11494), 1, - sym__special_character, - STATE(4261), 1, - aux_sym__literal_repeat1, - ACTIONS(5595), 3, + ACTIONS(11613), 1, + aux_sym_concatenation_token1, + ACTIONS(11615), 1, + sym__concat, + STATE(4374), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5501), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 22, + ACTIONS(5499), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -281960,8 +287714,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -281971,59 +287726,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [246839] = 13, + [252690] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 1, - anon_sym_BQUOTE, - ACTIONS(5079), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11472), 1, - anon_sym_LT_LT_LT, - ACTIONS(11474), 1, + ACTIONS(11613), 1, + aux_sym_concatenation_token1, + ACTIONS(11871), 1, + sym__concat, + STATE(4390), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 3, sym_file_descriptor, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5077), 2, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1294), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11470), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5075), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11468), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [246894] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [252731] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 4, - sym_file_descriptor, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(11814), 1, sym__concat, - ts_builtin_sym_end, + STATE(4567), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 23, + ACTIONS(1300), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282033,7 +287784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -282044,59 +287794,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, + sym__special_character, anon_sym_BQUOTE, - [246929] = 13, + [252772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 1, - anon_sym_RPAREN, - ACTIONS(4527), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11452), 1, - anon_sym_LT_LT_LT, - ACTIONS(11544), 1, + ACTIONS(1390), 3, sym_file_descriptor, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5012), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1388), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4525), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [246984] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [252806] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(11873), 1, + sym__special_character, + STATE(4592), 1, + aux_sym__literal_repeat1, + ACTIONS(4973), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 24, + ACTIONS(4971), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282119,18 +287860,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [247019] = 3, + [252844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 5, + ACTIONS(1358), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 22, + ACTIONS(1356), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282140,8 +287878,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282152,17 +287891,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [247054] = 3, + [252878] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 5, + ACTIONS(11875), 1, + sym__special_character, + STATE(4655), 1, + aux_sym__literal_repeat1, + ACTIONS(4973), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 22, + ACTIONS(4971), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282172,8 +287911,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282183,17 +287923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [247089] = 3, + anon_sym_LT_LT_LT, + [252916] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 4, + ACTIONS(11877), 1, + sym__special_character, + STATE(4494), 1, + aux_sym__literal_repeat1, + ACTIONS(5901), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 23, + ACTIONS(5899), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282214,19 +287956,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [247124] = 3, + [252954] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 5, + ACTIONS(11877), 1, + sym__special_character, + STATE(4494), 1, + aux_sym__literal_repeat1, + ACTIONS(4973), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 22, + ACTIONS(4971), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282247,35 +287989,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, anon_sym_BQUOTE, - [247159] = 7, + [252992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11472), 1, - anon_sym_LT_LT_LT, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4327), 2, + ACTIONS(1338), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 18, + ACTIONS(1336), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -282284,15 +288020,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [247202] = 3, + aux_sym_concatenation_token1, + [253026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 5, + ACTIONS(1354), 4, sym_file_descriptor, sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, ACTIONS(1352), 22, anon_sym_SEMI, @@ -282304,8 +288039,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282316,17 +288052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [247237] = 3, + [253060] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 5, + ACTIONS(11875), 1, + sym__special_character, + STATE(4655), 1, + aux_sym__literal_repeat1, + ACTIONS(5046), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 22, + ACTIONS(5044), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282336,8 +288072,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282347,26 +288084,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [247272] = 8, + anon_sym_LT_LT_LT, + [253098] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11512), 1, - sym_file_descriptor, - ACTIONS(11548), 1, + ACTIONS(11846), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4312), 2, + ACTIONS(11879), 1, + sym_file_descriptor, + ACTIONS(4731), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11248), 2, + ACTIONS(11641), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4265), 3, + STATE(4497), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11246), 8, + ACTIONS(11639), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -282375,57 +288111,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11546), 10, + ACTIONS(11844), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - [247317] = 3, + [253142] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(4733), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 24, + ACTIONS(11879), 1, + sym_file_descriptor, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4727), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4729), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4731), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, + anon_sym_LT_LT_DASH, + ACTIONS(11641), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3280), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + STATE(4473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11639), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [247352] = 3, + [253192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, + ACTIONS(1342), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 24, + ACTIONS(1340), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282435,7 +288177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -282450,14 +288191,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [247387] = 3, + [253226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 3, + ACTIONS(1346), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 24, + ACTIONS(1344), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282467,10 +288209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282480,18 +288220,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [247422] = 3, + anon_sym_BQUOTE, + [253260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 5, + ACTIONS(1350), 4, sym_file_descriptor, sym__concat, - sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 22, + ACTIONS(1348), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282514,18 +288253,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [247457] = 5, + [253294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11550), 1, - sym__special_character, - STATE(4362), 1, - aux_sym__literal_repeat1, - ACTIONS(5167), 3, + ACTIONS(1306), 4, sym_file_descriptor, - sym_variable_name, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 22, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282535,10 +288271,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282548,21 +288282,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247496] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [253328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11472), 1, - anon_sym_LT_LT_LT, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4323), 2, + ACTIONS(11877), 1, + sym__special_character, + STATE(4494), 1, + aux_sym__literal_repeat1, + ACTIONS(5907), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4310), 20, + ACTIONS(5905), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282572,6 +288305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -282583,19 +288317,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [247537] = 6, + [253366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11288), 1, - aux_sym_concatenation_token1, - ACTIONS(11552), 1, - sym__concat, - STATE(4343), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, + ACTIONS(1322), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 22, + ACTIONS(1320), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282605,7 +288334,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -282618,18 +288346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247578] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [253400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11554), 1, - sym__special_character, - STATE(4415), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 3, + ACTIONS(1354), 4, sym_file_descriptor, + sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 21, + ACTIONS(1352), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282650,16 +288377,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, anon_sym_BQUOTE, - [247616] = 3, + [253434] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(11877), 1, + sym__special_character, + STATE(4494), 1, + aux_sym__literal_repeat1, + ACTIONS(5046), 3, sym_file_descriptor, - sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 22, + ACTIONS(5044), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282669,9 +288400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282681,20 +288411,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [247650] = 6, + anon_sym_BQUOTE, + [253472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11430), 1, + ACTIONS(11812), 1, aux_sym_concatenation_token1, - ACTIONS(11432), 1, + ACTIONS(11814), 1, sym__concat, - STATE(4437), 1, + STATE(4532), 1, aux_sym_concatenation_repeat1, - ACTIONS(4428), 2, + ACTIONS(5495), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 21, + ACTIONS(5493), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282705,8 +288437,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282716,19 +288446,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247690] = 6, + [253512] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11430), 1, + ACTIONS(11812), 1, aux_sym_concatenation_token1, - ACTIONS(11432), 1, + ACTIONS(11814), 1, sym__concat, - STATE(4441), 1, + STATE(4534), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 2, + ACTIONS(5501), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 21, + ACTIONS(5499), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282739,8 +288471,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282750,14 +288480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247730] = 3, + [253552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, + ACTIONS(1362), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 23, + ACTIONS(1360), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282767,9 +288498,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282779,16 +288509,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [247764] = 3, + anon_sym_BQUOTE, + [253586] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 3, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, + STATE(4621), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5907), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 23, + ACTIONS(5905), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282810,16 +288545,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [247798] = 3, + [253626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, + ACTIONS(1366), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 23, + ACTIONS(1364), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282829,9 +288563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282841,19 +288574,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [247832] = 5, + anon_sym_BQUOTE, + [253660] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11557), 1, - sym__special_character, - STATE(4435), 1, - aux_sym__literal_repeat1, - ACTIONS(5589), 2, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4624), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 22, + ACTIONS(2158), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282863,7 +288598,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -282876,13 +288610,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [247870] = 3, + [253700] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1358), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, ACTIONS(1356), 22, anon_sym_SEMI, @@ -282894,9 +288628,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282907,15 +288640,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [247904] = 3, + anon_sym_BQUOTE, + [253734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 4, + ACTIONS(1374), 4, sym_file_descriptor, sym__concat, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 22, + ACTIONS(1372), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282925,9 +288659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282938,15 +288671,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [247938] = 3, + anon_sym_BQUOTE, + [253768] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 4, - sym_file_descriptor, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, sym__concat, - sym_variable_name, + STATE(4733), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 22, + ACTIONS(1300), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282957,8 +288696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -282968,20 +288705,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [247972] = 6, + sym__special_character, + [253808] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11430), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11432), 1, + ACTIONS(11885), 1, sym__concat, - STATE(4437), 1, + STATE(4289), 1, aux_sym_concatenation_repeat1, - ACTIONS(4579), 2, + ACTIONS(1296), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 21, + ACTIONS(1294), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -282992,8 +288730,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283003,19 +288739,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248012] = 6, + anon_sym_LT_LT_LT, + [253848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11430), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11432), 1, + ACTIONS(11887), 1, sym__concat, - STATE(4441), 1, + STATE(4289), 1, aux_sym_concatenation_repeat1, - ACTIONS(4595), 2, + ACTIONS(1316), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 21, + ACTIONS(1314), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283026,8 +288764,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283037,14 +288773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248052] = 3, + anon_sym_LT_LT_LT, + [253888] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(11889), 1, + sym__special_character, + STATE(4494), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1394), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283054,10 +288795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283067,18 +288806,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248086] = 5, + anon_sym_BQUOTE, + [253926] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11557), 1, - sym__special_character, - STATE(4435), 1, - aux_sym__literal_repeat1, - ACTIONS(5595), 2, + ACTIONS(1382), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 22, + ACTIONS(1380), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283101,58 +288837,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248124] = 8, + aux_sym_concatenation_token1, + [253960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11355), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11563), 1, - anon_sym_LT_LT_LT, - ACTIONS(11565), 1, + ACTIONS(1374), 4, sym_file_descriptor, - ACTIONS(11561), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4434), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11559), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11349), 10, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1372), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - anon_sym_RPAREN, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248168] = 8, + aux_sym_concatenation_token1, + [253994] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 1, - anon_sym_LT_LT_LT, - ACTIONS(11466), 1, + ACTIONS(11739), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11567), 1, + ACTIONS(11901), 1, sym_file_descriptor, - ACTIONS(11301), 2, + ACTIONS(11895), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11898), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5090), 2, + STATE(4497), 3, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11299), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11892), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -283161,75 +288895,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11464), 11, + ACTIONS(11728), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT_LT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [248212] = 12, + [254038] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11573), 1, - anon_sym_LT_LT_LT, - ACTIONS(11575), 1, + ACTIONS(11873), 1, + sym__special_character, + STATE(4592), 1, + aux_sym__literal_repeat1, + ACTIONS(5046), 2, sym_file_descriptor, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5044), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11571), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5092), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [248264] = 5, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [254076] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4327), 2, + ACTIONS(1342), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4509), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 19, + ACTIONS(1340), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -283238,6 +288959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -283246,53 +288968,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248302] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11373), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11583), 1, - anon_sym_LT_LT_LT, - ACTIONS(11586), 1, - sym_file_descriptor, - ACTIONS(11580), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4434), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11577), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11365), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [248346] = 5, + aux_sym_concatenation_token1, + [254110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11589), 1, - sym__special_character, - STATE(4435), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 2, + ACTIONS(1322), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 22, + ACTIONS(1320), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283302,7 +288987,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -283315,17 +288999,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248384] = 4, + aux_sym_concatenation_token1, + [254144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 2, + ACTIONS(1390), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4509), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 21, + ACTIONS(1388), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283335,9 +289018,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283347,19 +289029,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248420] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [254178] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11430), 1, + ACTIONS(11904), 1, aux_sym_concatenation_token1, - ACTIONS(11592), 1, + ACTIONS(11906), 1, sym__concat, - STATE(4442), 1, + STATE(4508), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, + ACTIONS(1296), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1294), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [254218] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 21, + ACTIONS(1324), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283369,9 +289083,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283381,14 +289094,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248460] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [254252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 3, + ACTIONS(11904), 1, + aux_sym_concatenation_token1, + ACTIONS(11908), 1, + sym__concat, + STATE(4508), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [254292] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 4, sym_file_descriptor, sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 23, + ACTIONS(1328), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283398,10 +289148,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283412,14 +289160,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [248494] = 3, + anon_sym_BQUOTE, + [254326] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1302), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283429,10 +289178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283442,18 +289189,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [248528] = 5, + anon_sym_LT_LT_LT, + sym__special_character, + anon_sym_BQUOTE, + [254360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11594), 1, - sym__special_character, - STATE(4520), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 2, + ACTIONS(1334), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 22, + ACTIONS(1332), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283463,6 +289209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -283475,20 +289222,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [248566] = 6, + aux_sym_concatenation_token1, + [254394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11430), 1, + ACTIONS(11910), 1, aux_sym_concatenation_token1, - ACTIONS(11596), 1, + ACTIONS(11913), 1, sym__concat, - STATE(4442), 1, + STATE(4508), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(1306), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [254434] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 21, + ACTIONS(1336), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283498,9 +289275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283510,19 +289286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248606] = 6, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [254468] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11598), 1, - aux_sym_concatenation_token1, - ACTIONS(11601), 1, - sym__concat, - STATE(4442), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 2, + ACTIONS(1334), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 21, + ACTIONS(1332), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283532,9 +289306,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283544,17 +289317,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248646] = 5, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [254502] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11594), 1, - sym__special_character, - STATE(4520), 1, - aux_sym__literal_repeat1, - ACTIONS(4579), 2, + ACTIONS(1342), 4, sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 22, + ACTIONS(1340), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283564,9 +289337,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283576,16 +289348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [248684] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [254536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, + ACTIONS(1322), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(1320), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283608,15 +289381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [248718] = 3, + [254570] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1378), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1376), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283639,15 +289412,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [248752] = 3, + [254604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1382), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(1380), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283670,51 +289443,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [248786] = 8, + [254638] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11303), 1, - anon_sym_LT_LT_LT, - ACTIONS(11416), 1, + ACTIONS(11904), 1, + aux_sym_concatenation_token1, + ACTIONS(11916), 1, + sym__concat, + STATE(4502), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 3, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(11567), 1, + ACTIONS(1300), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [254678] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11875), 1, + sym__special_character, + STATE(4655), 1, + aux_sym__literal_repeat1, + ACTIONS(5901), 2, sym_file_descriptor, - ACTIONS(11301), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5042), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11299), 8, + aux_sym_heredoc_redirect_token1, + ACTIONS(5899), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11414), 11, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [254716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1370), 4, + sym_file_descriptor, + sym__concat, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [248830] = 3, + aux_sym_concatenation_token1, + anon_sym_BQUOTE, + [254750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1386), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(1384), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283737,46 +289572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [248864] = 3, + [254784] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6837), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6835), 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, - [248898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 4, + ACTIONS(1370), 4, sym_file_descriptor, sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(1368), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283799,144 +289603,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, anon_sym_BQUOTE, - [248932] = 3, + [254818] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6819), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(6817), 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, - [248966] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11303), 1, - anon_sym_LT_LT_LT, - ACTIONS(11450), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11567), 1, + ACTIONS(11918), 1, + sym__special_character, + STATE(4520), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 3, sym_file_descriptor, - ACTIONS(11301), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5111), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11299), 8, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1394), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11448), 11, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [254856] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249010] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7054), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(7052), 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, - [249044] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7073), 5, - anon_sym_COMMA, - anon_sym_CARET, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - ACTIONS(7071), 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, - [249078] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [254890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1378), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(1376), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283946,8 +289684,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283957,17 +289696,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [249112] = 3, + [254924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1338), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1336), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -283977,8 +289715,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -283988,22 +289727,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [249146] = 6, + [254958] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4768), 1, + STATE(4492), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 3, + ACTIONS(5901), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 20, + ACTIONS(5899), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284023,21 +289762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [249186] = 6, + anon_sym_LT_LT_LT, + [254998] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11608), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4240), 1, + STATE(4493), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 3, + ACTIONS(2156), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 20, + ACTIONS(2154), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284058,20 +289797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [249226] = 6, + [255038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11610), 1, - sym__concat, - STATE(4240), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + ACTIONS(1382), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 20, + ACTIONS(1380), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284082,6 +289815,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284092,18 +289827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [249266] = 5, + aux_sym_concatenation_token1, + [255072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11612), 1, - sym__special_character, - STATE(4538), 1, - aux_sym__literal_repeat1, - ACTIONS(5167), 3, + ACTIONS(1334), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 21, + ACTIONS(1332), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284125,19 +289857,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249304] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [255106] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4619), 1, + STATE(4492), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 2, + ACTIONS(5907), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 21, + ACTIONS(5905), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284147,7 +289882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284158,20 +289892,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [249344] = 6, + anon_sym_LT_LT_LT, + [255146] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11614), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4240), 1, + STATE(4493), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, + ACTIONS(2160), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 21, + ACTIONS(2158), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284181,7 +289916,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284193,19 +289927,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [249384] = 6, + [255186] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(1326), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [255220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1378), 4, + sym_file_descriptor, + sym__concat, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(1376), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - ACTIONS(11616), 1, + [255254] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(11921), 1, sym__concat, - STATE(4240), 1, + STATE(4291), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(1296), 4, sym_file_descriptor, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 21, + ACTIONS(1294), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284215,7 +290013,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284226,15 +290023,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [249424] = 3, + [255294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(1338), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(1336), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284256,22 +290053,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [249458] = 6, + [255328] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, + ACTIONS(11812), 1, aux_sym_concatenation_token1, - ACTIONS(11618), 1, + ACTIONS(11923), 1, sym__concat, - STATE(4245), 1, + STATE(4291), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 3, + ACTIONS(1316), 4, sym_file_descriptor, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 20, + ACTIONS(1314), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284281,7 +290078,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284292,20 +290088,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249498] = 6, + [255368] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11620), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4245), 1, + STATE(4492), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + ACTIONS(4973), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 20, + ACTIONS(4971), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284315,7 +290111,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284326,14 +290121,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249538] = 3, + anon_sym_LT_LT_LT, + [255408] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, - sym_file_descriptor, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, sym__concat, + STATE(4493), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(5015), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284344,8 +290146,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284356,34 +290156,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [249572] = 7, + [255448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11573), 1, - anon_sym_LT_LT_LT, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4327), 2, + ACTIONS(1382), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 17, + ACTIONS(1380), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -284392,21 +290186,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249614] = 6, + aux_sym_concatenation_token1, + [255482] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11573), 1, - anon_sym_LT_LT_LT, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4323), 2, + ACTIONS(1334), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4310), 19, + ACTIONS(1332), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284417,6 +290206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284426,14 +290217,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [249654] = 3, + aux_sym_concatenation_token1, + [255516] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(1370), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 23, + ACTIONS(1368), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284443,7 +290235,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -284456,47 +290247,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [249688] = 3, + [255550] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(11929), 1, + anon_sym_LT_LT_LT, + ACTIONS(11931), 1, sym_file_descriptor, - sym__concat, + ACTIONS(11623), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11927), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4657), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11925), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11617), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [249722] = 3, + [255594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1386), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 22, + ACTIONS(1384), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284506,8 +290302,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284517,51 +290314,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [249756] = 6, + [255628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11622), 1, - aux_sym_concatenation_token1, - ACTIONS(11624), 1, - sym__concat, - STATE(4479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [249796] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1326), 4, + ACTIONS(1370), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 22, + ACTIONS(1368), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284571,8 +290333,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284582,51 +290345,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [249830] = 6, + [255662] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11622), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11626), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4479), 1, + STATE(4492), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [249870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1330), 4, + ACTIONS(5046), 3, sym_file_descriptor, - sym__concat, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 22, + ACTIONS(5044), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284636,7 +290370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284647,16 +290380,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [249904] = 3, + anon_sym_LT_LT_LT, + [255702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, + sym__concat, + STATE(4493), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(5048), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284666,7 +290404,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284678,16 +290415,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - anon_sym_BQUOTE, - [249938] = 3, + [255742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(1370), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 23, + ACTIONS(1368), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284697,7 +290433,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -284711,49 +290446,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [249972] = 6, + [255776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11628), 1, - aux_sym_concatenation_token1, - ACTIONS(11631), 1, - sym__concat, - STATE(4479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 20, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [250012] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 4, + ACTIONS(1386), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 22, + ACTIONS(1384), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284763,8 +290464,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284775,16 +290477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [250046] = 3, + [255810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(1370), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 22, + ACTIONS(1368), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284794,8 +290495,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284806,16 +290508,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [250080] = 3, + [255844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 4, + ACTIONS(1306), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 22, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284825,8 +290526,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284837,16 +290539,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [250114] = 3, + [255878] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(11875), 1, + sym__special_character, + STATE(4655), 1, + aux_sym__literal_repeat1, + ACTIONS(5907), 2, sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(5905), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284856,8 +290559,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284867,21 +290571,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [250148] = 6, + anon_sym_LT_LT_LT, + [255916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4648), 1, + STATE(4699), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 2, + ACTIONS(1302), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 21, + ACTIONS(1300), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284891,6 +290594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284901,22 +290605,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, sym__special_character, - [250188] = 6, + [255956] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11460), 1, + ACTIONS(11933), 1, sym__concat, - STATE(4650), 1, + STATE(4289), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 3, + ACTIONS(1296), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 20, + ACTIONS(1294), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284926,6 +290628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -284936,16 +290639,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [250228] = 3, + anon_sym_LT_LT_LT, + [255996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 4, - sym_file_descriptor, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11935), 1, sym__concat, - sym_variable_name, + STATE(4289), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1314), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284955,9 +290662,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284967,16 +290673,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [250262] = 3, + anon_sym_LT_LT_LT, + [256036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 4, - sym_file_descriptor, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(11937), 1, sym__concat, + STATE(4291), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 3, + sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(1294), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -284986,9 +290697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -284998,16 +290708,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [250296] = 3, + [256076] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 4, - sym_file_descriptor, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(11939), 1, sym__concat, - ts_builtin_sym_end, + STATE(4291), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 22, + ACTIONS(1314), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285028,22 +290742,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [250330] = 6, + [256116] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4458), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 3, + ACTIONS(11941), 1, + sym_variable_name, + STATE(6845), 1, + sym_subscript, + STATE(4555), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11707), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 20, + ACTIONS(11705), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285063,21 +290776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250370] = 6, + [256156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 3, + ACTIONS(1302), 4, sym_file_descriptor, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 20, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285087,6 +290794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -285097,28 +290805,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [250410] = 3, + sym__special_character, + anon_sym_BQUOTE, + [256190] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(11944), 1, + anon_sym_LT_LT_LT, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4501), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -285127,56 +290842,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [250444] = 11, + [256232] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4527), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11634), 1, + ACTIONS(11944), 1, + anon_sym_LT_LT_LT, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4508), 2, sym_file_descriptor, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4467), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4469), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4525), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(11301), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4314), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4509), 3, + aux_sym_heredoc_redirect_token1, + STATE(5058), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11299), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [250494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1354), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 22, + ACTIONS(4499), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285186,7 +290866,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -285197,22 +290876,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [256272] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11904), 1, aux_sym_concatenation_token1, + ACTIONS(11916), 1, + sym__concat, + STATE(4502), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5442), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5440), 20, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [250528] = 6, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [256312] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11622), 1, + ACTIONS(11904), 1, aux_sym_concatenation_token1, - ACTIONS(11636), 1, + ACTIONS(11916), 1, sym__concat, - STATE(4473), 1, + STATE(4504), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 3, + ACTIONS(5540), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 20, + ACTIONS(5538), 20, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, @@ -285222,7 +290933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -285233,50 +290944,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [250568] = 8, + [256352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11355), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11642), 1, - anon_sym_LT_LT_LT, - ACTIONS(11644), 1, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, + sym__concat, + STATE(4716), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 2, sym_file_descriptor, - ACTIONS(11640), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4504), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11638), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11349), 10, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [250612] = 3, + anon_sym_LT_LT_LT, + sym__special_character, + [256392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, - sym_file_descriptor, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(11814), 1, sym__concat, + STATE(4719), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(1300), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285287,8 +291002,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285298,21 +291011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [250646] = 6, + sym__special_character, + [256432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4665), 1, + STATE(4725), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 2, + ACTIONS(1302), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 21, + ACTIONS(1300), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285334,19 +291046,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, sym__special_character, anon_sym_BQUOTE, - [250686] = 6, + [256472] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11646), 1, + ACTIONS(11946), 1, sym__concat, - STATE(4240), 1, + STATE(4289), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, + ACTIONS(1296), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 21, + ACTIONS(1294), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285368,19 +291080,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [250726] = 6, + [256512] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11648), 1, + ACTIONS(11948), 1, sym__concat, - STATE(4240), 1, + STATE(4289), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(1316), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 21, + ACTIONS(1314), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285402,20 +291114,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [250766] = 6, + [256552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, - aux_sym_concatenation_token1, - ACTIONS(11650), 1, - sym__concat, - STATE(4245), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 3, + ACTIONS(1362), 3, sym_file_descriptor, - sym_variable_name, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 20, + ACTIONS(1360), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285426,6 +291132,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285435,21 +291143,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [250806] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [256586] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, + ACTIONS(11812), 1, aux_sym_concatenation_token1, - ACTIONS(11652), 1, + ACTIONS(11950), 1, sym__concat, - STATE(4245), 1, + STATE(4291), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + ACTIONS(1296), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 20, + ACTIONS(1294), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285470,58 +291179,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [250846] = 12, + [256626] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5111), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11573), 1, - anon_sym_LT_LT_LT, - ACTIONS(11575), 1, - sym_file_descriptor, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11571), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5109), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11569), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [250898] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11654), 1, - sym__special_character, - STATE(4415), 1, - aux_sym__literal_repeat1, - ACTIONS(5589), 3, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(11952), 1, + sym__concat, + STATE(4291), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 21, + ACTIONS(1314), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285531,7 +291202,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -285543,23 +291213,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [250936] = 8, + [256666] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11373), 1, + ACTIONS(11623), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11662), 1, + ACTIONS(11958), 1, anon_sym_LT_LT_LT, - ACTIONS(11665), 1, + ACTIONS(11960), 1, sym_file_descriptor, - ACTIONS(11659), 2, + ACTIONS(11956), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4504), 3, + STATE(4574), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(11656), 8, + ACTIONS(11954), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -285568,59 +291238,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11365), 10, + ACTIONS(11617), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_LT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [250980] = 5, + [256710] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(11654), 1, - sym__special_character, - STATE(4415), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(5466), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 21, - anon_sym_SEMI, + ACTIONS(11944), 1, + anon_sym_LT_LT_LT, + ACTIONS(11966), 1, + sym_file_descriptor, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5464), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11964), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5462), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11962), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [251018] = 3, + [256762] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(1346), 4, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 22, + ACTIONS(1344), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285630,8 +291307,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285642,47 +291320,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [251052] = 3, + [256796] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 4, - sym_file_descriptor, - sym__concat, - ts_builtin_sym_end, + ACTIONS(5514), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 22, - anon_sym_SEMI, + ACTIONS(11944), 1, + anon_sym_LT_LT_LT, + ACTIONS(11966), 1, + sym_file_descriptor, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5464), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11964), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5512), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11962), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [251086] = 3, + [256848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(1386), 3, sym_file_descriptor, sym__concat, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 22, + ACTIONS(1384), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285692,8 +291377,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -285704,25 +291391,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_BQUOTE, - [251120] = 8, + [256882] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11548), 1, + ACTIONS(11653), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11634), 1, + ACTIONS(11974), 1, + anon_sym_LT_LT_LT, + ACTIONS(11977), 1, sym_file_descriptor, - ACTIONS(4469), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11301), 2, + ACTIONS(11971), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4540), 3, + STATE(4574), 3, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11299), 8, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11968), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -285731,55 +291416,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11546), 9, + ACTIONS(11645), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - [251164] = 3, + anon_sym_LT_LT_DASH, + [256926] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 4, - sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(11633), 1, + anon_sym_LT_LT_LT, + ACTIONS(11842), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(11980), 1, + sym_file_descriptor, + ACTIONS(11641), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5162), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11639), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11840), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [251198] = 3, + [256970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, + ACTIONS(1370), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 23, + ACTIONS(1368), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285789,6 +291480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -285801,39 +291493,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [251232] = 11, + [257004] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4471), 1, + ACTIONS(4830), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11634), 1, + ACTIONS(11879), 1, sym_file_descriptor, - ACTIONS(4310), 2, + ACTIONS(4499), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4465), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4467), 2, + ACTIONS(4729), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4469), 2, + ACTIONS(4731), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11301), 2, + ACTIONS(4828), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11641), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(2755), 3, + ACTIONS(4523), 3, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - STATE(4509), 3, + STATE(4473), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11299), 8, + ACTIONS(11639), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -285842,13 +291533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [251282] = 3, + [257054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 2, + ACTIONS(1358), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 24, + ACTIONS(1356), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285858,7 +291550,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -285872,25 +291563,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [251316] = 8, + aux_sym_concatenation_token1, + [257088] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(11674), 1, + ACTIONS(5507), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11944), 1, anon_sym_LT_LT_LT, - ACTIONS(11677), 1, + ACTIONS(11966), 1, sym_file_descriptor, - ACTIONS(11373), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(11671), 2, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5464), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11964), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4514), 3, + ACTIONS(5505), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5058), 3, sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11668), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11962), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -285899,25 +291604,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11365), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [251360] = 3, + [257140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 4, + ACTIONS(1350), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 22, + ACTIONS(1348), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285927,6 +291621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -285940,14 +291635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [251394] = 3, + [257174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1306), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 23, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285957,6 +291652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -285969,17 +291665,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [251428] = 3, + [257208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1346), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(1344), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -285989,6 +291683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286002,14 +291697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [251462] = 3, + [257242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, + ACTIONS(1362), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 23, + ACTIONS(1360), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286033,14 +291728,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [251496] = 3, + [257276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 3, + ACTIONS(1366), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 23, + ACTIONS(1364), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286064,21 +291759,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [251530] = 5, + [257310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11680), 1, - sym__special_character, - STATE(4520), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 2, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4501), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 22, + STATE(4473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -286087,7 +291784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -286096,16 +291792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [251568] = 3, + [257348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1354), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(1352), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286127,15 +291821,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [251602] = 3, + [257382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 3, + ACTIONS(4501), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 23, + STATE(4473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286145,7 +291843,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286158,15 +291855,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [251636] = 3, + [257418] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(1330), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 23, + ACTIONS(1328), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286176,7 +291872,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286189,20 +291884,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [251670] = 6, + [257452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11430), 1, - aux_sym_concatenation_token1, - ACTIONS(11432), 1, - sym__concat, - STATE(4437), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5589), 2, + ACTIONS(1358), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 21, + ACTIONS(1356), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286212,6 +291903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286224,18 +291916,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251710] = 5, + aux_sym_concatenation_token1, + [257486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11654), 1, - sym__special_character, - STATE(4415), 1, - aux_sym__literal_repeat1, - ACTIONS(5595), 3, + ACTIONS(1354), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 21, + ACTIONS(1352), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286245,8 +291934,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286256,20 +291947,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [251748] = 6, + aux_sym_concatenation_token1, + [257520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11430), 1, - aux_sym_concatenation_token1, - ACTIONS(11432), 1, - sym__concat, - STATE(4441), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2169), 2, + ACTIONS(1374), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 21, + ACTIONS(1372), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286279,6 +291965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286291,18 +291978,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251788] = 5, + aux_sym_concatenation_token1, + [257554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11654), 1, + ACTIONS(11982), 1, sym__special_character, - STATE(4415), 1, + STATE(4592), 1, aux_sym__literal_repeat1, - ACTIONS(4579), 3, + ACTIONS(1396), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 21, + ACTIONS(1394), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286312,8 +291999,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286323,15 +292012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [251826] = 3, + [257592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 3, + ACTIONS(1362), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 23, + ACTIONS(1360), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286341,7 +292030,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286355,21 +292043,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [251860] = 6, + [257626] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, - aux_sym_concatenation_token1, - ACTIONS(11460), 1, - sym__concat, - STATE(4550), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5167), 4, + ACTIONS(1374), 3, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 19, + ACTIONS(1372), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286380,6 +292061,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286389,21 +292072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251900] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [257660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, - aux_sym_concatenation_token1, - ACTIONS(11460), 1, - sym__concat, - STATE(4552), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5175), 4, + ACTIONS(1366), 4, sym_file_descriptor, + sym__concat, sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 19, + ACTIONS(1364), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286414,6 +292093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286423,17 +292104,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251940] = 5, + aux_sym_concatenation_token1, + [257694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11557), 1, - sym__special_character, - STATE(4435), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 2, + ACTIONS(1366), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 22, + ACTIONS(1364), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286443,7 +292122,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286456,19 +292134,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [251978] = 6, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [257728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11430), 1, - aux_sym_concatenation_token1, - ACTIONS(11432), 1, - sym__concat, - STATE(4437), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5595), 2, + ACTIONS(1326), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 21, + ACTIONS(1324), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286478,6 +292153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286490,49 +292166,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252018] = 6, + aux_sym_concatenation_token1, + [257762] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11430), 1, - aux_sym_concatenation_token1, - ACTIONS(11432), 1, - sym__concat, - STATE(4441), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2173), 2, - sym_file_descriptor, + ACTIONS(11633), 1, + anon_sym_LT_LT_LT, + ACTIONS(11853), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 21, + ACTIONS(11980), 1, + sym_file_descriptor, + ACTIONS(11641), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5123), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11639), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11851), 11, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252058] = 3, + [257806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, + ACTIONS(1378), 3, sym_file_descriptor, sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1376), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286542,6 +292220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286555,14 +292234,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [252092] = 3, + [257840] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 3, + ACTIONS(6995), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(6993), 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, + [257874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1390), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 23, + ACTIONS(1388), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286572,7 +292283,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -286586,17 +292296,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [252126] = 5, + [257908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11557), 1, - sym__special_character, - STATE(4435), 1, - aux_sym__literal_repeat1, - ACTIONS(4579), 2, + ACTIONS(7003), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7001), 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, + [257942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 22, + ACTIONS(1300), 24, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286619,52 +292356,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252164] = 6, + anon_sym_LT_LT_LT, + sym__special_character, + [257976] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11622), 1, - aux_sym_concatenation_token1, - ACTIONS(11636), 1, - sym__concat, - STATE(4473), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5317), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(11633), 1, + anon_sym_LT_LT_LT, + ACTIONS(11722), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 20, - anon_sym_LPAREN_LPAREN, + ACTIONS(11980), 1, + sym_file_descriptor, + ACTIONS(11641), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5151), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11639), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11720), 11, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [252204] = 5, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [258020] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11683), 1, - sym__special_character, - STATE(4538), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 3, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4621), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 21, + ACTIONS(4971), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286686,94 +292428,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252242] = 6, + [258060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11622), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(11636), 1, + ACTIONS(11857), 1, sym__concat, - STATE(4475), 1, + STATE(4624), 1, aux_sym_concatenation_repeat1, - ACTIONS(5321), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(5017), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5319), 20, - anon_sym_LPAREN_LPAREN, + ACTIONS(5015), 21, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [252282] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11409), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11695), 1, - sym_file_descriptor, - ACTIONS(11689), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11692), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4540), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11686), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11398), 9, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [258100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7379), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7377), 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, + [258134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1390), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1388), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - [252326] = 8, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [258168] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11702), 1, + ACTIONS(11623), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11989), 1, anon_sym_LT_LT_LT, - ACTIONS(11704), 1, + ACTIONS(11991), 1, sym_file_descriptor, - ACTIONS(11355), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(11700), 2, + ACTIONS(11987), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4514), 3, + STATE(4619), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(11698), 8, + ACTIONS(11985), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -286782,7 +292549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11349), 9, + ACTIONS(11617), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286792,14 +292559,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [252370] = 3, + anon_sym_BQUOTE, + [258212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, + ACTIONS(1330), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 23, + ACTIONS(1328), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286823,21 +292591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [252404] = 6, + [258246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11706), 1, - sym_variable_name, - STATE(6770), 1, - sym_subscript, - STATE(4543), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11294), 3, + ACTIONS(1302), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(11292), 19, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286847,7 +292608,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286857,14 +292621,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252444] = 3, + sym__special_character, + [258280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 3, + ACTIONS(7383), 5, + anon_sym_COMMA, + anon_sym_CARET, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + ACTIONS(7381), 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, + [258314] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11993), 1, + sym_variable_name, + STATE(6830), 1, + sym_subscript, + ACTIONS(11679), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 23, + STATE(4614), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11677), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286874,10 +292676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286887,15 +292687,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [252478] = 3, + [258354] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, + ACTIONS(11995), 1, + sym_variable_name, + STATE(6830), 1, + sym_subscript, + ACTIONS(11707), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 23, + STATE(4614), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11705), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286905,10 +292710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -286918,39 +292721,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [252512] = 12, + [258394] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5335), 1, + ACTIONS(5552), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11573), 1, + ACTIONS(11944), 1, anon_sym_LT_LT_LT, - ACTIONS(11575), 1, + ACTIONS(11966), 1, sym_file_descriptor, - STATE(4954), 1, + STATE(5030), 1, sym_herestring_redirect, - ACTIONS(4310), 2, + ACTIONS(4499), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4705), 2, + ACTIONS(5166), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, + ACTIONS(5464), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11571), 2, + ACTIONS(11964), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5333), 3, + ACTIONS(5550), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(5016), 3, + STATE(5058), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11569), 8, + ACTIONS(11962), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -286959,17 +292761,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [252564] = 5, + [258446] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11594), 1, - sym__special_character, - STATE(4520), 1, - aux_sym__literal_repeat1, - ACTIONS(5589), 2, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, + sym__concat, + STATE(4621), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 22, + ACTIONS(5044), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -286991,15 +292795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [252602] = 3, + [258486] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, + STATE(4624), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 23, + ACTIONS(5048), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287021,19 +292829,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [252636] = 5, + [258526] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11594), 1, + ACTIONS(11873), 1, sym__special_character, - STATE(4520), 1, + STATE(4592), 1, aux_sym__literal_repeat1, - ACTIONS(5595), 2, + ACTIONS(5901), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 22, + ACTIONS(5899), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287043,6 +292849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -287055,22 +292862,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [258564] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11653), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12004), 1, anon_sym_LT_LT_LT, - [252674] = 6, + ACTIONS(12007), 1, + sym_file_descriptor, + ACTIONS(12001), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4619), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11998), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11645), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [258608] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11873), 1, + sym__special_character, + STATE(4592), 1, + aux_sym__literal_repeat1, + ACTIONS(5907), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5905), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [258646] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(11709), 1, + ACTIONS(12010), 1, sym__concat, - STATE(4245), 1, + STATE(4635), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 4, + ACTIONS(1296), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 19, + ACTIONS(1294), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [258686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287080,7 +292982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287090,14 +292995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252714] = 3, + aux_sym_concatenation_token1, + [258720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1322), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 23, + ACTIONS(1320), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287121,21 +293027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [252748] = 6, + [258754] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, + ACTIONS(11855), 1, aux_sym_concatenation_token1, - ACTIONS(11711), 1, + ACTIONS(12012), 1, sym__concat, - STATE(4245), 1, + STATE(4635), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 4, + ACTIONS(1316), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 19, + ACTIONS(1314), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287146,6 +293050,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287155,14 +293061,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [252788] = 3, + [258794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(11814), 1, sym__concat, + STATE(4553), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5495), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 23, + ACTIONS(5493), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287172,9 +293084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287184,16 +293095,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [252822] = 3, + [258834] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, - sym_file_descriptor, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(11814), 1, sym__concat, + STATE(4554), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5501), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 23, + ACTIONS(5499), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287203,10 +293118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287216,15 +293129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [252856] = 3, + [258874] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, - sym_file_descriptor, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, sym__concat, + STATE(4551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5901), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 23, + ACTIONS(5899), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287234,10 +293151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287247,21 +293162,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [252890] = 6, + anon_sym_LT_LT_LT, + [258914] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4458), 1, + STATE(4552), 1, aux_sym_concatenation_repeat1, - ACTIONS(4428), 3, + ACTIONS(2156), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 20, + ACTIONS(2154), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287271,6 +293185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287282,54 +293197,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [252930] = 12, + [258954] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11573), 1, - anon_sym_LT_LT_LT, - ACTIONS(11575), 1, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, + sym__concat, + STATE(4551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5907), 2, sym_file_descriptor, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5905), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11571), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5101), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [252982] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [258994] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, - sym_file_descriptor, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, sym__concat, + STATE(4552), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 23, + ACTIONS(2158), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287339,10 +293253,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287352,15 +293264,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [253016] = 3, + anon_sym_LT_LT_LT, + [259034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, + sym__concat, + STATE(4551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(4971), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287370,10 +293287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287383,16 +293298,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [253050] = 3, + anon_sym_LT_LT_LT, + [259074] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, - sym_file_descriptor, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, sym__concat, - sym_variable_name, + STATE(4552), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 22, + ACTIONS(5015), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287402,9 +293321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287414,16 +293332,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [253084] = 3, + anon_sym_LT_LT_LT, + [259114] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, - sym_file_descriptor, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, sym__concat, - sym_variable_name, + STATE(4551), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 22, + ACTIONS(5044), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287433,9 +293355,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287445,21 +293366,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [253118] = 6, + anon_sym_LT_LT_LT, + [259154] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4459), 1, + STATE(4552), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 3, + ACTIONS(5050), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 20, + ACTIONS(5048), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287469,6 +293389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287480,14 +293401,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [253158] = 3, + [259194] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 3, - sym_file_descriptor, + ACTIONS(12014), 1, + aux_sym_concatenation_token1, + ACTIONS(12017), 1, sym__concat, + STATE(4635), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 23, + ACTIONS(1304), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287509,16 +293435,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [253192] = 3, + [259234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1330), 4, sym_file_descriptor, sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 23, + ACTIONS(1328), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287540,17 +293465,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [253226] = 3, + [259268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 4, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, - sym_variable_name, + STATE(4621), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5901), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 22, + ACTIONS(5899), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287572,16 +293500,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [253260] = 3, + [259308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, - sym_file_descriptor, + ACTIONS(11855), 1, + aux_sym_concatenation_token1, + ACTIONS(11857), 1, sym__concat, - sym_variable_name, + STATE(4624), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2156), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(2154), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287603,16 +293534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [253294] = 3, + [259348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 4, + ACTIONS(1350), 3, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(1348), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287622,8 +293551,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287633,16 +293563,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - anon_sym_BQUOTE, - [253328] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [259382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 3, + ACTIONS(1306), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 23, + ACTIONS(1304), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287652,7 +293582,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -287665,21 +293594,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [253362] = 6, + [259416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11713), 1, - sym_variable_name, - STATE(6748), 1, - sym_subscript, - ACTIONS(11309), 2, + ACTIONS(1350), 4, sym_file_descriptor, + sym__concat, + sym_variable_name, aux_sym_heredoc_redirect_token1, - STATE(4571), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11307), 20, + ACTIONS(1348), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287689,8 +293614,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -287700,21 +293626,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253402] = 6, + aux_sym_concatenation_token1, + [259450] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11715), 1, + ACTIONS(12020), 1, sym_variable_name, - STATE(6770), 1, + STATE(6845), 1, sym_subscript, - STATE(4543), 2, + STATE(4555), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(11309), 3, + ACTIONS(11679), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11307), 19, + ACTIONS(11677), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287734,20 +293661,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253442] = 6, + [259490] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11717), 1, + ACTIONS(12022), 1, sym_variable_name, - STATE(6748), 1, + STATE(6819), 1, sym_subscript, - ACTIONS(11294), 2, + ACTIONS(11679), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4571), 2, + STATE(4644), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(11292), 20, + ACTIONS(11677), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287757,7 +293684,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287768,20 +293694,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253482] = 6, + anon_sym_BQUOTE, + [259530] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4458), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5589), 3, + ACTIONS(12024), 1, + sym_variable_name, + STATE(6819), 1, + sym_subscript, + ACTIONS(11707), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 20, + STATE(4644), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11705), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287801,21 +293728,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [253522] = 6, + anon_sym_BQUOTE, + [259570] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11812), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11814), 1, sym__concat, - STATE(4459), 1, + STATE(4567), 1, aux_sym_concatenation_repeat1, - ACTIONS(2169), 3, + ACTIONS(5495), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 20, + ACTIONS(5493), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287835,21 +293762,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [253562] = 6, + anon_sym_BQUOTE, + [259610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, + ACTIONS(11812), 1, aux_sym_concatenation_token1, - ACTIONS(11460), 1, + ACTIONS(11814), 1, sym__concat, - STATE(4465), 1, + STATE(4568), 1, aux_sym_concatenation_repeat1, - ACTIONS(5167), 3, + ACTIONS(5501), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 20, + ACTIONS(5499), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287859,7 +293786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287870,20 +293796,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253602] = 6, + anon_sym_BQUOTE, + [259650] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11460), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4466), 1, + STATE(4564), 1, aux_sym_concatenation_repeat1, - ACTIONS(5175), 3, + ACTIONS(5901), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 20, + ACTIONS(5899), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287893,7 +293819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287904,19 +293829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [253642] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [259690] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4462), 1, + STATE(4565), 1, aux_sym_concatenation_repeat1, - ACTIONS(5589), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 21, + ACTIONS(2154), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287926,7 +293853,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287938,19 +293864,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [253682] = 6, + anon_sym_BQUOTE, + [259730] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4463), 1, + STATE(4564), 1, aux_sym_concatenation_repeat1, - ACTIONS(2169), 2, + ACTIONS(5907), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 21, + ACTIONS(5905), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287960,7 +293887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -287972,19 +293898,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [253722] = 6, + anon_sym_BQUOTE, + [259770] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4462), 1, + STATE(4565), 1, aux_sym_concatenation_repeat1, - ACTIONS(5595), 2, + ACTIONS(2160), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 21, + ACTIONS(2158), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -287994,7 +293921,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288006,19 +293932,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [253762] = 6, + anon_sym_BQUOTE, + [259810] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4463), 1, + STATE(4564), 1, aux_sym_concatenation_repeat1, - ACTIONS(2173), 2, + ACTIONS(4973), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 21, + ACTIONS(4971), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288028,7 +293955,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288040,19 +293966,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [253802] = 6, + anon_sym_BQUOTE, + [259850] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4462), 1, + STATE(4565), 1, aux_sym_concatenation_repeat1, - ACTIONS(4428), 2, + ACTIONS(5017), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 21, + ACTIONS(5015), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288062,7 +293989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288074,19 +294000,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [253842] = 6, + anon_sym_BQUOTE, + [259890] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4463), 1, + STATE(4564), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 2, + ACTIONS(5046), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 21, + ACTIONS(5044), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288096,7 +294023,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288108,19 +294034,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [253882] = 6, + anon_sym_BQUOTE, + [259930] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4462), 1, + STATE(4565), 1, aux_sym_concatenation_repeat1, - ACTIONS(4579), 2, + ACTIONS(5050), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 21, + ACTIONS(5048), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288130,7 +294057,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288142,19 +294068,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [253922] = 6, + anon_sym_BQUOTE, + [259970] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4463), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 2, + ACTIONS(12027), 1, + sym__special_character, + STATE(4655), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 21, + ACTIONS(1394), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288164,8 +294089,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288176,20 +294102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [253962] = 6, + [260008] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4458), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5595), 3, + ACTIONS(12030), 1, + sym__special_character, + STATE(4520), 1, + aux_sym__literal_repeat1, + ACTIONS(5495), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 20, + ACTIONS(5493), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288200,6 +294124,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288209,15 +294135,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [260046] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12038), 1, anon_sym_LT_LT_LT, - [254002] = 3, + ACTIONS(12041), 1, + sym_file_descriptor, + ACTIONS(11653), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12035), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4657), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12032), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11645), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [260090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, + ACTIONS(1346), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 23, + ACTIONS(1344), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288241,20 +294202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [254036] = 6, + [260124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4459), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2173), 3, + ACTIONS(1370), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 20, + ACTIONS(1368), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288264,7 +294219,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288274,15 +294232,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [254076] = 3, + aux_sym_concatenation_token1, + [260158] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 3, + ACTIONS(12044), 1, + sym__special_character, + STATE(4759), 1, + aux_sym__literal_repeat1, + ACTIONS(5901), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 23, + ACTIONS(5899), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288304,47 +294265,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [254110] = 3, + [260195] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(12050), 1, + anon_sym_RBRACE3, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7502), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260254] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3280), 1, + anon_sym_RPAREN, + ACTIONS(4733), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 23, - anon_sym_SEMI, + ACTIONS(12066), 1, + sym_file_descriptor, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5164), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11714), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4727), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4739), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11712), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [254144] = 3, + [260303] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 3, - sym_file_descriptor, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, sym__concat, + STATE(4733), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 23, + ACTIONS(4971), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288355,8 +294370,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288366,48 +294379,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [254178] = 3, + [260342] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(4539), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 23, - anon_sym_SEMI, + ACTIONS(11744), 1, + sym_file_descriptor, + ACTIONS(4519), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(4521), 2, anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_LT_LT_DASH, + ACTIONS(4537), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(11567), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4436), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(3280), 4, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, + ACTIONS(11565), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [254212] = 3, + [260389] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, - sym_file_descriptor, - sym__concat, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, sym_variable_name, + ACTIONS(12068), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7543), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260448] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5017), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 22, + ACTIONS(5015), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288417,9 +294476,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288429,16 +294487,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [254246] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [260481] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 4, - sym_file_descriptor, - sym__concat, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12070), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7114), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260540] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, sym_variable_name, + ACTIONS(12072), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7602), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12074), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 22, + ACTIONS(12076), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288448,9 +294592,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288460,21 +294603,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [254280] = 6, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [260632] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11720), 1, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, sym_variable_name, - STATE(6774), 1, + ACTIONS(12078), 1, + anon_sym_RBRACE3, + STATE(3622), 1, sym_subscript, - ACTIONS(11309), 2, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7653), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260691] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(4738), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4595), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11307), 20, + ACTIONS(5015), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288494,52 +294681,711 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [260730] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12080), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7702), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260789] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12082), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7843), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260848] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [260881] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12084), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(6885), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260940] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12086), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(6907), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [260999] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12088), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(6931), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261058] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12090), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(6946), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261117] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12092), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(6959), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1306), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [261209] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12094), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(6979), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261268] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12096), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(6992), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261327] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12098), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7008), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261386] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12100), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7024), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261445] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12102), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7042), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261504] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, anon_sym_BQUOTE, - [254320] = 3, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12104), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7059), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261563] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 4, + ACTIONS(12115), 1, sym_file_descriptor, - sym__concat, - sym_variable_name, + ACTIONS(11739), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 22, + ACTIONS(12109), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12112), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4687), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11728), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(12106), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [254354] = 6, + [261606] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11722), 1, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, sym_variable_name, - STATE(6774), 1, + ACTIONS(12118), 1, + anon_sym_RBRACE3, + STATE(3622), 1, sym_subscript, - ACTIONS(11294), 2, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7266), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [261665] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5050), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4595), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11292), 20, + ACTIONS(5048), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288549,6 +295395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288559,21 +295406,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [254394] = 6, + [261698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, - aux_sym_concatenation_token1, - ACTIONS(11460), 1, - sym__concat, - STATE(4500), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5167), 3, + ACTIONS(12120), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 20, + ACTIONS(12122), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288583,6 +295425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288593,54 +295436,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [261731] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12124), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(12128), 1, + anon_sym_LPAREN, + ACTIONS(12130), 1, + aux_sym__c_word_token1, + ACTIONS(12132), 1, + anon_sym_DOLLAR, + ACTIONS(12134), 1, + anon_sym_DQUOTE, + ACTIONS(12136), 1, + aux_sym_number_token1, + ACTIONS(12138), 1, + aux_sym_number_token2, + ACTIONS(12140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12142), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12144), 1, anon_sym_BQUOTE, - [254434] = 6, + ACTIONS(12146), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, + sym__c_unary_expression, + STATE(3318), 1, + sym__c_binary_expression, + STATE(6723), 1, + sym__c_expression, + STATE(6840), 1, + sym__c_variable_assignment, + ACTIONS(12126), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3446), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [261796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, - aux_sym_concatenation_token1, - ACTIONS(11460), 1, + ACTIONS(1354), 4, sym__concat, - STATE(4501), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5175), 3, - sym_file_descriptor, - sym_variable_name, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 20, + ACTIONS(1352), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [254474] = 6, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [261829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4498), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5589), 2, + ACTIONS(12150), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 21, + ACTIONS(12148), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288650,7 +295530,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288661,20 +295544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [254514] = 6, + [261862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4499), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2169), 2, + ACTIONS(12150), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 21, + ACTIONS(12148), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288684,6 +295561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288696,19 +295574,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [254554] = 6, + [261895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(1362), 4, sym__concat, - STATE(4498), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5595), 2, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1360), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [261928] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 21, + ACTIONS(1328), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288719,6 +295622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288728,21 +295633,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [254594] = 6, + aux_sym_concatenation_token1, + [261961] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4499), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2173), 2, + ACTIONS(12152), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 21, + ACTIONS(12154), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288752,6 +295651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288764,19 +295664,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [254634] = 6, + [261994] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4498), 1, + STATE(4733), 1, aux_sym_concatenation_repeat1, - ACTIONS(4428), 2, + ACTIONS(5046), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 21, + ACTIONS(5044), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288796,21 +295697,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [254674] = 6, + [262033] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(12156), 1, sym__concat, - STATE(4499), 1, + STATE(4342), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 2, + ACTIONS(1296), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 21, + ACTIONS(1294), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288820,6 +295719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288830,21 +295730,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [254714] = 6, + [262072] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(12158), 1, sym__concat, - STATE(4498), 1, + STATE(4342), 1, aux_sym_concatenation_repeat1, - ACTIONS(4579), 2, + ACTIONS(1316), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 21, + ACTIONS(1314), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288854,6 +295752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -288864,21 +295763,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + [262111] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, anon_sym_BQUOTE, - [254754] = 6, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12160), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7331), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [262170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(1366), 4, sym__concat, - STATE(4499), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 2, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1364), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [262203] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12044), 1, + sym__special_character, + STATE(4759), 1, + aux_sym__literal_repeat1, + ACTIONS(5907), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 21, + ACTIONS(5905), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288889,6 +295857,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -288898,17 +295868,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [254794] = 3, + [262240] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(12152), 2, sym_file_descriptor, - sym__concat, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, + ACTIONS(12154), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288918,6 +295884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -288930,21 +295897,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [254828] = 6, + anon_sym_LT_LT_LT, + [262273] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4777), 1, + STATE(4738), 1, aux_sym_concatenation_repeat1, - ACTIONS(4595), 3, + ACTIONS(5050), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 19, + ACTIONS(5048), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -288964,326 +295931,259 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [254867] = 16, + [262312] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11729), 1, - anon_sym_RBRACE3, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - STATE(3536), 1, + ACTIONS(12162), 1, + anon_sym_RBRACE3, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7069), 1, + STATE(7452), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [254926] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11745), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(11749), 1, - anon_sym_LPAREN, - ACTIONS(11751), 1, - aux_sym__c_word_token1, - ACTIONS(11753), 1, - anon_sym_DOLLAR, - ACTIONS(11755), 1, - anon_sym_DQUOTE, - ACTIONS(11757), 1, - aux_sym_number_token1, - ACTIONS(11759), 1, - aux_sym_number_token2, - ACTIONS(11761), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, - anon_sym_BQUOTE, - ACTIONS(11767), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3243), 1, - sym__c_unary_expression, - STATE(3246), 1, - sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - STATE(6645), 1, - sym__c_expression, - STATE(6783), 1, - sym__c_variable_assignment, - ACTIONS(11747), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3241), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [254991] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11450), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11452), 1, - anon_sym_LT_LT_LT, - ACTIONS(11769), 1, - sym_file_descriptor, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4998), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11540), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11448), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [255034] = 16, + [262371] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11771), 1, + ACTIONS(12164), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7261), 1, + STATE(6905), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [255093] = 3, + [262430] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, - sym_file_descriptor, - sym__concat, + ACTIONS(11623), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12170), 1, + anon_sym_LT_LT_LT, + ACTIONS(12172), 1, + sym_file_descriptor, + ACTIONS(12168), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4710), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12166), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [255126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2173), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 23, + ACTIONS(11617), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [255159] = 3, + [262473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 3, - sym_file_descriptor, + ACTIONS(1358), 4, sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 22, + ACTIONS(1356), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [262506] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11653), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12180), 1, + anon_sym_LT_LT_LT, + ACTIONS(12183), 1, + sym_file_descriptor, + ACTIONS(12177), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4710), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(12174), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11645), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [255192] = 16, + [262549] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11773), 1, + ACTIONS(12186), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7299), 1, + STATE(7532), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [255251] = 3, + [262608] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + STATE(4712), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12190), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12193), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(12188), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -289292,62 +296192,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - anon_sym_BQUOTE, - [255284] = 19, - ACTIONS(71), 1, + [262645] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(11749), 1, - anon_sym_LPAREN, - ACTIONS(11751), 1, - aux_sym__c_word_token1, - ACTIONS(11753), 1, + ACTIONS(1374), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1372), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(11757), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(11759), 1, aux_sym_number_token2, - ACTIONS(11761), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11775), 1, - anon_sym_RPAREN_RPAREN, - STATE(3243), 1, - sym__c_unary_expression, - STATE(3246), 1, - sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - STATE(6584), 1, - sym__c_expression, - STATE(6783), 1, - sym__c_variable_assignment, - ACTIONS(11747), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3241), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [255349] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [262678] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11777), 3, + ACTIONS(1302), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11779), 22, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289368,21 +296250,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, + sym__special_character, anon_sym_BQUOTE, - [255382] = 6, + [262711] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11781), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4287), 1, + STATE(5075), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, + ACTIONS(1302), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 20, + ACTIONS(1300), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289392,7 +296274,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -289403,19 +296284,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255421] = 6, + sym__special_character, + [262750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11783), 1, + ACTIONS(12195), 1, sym__concat, - STATE(4287), 1, + STATE(4289), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(1296), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 20, + ACTIONS(1294), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289425,7 +296307,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -289436,57 +296317,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [255460] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(11785), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7330), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [255519] = 3, + anon_sym_LT_LT_LT, + [262789] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11787), 3, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(12197), 1, + sym__concat, + STATE(4289), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11789), 22, + ACTIONS(1314), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289496,7 +296340,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -289508,104 +296351,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [255552] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11749), 1, - anon_sym_LPAREN, - ACTIONS(11751), 1, - aux_sym__c_word_token1, - ACTIONS(11753), 1, - anon_sym_DOLLAR, - ACTIONS(11755), 1, - anon_sym_DQUOTE, - ACTIONS(11757), 1, - aux_sym_number_token1, - ACTIONS(11759), 1, - aux_sym_number_token2, - ACTIONS(11761), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, - anon_sym_BQUOTE, - ACTIONS(11767), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11791), 1, - anon_sym_RPAREN_RPAREN, - STATE(3243), 1, - sym__c_unary_expression, - STATE(3246), 1, - sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - STATE(6594), 1, - sym__c_expression, - STATE(6783), 1, - sym__c_variable_assignment, - ACTIONS(11747), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3241), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [255617] = 16, + [262828] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11793), 1, + ACTIONS(12199), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7370), 1, + STATE(7608), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [255676] = 3, + [262887] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11795), 3, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(12201), 1, + sym__concat, + STATE(4291), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(11797), 22, + ACTIONS(1294), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289615,7 +296417,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -289626,129 +296427,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [255709] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11355), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11803), 1, - anon_sym_LT_LT_LT, - ACTIONS(11805), 1, - sym_file_descriptor, - ACTIONS(11801), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4627), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11799), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11349), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [255752] = 8, + [262926] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11373), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11813), 1, - anon_sym_LT_LT_LT, - ACTIONS(11816), 1, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(12203), 1, + sym__concat, + STATE(4291), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 3, sym_file_descriptor, - ACTIONS(11810), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4627), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11807), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11365), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [255795] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, sym_variable_name, - ACTIONS(11819), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7399), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [255854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 3, - sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 22, + ACTIONS(1314), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289759,8 +296451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -289770,15 +296460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [255887] = 3, + [262965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 3, + ACTIONS(1334), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 22, + ACTIONS(1332), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -289799,519 +296488,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [255920] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11821), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(11823), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [255953] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(11825), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7155), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [256012] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(11827), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7430), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [256071] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11829), 1, - sym_file_descriptor, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11524), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11548), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - STATE(4734), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11546), 7, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(11522), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [256114] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4314), 1, - anon_sym_RPAREN, - ACTIONS(4527), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11831), 1, - sym_file_descriptor, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5012), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4525), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [256163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [256196] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(11833), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7449), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [256255] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(11835), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7467), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [256314] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1306), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [256347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1278), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [256380] = 16, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [262998] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11837), 1, + ACTIONS(12205), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7496), 1, + STATE(7455), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [256439] = 5, + [263057] = 11, ACTIONS(3), 1, sym_comment, - STATE(5573), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11841), 2, + ACTIONS(4523), 1, + anon_sym_RPAREN, + ACTIONS(4830), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12066), 1, + sym_file_descriptor, + ACTIONS(4499), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(11844), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(11839), 20, - anon_sym_SEMI, + ACTIONS(5164), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11714), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4828), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4739), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11712), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [263106] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11765), 1, + anon_sym_LT_LT_LT, + ACTIONS(12207), 1, + sym_file_descriptor, + ACTIONS(11722), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(11777), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + STATE(4964), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11775), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11720), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [256476] = 3, + [263149] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(12209), 1, sym__concat, - sym_test_operator, - sym__brace_start, + STATE(4342), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(1294), 20, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [256509] = 3, + [263188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(12211), 1, sym__concat, - sym_test_operator, - sym__brace_start, + STATE(4342), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(1314), 20, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [263227] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12128), 1, + anon_sym_LPAREN, + ACTIONS(12130), 1, + aux_sym__c_word_token1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(12134), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12136), 1, aux_sym_number_token1, + ACTIONS(12138), 1, aux_sym_number_token2, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12144), 1, anon_sym_BQUOTE, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [256542] = 5, + ACTIONS(12213), 1, + anon_sym_RPAREN_RPAREN, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, + sym__c_unary_expression, + STATE(3318), 1, + sym__c_binary_expression, + STATE(6701), 1, + sym__c_expression, + STATE(6840), 1, + sym__c_variable_assignment, + ACTIONS(12126), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3446), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [263292] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11846), 1, - sym__special_character, - STATE(4645), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 2, + ACTIONS(1302), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 21, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290333,62 +296747,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256579] = 16, + sym__special_character, + [263325] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11849), 1, + ACTIONS(12215), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7520), 1, + STATE(7696), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [256638] = 6, + [263384] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4923), 1, + STATE(4738), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 2, + ACTIONS(2156), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 20, + ACTIONS(2154), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290408,20 +296824,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [256677] = 6, + [263423] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11851), 1, - sym__concat, - STATE(4240), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12217), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(6879), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [263482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12221), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 20, + ACTIONS(12219), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290431,7 +296883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -290442,19 +296897,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [256716] = 6, + [263515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11853), 1, + ACTIONS(12223), 1, sym__concat, - STATE(4240), 1, + STATE(4342), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(1296), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 20, + ACTIONS(1294), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290474,21 +296930,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [256755] = 6, + [263554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, - aux_sym_concatenation_token1, - ACTIONS(11855), 1, - sym__concat, - STATE(4245), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 3, + ACTIONS(5501), 4, sym_file_descriptor, sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 19, + ACTIONS(5499), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290498,6 +296948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -290508,31 +296959,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256794] = 6, + anon_sym_BQUOTE, + [263587] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, - aux_sym_concatenation_token1, - ACTIONS(11857), 1, - sym__concat, - STATE(4245), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + STATE(4712), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12227), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12229), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 19, + ACTIONS(12225), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -290541,285 +296992,547 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [256833] = 16, + [263624] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11859), 1, + ACTIONS(12231), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7438), 1, + STATE(6921), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [256892] = 16, + [263683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(11861), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(6848), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [256951] = 16, + ACTIONS(5017), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5015), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [263716] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(12233), 1, + sym__concat, + STATE(4342), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [263755] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11846), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12066), 1, + sym_file_descriptor, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11714), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4764), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11712), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11844), 8, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + [263798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12237), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12235), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [263831] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11863), 1, + ACTIONS(12239), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7183), 1, + STATE(7533), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [257010] = 16, + [263890] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(4733), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5907), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(5905), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [263929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12243), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12241), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [263962] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11865), 1, + ACTIONS(12245), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7440), 1, + STATE(6968), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [257069] = 11, + [264021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 1, - anon_sym_BQUOTE, - ACTIONS(5079), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11867), 1, + ACTIONS(5050), 2, sym_file_descriptor, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5077), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5048), 23, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11470), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5075), 3, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [264054] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12221), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12219), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11468), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [257118] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [264087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12237), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(12235), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_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_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [264120] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12128), 1, + anon_sym_LPAREN, + ACTIONS(12130), 1, + aux_sym__c_word_token1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - sym__special_character, + ACTIONS(12134), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12136), 1, aux_sym_number_token1, + ACTIONS(12138), 1, aux_sym_number_token2, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12144), 1, anon_sym_BQUOTE, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [257151] = 19, - ACTIONS(71), 1, + ACTIONS(12247), 1, + anon_sym_RPAREN_RPAREN, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, + sym__c_unary_expression, + STATE(3318), 1, + sym__c_binary_expression, + STATE(6654), 1, + sym__c_expression, + STATE(6840), 1, + sym__c_variable_assignment, + ACTIONS(12126), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3446), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [264185] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(11751), 1, + ACTIONS(12130), 1, aux_sym__c_word_token1, - ACTIONS(11753), 1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(11757), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(11759), 1, + ACTIONS(12138), 1, aux_sym_number_token2, - ACTIONS(11761), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11869), 1, + ACTIONS(12249), 1, anon_sym_RPAREN_RPAREN, - STATE(3243), 1, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, sym__c_unary_expression, - STATE(3246), 1, + STATE(3318), 1, sym__c_binary_expression, - STATE(3247), 1, + STATE(6658), 1, + sym__c_expression, + STATE(6840), 1, + sym__c_variable_assignment, + ACTIONS(12126), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3446), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [264250] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12128), 1, + anon_sym_LPAREN, + ACTIONS(12130), 1, + aux_sym__c_word_token1, + ACTIONS(12132), 1, + anon_sym_DOLLAR, + ACTIONS(12134), 1, + anon_sym_DQUOTE, + ACTIONS(12136), 1, + aux_sym_number_token1, + ACTIONS(12138), 1, + aux_sym_number_token2, + ACTIONS(12140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12142), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12144), 1, + anon_sym_BQUOTE, + ACTIONS(12146), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12251), 1, + anon_sym_RPAREN_RPAREN, + STATE(3278), 1, sym__c_postfix_expression, - STATE(6599), 1, + STATE(3285), 1, + sym__c_unary_expression, + STATE(3318), 1, + sym__c_binary_expression, + STATE(6660), 1, sym__c_expression, - STATE(6783), 1, + STATE(6840), 1, sym__c_variable_assignment, - ACTIONS(11747), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3241), 7, + STATE(3446), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -290827,93 +297540,130 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [257216] = 3, + [264315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(12243), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(12241), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [264348] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, anon_sym_BQUOTE, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [257249] = 16, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12253), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7477), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264407] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11871), 1, + ACTIONS(12255), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7506), 1, + STATE(7021), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [257308] = 6, + [264466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4768), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5589), 3, + ACTIONS(1326), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 19, + ACTIONS(1324), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -290924,6 +297674,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -290933,61 +297685,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257347] = 3, + aux_sym_concatenation_token1, + [264499] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11873), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12257), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(6895), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [264558] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11716), 1, + anon_sym_LT_LT_LT, + ACTIONS(11842), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11875), 22, + ACTIONS(12259), 1, + sym_file_descriptor, + ACTIONS(11714), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5003), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11712), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11840), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [257380] = 6, + [264601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4777), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2169), 3, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4501), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 19, + STATE(4739), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -290996,51 +297796,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257419] = 5, + [264638] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(11877), 1, - sym__special_character, - STATE(4645), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 2, - sym_file_descriptor, + ACTIONS(3280), 1, + anon_sym_BQUOTE, + ACTIONS(5561), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 21, - anon_sym_SEMI, + ACTIONS(12261), 1, + sym_file_descriptor, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5559), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11759), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5557), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4824), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11757), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [257456] = 6, + [264687] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11879), 1, - sym__concat, - STATE(4287), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, + ACTIONS(12263), 1, + sym__special_character, + STATE(4759), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 20, + ACTIONS(1394), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291051,6 +297855,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291060,20 +297866,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [257495] = 6, + [264724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11881), 1, - sym__concat, - STATE(4287), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(1378), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 20, + ACTIONS(1376), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291084,6 +297884,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291093,58 +297895,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [257534] = 16, + aux_sym_concatenation_token1, + [264757] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11883), 1, + ACTIONS(12266), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6845), 1, + STATE(7091), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [257593] = 3, + [264816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11885), 3, + ACTIONS(2156), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11887), 22, + ACTIONS(2154), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291167,59 +297969,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [257626] = 8, + [264849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11548), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11831), 1, + ACTIONS(4501), 2, sym_file_descriptor, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4741), 3, + aux_sym_heredoc_redirect_token1, + STATE(4739), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11546), 8, + ACTIONS(4497), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, - [257669] = 8, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [264884] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11548), 1, + ACTIONS(11739), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11867), 1, + ACTIONS(12274), 1, sym_file_descriptor, - ACTIONS(4705), 2, + ACTIONS(12109), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11470), 2, + ACTIONS(12271), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4682), 3, + STATE(4764), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11468), 8, + ACTIONS(11728), 8, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(12268), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -291228,135 +298035,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11546), 8, + [264927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1370), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [264960] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12277), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7146), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [265019] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, anon_sym_BQUOTE, - [257712] = 16, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12279), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7194), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [265078] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11889), 1, + ACTIONS(12281), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6907), 1, + STATE(7231), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [257771] = 6, + [265137] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4768), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 3, + ACTIONS(11765), 1, + anon_sym_LT_LT_LT, + ACTIONS(12207), 1, sym_file_descriptor, + ACTIONS(11777), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11853), 2, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(4939), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11775), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [257810] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(11851), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [257843] = 6, + [265180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4777), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4513), 3, + ACTIONS(1386), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 19, + ACTIONS(1384), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291367,6 +298247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291376,102 +298258,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [257882] = 16, + aux_sym_concatenation_token1, + [265213] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11891), 1, + ACTIONS(12283), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7015), 1, + STATE(7274), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [257941] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4346), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11512), 1, - sym_file_descriptor, - ACTIONS(4308), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4312), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(4344), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(11248), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4407), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(2755), 4, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(11246), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [257988] = 8, + [265272] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11466), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11472), 1, + ACTIONS(11716), 1, anon_sym_LT_LT_LT, - ACTIONS(11893), 1, + ACTIONS(11853), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12259), 1, sym_file_descriptor, - ACTIONS(11470), 2, + ACTIONS(11714), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4968), 2, + STATE(4939), 2, sym_file_redirect, sym_herestring_redirect, - ACTIONS(11468), 8, + ACTIONS(11712), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -291480,40 +298326,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11464), 10, + ACTIONS(11851), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_LT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [258031] = 5, + [265315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4327), 2, + ACTIONS(1302), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 18, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -291522,15 +298366,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [258068] = 3, + sym__special_character, + [265348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 3, + ACTIONS(1370), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 22, + ACTIONS(1368), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291540,8 +298384,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -291551,19 +298396,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [258101] = 4, + aux_sym_concatenation_token1, + [265381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 2, + ACTIONS(12285), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 20, + ACTIONS(12287), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291573,6 +298414,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -291583,31 +298425,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [258136] = 5, + [265414] = 3, ACTIONS(3), 1, sym_comment, - STATE(4735), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11897), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11899), 2, + ACTIONS(1390), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(11895), 20, + ACTIONS(1388), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -291616,33 +298456,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258173] = 8, + aux_sym_concatenation_token1, + [265447] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11409), 1, + ACTIONS(11716), 1, + anon_sym_LT_LT_LT, + ACTIONS(11722), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11910), 1, + ACTIONS(12259), 1, sym_file_descriptor, - ACTIONS(11904), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11907), 2, + ACTIONS(11714), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4682), 3, + STATE(4964), 2, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11398), 8, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_BQUOTE, - ACTIONS(11901), 8, + sym_herestring_redirect, + ACTIONS(11712), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -291651,22 +298481,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [258216] = 8, + ACTIONS(11720), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [265490] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11416), 1, + ACTIONS(4525), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11472), 1, - anon_sym_LT_LT_LT, - ACTIONS(11893), 1, + ACTIONS(11744), 1, sym_file_descriptor, - ACTIONS(11470), 2, + ACTIONS(4517), 2, + anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4519), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(4521), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11567), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4976), 2, + STATE(4436), 3, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11468), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4523), 4, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(11565), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -291675,76 +298529,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11414), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [258259] = 16, + [265537] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11913), 1, + ACTIONS(12289), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7024), 1, + STATE(7330), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [258318] = 8, + [265596] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11450), 1, + ACTIONS(12293), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11472), 1, + ACTIONS(12291), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [265629] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11765), 1, anon_sym_LT_LT_LT, - ACTIONS(11893), 1, + ACTIONS(12207), 1, sym_file_descriptor, - ACTIONS(11470), 2, + ACTIONS(11777), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4998), 2, + ACTIONS(11842), 2, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(5003), 2, sym_file_redirect, sym_herestring_redirect, - ACTIONS(11468), 8, + ACTIONS(11775), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -291753,7 +298627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11448), 10, + ACTIONS(11840), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291763,147 +298637,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [258361] = 16, + [265672] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11915), 1, + ACTIONS(12295), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7095), 1, + STATE(7016), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [258420] = 19, - ACTIONS(71), 1, + [265731] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(11749), 1, - anon_sym_LPAREN, - ACTIONS(11751), 1, - aux_sym__c_word_token1, - ACTIONS(11753), 1, - anon_sym_DOLLAR, - ACTIONS(11755), 1, - anon_sym_DQUOTE, - ACTIONS(11757), 1, - aux_sym_number_token1, - ACTIONS(11759), 1, - aux_sym_number_token2, - ACTIONS(11761), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, - anon_sym_BQUOTE, - ACTIONS(11767), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11917), 1, - anon_sym_RPAREN_RPAREN, - STATE(3243), 1, - sym__c_unary_expression, - STATE(3246), 1, - sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - STATE(6622), 1, - sym__c_expression, - STATE(6783), 1, - sym__c_variable_assignment, - ACTIONS(11747), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3241), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [258485] = 16, + ACTIONS(12120), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12122), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [265764] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11919), 1, + ACTIONS(12297), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7116), 1, + STATE(7382), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [258544] = 3, + [265823] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5501), 3, + sym_file_descriptor, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(5499), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [265856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11921), 3, + ACTIONS(2160), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11923), 22, + ACTIONS(2158), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -291926,138 +298813,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [258577] = 16, + [265889] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [265922] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11925), 1, + ACTIONS(12299), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7232), 1, + STATE(7418), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [258636] = 16, + [265981] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1390), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1388), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [266014] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11927), 1, + ACTIONS(12301), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7353), 1, + STATE(7439), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [258695] = 11, + [266073] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12128), 1, + anon_sym_LPAREN, + ACTIONS(12130), 1, + aux_sym__c_word_token1, + ACTIONS(12132), 1, + anon_sym_DOLLAR, + ACTIONS(12134), 1, + anon_sym_DQUOTE, + ACTIONS(12136), 1, + aux_sym_number_token1, + ACTIONS(12138), 1, + aux_sym_number_token2, + ACTIONS(12140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12142), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12144), 1, + anon_sym_BQUOTE, + ACTIONS(12146), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12303), 1, + anon_sym_RPAREN_RPAREN, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, + sym__c_unary_expression, + STATE(3318), 1, + sym__c_binary_expression, + STATE(6763), 1, + sym__c_expression, + STATE(6840), 1, + sym__c_variable_assignment, + ACTIONS(12126), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3446), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [266138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4714), 1, + ACTIONS(12305), 3, + sym_file_descriptor, ts_builtin_sym_end, - ACTIONS(4718), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11829), 1, - sym_file_descriptor, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4703), 2, + ACTIONS(12307), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11524), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4716), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4634), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11522), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [258744] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [266171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11929), 3, + ACTIONS(12074), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11931), 22, + ACTIONS(12076), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292067,8 +299051,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292079,21 +299065,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [258777] = 6, + [266204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(1326), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [266237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1330), 4, sym__concat, - STATE(4768), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5595), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1328), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [266270] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12309), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 19, + ACTIONS(12311), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292103,6 +299142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -292113,13 +299153,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [258816] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [266303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 2, + ACTIONS(12313), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 23, + ACTIONS(12315), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292129,9 +299172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292142,107 +299184,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [258849] = 16, + anon_sym_BQUOTE, + [266336] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11933), 1, + ACTIONS(12317), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7502), 1, + STATE(7460), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [258908] = 16, - ACTIONS(3), 1, + [266395] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12128), 1, + anon_sym_LPAREN, + ACTIONS(12130), 1, + aux_sym__c_word_token1, + ACTIONS(12132), 1, + anon_sym_DOLLAR, + ACTIONS(12134), 1, + anon_sym_DQUOTE, + ACTIONS(12136), 1, + aux_sym_number_token1, + ACTIONS(12138), 1, + aux_sym_number_token2, + ACTIONS(12140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(11935), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, + ACTIONS(12319), 1, + anon_sym_RPAREN_RPAREN, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, + sym__c_unary_expression, + STATE(3318), 1, + sym__c_binary_expression, + STATE(6693), 1, + sym__c_expression, + STATE(6840), 1, + sym__c_variable_assignment, + ACTIONS(12126), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3446), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7113), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, + [266460] = 19, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12128), 1, + anon_sym_LPAREN, + ACTIONS(12130), 1, + aux_sym__c_word_token1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [258967] = 6, + ACTIONS(12134), 1, + anon_sym_DQUOTE, + ACTIONS(12136), 1, + aux_sym_number_token1, + ACTIONS(12138), 1, + aux_sym_number_token2, + ACTIONS(12140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12142), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12144), 1, + anon_sym_BQUOTE, + ACTIONS(12146), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12321), 1, + anon_sym_RPAREN_RPAREN, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, + sym__c_unary_expression, + STATE(3318), 1, + sym__c_binary_expression, + STATE(6613), 1, + sym__c_expression, + STATE(6840), 1, + sym__c_variable_assignment, + ACTIONS(12126), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3446), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [266525] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5643), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12323), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12193), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12188), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [266562] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5643), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12193), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12323), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12188), 20, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [266599] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12044), 1, + sym__special_character, + STATE(4759), 1, + aux_sym__literal_repeat1, + ACTIONS(4973), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4971), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [266636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4777), 1, + STATE(4733), 1, aux_sym_concatenation_repeat1, - ACTIONS(2173), 3, + ACTIONS(5901), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 19, + ACTIONS(5899), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292262,106 +299449,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [259006] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(11937), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7157), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [259065] = 16, + [266675] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11939), 1, + ACTIONS(12326), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6812), 1, + STATE(7726), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [259124] = 6, + [266734] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4768), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 3, + ACTIONS(12293), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 19, + ACTIONS(12291), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292371,6 +299509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -292381,14 +299520,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [259163] = 3, + anon_sym_LT_LT_LT, + anon_sym_BQUOTE, + [266767] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(4523), 1, + anon_sym_BQUOTE, + ACTIONS(5629), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12261), 1, + sym_file_descriptor, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5559), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11759), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5627), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4824), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11757), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [266816] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1342), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 22, + ACTIONS(1340), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292411,15 +299590,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [259196] = 3, + [266849] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12328), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7508), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [266908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1338), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 21, + ACTIONS(1336), 21, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, @@ -292430,7 +299652,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -292441,14 +299663,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [259229] = 3, + [266941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 3, + ACTIONS(12285), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 22, + ACTIONS(12287), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292458,6 +299679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -292470,48 +299692,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [259262] = 3, + anon_sym_LT_LT_LT, + [266974] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 4, - sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, anon_sym_BQUOTE, - [259295] = 5, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12330), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7537), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [267033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11877), 1, - sym__special_character, - STATE(4645), 1, - aux_sym__literal_repeat1, - ACTIONS(5589), 2, + ACTIONS(12305), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 21, + ACTIONS(12307), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292521,6 +299752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -292533,117 +299765,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [259332] = 16, + anon_sym_LT_LT_LT, + [267066] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11941), 1, + ACTIONS(12332), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6839), 1, + STATE(7563), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [259391] = 3, + [267125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(6131), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(6129), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [259424] = 3, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [267158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 4, - sym__concat, - sym_test_operator, - sym__brace_start, + ACTIONS(6135), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(6133), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [259457] = 3, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [267191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11943), 3, + ACTIONS(12309), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11945), 22, + ACTIONS(12311), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292653,8 +299885,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292665,14 +299899,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [259490] = 3, + [267224] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4501), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + STATE(4869), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 17, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [267261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11795), 2, + ACTIONS(12313), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11797), 23, + ACTIONS(12315), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292696,90 +299961,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [259523] = 16, + [267294] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1332), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [267327] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11947), 1, + ACTIONS(12334), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6866), 1, + STATE(7592), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [259582] = 3, + [267386] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, anon_sym_BQUOTE, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [259615] = 5, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12336), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7478), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [267445] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11877), 1, + ACTIONS(12044), 1, sym__special_character, - STATE(4645), 1, + STATE(4759), 1, aux_sym__literal_repeat1, - ACTIONS(5595), 2, + ACTIONS(5046), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 21, + ACTIONS(5044), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292801,13 +300109,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [259652] = 3, + [267482] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11846), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12261), 1, + sym_file_descriptor, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11759), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4861), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11757), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11844), 8, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_BQUOTE, + [267525] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 2, + ACTIONS(4501), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 23, + STATE(4869), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -292817,10 +300165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -292830,23 +300175,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [259685] = 8, + [267560] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12338), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7629), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [267619] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11452), 1, + ACTIONS(11761), 1, anon_sym_LT_LT_LT, - ACTIONS(11466), 1, + ACTIONS(11842), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11769), 1, + ACTIONS(12340), 1, sym_file_descriptor, - ACTIONS(11542), 2, + ACTIONS(11759), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4968), 2, + STATE(5003), 2, sym_file_redirect, sym_herestring_redirect, - ACTIONS(11540), 8, + ACTIONS(11757), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -292855,63 +300242,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11464), 10, + ACTIONS(11840), 10, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, anon_sym_LT_LT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - [259728] = 10, + anon_sym_BQUOTE, + [267662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4316), 1, + ACTIONS(1342), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(11512), 1, - sym_file_descriptor, - ACTIONS(4306), 2, + ACTIONS(1340), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, - ACTIONS(4308), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4312), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11248), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4407), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4314), 4, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(11246), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [259775] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [267695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(1322), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 21, + ACTIONS(1320), 21, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, @@ -292922,7 +300302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -292933,90 +300313,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [259808] = 16, + [267728] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11949), 1, + ACTIONS(12342), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6893), 1, + STATE(7656), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [259867] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5573), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11841), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11844), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(11839), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [259904] = 3, + [267787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 4, + ACTIONS(1378), 4, sym__concat, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 21, + ACTIONS(1376), 21, anon_sym_LPAREN_LPAREN, anon_sym_SEMI, anon_sym_AMP, @@ -293027,7 +300375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -293038,14 +300386,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [259937] = 3, + [267820] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, - sym_file_descriptor, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, sym_variable_name, + ACTIONS(12344), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7682), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [267879] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(4699), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5901), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(5899), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293055,9 +300451,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293067,45 +300462,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [259970] = 3, + [267918] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, sym__concat, - sym_test_operator, - sym__brace_start, + STATE(4700), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2156), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(2154), 20, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [260003] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [267957] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11951), 3, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(4699), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 22, + ACTIONS(4971), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293126,32 +300528,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [260036] = 5, + [267996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4327), 3, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(4700), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4634), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 17, + ACTIONS(5015), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -293160,44 +300561,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260073] = 3, + [268035] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 4, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, sym__concat, - sym_test_operator, - sym__brace_start, + STATE(4699), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5907), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 21, - anon_sym_LPAREN_LPAREN, + ACTIONS(5905), 20, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [260106] = 3, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [268074] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, - sym_file_descriptor, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, sym__concat, + STATE(4700), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 22, + ACTIONS(2158), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293207,9 +300616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293219,15 +300627,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [260139] = 3, + [268113] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 3, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(4699), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 22, + ACTIONS(5044), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293237,10 +300649,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293250,18 +300660,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260172] = 4, + [268152] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 3, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(4700), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - STATE(4634), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 19, + ACTIONS(5048), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293271,6 +300682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -293281,87 +300693,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260207] = 16, + [268191] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11955), 1, + ACTIONS(12346), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7601), 1, + STATE(7704), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [260266] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1354), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [260299] = 3, + [268250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(6131), 4, sym_file_descriptor, - sym__concat, + sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 22, + ACTIONS(6129), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293371,9 +300754,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293383,287 +300765,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [260332] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11396), 1, - anon_sym_LT_LT_LT, - ACTIONS(11957), 1, - sym_file_descriptor, - ACTIONS(11416), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(11524), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4976), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11522), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11414), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [260375] = 8, + anon_sym_BQUOTE, + [268283] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11965), 1, - sym_file_descriptor, - ACTIONS(11409), 2, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(11904), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11962), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4734), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11398), 7, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(11959), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [260418] = 5, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12348), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7728), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [268342] = 3, ACTIONS(3), 1, sym_comment, - STATE(4735), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11844), 2, - sym_file_descriptor, + ACTIONS(1382), 4, + sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(11968), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11839), 20, + ACTIONS(1380), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [260455] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11749), 1, - anon_sym_LPAREN, - ACTIONS(11751), 1, - aux_sym__c_word_token1, - ACTIONS(11753), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(11757), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, - ACTIONS(11759), 1, aux_sym_number_token2, - ACTIONS(11761), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11971), 1, - anon_sym_RPAREN_RPAREN, - STATE(3243), 1, - sym__c_unary_expression, - STATE(3246), 1, - sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - STATE(6678), 1, - sym__c_expression, - STATE(6783), 1, - sym__c_variable_assignment, - ACTIONS(11747), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3241), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [260520] = 19, - ACTIONS(71), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [268375] = 16, + ACTIONS(3), 1, sym_comment, - ACTIONS(11749), 1, - anon_sym_LPAREN, - ACTIONS(11751), 1, - aux_sym__c_word_token1, - ACTIONS(11753), 1, - anon_sym_DOLLAR, - ACTIONS(11755), 1, - anon_sym_DQUOTE, - ACTIONS(11757), 1, - aux_sym_number_token1, - ACTIONS(11759), 1, - aux_sym_number_token2, - ACTIONS(11761), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11973), 1, - anon_sym_RPAREN_RPAREN, - STATE(3243), 1, - sym__c_unary_expression, - STATE(3246), 1, - sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - STATE(6685), 1, - sym__c_expression, - STATE(6783), 1, - sym__c_variable_assignment, - ACTIONS(11747), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3241), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12350), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, sym_command_substitution, - [260585] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4327), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 18, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [260622] = 16, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7287), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [268434] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11975), 1, + ACTIONS(12352), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6920), 1, + STATE(7534), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [260681] = 4, + [268493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 2, + ACTIONS(1350), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 20, + ACTIONS(1348), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293673,8 +300942,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -293684,302 +300954,375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [260716] = 8, + aux_sym_concatenation_token1, + [268526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11409), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11983), 1, + ACTIONS(1306), 3, sym_file_descriptor, - ACTIONS(11904), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11980), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4741), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11398), 8, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(11977), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [260759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [260792] = 3, + [268559] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, anon_sym_BQUOTE, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [260825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1358), 4, - sym__concat, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 21, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12354), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7344), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [260858] = 16, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [268618] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11986), 1, + ACTIONS(12356), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6942), 1, + STATE(6883), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [260917] = 16, + [268677] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11988), 1, + ACTIONS(12358), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7194), 1, + STATE(7174), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [260976] = 16, + [268736] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(11990), 1, + ACTIONS(12360), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6825), 1, + STATE(7406), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [261035] = 8, + [268795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11396), 1, - anon_sym_LT_LT_LT, - ACTIONS(11957), 1, + ACTIONS(6135), 4, sym_file_descriptor, - ACTIONS(11466), 2, + sym_variable_name, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11524), 2, + ACTIONS(6133), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [268828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12364), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12362), 23, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4968), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11522), 8, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [268861] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12366), 1, + sym_variable_name, + STATE(6849), 1, + sym_subscript, + ACTIONS(11679), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4856), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11677), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11464), 9, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [268900] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12368), 1, + sym_variable_name, + STATE(6849), 1, + sym_subscript, + ACTIONS(11707), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4856), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11705), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [268939] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4501), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(4824), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 18, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [261078] = 3, + anon_sym_BQUOTE, + [268976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11943), 2, + ACTIONS(1322), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(11945), 23, + ACTIONS(1320), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -293989,7 +301332,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -294002,15 +301344,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [261111] = 3, + aux_sym_concatenation_token1, + [269009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11992), 3, + ACTIONS(1346), 3, sym_file_descriptor, - ts_builtin_sym_end, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(11994), 22, + ACTIONS(1344), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294020,8 +301362,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294031,17 +301374,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [261144] = 3, + aux_sym_concatenation_token1, + [269042] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5873), 4, + ACTIONS(4501), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5871), 21, + STATE(4824), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294051,7 +301395,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -294063,142 +301406,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [261177] = 16, + [269077] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(11996), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(6964), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [261236] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12377), 1, + sym_file_descriptor, + ACTIONS(12109), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(12374), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4861), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11728), 8, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(11998), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7001), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [261295] = 16, + ACTIONS(12371), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [269120] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12000), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(6986), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [261354] = 3, + ACTIONS(11761), 1, + anon_sym_LT_LT_LT, + ACTIONS(11853), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12340), 1, + sym_file_descriptor, + ACTIONS(11759), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4939), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11757), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11851), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [269163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11885), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11887), 23, + ACTIONS(2154), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294222,86 +301506,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [261387] = 3, + [269196] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12002), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(11722), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12004), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11761), 1, + anon_sym_LT_LT_LT, + ACTIONS(12340), 1, + sym_file_descriptor, + ACTIONS(11759), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4964), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11757), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11720), 10, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [261420] = 16, + [269239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12006), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7136), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [261479] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11821), 2, + ACTIONS(1362), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(11823), 23, + ACTIONS(1360), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294311,7 +301558,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -294324,14 +301570,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [261512] = 3, + aux_sym_concatenation_token1, + [269272] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11992), 2, + ACTIONS(1366), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(11994), 23, + ACTIONS(1364), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294341,7 +301588,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -294354,216 +301600,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [261545] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12008), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7008), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [261604] = 16, + aux_sym_concatenation_token1, + [269305] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12010), 1, + ACTIONS(12380), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7029), 1, + STATE(7674), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [261663] = 16, + [269364] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12012), 1, + ACTIONS(12382), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7050), 1, + STATE(6978), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [261722] = 3, + [269423] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 3, + ACTIONS(12384), 1, sym_file_descriptor, - sym__concat, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11777), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11846), 2, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 22, + STATE(4687), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11844), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(11775), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [261755] = 16, + [269466] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(1370), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12014), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7230), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [261814] = 3, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [269499] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5184), 1, + ts_builtin_sym_end, + ACTIONS(5190), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12384), 1, + sym_file_descriptor, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5188), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11777), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5186), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4869), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11775), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [269548] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 2, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(11814), 1, + sym__concat, + STATE(4719), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5495), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 23, + ACTIONS(5493), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294573,10 +301813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294586,15 +301823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [261847] = 3, + [269587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, - sym_file_descriptor, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(11814), 1, sym__concat, + STATE(4720), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5501), 3, + sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 22, + ACTIONS(5499), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294605,8 +301847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294616,56 +301856,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [261880] = 8, + [269626] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11396), 1, - anon_sym_LT_LT_LT, - ACTIONS(11957), 1, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, + sym__concat, + STATE(4716), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5901), 2, sym_file_descriptor, - ACTIONS(11450), 2, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11524), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4998), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11522), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11448), 9, + ACTIONS(5899), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [261923] = 6, + anon_sym_LT_LT_LT, + [269665] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(12016), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4287), 1, + STATE(4717), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 3, + ACTIONS(2156), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 19, + ACTIONS(2154), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294685,13 +301921,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [261962] = 3, + anon_sym_LT_LT_LT, + [269704] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11921), 2, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, + sym__concat, + STATE(4716), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5907), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11923), 23, + ACTIONS(5905), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294701,10 +301944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294715,57 +301955,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [261995] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12018), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7319), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [262054] = 3, + [269743] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 3, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, + sym__concat, + STATE(4717), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 22, + ACTIONS(2158), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294775,7 +301977,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -294787,14 +301988,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, + [269782] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1386), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1384), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [262087] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [269815] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 2, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, + sym__concat, + STATE(4716), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 23, + ACTIONS(4971), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294804,10 +302040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294818,15 +302051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [262120] = 3, + [269854] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 4, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, + sym__concat, + STATE(4717), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 2, sym_file_descriptor, - sym_variable_name, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5888), 21, + ACTIONS(5015), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294836,7 +302073,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -294847,104 +302083,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [262153] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12020), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7394), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [262212] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12022), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7071), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [262271] = 5, + anon_sym_LT_LT_LT, + [269893] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11877), 1, - sym__special_character, - STATE(4645), 1, - aux_sym__literal_repeat1, - ACTIONS(4579), 2, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, + sym__concat, + STATE(4716), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 21, + ACTIONS(5044), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294955,8 +302107,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -294966,20 +302116,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262308] = 6, + anon_sym_LT_LT_LT, + [269932] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(12024), 1, + ACTIONS(11791), 1, sym__concat, - STATE(4287), 1, + STATE(4717), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + ACTIONS(5050), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 19, + ACTIONS(5048), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -294999,223 +302149,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [262347] = 16, + anon_sym_LT_LT_LT, + [269971] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12026), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7456), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, + ACTIONS(1370), 4, + sym__concat, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 21, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [262406] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12028), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7097), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [262465] = 16, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [270004] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12030), 1, + ACTIONS(12386), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7508), 1, + STATE(7128), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [262524] = 11, + [270063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, - anon_sym_BQUOTE, - ACTIONS(5107), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11867), 1, + ACTIONS(1358), 3, sym_file_descriptor, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5077), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11470), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5105), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11468), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [262573] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12032), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7119), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [262632] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [270096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11929), 2, + ACTIONS(1302), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11931), 23, + ACTIONS(1300), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295225,7 +302269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -295239,102 +302282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [262665] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12034), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(6836), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [262724] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11749), 1, - anon_sym_LPAREN, - ACTIONS(11751), 1, - aux_sym__c_word_token1, - ACTIONS(11753), 1, - anon_sym_DOLLAR, - ACTIONS(11755), 1, - anon_sym_DQUOTE, - ACTIONS(11757), 1, - aux_sym_number_token1, - ACTIONS(11759), 1, - aux_sym_number_token2, - ACTIONS(11761), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, - anon_sym_BQUOTE, - ACTIONS(11767), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12036), 1, - anon_sym_RPAREN_RPAREN, - STATE(3243), 1, - sym__c_unary_expression, - STATE(3246), 1, - sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - STATE(6700), 1, - sym__c_expression, - STATE(6783), 1, - sym__c_variable_assignment, - ACTIONS(11747), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3241), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [262789] = 3, + sym__special_character, + [270129] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11951), 2, + ACTIONS(1354), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 23, + ACTIONS(1352), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295344,7 +302300,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -295357,58 +302312,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [262822] = 16, + aux_sym_concatenation_token1, + [270162] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12038), 1, + ACTIONS(12388), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7140), 1, + STATE(7303), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [262881] = 3, + [270221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 3, + ACTIONS(2160), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 22, + ACTIONS(2158), 23, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295418,8 +302372,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -295430,186 +302386,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [262914] = 11, + [270254] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2757), 1, + ACTIONS(3278), 1, ts_builtin_sym_end, - ACTIONS(4707), 1, + ACTIONS(5261), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11829), 1, + ACTIONS(12384), 1, sym_file_descriptor, - ACTIONS(4310), 2, + ACTIONS(4499), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4703), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4705), 2, + ACTIONS(5166), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11524), 2, + ACTIONS(5188), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11777), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4701), 3, + ACTIONS(5259), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4634), 3, + STATE(4869), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11522), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [262963] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1326), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(11775), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [262996] = 16, + [270303] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12040), 1, + ACTIONS(12390), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6814), 1, + STATE(7464), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [263055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [263088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1334), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [263121] = 3, + [270362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 3, + ACTIONS(1374), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 22, + ACTIONS(1372), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295632,92 +302497,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [263154] = 16, + [270395] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12042), 1, + ACTIONS(12392), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6999), 1, + STATE(7580), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [263213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5873), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(5871), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [263246] = 6, + [270454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4619), 1, + STATE(4725), 1, aux_sym_concatenation_repeat1, - ACTIONS(5589), 2, + ACTIONS(5901), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 20, + ACTIONS(5899), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295727,7 +302562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -295738,19 +302572,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263285] = 6, + anon_sym_BQUOTE, + [270493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4620), 1, + STATE(4726), 1, aux_sym_concatenation_repeat1, - ACTIONS(2169), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 20, + ACTIONS(2154), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295760,7 +302595,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -295771,19 +302605,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263324] = 6, + anon_sym_BQUOTE, + [270532] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4619), 1, + STATE(4725), 1, aux_sym_concatenation_repeat1, - ACTIONS(4428), 2, + ACTIONS(4973), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 20, + ACTIONS(4971), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295793,7 +302628,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -295804,19 +302638,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263363] = 6, + anon_sym_BQUOTE, + [270571] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4620), 1, + STATE(4726), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 2, + ACTIONS(5017), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 20, + ACTIONS(5015), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295826,7 +302661,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -295837,19 +302671,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263402] = 6, + anon_sym_BQUOTE, + [270610] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4619), 1, + STATE(4725), 1, aux_sym_concatenation_repeat1, - ACTIONS(5595), 2, + ACTIONS(5907), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 20, + ACTIONS(5905), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295859,7 +302694,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -295870,19 +302704,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263441] = 6, + anon_sym_BQUOTE, + [270649] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4620), 1, + STATE(4726), 1, aux_sym_concatenation_repeat1, - ACTIONS(2173), 2, + ACTIONS(2160), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 20, + ACTIONS(2158), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295892,7 +302727,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -295903,19 +302737,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263480] = 6, + anon_sym_BQUOTE, + [270688] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4619), 1, + STATE(4725), 1, aux_sym_concatenation_repeat1, - ACTIONS(4579), 2, + ACTIONS(5046), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 20, + ACTIONS(5044), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295925,7 +302760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -295936,19 +302770,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263519] = 6, + anon_sym_BQUOTE, + [270727] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4620), 1, + STATE(4726), 1, aux_sym_concatenation_repeat1, - ACTIONS(4595), 2, + ACTIONS(5050), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 20, + ACTIONS(5048), 20, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -295958,7 +302793,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -295969,122 +302803,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [263558] = 3, - ACTIONS(3), 1, + anon_sym_BQUOTE, + [270766] = 19, + ACTIONS(73), 1, sym_comment, - ACTIONS(11873), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(11875), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [263591] = 16, + ACTIONS(12128), 1, + anon_sym_LPAREN, + ACTIONS(12130), 1, + aux_sym__c_word_token1, + ACTIONS(12132), 1, + anon_sym_DOLLAR, + ACTIONS(12134), 1, + anon_sym_DQUOTE, + ACTIONS(12136), 1, + aux_sym_number_token1, + ACTIONS(12138), 1, + aux_sym_number_token2, + ACTIONS(12140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12142), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12144), 1, + anon_sym_BQUOTE, + ACTIONS(12146), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12394), 1, + anon_sym_RPAREN_RPAREN, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, + sym__c_unary_expression, + STATE(3318), 1, + sym__c_binary_expression, + STATE(6720), 1, + sym__c_expression, + STATE(6840), 1, + sym__c_variable_assignment, + ACTIONS(12126), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3446), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [270831] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12044), 1, + ACTIONS(12396), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7160), 1, + STATE(7720), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [263650] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11416), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11452), 1, - anon_sym_LT_LT_LT, - ACTIONS(11769), 1, - sym_file_descriptor, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4976), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11540), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11414), 10, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [263693] = 3, + [270890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 3, + ACTIONS(1382), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 22, + ACTIONS(1380), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296107,412 +302923,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [263726] = 16, + [270923] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12046), 1, + ACTIONS(12398), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7181), 1, + STATE(6930), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [263785] = 16, + [270982] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12048), 1, + ACTIONS(12400), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7199), 1, + STATE(6986), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [263844] = 16, + [271041] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12050), 1, + ACTIONS(12402), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7201), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [263903] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2755), 1, - anon_sym_RPAREN, - ACTIONS(4471), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11831), 1, - sym_file_descriptor, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5012), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11542), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4465), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [263952] = 19, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11749), 1, - anon_sym_LPAREN, - ACTIONS(11751), 1, - aux_sym__c_word_token1, - ACTIONS(11753), 1, - anon_sym_DOLLAR, - ACTIONS(11755), 1, - anon_sym_DQUOTE, - ACTIONS(11757), 1, - aux_sym_number_token1, - ACTIONS(11759), 1, - aux_sym_number_token2, - ACTIONS(11761), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, - anon_sym_BQUOTE, - ACTIONS(11767), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12052), 1, - anon_sym_RPAREN_RPAREN, - STATE(3243), 1, - sym__c_unary_expression, - STATE(3246), 1, - sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - STATE(6559), 1, - sym__c_expression, - STATE(6783), 1, - sym__c_variable_assignment, - ACTIONS(11747), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3241), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, + STATE(6501), 1, sym_command_substitution, - [264017] = 16, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7087), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [271100] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12054), 1, + ACTIONS(12404), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7294), 1, + STATE(7134), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [264076] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5890), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(5888), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [264109] = 6, + [271159] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(12052), 1, + anon_sym_BANG2, ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, sym_variable_name, - STATE(6757), 1, + ACTIONS(12406), 1, + anon_sym_RBRACE3, + STATE(3622), 1, sym_subscript, - ACTIONS(11309), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4819), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11307), 19, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [264148] = 16, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7243), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [271218] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12058), 1, + ACTIONS(12408), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7217), 1, + STATE(7298), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [264207] = 3, + [271277] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 3, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(4738), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - anon_sym_BQUOTE, - [264240] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12060), 1, - sym_variable_name, - STATE(6757), 1, - sym_subscript, - ACTIONS(11294), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(4819), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11292), 19, + ACTIONS(2158), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296532,100 +303214,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264279] = 16, + [271316] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12063), 1, + ACTIONS(12410), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6797), 1, + STATE(7359), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [264338] = 16, + [271375] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12065), 1, + ACTIONS(12412), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(7228), 1, + STATE(6871), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [264397] = 3, + [271434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12067), 3, + ACTIONS(12364), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12069), 22, + ACTIONS(12362), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296648,226 +303330,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, anon_sym_BQUOTE, - [264430] = 3, + [271467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [264463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1346), 3, - sym_file_descriptor, + ACTIONS(1346), 4, sym__concat, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 22, + ACTIONS(1344), 21, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - [264496] = 16, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [271500] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12071), 1, + ACTIONS(12414), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6858), 1, + STATE(7422), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [264555] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11787), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(11789), 23, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [264588] = 3, + [271559] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [264621] = 16, + ACTIONS(12052), 1, + anon_sym_BANG2, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12062), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(12064), 1, + sym_variable_name, + ACTIONS(12416), 1, + anon_sym_RBRACE3, + STATE(3622), 1, + sym_subscript, + STATE(6501), 1, + sym_command_substitution, + STATE(6543), 1, + aux_sym__expansion_body_repeat1, + STATE(7176), 1, + sym__expansion_body, + ACTIONS(12054), 2, + anon_sym_POUND2, + anon_sym_EQ2, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + ACTIONS(12046), 4, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_AT2, + ACTIONS(12048), 5, + anon_sym_BANG, + anon_sym_DOLLAR, + anon_sym_POUND, + anon_sym_0, + anon_sym__, + [271618] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, + ACTIONS(12052), 1, anon_sym_BANG2, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, + ACTIONS(12062), 1, aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, + ACTIONS(12064), 1, sym_variable_name, - ACTIONS(12073), 1, + ACTIONS(12418), 1, anon_sym_RBRACE3, - STATE(3536), 1, + STATE(3622), 1, sym_subscript, - STATE(6411), 1, + STATE(6501), 1, sym_command_substitution, - STATE(6425), 1, + STATE(6543), 1, aux_sym__expansion_body_repeat1, - STATE(6792), 1, + STATE(7486), 1, sym__expansion_body, - ACTIONS(11733), 2, + ACTIONS(12054), 2, anon_sym_POUND2, anon_sym_EQ2, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - ACTIONS(11725), 4, + ACTIONS(12046), 4, anon_sym_DASH, anon_sym_STAR, anon_sym_QMARK, anon_sym_AT2, - ACTIONS(11727), 5, + ACTIONS(12048), 5, anon_sym_BANG, anon_sym_DOLLAR, anon_sym_POUND, anon_sym_0, anon_sym__, - [264680] = 6, + [271677] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(11460), 1, + ACTIONS(11883), 1, sym__concat, - STATE(4650), 1, + STATE(5076), 1, aux_sym_concatenation_repeat1, - ACTIONS(5167), 3, + ACTIONS(2160), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 19, + ACTIONS(2158), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296887,20 +303521,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264719] = 6, + [271715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, - aux_sym_concatenation_token1, - ACTIONS(11460), 1, - sym__concat, - STATE(4651), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5175), 3, + ACTIONS(12422), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 19, + ACTIONS(12420), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296910,7 +303537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -296920,19 +303550,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [264758] = 6, + [271747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4648), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5589), 2, + ACTIONS(5050), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 20, + ACTIONS(5048), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296943,6 +303567,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -296953,19 +303579,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [264797] = 6, + [271779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4649), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2169), 2, + ACTIONS(12426), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 20, + ACTIONS(12424), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -296975,7 +303595,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -296985,20 +303608,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [264836] = 6, + [271811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4648), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5595), 2, + ACTIONS(12152), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 20, + ACTIONS(12154), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297009,6 +303625,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -297019,19 +303637,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [264875] = 6, + [271843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4649), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2173), 2, + ACTIONS(12221), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 20, + ACTIONS(12219), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297041,6 +303654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -297051,20 +303665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [264914] = 6, + anon_sym_BQUOTE, + [271875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4648), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 2, + ACTIONS(12285), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 20, + ACTIONS(12287), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297075,6 +303683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -297085,52 +303695,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [264953] = 6, + [271907] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4649), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4513), 2, - sym_file_descriptor, + ACTIONS(4733), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 20, + ACTIONS(11879), 1, + sym_file_descriptor, + ACTIONS(4727), 2, anon_sym_SEMI, + anon_sym_AMP, + ACTIONS(4729), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(4731), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11641), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(3280), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11639), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [264992] = 6, + [271953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4648), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 2, + ACTIONS(12430), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 20, + ACTIONS(12428), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297140,7 +303747,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -297150,20 +303760,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [265031] = 6, + [271985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(4649), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 2, + ACTIONS(12305), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 20, + ACTIONS(12307), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297174,6 +303777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -297184,56 +303789,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [265070] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12075), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(6914), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [265129] = 3, + [272017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12002), 2, + ACTIONS(12309), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12004), 23, + ACTIONS(12311), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297243,7 +303805,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -297257,13 +303818,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [265162] = 3, + [272049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12067), 2, + ACTIONS(12313), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12069), 23, + ACTIONS(12315), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297273,7 +303834,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -297287,27 +303847,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [265195] = 3, + [272081] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11777), 2, + STATE(4970), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12229), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11779), 23, + ACTIONS(12432), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12225), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -297316,192 +303878,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [265228] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12077), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7251), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [265287] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12079), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7235), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [265346] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12081), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7262), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [265405] = 16, + [272117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12083), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7278), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [265464] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4665), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5589), 2, + ACTIONS(12436), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 20, + ACTIONS(12434), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297511,7 +303894,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -297521,20 +303907,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [265503] = 6, + [272149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4666), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2169), 2, + ACTIONS(12309), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 20, + ACTIONS(12311), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297544,6 +303924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -297555,19 +303936,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [265542] = 6, + [272181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4665), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 2, + ACTIONS(12438), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 20, + ACTIONS(12440), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297577,6 +303953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -297588,19 +303965,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [265581] = 6, + [272213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4666), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4513), 2, + ACTIONS(12313), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 20, + ACTIONS(12315), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297610,6 +303982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -297621,19 +303994,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [265620] = 6, + [272245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4665), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5595), 2, + ACTIONS(12444), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 20, + ACTIONS(12442), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297643,7 +304010,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -297653,20 +304023,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [265659] = 6, + [272277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4666), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2173), 2, + ACTIONS(12448), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 20, + ACTIONS(12446), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297676,7 +304039,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -297686,53 +304052,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [265698] = 6, + [272309] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4665), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 2, - sym_file_descriptor, + ACTIONS(4830), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 20, - anon_sym_SEMI, + ACTIONS(11879), 1, + sym_file_descriptor, + ACTIONS(4729), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(4731), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(4828), 2, + anon_sym_SEMI, anon_sym_AMP, + ACTIONS(11641), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(4523), 3, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + STATE(4473), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11639), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [265737] = 6, + [272355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4666), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 2, + ACTIONS(12450), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 20, + ACTIONS(12452), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -297742,6 +304105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -297753,358 +304117,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [265776] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12085), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7288), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [265835] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12087), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7300), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [265894] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12089), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7310), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [265953] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12091), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7321), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [266012] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12093), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7331), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [266071] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12095), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7343), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [266130] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12097), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(7354), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [266189] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11731), 1, - anon_sym_BANG2, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(11741), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(11743), 1, - sym_variable_name, - ACTIONS(12099), 1, - anon_sym_RBRACE3, - STATE(3536), 1, - sym_subscript, - STATE(6411), 1, - sym_command_substitution, - STATE(6425), 1, - aux_sym__expansion_body_repeat1, - STATE(6963), 1, - sym__expansion_body, - ACTIONS(11733), 2, - anon_sym_POUND2, - anon_sym_EQ2, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - ACTIONS(11725), 4, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_AT2, - ACTIONS(11727), 5, - anon_sym_BANG, - anon_sym_DOLLAR, - anon_sym_POUND, - anon_sym_0, - anon_sym__, - [266248] = 3, + [272387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(12448), 3, sym_file_descriptor, - sym__concat, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 22, + ACTIONS(12446), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298114,9 +304134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298126,15 +304145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [266281] = 3, + anon_sym_BQUOTE, + [272419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 3, + ACTIONS(2160), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 21, + ACTIONS(2158), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298156,14 +304175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [266313] = 3, + [272451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12105), 3, + ACTIONS(6211), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12107), 21, + ACTIONS(6209), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298173,8 +304191,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298184,14 +304204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [266345] = 3, + [272483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12111), 2, + ACTIONS(6211), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 22, + ACTIONS(6209), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298214,13 +304233,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266377] = 3, + [272515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 2, + ACTIONS(12454), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 22, + ACTIONS(12456), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298230,9 +304250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298242,15 +304261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [266409] = 3, + anon_sym_BQUOTE, + [272547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5873), 3, + ACTIONS(12454), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5871), 21, + ACTIONS(12456), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298260,9 +304279,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298272,13 +304290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266441] = 3, + anon_sym_BQUOTE, + [272579] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11929), 2, + ACTIONS(12074), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11931), 22, + ACTIONS(12076), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298301,14 +304320,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [266473] = 3, + [272611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12113), 3, + ACTIONS(12450), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 21, + ACTIONS(12452), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298318,8 +304336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298329,15 +304349,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [266505] = 3, + [272643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5890), 3, + ACTIONS(12438), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5888), 21, + ACTIONS(12440), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298347,9 +304366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298359,14 +304377,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266537] = 3, + anon_sym_BQUOTE, + [272675] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 3, + ACTIONS(12436), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 21, + ACTIONS(12434), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298388,14 +304407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [266569] = 3, + [272707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12117), 3, + ACTIONS(12422), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12119), 21, + ACTIONS(12420), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298417,13 +304436,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [266601] = 3, + [272739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 2, + ACTIONS(12460), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 22, + ACTIONS(12458), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298446,13 +304465,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266633] = 3, + [272771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12123), 2, + ACTIONS(5050), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12121), 22, + ACTIONS(5048), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298475,14 +304494,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266665] = 3, + [272803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 3, + ACTIONS(5050), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 21, + ACTIONS(5048), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298504,13 +304523,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [266697] = 3, + [272835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12002), 2, + ACTIONS(12462), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12004), 22, + ACTIONS(12464), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298520,9 +304540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298532,43 +304551,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [266729] = 3, + anon_sym_BQUOTE, + [272867] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12127), 2, - sym_file_descriptor, + ACTIONS(5552), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12125), 22, - anon_sym_SEMI, + ACTIONS(12466), 1, + sym_file_descriptor, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5464), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11964), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5550), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11962), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [266761] = 3, + [272913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 2, + ACTIONS(12470), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 22, + ACTIONS(12468), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298591,14 +304617,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266793] = 3, + [272945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12111), 3, + ACTIONS(12243), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 21, + ACTIONS(12241), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298608,8 +304633,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298619,44 +304645,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [266825] = 18, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [272977] = 18, + ACTIONS(73), 1, sym_comment, - ACTIONS(12131), 1, + ACTIONS(12474), 1, anon_sym_LPAREN, - ACTIONS(12133), 1, + ACTIONS(12476), 1, aux_sym__c_word_token1, - ACTIONS(12135), 1, + ACTIONS(12478), 1, anon_sym_DOLLAR, - ACTIONS(12137), 1, + ACTIONS(12480), 1, anon_sym_DQUOTE, - ACTIONS(12139), 1, + ACTIONS(12482), 1, aux_sym_number_token1, - ACTIONS(12141), 1, + ACTIONS(12484), 1, aux_sym_number_token2, - ACTIONS(12143), 1, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, + ACTIONS(12490), 1, anon_sym_BQUOTE, - ACTIONS(12149), 1, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, + STATE(3235), 1, sym__c_binary_expression, - STATE(3371), 1, + STATE(3260), 1, sym__c_postfix_expression, - STATE(6567), 1, + STATE(3498), 1, + sym__c_unary_expression, + STATE(6681), 1, sym__c_expression, - STATE(6729), 1, + STATE(6798), 1, sym__c_variable_assignment, - ACTIONS(12129), 2, + ACTIONS(12472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3358), 7, + STATE(3390), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -298664,13 +304690,71 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [266887] = 3, + [273039] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12285), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12287), 22, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [273071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12305), 3, + sym_file_descriptor, + ts_builtin_sym_end, + aux_sym_heredoc_redirect_token1, + ACTIONS(12307), 21, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_BQUOTE, + [273103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12153), 2, + ACTIONS(12496), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12151), 22, + ACTIONS(12494), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298693,13 +304777,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266919] = 3, + [273135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12157), 2, + ACTIONS(12426), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12155), 22, + ACTIONS(12424), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298709,10 +304794,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298722,13 +304805,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266951] = 3, + anon_sym_BQUOTE, + [273167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12161), 2, + ACTIONS(12496), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12159), 22, + ACTIONS(12494), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298738,10 +304823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298751,13 +304834,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [266983] = 3, + anon_sym_BQUOTE, + [273199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12165), 2, + ACTIONS(12430), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12163), 22, + ACTIONS(12428), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298767,10 +304852,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298780,14 +304863,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267015] = 3, + anon_sym_BQUOTE, + [273231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12117), 3, + ACTIONS(12237), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12119), 21, + ACTIONS(12235), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298809,13 +304893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [267047] = 3, + [273263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11787), 2, + ACTIONS(12498), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11789), 22, + ACTIONS(12500), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298825,10 +304910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -298838,13 +304921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267079] = 3, + anon_sym_BQUOTE, + [273295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 2, + ACTIONS(12305), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 22, + ACTIONS(12307), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298867,13 +304951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267111] = 3, + [273327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12169), 2, + ACTIONS(12309), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12167), 22, + ACTIONS(12311), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298896,86 +304980,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267143] = 3, + [273359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12171), 3, + ACTIONS(12313), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12173), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267175] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12131), 1, - anon_sym_LPAREN, - ACTIONS(12133), 1, - aux_sym__c_word_token1, - ACTIONS(12135), 1, - anon_sym_DOLLAR, - ACTIONS(12137), 1, - anon_sym_DQUOTE, - ACTIONS(12139), 1, - aux_sym_number_token1, - ACTIONS(12141), 1, - aux_sym_number_token2, - ACTIONS(12143), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, - anon_sym_BQUOTE, - ACTIONS(12149), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, - sym__c_binary_expression, - STATE(3371), 1, - sym__c_postfix_expression, - STATE(6729), 1, - sym__c_variable_assignment, - STATE(6773), 1, - sym__c_expression, - ACTIONS(12129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3358), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [267237] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12167), 22, + ACTIONS(12315), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -298998,26 +305009,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267269] = 3, + [273391] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12175), 3, + STATE(4970), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12193), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12177), 21, + ACTIONS(12502), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12188), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -299026,15 +305040,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267301] = 3, + [273427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12002), 3, + ACTIONS(12505), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12004), 21, + ACTIONS(12507), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299056,13 +305069,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [267333] = 3, + [273459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12181), 2, + ACTIONS(12511), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12179), 22, + ACTIONS(12509), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299085,13 +305098,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267365] = 3, + [273491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 2, + ACTIONS(12513), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 22, + ACTIONS(12515), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299101,9 +305115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299113,14 +305126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [267397] = 3, + anon_sym_BQUOTE, + [273523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 2, + ACTIONS(12519), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5927), 22, + ACTIONS(12517), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299143,13 +305156,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267429] = 3, + [273555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 2, + ACTIONS(12523), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5927), 22, + ACTIONS(12521), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299172,14 +305185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267461] = 3, + [273587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5175), 3, + ACTIONS(12511), 3, sym_file_descriptor, - sym_variable_name, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 21, + ACTIONS(12509), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299189,9 +305202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299201,13 +305213,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267493] = 3, + anon_sym_BQUOTE, + [273619] = 18, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12474), 1, + anon_sym_LPAREN, + ACTIONS(12476), 1, + aux_sym__c_word_token1, + ACTIONS(12478), 1, + anon_sym_DOLLAR, + ACTIONS(12480), 1, + anon_sym_DQUOTE, + ACTIONS(12482), 1, + aux_sym_number_token1, + ACTIONS(12484), 1, + aux_sym_number_token2, + ACTIONS(12486), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12488), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12490), 1, + anon_sym_BQUOTE, + ACTIONS(12492), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3235), 1, + sym__c_binary_expression, + STATE(3260), 1, + sym__c_postfix_expression, + STATE(3498), 1, + sym__c_unary_expression, + STATE(6798), 1, + sym__c_variable_assignment, + STATE(6829), 1, + sym__c_expression, + ACTIONS(12472), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3390), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [273681] = 18, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12474), 1, + anon_sym_LPAREN, + ACTIONS(12476), 1, + aux_sym__c_word_token1, + ACTIONS(12478), 1, + anon_sym_DOLLAR, + ACTIONS(12480), 1, + anon_sym_DQUOTE, + ACTIONS(12482), 1, + aux_sym_number_token1, + ACTIONS(12484), 1, + aux_sym_number_token2, + ACTIONS(12486), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12488), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12490), 1, + anon_sym_BQUOTE, + ACTIONS(12492), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3235), 1, + sym__c_binary_expression, + STATE(3260), 1, + sym__c_postfix_expression, + STATE(3498), 1, + sym__c_unary_expression, + STATE(6798), 1, + sym__c_variable_assignment, + STATE(6855), 1, + sym__c_expression, + ACTIONS(12472), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3390), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [273743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 2, + ACTIONS(12527), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 22, + ACTIONS(12525), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299217,6 +305318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -299229,14 +305331,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [267525] = 3, + [273775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12067), 2, + ACTIONS(12531), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12069), 22, + ACTIONS(12529), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299246,6 +305347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -299258,14 +305360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [267557] = 3, + [273807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11777), 2, + ACTIONS(12531), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11779), 22, + ACTIONS(12529), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299275,6 +305376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -299287,15 +305389,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [267589] = 3, + [273839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12123), 3, + ACTIONS(12519), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12121), 21, + ACTIONS(12517), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299317,14 +305418,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [267621] = 3, + [273871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12183), 3, + ACTIONS(12535), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12185), 21, + ACTIONS(12533), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299334,8 +305434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299345,15 +305447,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267653] = 3, + [273903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12127), 3, + ACTIONS(12120), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12125), 21, + ACTIONS(12122), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299363,8 +305463,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299374,15 +305476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267685] = 3, + [273935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12165), 3, + ACTIONS(12523), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12163), 21, + ACTIONS(12521), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299404,42 +305505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [267717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12002), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12004), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [267749] = 3, + [273967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12067), 2, + ACTIONS(12527), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12069), 22, + ACTIONS(12525), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299449,10 +305522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299462,13 +305533,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267781] = 3, + anon_sym_BQUOTE, + [273999] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11777), 2, + ACTIONS(12531), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11779), 22, + ACTIONS(12529), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299478,10 +305551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299491,14 +305562,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267813] = 3, + anon_sym_BQUOTE, + [274031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12169), 3, + ACTIONS(12531), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12167), 21, + ACTIONS(12529), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299520,13 +305592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [267845] = 3, + [274063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12183), 2, + ACTIONS(12535), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12185), 22, + ACTIONS(12533), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299536,10 +305609,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299549,13 +305620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267877] = 3, + anon_sym_BQUOTE, + [274095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12183), 2, + ACTIONS(12535), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12185), 22, + ACTIONS(12533), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299578,43 +305650,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [267909] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12169), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(12167), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [267941] = 3, + [274127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12181), 3, + ACTIONS(12535), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12179), 21, + ACTIONS(12533), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299636,14 +305679,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [267973] = 3, + [274159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12181), 3, + ACTIONS(12539), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12179), 21, + ACTIONS(12537), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299653,8 +305695,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299664,15 +305708,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [268005] = 3, + [274191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12187), 3, + ACTIONS(12539), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12189), 21, + ACTIONS(12537), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299694,13 +305737,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [268037] = 3, + [274223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12193), 2, + ACTIONS(12293), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12191), 22, + ACTIONS(12291), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299710,7 +305753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -299723,13 +305765,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268069] = 3, + anon_sym_LT_LT_LT, + [274255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12181), 2, + ACTIONS(12150), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12179), 22, + ACTIONS(12148), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299752,13 +305795,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268101] = 3, + [274287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11787), 2, + ACTIONS(6211), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11789), 22, + ACTIONS(6209), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299768,9 +305812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299780,45 +305823,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [268133] = 5, + anon_sym_BQUOTE, + [274319] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12195), 1, - sym__special_character, - STATE(4990), 1, - aux_sym__literal_repeat1, - ACTIONS(5317), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(12541), 3, + sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5315), 19, - anon_sym_LPAREN_LPAREN, + ACTIONS(12543), 21, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - 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_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [268169] = 3, + [274351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11951), 2, + ACTIONS(6211), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 22, + ACTIONS(6209), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299828,9 +305870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299840,14 +305881,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [268201] = 3, + anon_sym_BQUOTE, + [274383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11929), 2, + ACTIONS(12545), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11931), 22, + ACTIONS(12547), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299857,10 +305899,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299870,19 +305910,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268233] = 6, + anon_sym_BQUOTE, + [274415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(12197), 1, - sym__concat, - STATE(4287), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, + ACTIONS(12551), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 19, + ACTIONS(12549), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299892,7 +305927,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299902,19 +305940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268271] = 6, + [274447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(12199), 1, - sym__concat, - STATE(4287), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(12545), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 19, + ACTIONS(12547), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299924,6 +305957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -299934,13 +305968,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268309] = 3, + anon_sym_BQUOTE, + [274479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12187), 2, + ACTIONS(12555), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12189), 22, + ACTIONS(12553), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299963,13 +305998,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268341] = 3, + [274511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11992), 2, + ACTIONS(12557), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11994), 22, + ACTIONS(12559), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -299979,9 +306015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -299991,51 +306026,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [268373] = 10, + anon_sym_BQUOTE, + [274543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5335), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 1, + ACTIONS(12555), 2, sym_file_descriptor, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12553), 22, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11571), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5333), 3, + anon_sym_LT_LT_DASH, + [274575] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12563), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12561), 22, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [268419] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [274607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12203), 3, + ACTIONS(12565), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12205), 21, + ACTIONS(12567), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300057,13 +306114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [268451] = 3, + [274639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 2, + ACTIONS(12571), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 22, + ACTIONS(12569), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300073,6 +306130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -300085,15 +306143,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [268483] = 3, + [274671] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12207), 3, + ACTIONS(5466), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12466), 1, + sym_file_descriptor, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5464), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11964), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5462), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11962), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [274717] = 18, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12128), 1, + anon_sym_LPAREN, + ACTIONS(12130), 1, + aux_sym__c_word_token1, + ACTIONS(12132), 1, + anon_sym_DOLLAR, + ACTIONS(12134), 1, + anon_sym_DQUOTE, + ACTIONS(12136), 1, + aux_sym_number_token1, + ACTIONS(12138), 1, + aux_sym_number_token2, + ACTIONS(12140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12142), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12144), 1, + anon_sym_BQUOTE, + ACTIONS(12146), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, + sym__c_unary_expression, + STATE(3318), 1, + sym__c_binary_expression, + STATE(6840), 1, + sym__c_variable_assignment, + STATE(6852), 1, + sym__c_expression, + ACTIONS(12126), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3446), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [274779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12571), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12209), 21, + ACTIONS(12569), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300115,13 +306252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [268515] = 3, + [274811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12213), 2, + ACTIONS(12462), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12211), 22, + ACTIONS(12464), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300144,14 +306281,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268547] = 3, + [274843] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12215), 3, + STATE(5643), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12193), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12323), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12188), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [274879] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12513), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12217), 21, + ACTIONS(12515), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300173,13 +306341,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [268579] = 3, + [274911] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12171), 2, + ACTIONS(12563), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12173), 22, + ACTIONS(12561), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300202,13 +306370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268611] = 3, + [274943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 2, + ACTIONS(12575), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 22, + ACTIONS(12573), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300231,14 +306399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268643] = 3, + [274975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12067), 3, + ACTIONS(2156), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12069), 21, + ACTIONS(2154), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300248,8 +306415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -300259,14 +306428,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [268675] = 3, + [275007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12221), 2, + ACTIONS(12438), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12219), 22, + ACTIONS(12440), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300289,14 +306457,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268707] = 3, + [275039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11777), 3, + ACTIONS(12575), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11779), 21, + ACTIONS(12573), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300318,14 +306486,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [268739] = 3, + [275071] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12223), 3, + ACTIONS(12438), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12225), 21, + ACTIONS(12440), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300335,8 +306502,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -300346,14 +306515,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [268771] = 3, + [275103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 2, + ACTIONS(12513), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 22, + ACTIONS(12515), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300363,6 +306531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -300375,59 +306544,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [268803] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12131), 1, - anon_sym_LPAREN, - ACTIONS(12133), 1, - aux_sym__c_word_token1, - ACTIONS(12135), 1, - anon_sym_DOLLAR, - ACTIONS(12137), 1, - anon_sym_DQUOTE, - ACTIONS(12139), 1, - aux_sym_number_token1, - ACTIONS(12141), 1, - aux_sym_number_token2, - ACTIONS(12143), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, - anon_sym_BQUOTE, - ACTIONS(12149), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, - sym__c_binary_expression, - STATE(3371), 1, - sym__c_postfix_expression, - STATE(6729), 1, - sym__c_variable_assignment, - STATE(6740), 1, - sym__c_expression, - ACTIONS(12129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3358), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [268865] = 3, + [275135] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12213), 3, + ACTIONS(2160), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12211), 21, + ACTIONS(2158), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300437,8 +306560,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -300448,14 +306573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [268897] = 3, + [275167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12113), 2, + ACTIONS(12513), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 22, + ACTIONS(12515), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300478,13 +306602,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268929] = 3, + [275199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12113), 2, + ACTIONS(6131), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 22, + ACTIONS(6129), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300494,7 +306619,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -300507,13 +306631,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268961] = 3, + [275231] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12203), 2, + ACTIONS(12285), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12205), 22, + ACTIONS(12287), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300523,10 +306648,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -300536,50 +306659,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [268993] = 10, + anon_sym_BQUOTE, + [275263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5103), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 1, + ACTIONS(6135), 3, sym_file_descriptor, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, + sym_variable_name, + aux_sym_heredoc_redirect_token1, + ACTIONS(6133), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11571), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5101), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11569), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [269039] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [275295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12227), 3, + ACTIONS(12577), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12229), 21, + ACTIONS(12579), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300601,13 +306718,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [269071] = 3, + [275327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12233), 2, + ACTIONS(12505), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12231), 22, + ACTIONS(12507), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300630,13 +306747,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269103] = 3, + [275359] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12237), 2, + ACTIONS(12454), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12235), 22, + ACTIONS(12456), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300659,13 +306776,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269135] = 3, + [275391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12241), 2, + ACTIONS(2160), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12239), 22, + ACTIONS(2158), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300675,7 +306792,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -300688,14 +306804,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269167] = 3, + anon_sym_LT_LT_LT, + [275423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11821), 3, + ACTIONS(12581), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11823), 21, + ACTIONS(12583), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300717,14 +306834,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [269199] = 3, + [275455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12227), 3, + ACTIONS(12221), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12229), 21, + ACTIONS(12219), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300734,8 +306850,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -300745,14 +306863,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [269231] = 3, + [275487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11821), 2, + ACTIONS(12581), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11823), 22, + ACTIONS(12583), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300775,13 +306892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269263] = 3, + [275519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11873), 2, + ACTIONS(12460), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11875), 22, + ACTIONS(12458), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300791,9 +306909,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -300803,15 +306920,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [269295] = 3, + anon_sym_BQUOTE, + [275551] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12243), 3, + ACTIONS(5017), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12245), 21, + ACTIONS(5015), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300821,8 +306937,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -300832,14 +306950,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [269327] = 3, + [275583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 2, + ACTIONS(12237), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12247), 22, + ACTIONS(12235), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300862,22 +306979,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269359] = 8, + [275615] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11450), 1, + ACTIONS(5507), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11573), 1, - anon_sym_LT_LT_LT, - ACTIONS(12251), 1, + ACTIONS(12466), 1, sym_file_descriptor, - ACTIONS(11571), 2, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5464), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11964), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4998), 2, + ACTIONS(5505), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5058), 3, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11569), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11962), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -300886,23 +307015,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11448), 9, + [275661] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12498), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12500), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269401] = 3, + [275693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12117), 2, + ACTIONS(12541), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12119), 22, + ACTIONS(12543), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300925,13 +307073,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269433] = 3, + [275725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11821), 2, + ACTIONS(12557), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11823), 22, + ACTIONS(12559), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -300941,6 +307089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -300953,44 +307102,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [269465] = 18, - ACTIONS(71), 1, + [275757] = 18, + ACTIONS(73), 1, sym_comment, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(12255), 1, + ACTIONS(12474), 1, anon_sym_LPAREN, - ACTIONS(12257), 1, + ACTIONS(12476), 1, aux_sym__c_word_token1, - ACTIONS(12259), 1, + ACTIONS(12478), 1, + anon_sym_DOLLAR, + ACTIONS(12480), 1, anon_sym_DQUOTE, - ACTIONS(12261), 1, + ACTIONS(12482), 1, aux_sym_number_token1, - ACTIONS(12263), 1, + ACTIONS(12484), 1, + aux_sym_number_token2, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, + ACTIONS(12490), 1, anon_sym_BQUOTE, - ACTIONS(12269), 1, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3024), 1, + STATE(3235), 1, + sym__c_binary_expression, + STATE(3260), 1, sym__c_postfix_expression, - STATE(3087), 1, + STATE(3498), 1, sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - STATE(6503), 1, + STATE(6677), 1, sym__c_expression, - STATE(6521), 1, + STATE(6798), 1, sym__c_variable_assignment, - ACTIONS(12253), 2, + ACTIONS(12472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2990), 7, + STATE(3390), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -300998,13 +307146,13 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [269527] = 3, + [275819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12117), 2, + ACTIONS(12565), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12119), 22, + ACTIONS(12567), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301027,13 +307175,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269559] = 3, + [275851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 2, + ACTIONS(12545), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12271), 22, + ACTIONS(12547), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301056,13 +307204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269591] = 3, + [275883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 2, + ACTIONS(12545), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12271), 22, + ACTIONS(12547), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301085,13 +307233,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269623] = 3, + [275915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11951), 2, + ACTIONS(12120), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 22, + ACTIONS(12122), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301101,10 +307250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -301114,93 +307261,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269655] = 10, + anon_sym_BQUOTE, + [275947] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4527), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11634), 1, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(5075), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5901), 2, sym_file_descriptor, - ACTIONS(4467), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5899), 19, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(4469), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - ACTIONS(4525), 2, + [275985] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(5076), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2156), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2154), 19, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, - ACTIONS(11301), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4314), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4509), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11299), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [269701] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(12255), 1, - anon_sym_LPAREN, - ACTIONS(12257), 1, - aux_sym__c_word_token1, - ACTIONS(12259), 1, - anon_sym_DQUOTE, - ACTIONS(12261), 1, - aux_sym_number_token1, - ACTIONS(12263), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, - anon_sym_BQUOTE, - ACTIONS(12269), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, - sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - STATE(6521), 1, - sym__c_variable_assignment, - STATE(6534), 1, - sym__c_expression, - ACTIONS(12253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2990), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [269763] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [276023] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12215), 2, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(5075), 1, + aux_sym_concatenation_repeat1, + ACTIONS(4973), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12217), 22, + ACTIONS(4971), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301210,10 +307348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -301223,13 +307358,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269795] = 3, + [276061] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12223), 2, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(5076), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12225), 22, + ACTIONS(5015), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301239,10 +307380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -301252,14 +307390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269827] = 3, + [276099] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12161), 3, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(5075), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5907), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12159), 21, + ACTIONS(5905), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301269,7 +307412,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -301280,14 +307422,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [269859] = 3, + [276137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12105), 2, + ACTIONS(1302), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12107), 22, + ACTIONS(1300), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301297,7 +307438,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -301310,14 +307450,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [269891] = 3, + sym__special_character, + [276169] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 3, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(5075), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12247), 21, + ACTIONS(5044), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301327,7 +307473,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -301338,35 +307483,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [276207] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(5076), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5048), 19, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [276245] = 18, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12589), 1, + aux_sym__c_word_token1, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, anon_sym_BQUOTE, - [269923] = 10, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + STATE(6557), 1, + sym__c_expression, + STATE(6575), 1, + sym__c_variable_assignment, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3200), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [276307] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5096), 1, + ACTIONS(5514), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 1, + ACTIONS(12466), 1, sym_file_descriptor, - ACTIONS(4310), 2, + ACTIONS(4499), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4705), 2, + ACTIONS(5166), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, + ACTIONS(5464), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11571), 2, + ACTIONS(11964), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5092), 3, + ACTIONS(5512), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(5016), 3, + STATE(5058), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11569), 8, + ACTIONS(11962), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -301375,13 +307595,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [269969] = 3, + [276353] = 18, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12589), 1, + aux_sym__c_word_token1, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, + anon_sym_BQUOTE, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + STATE(6575), 1, + sym__c_variable_assignment, + STATE(6590), 1, + sym__c_expression, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3200), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [276415] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 2, + ACTIONS(12551), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12275), 22, + ACTIONS(12549), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301391,10 +307656,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -301404,13 +307667,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270001] = 3, + anon_sym_BQUOTE, + [276447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 2, + ACTIONS(12577), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12275), 22, + ACTIONS(12579), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301433,42 +307697,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270033] = 3, + [276479] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12157), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(11846), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12155), 21, + ACTIONS(12466), 1, + sym_file_descriptor, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11964), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5063), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11844), 7, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(11962), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [270065] = 3, + [276521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12175), 2, + ACTIONS(12364), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12177), 22, + ACTIONS(12362), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301478,7 +307747,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -301491,26 +307759,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270097] = 3, + anon_sym_LT_LT_LT, + [276553] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12221), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(11842), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12219), 21, + ACTIONS(11944), 1, + anon_sym_LT_LT_LT, + ACTIONS(12603), 1, + sym_file_descriptor, + ACTIONS(11964), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5003), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11962), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11840), 9, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [276595] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4501), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 17, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -301519,14 +307825,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [270129] = 3, + [276631] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(11921), 2, + ACTIONS(4501), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11923), 22, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301536,10 +307845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -301549,34 +307855,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270161] = 10, + [276665] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5111), 1, + ACTIONS(11739), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 1, + ACTIONS(12611), 1, sym_file_descriptor, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, + ACTIONS(12109), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, + ACTIONS(12608), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5063), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11728), 7, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11571), 2, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + ACTIONS(12605), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [276707] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11853), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11944), 1, + anon_sym_LT_LT_LT, + ACTIONS(12603), 1, + sym_file_descriptor, + ACTIONS(11964), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5109), 3, + STATE(4939), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(11962), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + ACTIONS(11851), 9, anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT_LT, anon_sym_SEMI_SEMI, - STATE(5016), 3, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [276749] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11722), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(11944), 1, + anon_sym_LT_LT_LT, + ACTIONS(12603), 1, + sym_file_descriptor, + ACTIONS(11964), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(4964), 2, sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11569), 8, + sym_herestring_redirect, + ACTIONS(11962), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -301585,13 +307947,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [270207] = 3, + ACTIONS(11720), 9, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_LT, + anon_sym_SEMI_SEMI, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + [276791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11795), 2, + ACTIONS(12120), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11797), 22, + ACTIONS(12122), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301614,13 +307986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [270239] = 3, + [276823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11885), 2, + ACTIONS(12444), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11887), 22, + ACTIONS(12442), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301630,9 +308003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -301642,15 +308014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [270271] = 3, + anon_sym_BQUOTE, + [276855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12113), 3, + ACTIONS(12150), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 21, + ACTIONS(12148), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301660,8 +308031,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -301671,15 +308043,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [276887] = 18, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12474), 1, + anon_sym_LPAREN, + ACTIONS(12476), 1, + aux_sym__c_word_token1, + ACTIONS(12478), 1, + anon_sym_DOLLAR, + ACTIONS(12480), 1, + anon_sym_DQUOTE, + ACTIONS(12482), 1, + aux_sym_number_token1, + ACTIONS(12484), 1, + aux_sym_number_token2, + ACTIONS(12486), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12488), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12490), 1, anon_sym_BQUOTE, - [270303] = 3, + ACTIONS(12492), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3235), 1, + sym__c_binary_expression, + STATE(3260), 1, + sym__c_postfix_expression, + STATE(3498), 1, + sym__c_unary_expression, + STATE(6623), 1, + sym__c_expression, + STATE(6798), 1, + sym__c_variable_assignment, + ACTIONS(12472), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3390), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [276949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12279), 3, + ACTIONS(12221), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12281), 21, + ACTIONS(12219), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301689,8 +308104,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -301700,15 +308116,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [276981] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12614), 1, + sym__special_character, + STATE(5071), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1394), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [277017] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12617), 1, + sym__special_character, + STATE(5071), 1, + aux_sym__literal_repeat1, + ACTIONS(5442), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(5440), 19, + anon_sym_LPAREN_LPAREN, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [270335] = 3, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [277053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 3, + ACTIONS(12237), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12275), 21, + ACTIONS(12235), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301718,8 +308195,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -301729,15 +308207,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [270367] = 3, + anon_sym_LT_LT_LT, + [277085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12153), 3, + ACTIONS(12470), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12151), 21, + ACTIONS(12468), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301759,13 +308237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [270399] = 3, + [277117] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12207), 2, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(12619), 1, + sym__concat, + STATE(4342), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12209), 22, + ACTIONS(1294), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301775,10 +308259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -301788,14 +308269,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270431] = 3, + [277155] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12233), 3, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(12621), 1, + sym__concat, + STATE(4342), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12231), 21, + ACTIONS(1314), 19, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301805,7 +308291,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, anon_sym_PIPE_AMP, anon_sym_AMP_GT, @@ -301816,15 +308301,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [270463] = 3, + [277193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 3, + ACTIONS(5017), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 21, + ACTIONS(5015), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301834,8 +308317,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -301845,15 +308329,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [270495] = 3, + anon_sym_LT_LT_LT, + [277225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12237), 3, + ACTIONS(2156), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12235), 21, + ACTIONS(2154), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301875,88 +308359,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [270527] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11749), 1, - anon_sym_LPAREN, - ACTIONS(11751), 1, - aux_sym__c_word_token1, - ACTIONS(11753), 1, - anon_sym_DOLLAR, - ACTIONS(11755), 1, - anon_sym_DQUOTE, - ACTIONS(11757), 1, - aux_sym_number_token1, - ACTIONS(11759), 1, - aux_sym_number_token2, - ACTIONS(11761), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, - anon_sym_BQUOTE, - ACTIONS(11767), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3243), 1, - sym__c_unary_expression, - STATE(3246), 1, - sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - STATE(6783), 1, - sym__c_variable_assignment, - STATE(6789), 1, - sym__c_expression, - ACTIONS(11747), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3241), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [270589] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12283), 1, - sym__special_character, - STATE(4990), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 19, - anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [270625] = 3, + [277257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 22, + ACTIONS(2154), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -301966,7 +308375,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -301979,153 +308387,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270657] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12131), 1, - anon_sym_LPAREN, - ACTIONS(12133), 1, - aux_sym__c_word_token1, - ACTIONS(12135), 1, - anon_sym_DOLLAR, - ACTIONS(12137), 1, - anon_sym_DQUOTE, - ACTIONS(12139), 1, - aux_sym_number_token1, - ACTIONS(12141), 1, - aux_sym_number_token2, - ACTIONS(12143), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, - anon_sym_BQUOTE, - ACTIONS(12149), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, - sym__c_binary_expression, - STATE(3371), 1, - sym__c_postfix_expression, - STATE(6666), 1, - sym__c_expression, - STATE(6729), 1, - sym__c_variable_assignment, - ACTIONS(12129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3358), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [270719] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11749), 1, - anon_sym_LPAREN, - ACTIONS(11751), 1, - aux_sym__c_word_token1, - ACTIONS(11753), 1, - anon_sym_DOLLAR, - ACTIONS(11755), 1, - anon_sym_DQUOTE, - ACTIONS(11757), 1, - aux_sym_number_token1, - ACTIONS(11759), 1, - aux_sym_number_token2, - ACTIONS(11761), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, - anon_sym_BQUOTE, - ACTIONS(11767), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3243), 1, - sym__c_unary_expression, - STATE(3246), 1, - sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - STATE(6745), 1, - sym__c_expression, - STATE(6783), 1, - sym__c_variable_assignment, - ACTIONS(11747), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3241), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [270781] = 18, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12131), 1, - anon_sym_LPAREN, - ACTIONS(12133), 1, - aux_sym__c_word_token1, - ACTIONS(12135), 1, - anon_sym_DOLLAR, - ACTIONS(12137), 1, - anon_sym_DQUOTE, - ACTIONS(12139), 1, - aux_sym_number_token1, - ACTIONS(12141), 1, - aux_sym_number_token2, - ACTIONS(12143), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, - anon_sym_BQUOTE, - ACTIONS(12149), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, - sym__c_binary_expression, - STATE(3371), 1, - sym__c_postfix_expression, - STATE(6714), 1, - sym__c_expression, - STATE(6729), 1, - sym__c_variable_assignment, - ACTIONS(12129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3358), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [270843] = 5, + anon_sym_LT_LT_LT, + [277289] = 3, ACTIONS(3), 1, sym_comment, - STATE(5031), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11899), 2, + ACTIONS(5501), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12286), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11895), 19, + ACTIONS(5499), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -302134,6 +308408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -302142,14 +308417,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [270879] = 3, + [277321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12288), 3, + ACTIONS(12454), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12290), 21, + ACTIONS(12456), 22, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302159,8 +308433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, + anon_sym_esac, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302170,15 +308446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [270911] = 3, + [277353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 3, + ACTIONS(5017), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 21, + ACTIONS(5015), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302200,14 +308475,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [270943] = 3, + [277385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12241), 3, + ACTIONS(12555), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12239), 21, + ACTIONS(12553), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302229,29 +308504,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [270975] = 5, + [277417] = 3, ACTIONS(3), 1, sym_comment, - STATE(5573), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11841), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11844), 2, + ACTIONS(12555), 3, sym_file_descriptor, + ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11839), 19, + ACTIONS(12553), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -302260,14 +308532,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271011] = 3, + anon_sym_BQUOTE, + [277449] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11921), 3, + ACTIONS(12563), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11923), 21, + ACTIONS(12561), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302289,14 +308562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [271043] = 3, + [277481] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12193), 3, + ACTIONS(12563), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12191), 21, + ACTIONS(12561), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302318,14 +308591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [271075] = 3, + [277513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12277), 3, + ACTIONS(12150), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12275), 21, + ACTIONS(12148), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302347,13 +308620,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [271107] = 3, + [277545] = 18, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12128), 1, + anon_sym_LPAREN, + ACTIONS(12130), 1, + aux_sym__c_word_token1, + ACTIONS(12132), 1, + anon_sym_DOLLAR, + ACTIONS(12134), 1, + anon_sym_DQUOTE, + ACTIONS(12136), 1, + aux_sym_number_token1, + ACTIONS(12138), 1, + aux_sym_number_token2, + ACTIONS(12140), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12142), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12144), 1, + anon_sym_BQUOTE, + ACTIONS(12146), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, + sym__c_unary_expression, + STATE(3318), 1, + sym__c_binary_expression, + STATE(6840), 1, + sym__c_variable_assignment, + STATE(6850), 1, + sym__c_expression, + ACTIONS(12126), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3446), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [277607] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12279), 2, + ACTIONS(12581), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12281), 22, + ACTIONS(12583), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302363,7 +308680,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -302376,19 +308692,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271139] = 6, + [277638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4923), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5589), 2, + ACTIONS(12571), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 19, + ACTIONS(12569), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302399,6 +308709,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302408,19 +308720,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271177] = 6, + [277669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4924), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2169), 2, + ACTIONS(2160), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 19, + ACTIONS(2158), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302431,6 +308737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302440,19 +308748,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271215] = 6, + [277700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4923), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 2, + ACTIONS(12527), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 19, + ACTIONS(12525), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302463,6 +308765,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302472,19 +308776,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271253] = 6, + [277731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4924), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4513), 2, + ACTIONS(12531), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 19, + ACTIONS(12529), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302495,6 +308793,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302504,19 +308804,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271291] = 6, - ACTIONS(3), 1, + [277762] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(11604), 1, + ACTIONS(12623), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, + ACTIONS(12625), 1, sym__concat, - STATE(4923), 1, + STATE(5099), 1, aux_sym_concatenation_repeat1, - ACTIONS(5595), 2, + ACTIONS(1294), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1296), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [277799] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12623), 1, + aux_sym_concatenation_token1, + ACTIONS(12627), 1, + sym__concat, + STATE(5099), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1316), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [277836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12531), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 19, + ACTIONS(12529), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302527,6 +308883,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302536,19 +308894,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271329] = 6, + [277867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4924), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2173), 2, + ACTIONS(12454), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 19, + ACTIONS(12456), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302559,6 +308911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302568,19 +308922,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271367] = 6, + [277898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4923), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 2, + ACTIONS(12535), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 19, + ACTIONS(12533), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302591,6 +308939,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302600,19 +308950,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271405] = 6, - ACTIONS(3), 1, + [277929] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(4924), 1, + STATE(5099), 1, aux_sym_concatenation_repeat1, - ACTIONS(4595), 2, + ACTIONS(12629), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1306), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [277964] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12436), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 19, + ACTIONS(12434), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302623,6 +308997,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302632,14 +309008,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271443] = 3, + [277995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11929), 3, + ACTIONS(12535), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11931), 21, + ACTIONS(12533), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302649,8 +309024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302660,14 +309036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [271475] = 3, + [278026] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12227), 2, + ACTIONS(12539), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12229), 22, + ACTIONS(12537), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302677,7 +309052,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -302690,13 +309064,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271507] = 3, + [278057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12227), 2, + ACTIONS(12221), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12229), 22, + ACTIONS(12219), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302706,7 +309080,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -302719,14 +309092,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271539] = 3, + [278088] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(5094), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12623), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5440), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(5442), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11951), 3, + ACTIONS(12551), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 21, + ACTIONS(12549), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302736,8 +309138,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302747,33 +309150,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [271571] = 8, + [278154] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11548), 1, + ACTIONS(3278), 1, + ts_builtin_sym_end, + ACTIONS(5261), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 1, + ACTIONS(12384), 1, sym_file_descriptor, - ACTIONS(4705), 2, + ACTIONS(5166), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(11571), 2, + ACTIONS(5188), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11777), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5027), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11546), 7, + ACTIONS(5259), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(11569), 8, + STATE(4869), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11775), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -302782,14 +309185,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [271613] = 3, + [278199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12183), 3, + ACTIONS(12285), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12185), 21, + ACTIONS(12287), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302799,35 +309201,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [271645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12243), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12245), 22, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -302840,22 +309213,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271677] = 8, + [278230] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11466), 1, + ACTIONS(5184), 1, + ts_builtin_sym_end, + ACTIONS(5190), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11573), 1, - anon_sym_LT_LT_LT, - ACTIONS(12251), 1, + ACTIONS(12384), 1, sym_file_descriptor, - ACTIONS(11571), 2, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5188), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11777), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4968), 2, + ACTIONS(5186), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4869), 3, sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11569), 8, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11775), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -302864,24 +309248,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - ACTIONS(11464), 9, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - [271719] = 3, + [278275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 3, + ACTIONS(12555), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12271), 21, + ACTIONS(12553), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302891,8 +309264,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -302902,30 +309276,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [271751] = 5, + [278306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4327), 2, + ACTIONS(12305), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 17, + ACTIONS(12307), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -302934,13 +309304,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271787] = 3, + [278337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11921), 2, + ACTIONS(12309), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11923), 22, + ACTIONS(12311), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -302962,54 +309332,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [271819] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4471), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11634), 1, - sym_file_descriptor, - ACTIONS(4465), 2, - anon_sym_SEMI, - anon_sym_AMP, - ACTIONS(4467), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4469), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11301), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(2755), 3, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - STATE(4509), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11299), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [271865] = 4, + [278368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 2, + ACTIONS(12313), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 19, + ACTIONS(12315), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303020,6 +309349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -303029,14 +309360,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [271899] = 3, + [278399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 3, + ACTIONS(12555), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(12271), 21, + ACTIONS(12553), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303046,8 +309376,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -303057,14 +309388,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [278430] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(5095), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12623), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5538), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - [271931] = 3, + sym_word, + ACTIONS(5540), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [278465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11943), 2, + ACTIONS(12563), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11945), 22, + ACTIONS(12561), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303086,33 +309446,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [271963] = 8, + [278496] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11409), 1, + ACTIONS(3280), 1, + anon_sym_BQUOTE, + ACTIONS(5561), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12298), 1, + ACTIONS(12261), 1, sym_file_descriptor, - ACTIONS(11904), 2, + ACTIONS(5166), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(12295), 2, + ACTIONS(5559), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(11759), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5027), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11398), 7, + ACTIONS(5557), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, - ACTIONS(12292), 8, + STATE(4824), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11757), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -303121,26 +309481,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [272005] = 3, + [278541] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 3, + STATE(5117), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12632), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12193), 3, sym_file_descriptor, ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(5927), 21, + ACTIONS(12188), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -303149,56 +309511,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [272037] = 3, + [278576] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 3, - sym_file_descriptor, - ts_builtin_sym_end, + ACTIONS(6104), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(5927), 21, - anon_sym_SEMI, + ACTIONS(12639), 1, + anon_sym_LT_LT_LT, + ACTIONS(12641), 1, + sym_file_descriptor, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6102), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12637), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5344), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12635), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, - anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, + [278623] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12639), 1, + anon_sym_LT_LT_LT, + ACTIONS(12641), 1, + sym_file_descriptor, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6102), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12637), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [272069] = 3, + STATE(5344), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12635), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [278670] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11787), 3, + STATE(5134), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12229), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11789), 21, + ACTIONS(12643), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12225), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -303208,21 +309613,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_BQUOTE, - [272101] = 5, + [278705] = 3, ACTIONS(3), 1, sym_comment, - STATE(5031), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11844), 2, + ACTIONS(12545), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12301), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11839), 19, + ACTIONS(12547), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, @@ -303231,6 +309632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -303239,47 +309641,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272137] = 8, + [278736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11416), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11573), 1, - anon_sym_LT_LT_LT, - ACTIONS(12251), 1, + ACTIONS(12237), 2, sym_file_descriptor, - ACTIONS(11571), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4976), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11569), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - ACTIONS(11414), 9, + aux_sym_heredoc_redirect_token1, + ACTIONS(12235), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272179] = 3, + [278767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12288), 2, + ACTIONS(12450), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12290), 22, + ACTIONS(12452), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303289,7 +309685,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_esac, anon_sym_SEMI_SEMI, anon_sym_SEMI_AMP, anon_sym_SEMI_SEMI_AMP, @@ -303302,13 +309697,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272211] = 3, + [278798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12101), 2, + ACTIONS(12563), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12103), 21, + ACTIONS(12561), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303330,13 +309725,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272242] = 3, + [278829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12279), 2, + ACTIONS(12575), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12281), 21, + ACTIONS(12573), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303358,13 +309753,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272273] = 3, + [278860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11951), 2, + ACTIONS(12462), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11953), 21, + ACTIONS(12464), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303386,48 +309781,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272304] = 10, + [278891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 1, - anon_sym_BQUOTE, - ACTIONS(5079), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11867), 1, + ACTIONS(12438), 2, sym_file_descriptor, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5077), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(12440), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11470), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5075), 3, - anon_sym_SEMI, + anon_sym_PIPE, anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11468), 8, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [272349] = 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [278922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12193), 2, + ACTIONS(12438), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12191), 21, + ACTIONS(12440), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303449,44 +309837,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272380] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11622), 1, - aux_sym_concatenation_token1, - ACTIONS(11636), 1, - sym__concat, - STATE(5082), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12306), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(12304), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [272417] = 3, + [278953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12111), 2, + ACTIONS(12513), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12109), 21, + ACTIONS(12515), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303508,44 +309865,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272448] = 6, - ACTIONS(71), 1, + [278984] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12308), 1, + ACTIONS(11904), 1, aux_sym_concatenation_token1, - ACTIONS(12310), 1, + ACTIONS(12645), 1, sym__concat, - STATE(5087), 1, + STATE(4508), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 6, + ACTIONS(1296), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1294), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, + anon_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(1268), 14, + [279021] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11904), 1, + aux_sym_concatenation_token1, + ACTIONS(12647), 1, + sym__concat, + STATE(4508), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 3, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 17, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272485] = 3, + sym_word, + [279058] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12221), 2, + ACTIONS(11904), 1, + aux_sym_concatenation_token1, + ACTIONS(11916), 1, + sym__concat, + STATE(5130), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [279095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12523), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12219), 21, + ACTIONS(12521), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303567,26 +309986,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272516] = 3, + [279126] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12123), 2, + STATE(5134), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12193), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12121), 21, + ACTIONS(12649), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12188), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -303595,13 +310015,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272547] = 3, + anon_sym_BQUOTE, + [279161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12215), 2, + ACTIONS(6211), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12217), 21, + ACTIONS(6209), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303623,13 +310044,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272578] = 3, + [279192] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7910), 1, + anon_sym_DQUOTE, + ACTIONS(7912), 1, + anon_sym_SQUOTE, + ACTIONS(7920), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7932), 1, + sym_variable_name, + ACTIONS(12654), 1, + anon_sym_LPAREN, + ACTIONS(12656), 1, + anon_sym_DOLLAR, + ACTIONS(12658), 1, + anon_sym_RBRACE3, + ACTIONS(12660), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12662), 1, + anon_sym_BQUOTE, + ACTIONS(12664), 1, + anon_sym_DOLLAR_BQUOTE, + STATE(6641), 1, + sym_process_substitution, + STATE(7269), 1, + sym__concatenation_in_expansion, + ACTIONS(7182), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + ACTIONS(12652), 3, + sym__expansion_word, + sym_ansi_c_string, + sym_word, + STATE(6545), 6, + sym_string, + sym_array, + sym_raw_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [279249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12127), 2, + ACTIONS(12513), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12125), 21, + ACTIONS(12515), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303651,13 +310113,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272609] = 3, + [279280] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12165), 2, + ACTIONS(12150), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12163), 21, + ACTIONS(12148), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303679,13 +310141,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272640] = 3, + [279311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12169), 2, + ACTIONS(12545), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12167), 21, + ACTIONS(12547), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303707,26 +310169,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272671] = 3, + [279342] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12169), 2, + STATE(5169), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12229), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12167), 21, + ACTIONS(12666), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12225), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -303735,13 +310199,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272702] = 3, + [279377] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12223), 2, + ACTIONS(5050), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12225), 21, + ACTIONS(5048), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303763,72 +310227,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272733] = 6, - ACTIONS(71), 1, + [279408] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12308), 1, + ACTIONS(11904), 1, aux_sym_concatenation_token1, - ACTIONS(12312), 1, + ACTIONS(11916), 1, sym__concat, - STATE(5087), 1, + STATE(5130), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1288), 14, + ACTIONS(12670), 3, sym_test_operator, sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12668), 17, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [272770] = 3, + sym_word, + [279445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12181), 2, - sym_file_descriptor, + ACTIONS(1302), 3, + sym_test_operator, + sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12179), 21, + ACTIONS(1300), 20, + anon_sym_LPAREN_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [272801] = 3, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [279476] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12181), 2, + ACTIONS(12496), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12179), 21, + ACTIONS(12494), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303850,13 +310314,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272832] = 3, + [279507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12187), 2, + ACTIONS(12505), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12189), 21, + ACTIONS(12507), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303878,13 +310342,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272863] = 3, + [279538] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12213), 2, + ACTIONS(12444), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12211), 21, + ACTIONS(12442), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303906,13 +310370,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272894] = 3, + [279569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12117), 2, + ACTIONS(5017), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12119), 21, + ACTIONS(5015), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303934,13 +310398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272925] = 3, + [279600] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12117), 2, + ACTIONS(12498), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12119), 21, + ACTIONS(12500), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -303962,153 +310426,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [272956] = 3, + [279631] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(12273), 2, - sym_file_descriptor, + ACTIONS(3280), 1, + anon_sym_RPAREN, + ACTIONS(4733), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12271), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [272987] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12273), 2, + ACTIONS(12066), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12271), 21, - anon_sym_SEMI, + ACTIONS(5164), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5166), 2, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273018] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12105), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12107), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(11714), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [273049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12275), 21, + ACTIONS(4727), 3, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [273080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12277), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12275), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + STATE(4739), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11712), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [273111] = 3, + [279676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12227), 2, + ACTIONS(12426), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12229), 21, + ACTIONS(12424), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304130,13 +310489,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273142] = 3, + [279707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12227), 2, + ACTIONS(12430), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12229), 21, + ACTIONS(12428), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304158,13 +310517,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273173] = 3, + [279738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12113), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 21, + ACTIONS(2154), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304186,13 +310545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273204] = 3, + [279769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12203), 2, + ACTIONS(12470), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12205), 21, + ACTIONS(12468), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304214,13 +310573,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273235] = 3, + [279800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11787), 2, + ACTIONS(12565), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11789), 21, + ACTIONS(12567), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304242,13 +310601,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273266] = 3, + [279831] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12249), 2, + ACTIONS(12541), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12247), 21, + ACTIONS(12543), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304270,96 +310629,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273297] = 10, + [279862] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2755), 1, - anon_sym_BQUOTE, - ACTIONS(5107), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11867), 1, + STATE(5117), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12672), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12229), 3, sym_file_descriptor, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5077), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11470), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5105), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4670), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11468), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [273342] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2757), 1, ts_builtin_sym_end, - ACTIONS(4707), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11829), 1, - sym_file_descriptor, - ACTIONS(4703), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11524), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4701), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4634), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11522), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [273387] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12288), 2, - sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12290), 21, + ACTIONS(12225), 17, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304368,33 +310659,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273418] = 10, + [279897] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4314), 1, - anon_sym_RPAREN, - ACTIONS(4527), 1, + ACTIONS(4523), 1, + anon_sym_BQUOTE, + ACTIONS(5629), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11831), 1, + ACTIONS(12261), 1, sym_file_descriptor, - ACTIONS(4705), 2, + ACTIONS(5166), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5012), 2, + ACTIONS(5559), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11542), 2, + ACTIONS(11759), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4525), 3, + ACTIONS(5627), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(4669), 3, + STATE(4824), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 8, + ACTIONS(11757), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -304403,13 +310694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [273463] = 3, + [279942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 2, + ACTIONS(12577), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5927), 21, + ACTIONS(12579), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304431,13 +310722,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273494] = 3, + [279973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5929), 2, + ACTIONS(6211), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5927), 21, + ACTIONS(6209), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304459,56 +310750,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273525] = 3, + [280004] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12067), 2, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(11791), 1, + sym__concat, + STATE(5218), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12069), 21, - anon_sym_SEMI, + ACTIONS(1300), 18, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [273556] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5078), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12314), 2, - anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(11899), 3, - sym_file_descriptor, - ts_builtin_sym_end, - aux_sym_heredoc_redirect_token1, - ACTIONS(11895), 17, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304517,24 +310779,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273591] = 3, + anon_sym_LT_LT_LT, + sym__special_character, + [280041] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(11904), 1, + aux_sym_concatenation_token1, + ACTIONS(11916), 1, + sym__concat, + STATE(5131), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12676), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 20, + ACTIONS(12674), 17, anon_sym_LPAREN_LPAREN, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -304545,28 +310812,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [273622] = 5, + [280078] = 3, ACTIONS(3), 1, sym_comment, - STATE(5079), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11899), 2, + ACTIONS(12557), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12316), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11895), 18, + ACTIONS(12559), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304575,28 +310840,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273657] = 5, + [280109] = 3, ACTIONS(3), 1, sym_comment, - STATE(5078), 1, - aux_sym_pipeline_repeat1, - ACTIONS(12318), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11844), 3, + ACTIONS(12448), 2, sym_file_descriptor, - ts_builtin_sym_end, aux_sym_heredoc_redirect_token1, - ACTIONS(11839), 17, + ACTIONS(12446), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304605,28 +310868,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273692] = 5, + [280140] = 6, ACTIONS(3), 1, sym_comment, - STATE(5079), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11844), 2, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(11814), 1, + sym__concat, + STATE(5220), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12321), 2, + ACTIONS(1300), 17, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_PIPE_AMP, - ACTIONS(11839), 18, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + sym__special_character, + [280177] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12120), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12122), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_RPAREN, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304635,34 +310927,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273727] = 11, + [280208] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 1, + ACTIONS(4523), 1, + anon_sym_RPAREN, + ACTIONS(4830), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12328), 1, - anon_sym_LT_LT_LT, - ACTIONS(12330), 1, + ACTIONS(12066), 1, sym_file_descriptor, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5836), 2, + ACTIONS(5164), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12326), 2, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(11714), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5297), 3, + ACTIONS(4828), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(4739), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12324), 8, + ACTIONS(11712), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -304671,13 +310962,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [273774] = 3, + [280253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12175), 2, + ACTIONS(12454), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12177), 21, + ACTIONS(12456), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304699,88 +310990,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273805] = 6, - ACTIONS(3), 1, + [280284] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(11622), 1, - aux_sym_concatenation_token1, - ACTIONS(12332), 1, - sym__concat, - STATE(4479), 1, + STATE(5094), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, + ACTIONS(12623), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 6, anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, sym_word, - [273842] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11622), 1, - aux_sym_concatenation_token1, - ACTIONS(12334), 1, - sym__concat, - STATE(4479), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, + ACTIONS(1302), 14, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 17, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - sym_word, - [273879] = 3, + [280319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 2, + STATE(5169), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12193), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 21, + ACTIONS(12678), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12188), 18, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_RPAREN, anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304789,58 +311050,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [273910] = 6, + [280354] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(11622), 1, - aux_sym_concatenation_token1, - ACTIONS(11636), 1, - sym__concat, - STATE(5082), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 3, - sym_test_operator, - sym__brace_start, + ACTIONS(12639), 1, + anon_sym_LT_LT_LT, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(4501), 2, + sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [273947] = 5, + STATE(5344), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [280393] = 3, ACTIONS(3), 1, sym_comment, - STATE(5086), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11844), 2, + ACTIONS(12460), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12336), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11839), 18, + ACTIONS(12458), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, @@ -304849,44 +311110,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_BQUOTE, - [273982] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5087), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12339), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1276), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1278), 14, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [274017] = 3, + [280424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12153), 2, + ACTIONS(12511), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12151), 21, + ACTIONS(12509), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304908,25 +311138,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274048] = 3, + [280455] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12157), 2, + ACTIONS(12639), 1, + anon_sym_LT_LT_LT, + STATE(5030), 1, + sym_herestring_redirect, + ACTIONS(4508), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12155), 21, - anon_sym_SEMI, + STATE(5344), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4499), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -304936,13 +311169,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274079] = 3, + [280492] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(5285), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12681), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 8, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + sym__special_character, + ACTIONS(1302), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [280527] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(12161), 2, + ACTIONS(12519), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12159), 21, + ACTIONS(12517), 21, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -304964,26 +311227,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274110] = 6, + [280558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(5151), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 2, + ACTIONS(12422), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 18, + ACTIONS(12420), 21, + anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -304993,22 +311255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [274147] = 6, + [280589] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11460), 1, + ACTIONS(11791), 1, sym__concat, - STATE(5156), 1, + STATE(5218), 1, aux_sym_concatenation_repeat1, - ACTIONS(1274), 3, + ACTIONS(4973), 2, sym_file_descriptor, - sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 17, + ACTIONS(4971), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -305025,35 +311284,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [280625] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1356), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1358), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, - [274184] = 11, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280655] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5843), 1, + ACTIONS(5507), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12328), 1, - anon_sym_LT_LT_LT, - ACTIONS(12330), 1, + ACTIONS(12466), 1, sym_file_descriptor, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, + ACTIONS(5166), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5836), 2, + ACTIONS(5464), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12326), 2, + ACTIONS(11964), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5297), 3, + ACTIONS(5505), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5058), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12324), 8, + ACTIONS(11962), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -305062,501 +311345,1232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [274231] = 10, - ACTIONS(3), 1, + [280697] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12687), 1, + anon_sym_esac, + ACTIONS(12683), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12685), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280729] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12693), 1, + anon_sym_esac, + ACTIONS(12689), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12691), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280761] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12699), 1, + anon_sym_esac, + ACTIONS(12695), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12697), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280793] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(2755), 1, + ACTIONS(1372), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1374), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, - ACTIONS(4471), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11831), 1, - sym_file_descriptor, - ACTIONS(4705), 2, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280823] = 13, + ACTIONS(73), 1, + sym_comment, + ACTIONS(4499), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_PIPE_AMP, + ACTIONS(6248), 1, anon_sym_LT_LT, + ACTIONS(6250), 1, anon_sym_LT_LT_DASH, - ACTIONS(5012), 2, + ACTIONS(12707), 1, + anon_sym_LT_LT_LT, + ACTIONS(12709), 1, + sym_file_descriptor, + STATE(5646), 1, + sym_herestring_redirect, + ACTIONS(6246), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11542), 2, + ACTIONS(12705), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(4465), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4669), 3, + ACTIONS(12703), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5385), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 8, + ACTIONS(12701), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [274276] = 3, - ACTIONS(3), 1, + [280873] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(2173), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12715), 1, + anon_sym_esac, + ACTIONS(12711), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12713), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280905] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(5399), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12717), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1302), 12, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274307] = 5, - ACTIONS(3), 1, + sym__special_character, + [280939] = 4, + ACTIONS(73), 1, sym_comment, - STATE(5086), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11899), 2, + ACTIONS(12723), 1, + anon_sym_esac, + ACTIONS(12719), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12721), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [280971] = 9, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12731), 1, + anon_sym_LT_LT_LT, + ACTIONS(12733), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12342), 2, + ACTIONS(11617), 2, anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12729), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12727), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5241), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11623), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE_AMP, - ACTIONS(11895), 18, - anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(12725), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [281013] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, + anon_sym_BQUOTE, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12735), 1, + aux_sym__c_word_token1, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3045), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281069] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, + anon_sym_BQUOTE, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12737), 1, + aux_sym__c_word_token1, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3046), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281125] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, + anon_sym_BQUOTE, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12739), 1, + aux_sym__c_word_token1, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3048), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281181] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, + anon_sym_BQUOTE, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12741), 1, + aux_sym__c_word_token1, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3049), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281237] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, + anon_sym_BQUOTE, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12743), 1, + aux_sym__c_word_token1, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3052), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281293] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, + anon_sym_BQUOTE, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12745), 1, + aux_sym__c_word_token1, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3231), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281349] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, + anon_sym_BQUOTE, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12747), 1, + aux_sym__c_word_token1, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3133), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281405] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, + anon_sym_BQUOTE, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12749), 1, + aux_sym__c_word_token1, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3137), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281461] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5514), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12466), 1, + sym_file_descriptor, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5464), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(11964), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5512), 3, + anon_sym_SEMI, anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11962), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, + [281503] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, anon_sym_BQUOTE, - [274342] = 3, - ACTIONS(3), 1, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12751), 1, + aux_sym__c_word_token1, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3142), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281559] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12113), 2, + STATE(5285), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12681), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5899), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5901), 12, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12115), 21, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [281593] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(5287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12681), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2154), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(2156), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274373] = 7, + anon_sym_LT_LT_LT, + [281627] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12715), 1, + anon_sym_esac, + ACTIONS(12711), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12713), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281659] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12757), 1, + anon_sym_esac, + ACTIONS(12753), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12755), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281691] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, + anon_sym_BQUOTE, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12759), 1, + aux_sym__c_word_token1, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3143), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281747] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, + anon_sym_BQUOTE, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12761), 1, + aux_sym__c_word_token1, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3144), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281803] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1388), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1390), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [281833] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(11587), 1, + anon_sym_DOLLAR, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12591), 1, + anon_sym_DQUOTE, + ACTIONS(12593), 1, + aux_sym_number_token1, + ACTIONS(12595), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, + anon_sym_BQUOTE, + ACTIONS(12601), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12763), 1, + aux_sym__c_word_token1, + STATE(3201), 1, + sym__c_unary_expression, + STATE(3202), 1, + sym__c_binary_expression, + STATE(3209), 1, + sym__c_postfix_expression, + ACTIONS(12585), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3145), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [281889] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12328), 1, + ACTIONS(11623), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12769), 1, anon_sym_LT_LT_LT, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4310), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4327), 2, + ACTIONS(12771), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5297), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(12767), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [274412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12233), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12231), 21, - anon_sym_SEMI, + STATE(5208), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11617), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274443] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12328), 1, - anon_sym_LT_LT_LT, - STATE(4954), 1, - sym_herestring_redirect, - ACTIONS(4323), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - STATE(5297), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4310), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(12765), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [274480] = 3, + [281929] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11821), 2, - sym_file_descriptor, + ACTIONS(11653), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(11823), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(12779), 1, + anon_sym_LT_LT_LT, + ACTIONS(12782), 1, + sym_file_descriptor, + ACTIONS(12776), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [274511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11921), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(11923), 21, - anon_sym_SEMI, + STATE(5208), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11645), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12243), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12245), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, + ACTIONS(12773), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [274573] = 3, - ACTIONS(3), 1, + [281969] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12237), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12235), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(5285), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12681), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5905), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [274604] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11929), 2, + ACTIONS(5907), 12, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(11931), 21, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274635] = 10, - ACTIONS(3), 1, + anon_sym_LT_LT_LT, + [282003] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(4714), 1, - ts_builtin_sym_end, - ACTIONS(4718), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(11829), 1, - sym_file_descriptor, - ACTIONS(4703), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(11524), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(4716), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(4634), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11522), 8, + STATE(5287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12681), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2158), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [274680] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4513), 2, + ACTIONS(2160), 12, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 21, - anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274711] = 5, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [282037] = 3, + ACTIONS(73), 1, sym_comment, - STATE(5041), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12308), 2, + ACTIONS(1324), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1326), 16, sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(5315), 6, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [282067] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1328), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5317), 14, + ACTIONS(1330), 16, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274746] = 6, - ACTIONS(3), 1, + [282097] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11622), 1, - aux_sym_concatenation_token1, - ACTIONS(11636), 1, + ACTIONS(1336), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1338), 16, sym__concat, - STATE(5083), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12346), 3, sym_test_operator, sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(12344), 17, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [282127] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12687), 1, + anon_sym_esac, + ACTIONS(12683), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12685), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [282159] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12789), 1, + anon_sym_esac, + ACTIONS(12785), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12787), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, + [282191] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1332), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - [274783] = 3, + ACTIONS(1334), 16, + sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [282221] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11777), 2, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(5392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(11779), 21, - anon_sym_SEMI, + ACTIONS(1300), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -305566,25 +312580,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274814] = 3, + sym__special_character, + [282257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12241), 2, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(12791), 1, + sym__concat, + STATE(4289), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12239), 21, - anon_sym_SEMI, + ACTIONS(1294), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -305594,25 +312610,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274845] = 3, + anon_sym_LT_LT_LT, + [282293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12183), 2, + ACTIONS(11789), 1, + aux_sym_concatenation_token1, + ACTIONS(12793), 1, + sym__concat, + STATE(4289), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(12185), 21, - anon_sym_SEMI, + ACTIONS(1314), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -305622,25 +312640,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274876] = 3, + anon_sym_LT_LT_LT, + [282329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12183), 2, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(12795), 1, + sym__concat, + STATE(4291), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12185), 21, - anon_sym_SEMI, + ACTIONS(1294), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -305650,25 +312671,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274907] = 3, + [282365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12002), 2, + ACTIONS(11812), 1, + aux_sym_concatenation_token1, + ACTIONS(12797), 1, + sym__concat, + STATE(4291), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 3, sym_file_descriptor, + sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(12004), 21, - anon_sym_SEMI, + ACTIONS(1314), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, @@ -305678,274 +312701,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [274938] = 5, - ACTIONS(71), 1, + [282401] = 3, + ACTIONS(73), 1, sym_comment, - STATE(5041), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12308), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1272), 6, + ACTIONS(1340), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1274), 14, + ACTIONS(1342), 16, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [274973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12171), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12173), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [275004] = 5, - ACTIONS(71), 1, + [282431] = 3, + ACTIONS(73), 1, sym_comment, - STATE(5226), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12348), 2, + ACTIONS(1320), 6, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + sym_word, + ACTIONS(1322), 16, sym__concat, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, aux_sym_concatenation_token1, - ACTIONS(1272), 8, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, sym__special_character, - ACTIONS(1274), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [275039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12207), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12209), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [275070] = 5, - ACTIONS(71), 1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [282461] = 3, + ACTIONS(73), 1, sym_comment, - STATE(5050), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12308), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5319), 6, + ACTIONS(1376), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(5321), 14, + ACTIONS(1378), 16, + sym__concat, sym_test_operator, sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275105] = 3, - ACTIONS(3), 1, + [282491] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(4595), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 21, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(5403), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12799), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 7, anon_sym_PIPE, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [275136] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(11456), 1, - sym__concat, - STATE(5151), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5589), 2, + ACTIONS(1302), 12, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_AMP_GT, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [275172] = 4, - ACTIONS(71), 1, + sym__special_character, + [282525] = 19, + ACTIONS(3), 1, sym_comment, - ACTIONS(12354), 1, - anon_sym_esac, - ACTIONS(12350), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(7916), 1, aux_sym_number_token1, + ACTIONS(7918), 1, aux_sym_number_token2, + ACTIONS(12803), 1, + anon_sym_LPAREN, + ACTIONS(12805), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12807), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12809), 1, + anon_sym_DOLLAR, + ACTIONS(12811), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12813), 1, + anon_sym_RBRACE3, + ACTIONS(12815), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12352), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, + ACTIONS(12817), 1, + anon_sym_BQUOTE, + ACTIONS(12819), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(12821), 1, + aux_sym__simple_variable_name_token1, + STATE(5503), 1, + sym_simple_expansion, + STATE(6357), 1, + sym__expansion_max_length_binary_expression, + STATE(6476), 1, + sym__expansion_max_length_expression, + ACTIONS(12801), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6356), 2, + sym_number, + sym_expansion, + STATE(7309), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [282587] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7916), 1, + aux_sym_number_token1, + ACTIONS(7918), 1, + aux_sym_number_token2, + ACTIONS(12803), 1, + anon_sym_LPAREN, + ACTIONS(12807), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12809), 1, + anon_sym_DOLLAR, + ACTIONS(12811), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12815), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12817), 1, anon_sym_BQUOTE, + ACTIONS(12819), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [275204] = 3, - ACTIONS(71), 1, + ACTIONS(12823), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12825), 1, + anon_sym_RBRACE3, + ACTIONS(12827), 1, + aux_sym__simple_variable_name_token1, + STATE(5506), 1, + sym_simple_expansion, + STATE(6367), 1, + sym_number, + STATE(6368), 1, + sym_expansion, + STATE(6369), 1, + sym__expansion_max_length_binary_expression, + STATE(6476), 1, + sym__expansion_max_length_expression, + STATE(7342), 1, + sym_parenthesized_expression, + STATE(7343), 1, + sym_arithmetic_expansion, + STATE(7362), 1, + sym_command_substitution, + ACTIONS(12801), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + [282655] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 6, + ACTIONS(12789), 1, + anon_sym_esac, + ACTIONS(12785), 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(1318), 16, - sym__concat, + ACTIONS(12787), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275234] = 5, - ACTIONS(71), 1, + [282687] = 6, + ACTIONS(73), 1, sym_comment, - STATE(5246), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12348), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2167), 7, + ACTIONS(12829), 1, + anon_sym_LT_LT_LT, + STATE(5686), 1, + sym_herestring_redirect, + STATE(5488), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4499), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -305953,70 +312947,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2169), 12, + ACTIONS(4508), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [275268] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(12255), 1, - anon_sym_LPAREN, - ACTIONS(12259), 1, - anon_sym_DQUOTE, - ACTIONS(12261), 1, - aux_sym_number_token1, - ACTIONS(12263), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, - anon_sym_BQUOTE, - ACTIONS(12269), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12356), 1, - aux_sym__c_word_token1, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, - sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - ACTIONS(12253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3072), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [275324] = 3, - ACTIONS(71), 1, + [282723] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 6, + ACTIONS(1380), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1278), 16, + ACTIONS(1382), 16, sym__concat, sym_test_operator, sym__brace_start, @@ -306027,25 +312979,25 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275354] = 4, - ACTIONS(71), 1, + [282753] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(12362), 1, + ACTIONS(12835), 1, anon_sym_esac, - ACTIONS(12358), 6, + ACTIONS(12831), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12360), 15, + ACTIONS(12833), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306054,26 +313006,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275386] = 4, - ACTIONS(71), 1, + [282785] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(12368), 1, + ACTIONS(12699), 1, anon_sym_esac, - ACTIONS(12364), 6, + ACTIONS(12695), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12366), 15, + ACTIONS(12697), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306082,62 +313034,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275418] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(12255), 1, - anon_sym_LPAREN, - ACTIONS(12259), 1, - anon_sym_DQUOTE, - ACTIONS(12261), 1, - aux_sym_number_token1, - ACTIONS(12263), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, - anon_sym_BQUOTE, - ACTIONS(12269), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12370), 1, - aux_sym__c_word_token1, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, - sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - ACTIONS(12253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3100), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [275474] = 5, - ACTIONS(71), 1, + [282817] = 5, + ACTIONS(73), 1, sym_comment, - STATE(5130), 1, + STATE(5285), 1, aux_sym_concatenation_repeat1, - ACTIONS(12372), 2, + ACTIONS(12681), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1276), 7, + ACTIONS(4971), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306145,7 +313057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 12, + ACTIONS(4973), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -306158,230 +313070,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [275508] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12379), 1, - anon_sym_esac, - ACTIONS(12375), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12377), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [275540] = 5, - ACTIONS(3), 1, + [282851] = 5, + ACTIONS(73), 1, sym_comment, - STATE(5135), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11899), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12381), 2, + STATE(5287), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12681), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5015), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11895), 17, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [275574] = 13, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4323), 1, - anon_sym_PIPE_AMP, - ACTIONS(6012), 1, - anon_sym_LT_LT, - ACTIONS(6014), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12389), 1, - anon_sym_LT_LT_LT, - ACTIONS(12391), 1, - sym_file_descriptor, - STATE(5580), 1, - sym_herestring_redirect, - ACTIONS(6010), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12387), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12385), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5369), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12383), 5, - anon_sym_LT, - anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [275624] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11355), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12397), 1, - anon_sym_LT_LT_LT, - ACTIONS(12399), 1, + ACTIONS(5017), 12, sym_file_descriptor, - ACTIONS(12395), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5185), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11349), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12393), 8, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [275664] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5135), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11844), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12401), 2, - anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(11839), 17, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_SEMI_SEMI, - anon_sym_AMP_GT, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275698] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12408), 1, - anon_sym_esac, - ACTIONS(12404), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12406), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [275730] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12414), 1, - anon_sym_esac, - ACTIONS(12410), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12412), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [275762] = 4, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [282885] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(12408), 1, + ACTIONS(12841), 1, anon_sym_esac, - ACTIONS(12404), 6, + ACTIONS(12837), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12406), 15, + ACTIONS(12839), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306390,25 +313120,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [275794] = 6, - ACTIONS(71), 1, + [282917] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12416), 1, - anon_sym_LT_LT_LT, - STATE(5622), 1, - sym_herestring_redirect, - STATE(5473), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4310), 7, + STATE(5285), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12681), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5044), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306416,106 +313143,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4323), 10, + ACTIONS(5046), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [275830] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12131), 1, - anon_sym_LPAREN, - ACTIONS(12135), 1, - anon_sym_DOLLAR, - ACTIONS(12137), 1, - anon_sym_DQUOTE, - ACTIONS(12139), 1, - aux_sym_number_token1, - ACTIONS(12141), 1, - aux_sym_number_token2, - ACTIONS(12143), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, - anon_sym_BQUOTE, - ACTIONS(12149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12418), 1, - aux_sym__c_word_token1, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, - sym__c_binary_expression, - STATE(3371), 1, - sym__c_postfix_expression, - ACTIONS(12129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [275886] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12131), 1, - anon_sym_LPAREN, - ACTIONS(12135), 1, - anon_sym_DOLLAR, - ACTIONS(12137), 1, - anon_sym_DQUOTE, - ACTIONS(12139), 1, - aux_sym_number_token1, - ACTIONS(12141), 1, - aux_sym_number_token2, - ACTIONS(12143), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, - anon_sym_BQUOTE, - ACTIONS(12149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12420), 1, - aux_sym__c_word_token1, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, - sym__c_binary_expression, - STATE(3371), 1, - sym__c_postfix_expression, - ACTIONS(12129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3287), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [275942] = 5, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [282951] = 5, + ACTIONS(73), 1, sym_comment, - STATE(5353), 1, + STATE(5287), 1, aux_sym_concatenation_repeat1, - ACTIONS(12422), 2, + ACTIONS(12681), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1272), 7, + ACTIONS(5048), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -306523,52 +313172,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 12, + ACTIONS(5050), 12, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [275976] = 16, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [282985] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, - anon_sym_LPAREN, - ACTIONS(11753), 1, + ACTIONS(11587), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(11593), 1, + aux_sym_number_token2, + ACTIONS(12587), 1, + anon_sym_LPAREN, + ACTIONS(12591), 1, anon_sym_DQUOTE, - ACTIONS(11757), 1, + ACTIONS(12593), 1, aux_sym_number_token1, - ACTIONS(11759), 1, - aux_sym_number_token2, - ACTIONS(11761), 1, + ACTIONS(12595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12597), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12599), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12424), 1, + ACTIONS(12843), 1, aux_sym__c_word_token1, - STATE(3243), 1, + STATE(3201), 1, sym__c_unary_expression, - STATE(3246), 1, + STATE(3202), 1, sym__c_binary_expression, - STATE(3247), 1, + STATE(3209), 1, sym__c_postfix_expression, - ACTIONS(11747), 2, + ACTIONS(12585), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3337), 7, + STATE(3210), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -306576,19 +313225,51 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [276032] = 4, - ACTIONS(71), 1, + [283041] = 8, + ACTIONS(73), 1, + sym_comment, + ACTIONS(4499), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_PIPE_AMP, + ACTIONS(12829), 1, + anon_sym_LT_LT_LT, + STATE(5686), 1, + sym_herestring_redirect, + STATE(5488), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 6, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(4501), 9, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [283081] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(12430), 1, + ACTIONS(12849), 1, anon_sym_esac, - ACTIONS(12426), 6, + ACTIONS(12845), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12428), 15, + ACTIONS(12847), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306597,24 +313278,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276064] = 3, - ACTIONS(71), 1, + [283113] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 6, + ACTIONS(12860), 1, + anon_sym_LT_LT_LT, + ACTIONS(12863), 1, + sym_file_descriptor, + ACTIONS(11645), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12857), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12854), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5241), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11653), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_LT_LT_DASH, + ACTIONS(12851), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [283155] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1302), 16, + ACTIONS(1370), 16, sym__concat, sym_test_operator, sym__brace_start, @@ -306625,305 +313339,140 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [276094] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5246), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12348), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4593), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4595), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [276128] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4323), 1, - anon_sym_PIPE_AMP, - ACTIONS(12416), 1, - anon_sym_LT_LT_LT, - STATE(5622), 1, - sym_herestring_redirect, - STATE(5473), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4327), 9, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [276168] = 4, - ACTIONS(71), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [283185] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12436), 1, - anon_sym_esac, - ACTIONS(12432), 6, - anon_sym_LPAREN, + ACTIONS(1384), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(12434), 15, + ACTIONS(1386), 16, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276200] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(5322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - sym__special_character, - [276236] = 4, - ACTIONS(71), 1, + [283215] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12442), 1, - anon_sym_esac, - ACTIONS(12438), 6, - anon_sym_LPAREN, + ACTIONS(1368), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(12440), 15, + ACTIONS(1370), 16, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276268] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(12444), 1, - sym__concat, - STATE(4240), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [276304] = 9, + [283245] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5335), 1, + ACTIONS(5552), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 1, + ACTIONS(12466), 1, sym_file_descriptor, - ACTIONS(4705), 2, + ACTIONS(5166), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, + ACTIONS(5464), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(11571), 2, + ACTIONS(11964), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(5333), 3, + ACTIONS(5550), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - STATE(5016), 3, + STATE(5058), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11569), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [276346] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11454), 1, - aux_sym_concatenation_token1, - ACTIONS(12446), 1, - sym__concat, - STATE(4240), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 17, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, + ACTIONS(11962), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [276382] = 16, - ACTIONS(71), 1, + [283287] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(11264), 1, + ACTIONS(12870), 1, + anon_sym_esac, + ACTIONS(12866), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(11270), 1, + aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(12255), 1, - anon_sym_LPAREN, - ACTIONS(12259), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12868), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(12261), 1, - aux_sym_number_token1, - ACTIONS(12263), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, anon_sym_BQUOTE, - ACTIONS(12269), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12448), 1, - aux_sym__c_word_token1, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, - sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - ACTIONS(12253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3085), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [276438] = 4, - ACTIONS(71), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [283319] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(12454), 1, + ACTIONS(12876), 1, anon_sym_esac, - ACTIONS(12450), 6, + ACTIONS(12872), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12452), 15, + ACTIONS(12874), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -306932,173 +313481,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276470] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11458), 1, - aux_sym_concatenation_token1, - ACTIONS(12456), 1, - sym__concat, - STATE(4245), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [276506] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11458), 1, - aux_sym_concatenation_token1, - ACTIONS(12458), 1, - sym__concat, - STATE(4245), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 3, - sym_file_descriptor, - sym_variable_name, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [276542] = 3, - ACTIONS(71), 1, + [283351] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 6, + ACTIONS(12882), 1, + anon_sym_esac, + ACTIONS(12878), 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(1298), 16, - sym__concat, + ACTIONS(12880), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [276572] = 16, - ACTIONS(71), 1, + [283383] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(11264), 1, + ACTIONS(12723), 1, + anon_sym_esac, + ACTIONS(12719), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(11270), 1, + aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(12255), 1, - anon_sym_LPAREN, - ACTIONS(12259), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12721), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - ACTIONS(12261), 1, - aux_sym_number_token1, - ACTIONS(12263), 1, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, anon_sym_BQUOTE, - ACTIONS(12269), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12460), 1, - aux_sym__c_word_token1, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, - sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - ACTIONS(12253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3093), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [276628] = 16, - ACTIONS(71), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [283415] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(12255), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(12259), 1, + ACTIONS(12132), 1, + anon_sym_DOLLAR, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(12261), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(12263), 1, + ACTIONS(12138), 1, + aux_sym_number_token2, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(12269), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12462), 1, + ACTIONS(12884), 1, aux_sym__c_word_token1, - STATE(3024), 1, + STATE(3278), 1, sym__c_postfix_expression, - STATE(3087), 1, + STATE(3285), 1, sym__c_unary_expression, - STATE(3118), 1, + STATE(3318), 1, sym__c_binary_expression, - ACTIONS(12253), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3094), 7, + STATE(3339), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307106,39 +313584,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [276684] = 16, - ACTIONS(71), 1, + [283471] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(11753), 1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(11757), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(11759), 1, + ACTIONS(12138), 1, aux_sym_number_token2, - ACTIONS(11761), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12464), 1, + ACTIONS(12886), 1, aux_sym__c_word_token1, - STATE(3243), 1, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, sym__c_unary_expression, - STATE(3246), 1, + STATE(3318), 1, sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - ACTIONS(11747), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3338), 7, + STATE(3341), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307146,39 +313624,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [276740] = 16, - ACTIONS(71), 1, + [283527] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(11753), 1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(11757), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(11759), 1, + ACTIONS(12138), 1, aux_sym_number_token2, - ACTIONS(11761), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12466), 1, + ACTIONS(12888), 1, aux_sym__c_word_token1, - STATE(3243), 1, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, sym__c_unary_expression, - STATE(3246), 1, + STATE(3318), 1, sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - ACTIONS(11747), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3339), 7, + STATE(3345), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307186,39 +313664,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [276796] = 16, - ACTIONS(71), 1, + [283583] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(11753), 1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(11757), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(11759), 1, + ACTIONS(12138), 1, aux_sym_number_token2, - ACTIONS(11761), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12468), 1, + ACTIONS(12890), 1, aux_sym__c_word_token1, - STATE(3243), 1, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, sym__c_unary_expression, - STATE(3246), 1, + STATE(3318), 1, sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - ACTIONS(11747), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3340), 7, + STATE(3346), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307226,95 +313704,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [276852] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1314), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [276882] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5246), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12348), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4511), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4513), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [276916] = 16, - ACTIONS(71), 1, + [283639] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(11753), 1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(11757), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(11759), 1, + ACTIONS(12138), 1, aux_sym_number_token2, - ACTIONS(11761), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12470), 1, + ACTIONS(12892), 1, aux_sym__c_word_token1, - STATE(3243), 1, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, sym__c_unary_expression, - STATE(3246), 1, + STATE(3318), 1, sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - ACTIONS(11747), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3297), 7, + STATE(3347), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307322,39 +313744,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [276972] = 16, - ACTIONS(71), 1, + [283695] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(11753), 1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(11757), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(11759), 1, + ACTIONS(12138), 1, aux_sym_number_token2, - ACTIONS(11761), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12472), 1, + ACTIONS(12894), 1, aux_sym__c_word_token1, - STATE(3243), 1, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, sym__c_unary_expression, - STATE(3246), 1, + STATE(3318), 1, sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - ACTIONS(11747), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3341), 7, + STATE(3350), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307362,39 +313784,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [277028] = 16, - ACTIONS(71), 1, + [283751] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(11753), 1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(11757), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(11759), 1, + ACTIONS(12138), 1, aux_sym_number_token2, - ACTIONS(11761), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12474), 1, + ACTIONS(12896), 1, aux_sym__c_word_token1, - STATE(3243), 1, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, sym__c_unary_expression, - STATE(3246), 1, + STATE(3318), 1, sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - ACTIONS(11747), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3343), 7, + STATE(3357), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307402,39 +313824,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [277084] = 16, - ACTIONS(71), 1, + [283807] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(11753), 1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(11757), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(11759), 1, + ACTIONS(12138), 1, aux_sym_number_token2, - ACTIONS(11761), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12476), 1, + ACTIONS(12898), 1, aux_sym__c_word_token1, - STATE(3243), 1, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, sym__c_unary_expression, - STATE(3246), 1, + STATE(3318), 1, sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - ACTIONS(11747), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3345), 7, + STATE(3359), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307442,128 +313864,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [277140] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5226), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12348), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4577), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4579), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [277174] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12487), 1, - anon_sym_LT_LT_LT, - ACTIONS(12490), 1, - sym_file_descriptor, - ACTIONS(11365), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(12484), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12481), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5171), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11373), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(12478), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [277216] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1320), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1322), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [277246] = 16, - ACTIONS(71), 1, + [283863] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(11753), 1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(11757), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(11759), 1, + ACTIONS(12138), 1, aux_sym_number_token2, - ACTIONS(11761), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12493), 1, + ACTIONS(12900), 1, aux_sym__c_word_token1, - STATE(3243), 1, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, sym__c_unary_expression, - STATE(3246), 1, + STATE(3318), 1, sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - ACTIONS(11747), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3346), 7, + STATE(3360), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307571,39 +313904,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [277302] = 16, - ACTIONS(71), 1, + [283919] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(11753), 1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(11757), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(11759), 1, + ACTIONS(12138), 1, aux_sym_number_token2, - ACTIONS(11761), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12495), 1, + ACTIONS(12902), 1, aux_sym__c_word_token1, - STATE(3243), 1, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, sym__c_unary_expression, - STATE(3246), 1, + STATE(3318), 1, sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - ACTIONS(11747), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3347), 7, + STATE(3361), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307611,39 +313944,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [277358] = 16, - ACTIONS(71), 1, + [283975] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(11753), 1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(11757), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(11759), 1, + ACTIONS(12138), 1, aux_sym_number_token2, - ACTIONS(11761), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12497), 1, + ACTIONS(12904), 1, aux_sym__c_word_token1, - STATE(3243), 1, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, sym__c_unary_expression, - STATE(3246), 1, + STATE(3318), 1, sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - ACTIONS(11747), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3348), 7, + STATE(3362), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307651,39 +313984,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [277414] = 16, - ACTIONS(71), 1, + [284031] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(11753), 1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(11757), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(11759), 1, + ACTIONS(12138), 1, aux_sym_number_token2, - ACTIONS(11761), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12499), 1, + ACTIONS(12906), 1, aux_sym__c_word_token1, - STATE(3243), 1, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, sym__c_unary_expression, - STATE(3246), 1, + STATE(3318), 1, sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - ACTIONS(11747), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3349), 7, + STATE(3364), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307691,133 +314024,151 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [277470] = 3, - ACTIONS(71), 1, + [284087] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 6, + ACTIONS(12849), 1, + anon_sym_esac, + ACTIONS(12845), 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(1326), 16, - sym__concat, + ACTIONS(12847), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277500] = 3, - ACTIONS(71), 1, + [284119] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 6, + ACTIONS(12912), 1, + anon_sym_esac, + ACTIONS(12908), 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(1330), 16, - sym__concat, + ACTIONS(12910), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [277530] = 16, - ACTIONS(71), 1, + [284151] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(11749), 1, + ACTIONS(12918), 1, + anon_sym_esac, + ACTIONS(12914), 6, anon_sym_LPAREN, - ACTIONS(11753), 1, anon_sym_DOLLAR, - ACTIONS(11755), 1, - anon_sym_DQUOTE, - ACTIONS(11757), 1, aux_sym_number_token1, - ACTIONS(11759), 1, aux_sym_number_token2, - ACTIONS(11761), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + sym_word, + ACTIONS(12916), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(11767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12501), 1, - aux_sym__c_word_token1, - STATE(3243), 1, - sym__c_unary_expression, - STATE(3246), 1, - sym__c_binary_expression, - STATE(3247), 1, - sym__c_postfix_expression, - ACTIONS(11747), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3350), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [277586] = 16, - ACTIONS(71), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [284183] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(11264), 1, + ACTIONS(12918), 1, + anon_sym_esac, + ACTIONS(12914), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, - ACTIONS(11270), 1, + aux_sym_number_token1, aux_sym_number_token2, - ACTIONS(12255), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12916), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [284215] = 16, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12474), 1, anon_sym_LPAREN, - ACTIONS(12259), 1, + ACTIONS(12478), 1, + anon_sym_DOLLAR, + ACTIONS(12480), 1, anon_sym_DQUOTE, - ACTIONS(12261), 1, + ACTIONS(12482), 1, aux_sym_number_token1, - ACTIONS(12263), 1, + ACTIONS(12484), 1, + aux_sym_number_token2, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, + ACTIONS(12490), 1, anon_sym_BQUOTE, - ACTIONS(12269), 1, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12503), 1, + ACTIONS(12920), 1, aux_sym__c_word_token1, - STATE(3024), 1, + STATE(3235), 1, + sym__c_binary_expression, + STATE(3260), 1, sym__c_postfix_expression, - STATE(3087), 1, + STATE(3498), 1, sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - ACTIONS(12253), 2, + ACTIONS(12472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3095), 7, + STATE(3265), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307825,39 +314176,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [277642] = 16, - ACTIONS(71), 1, + [284271] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(12255), 1, + ACTIONS(12474), 1, anon_sym_LPAREN, - ACTIONS(12259), 1, + ACTIONS(12478), 1, + anon_sym_DOLLAR, + ACTIONS(12480), 1, anon_sym_DQUOTE, - ACTIONS(12261), 1, + ACTIONS(12482), 1, aux_sym_number_token1, - ACTIONS(12263), 1, + ACTIONS(12484), 1, + aux_sym_number_token2, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, + ACTIONS(12490), 1, anon_sym_BQUOTE, - ACTIONS(12269), 1, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12505), 1, + ACTIONS(12922), 1, aux_sym__c_word_token1, - STATE(3024), 1, + STATE(3235), 1, + sym__c_binary_expression, + STATE(3260), 1, sym__c_postfix_expression, - STATE(3087), 1, + STATE(3498), 1, sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - ACTIONS(12253), 2, + ACTIONS(12472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3099), 7, + STATE(3266), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307865,68 +314216,68 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [277698] = 5, - ACTIONS(71), 1, + [284327] = 5, + ACTIONS(3), 1, sym_comment, - STATE(5226), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12348), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5593), 7, + STATE(5270), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12229), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(12924), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12225), 17, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5595), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [277732] = 16, - ACTIONS(71), 1, + [284361] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(12131), 1, + ACTIONS(12474), 1, anon_sym_LPAREN, - ACTIONS(12135), 1, + ACTIONS(12478), 1, anon_sym_DOLLAR, - ACTIONS(12137), 1, + ACTIONS(12480), 1, anon_sym_DQUOTE, - ACTIONS(12139), 1, + ACTIONS(12482), 1, aux_sym_number_token1, - ACTIONS(12141), 1, + ACTIONS(12484), 1, aux_sym_number_token2, - ACTIONS(12143), 1, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, + ACTIONS(12490), 1, anon_sym_BQUOTE, - ACTIONS(12149), 1, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12507), 1, + ACTIONS(12926), 1, aux_sym__c_word_token1, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, + STATE(3235), 1, sym__c_binary_expression, - STATE(3371), 1, + STATE(3260), 1, sym__c_postfix_expression, - ACTIONS(12129), 2, + STATE(3498), 1, + sym__c_unary_expression, + ACTIONS(12472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3195), 7, + STATE(3267), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -307934,167 +314285,68 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [277788] = 15, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7790), 1, - anon_sym_DQUOTE, - ACTIONS(7798), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7810), 1, - sym_variable_name, - ACTIONS(12511), 1, - anon_sym_LPAREN, - ACTIONS(12513), 1, - anon_sym_DOLLAR, - ACTIONS(12515), 1, - anon_sym_RBRACE3, - ACTIONS(12517), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12519), 1, - anon_sym_BQUOTE, - ACTIONS(12521), 1, - anon_sym_DOLLAR_BQUOTE, - STATE(6719), 1, - sym_process_substitution, - STATE(6935), 1, - sym__concatenation_in_expansion, - ACTIONS(7214), 2, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - ACTIONS(12509), 4, - sym__expansion_word, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(6485), 5, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [277842] = 8, + [284417] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(11373), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12529), 1, - anon_sym_LT_LT_LT, - ACTIONS(12532), 1, + STATE(5270), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12193), 2, sym_file_descriptor, - ACTIONS(12526), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5185), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11365), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + aux_sym_heredoc_redirect_token1, + ACTIONS(12928), 2, anon_sym_PIPE, - anon_sym_LT_LT, anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12523), 8, + ACTIONS(12188), 17, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_AMP, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_SEMI_SEMI, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [277882] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12368), 1, - anon_sym_esac, - ACTIONS(12364), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12366), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [277914] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5226), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12348), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4426), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4428), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [277948] = 16, - ACTIONS(71), 1, + [284451] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(12255), 1, + ACTIONS(12474), 1, anon_sym_LPAREN, - ACTIONS(12259), 1, + ACTIONS(12478), 1, + anon_sym_DOLLAR, + ACTIONS(12480), 1, anon_sym_DQUOTE, - ACTIONS(12261), 1, + ACTIONS(12482), 1, aux_sym_number_token1, - ACTIONS(12263), 1, + ACTIONS(12484), 1, + aux_sym_number_token2, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, + ACTIONS(12490), 1, anon_sym_BQUOTE, - ACTIONS(12269), 1, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12535), 1, + ACTIONS(12931), 1, aux_sym__c_word_token1, - STATE(3024), 1, + STATE(3235), 1, + sym__c_binary_expression, + STATE(3260), 1, sym__c_postfix_expression, - STATE(3087), 1, + STATE(3498), 1, sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - ACTIONS(12253), 2, + ACTIONS(12472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3106), 7, + STATE(3268), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -308102,39 +314354,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [278004] = 16, - ACTIONS(71), 1, + [284507] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(12255), 1, + ACTIONS(12474), 1, anon_sym_LPAREN, - ACTIONS(12259), 1, + ACTIONS(12478), 1, + anon_sym_DOLLAR, + ACTIONS(12480), 1, anon_sym_DQUOTE, - ACTIONS(12261), 1, + ACTIONS(12482), 1, aux_sym_number_token1, - ACTIONS(12263), 1, + ACTIONS(12484), 1, + aux_sym_number_token2, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, + ACTIONS(12490), 1, anon_sym_BQUOTE, - ACTIONS(12269), 1, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12537), 1, + ACTIONS(12933), 1, aux_sym__c_word_token1, - STATE(3024), 1, + STATE(3235), 1, + sym__c_binary_expression, + STATE(3260), 1, sym__c_postfix_expression, - STATE(3087), 1, + STATE(3498), 1, sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - ACTIONS(12253), 2, + ACTIONS(12472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3107), 7, + STATE(3270), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -308142,106 +314394,67 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [278060] = 3, - ACTIONS(71), 1, + [284563] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 6, + ACTIONS(12876), 1, + anon_sym_esac, + ACTIONS(12872), 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(1358), 16, - sym__concat, + ACTIONS(12874), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278090] = 16, - ACTIONS(71), 1, + [284595] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(12255), 1, + ACTIONS(12474), 1, anon_sym_LPAREN, - ACTIONS(12259), 1, - anon_sym_DQUOTE, - ACTIONS(12261), 1, - aux_sym_number_token1, - ACTIONS(12263), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, - anon_sym_BQUOTE, - ACTIONS(12269), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12539), 1, - aux_sym__c_word_token1, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, - sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - ACTIONS(12253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3108), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [278146] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11264), 1, + ACTIONS(12478), 1, anon_sym_DOLLAR, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(12255), 1, - anon_sym_LPAREN, - ACTIONS(12259), 1, + ACTIONS(12480), 1, anon_sym_DQUOTE, - ACTIONS(12261), 1, + ACTIONS(12482), 1, aux_sym_number_token1, - ACTIONS(12263), 1, + ACTIONS(12484), 1, + aux_sym_number_token2, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, + ACTIONS(12490), 1, anon_sym_BQUOTE, - ACTIONS(12269), 1, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12541), 1, + ACTIONS(12935), 1, aux_sym__c_word_token1, - STATE(3024), 1, + STATE(3235), 1, + sym__c_binary_expression, + STATE(3260), 1, sym__c_postfix_expression, - STATE(3087), 1, + STATE(3498), 1, sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - ACTIONS(12253), 2, + ACTIONS(12472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3109), 7, + STATE(3271), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -308249,94 +314462,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [278202] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1308), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1310), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278232] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12547), 1, - anon_sym_esac, - ACTIONS(12543), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12545), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278264] = 16, - ACTIONS(71), 1, + [284651] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(12131), 1, + ACTIONS(12474), 1, anon_sym_LPAREN, - ACTIONS(12135), 1, + ACTIONS(12478), 1, anon_sym_DOLLAR, - ACTIONS(12137), 1, + ACTIONS(12480), 1, anon_sym_DQUOTE, - ACTIONS(12139), 1, + ACTIONS(12482), 1, aux_sym_number_token1, - ACTIONS(12141), 1, + ACTIONS(12484), 1, aux_sym_number_token2, - ACTIONS(12143), 1, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, + ACTIONS(12490), 1, anon_sym_BQUOTE, - ACTIONS(12149), 1, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12549), 1, + ACTIONS(12937), 1, aux_sym__c_word_token1, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, + STATE(3235), 1, sym__c_binary_expression, - STATE(3371), 1, + STATE(3260), 1, sym__c_postfix_expression, - ACTIONS(12129), 2, + STATE(3498), 1, + sym__c_unary_expression, + ACTIONS(12472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3197), 7, + STATE(3274), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -308344,306 +314502,152 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [278320] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1332), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1334), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278350] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1344), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1346), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278380] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12379), 1, - anon_sym_esac, - ACTIONS(12375), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12377), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278412] = 22, + [284707] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7794), 1, - aux_sym_number_token1, - ACTIONS(7796), 1, - aux_sym_number_token2, - ACTIONS(12553), 1, - anon_sym_LPAREN, - ACTIONS(12555), 1, + ACTIONS(5466), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12557), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12559), 1, - anon_sym_DOLLAR, - ACTIONS(12561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12563), 1, - anon_sym_RBRACE3, - ACTIONS(12565), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12567), 1, - anon_sym_BQUOTE, - ACTIONS(12569), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12571), 1, - aux_sym__simple_variable_name_token1, - STATE(5429), 1, - sym_simple_expansion, - STATE(6281), 1, - sym_number, - STATE(6287), 1, - sym_expansion, - STATE(6290), 1, - sym__expansion_max_length_binary_expression, - STATE(6452), 1, - sym__expansion_max_length_expression, - STATE(7049), 1, - sym_parenthesized_expression, - STATE(7060), 1, - sym_arithmetic_expansion, - STATE(7091), 1, - sym_command_substitution, - ACTIONS(12551), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - [278480] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12442), 1, - anon_sym_esac, - ACTIONS(12438), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12440), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278512] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5381), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12573), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(1272), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1274), 12, + ACTIONS(12466), 1, sym_file_descriptor, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(5464), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(11964), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(5462), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + STATE(5058), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11962), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [278546] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1356), 6, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - sym_word, - ACTIONS(1358), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278576] = 4, - ACTIONS(71), 1, + [284749] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(12579), 1, - anon_sym_esac, - ACTIONS(12575), 6, + ACTIONS(12474), 1, anon_sym_LPAREN, + ACTIONS(12478), 1, anon_sym_DOLLAR, + ACTIONS(12480), 1, + anon_sym_DQUOTE, + ACTIONS(12482), 1, aux_sym_number_token1, + ACTIONS(12484), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12577), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12488), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12490), 1, anon_sym_BQUOTE, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278608] = 3, - ACTIONS(71), 1, + ACTIONS(12939), 1, + aux_sym__c_word_token1, + STATE(3235), 1, + sym__c_binary_expression, + STATE(3260), 1, + sym__c_postfix_expression, + STATE(3498), 1, + sym__c_unary_expression, + ACTIONS(12472), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3275), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [284805] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 6, + ACTIONS(12474), 1, + anon_sym_LPAREN, + ACTIONS(12478), 1, anon_sym_DOLLAR, + ACTIONS(12480), 1, + anon_sym_DQUOTE, + ACTIONS(12482), 1, aux_sym_number_token1, + ACTIONS(12484), 1, aux_sym_number_token2, + ACTIONS(12486), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12490), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1306), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278638] = 16, - ACTIONS(71), 1, + ACTIONS(12941), 1, + aux_sym__c_word_token1, + STATE(3235), 1, + sym__c_binary_expression, + STATE(3260), 1, + sym__c_postfix_expression, + STATE(3498), 1, + sym__c_unary_expression, + ACTIONS(12472), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3277), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [284861] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(12255), 1, + ACTIONS(12474), 1, anon_sym_LPAREN, - ACTIONS(12259), 1, + ACTIONS(12478), 1, + anon_sym_DOLLAR, + ACTIONS(12480), 1, anon_sym_DQUOTE, - ACTIONS(12261), 1, + ACTIONS(12482), 1, aux_sym_number_token1, - ACTIONS(12263), 1, + ACTIONS(12484), 1, + aux_sym_number_token2, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, + ACTIONS(12490), 1, anon_sym_BQUOTE, - ACTIONS(12269), 1, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12581), 1, + ACTIONS(12943), 1, aux_sym__c_word_token1, - STATE(3024), 1, + STATE(3235), 1, + sym__c_binary_expression, + STATE(3260), 1, sym__c_postfix_expression, - STATE(3087), 1, + STATE(3498), 1, sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - ACTIONS(12253), 2, + ACTIONS(12472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3110), 7, + STATE(3281), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -308651,39 +314655,39 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [278694] = 16, - ACTIONS(71), 1, + [284917] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(12131), 1, + ACTIONS(12474), 1, anon_sym_LPAREN, - ACTIONS(12135), 1, + ACTIONS(12478), 1, anon_sym_DOLLAR, - ACTIONS(12137), 1, + ACTIONS(12480), 1, anon_sym_DQUOTE, - ACTIONS(12139), 1, + ACTIONS(12482), 1, aux_sym_number_token1, - ACTIONS(12141), 1, + ACTIONS(12484), 1, aux_sym_number_token2, - ACTIONS(12143), 1, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, + ACTIONS(12490), 1, anon_sym_BQUOTE, - ACTIONS(12149), 1, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12583), 1, + ACTIONS(12945), 1, aux_sym__c_word_token1, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, + STATE(3235), 1, sym__c_binary_expression, - STATE(3371), 1, + STATE(3260), 1, sym__c_postfix_expression, - ACTIONS(12129), 2, + STATE(3498), 1, + sym__c_unary_expression, + ACTIONS(12472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3445), 7, + STATE(3282), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -308691,66 +314695,79 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [278750] = 3, - ACTIONS(71), 1, + [284973] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 6, + ACTIONS(12474), 1, + anon_sym_LPAREN, + ACTIONS(12478), 1, anon_sym_DOLLAR, + ACTIONS(12480), 1, + anon_sym_DQUOTE, + ACTIONS(12482), 1, aux_sym_number_token1, + ACTIONS(12484), 1, aux_sym_number_token2, + ACTIONS(12486), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(12490), 1, anon_sym_BQUOTE, - sym_word, - ACTIONS(1338), 16, - sym__concat, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_concatenation_token1, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [278780] = 16, - ACTIONS(71), 1, + ACTIONS(12947), 1, + aux_sym__c_word_token1, + STATE(3235), 1, + sym__c_binary_expression, + STATE(3260), 1, + sym__c_postfix_expression, + STATE(3498), 1, + sym__c_unary_expression, + ACTIONS(12472), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3284), 7, + sym__c_expression_not_assignment, + sym__c_parenthesized_expression, + sym_string, + sym_number, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [285029] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(12131), 1, + ACTIONS(12128), 1, anon_sym_LPAREN, - ACTIONS(12135), 1, + ACTIONS(12132), 1, anon_sym_DOLLAR, - ACTIONS(12137), 1, + ACTIONS(12134), 1, anon_sym_DQUOTE, - ACTIONS(12139), 1, + ACTIONS(12136), 1, aux_sym_number_token1, - ACTIONS(12141), 1, + ACTIONS(12138), 1, aux_sym_number_token2, - ACTIONS(12143), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(12149), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12585), 1, + ACTIONS(12949), 1, aux_sym__c_word_token1, - STATE(3366), 1, + STATE(3278), 1, + sym__c_postfix_expression, + STATE(3285), 1, sym__c_unary_expression, - STATE(3370), 1, + STATE(3318), 1, sym__c_binary_expression, - STATE(3371), 1, - sym__c_postfix_expression, - ACTIONS(12129), 2, + ACTIONS(12126), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3184), 7, + STATE(3486), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -308758,17 +314775,17 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [278836] = 3, - ACTIONS(71), 1, + [285085] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 6, + ACTIONS(1344), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1354), 16, + ACTIONS(1346), 16, sym__concat, sym_test_operator, sym__brace_start, @@ -308779,54 +314796,51 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278866] = 9, - ACTIONS(3), 1, + [285115] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(5103), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 1, - sym_file_descriptor, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11571), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5101), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11569), 8, + STATE(5347), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12951), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 8, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + sym__special_character, + ACTIONS(1302), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [278908] = 5, - ACTIONS(71), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [285149] = 6, + ACTIONS(73), 1, sym_comment, - STATE(5403), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12587), 2, - sym__concat, + ACTIONS(12681), 1, aux_sym_concatenation_token1, - ACTIONS(1272), 8, + ACTIONS(12953), 1, + sym__concat, + STATE(5289), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308834,8 +314848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1274), 11, + ACTIONS(1296), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -308847,43 +314860,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [278942] = 4, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [285185] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12593), 1, - anon_sym_esac, - ACTIONS(12589), 6, - anon_sym_LPAREN, + ACTIONS(1348), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, sym_word, - ACTIONS(12591), 15, + ACTIONS(1350), 16, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [278974] = 5, - ACTIONS(71), 1, + [285215] = 6, + ACTIONS(73), 1, sym_comment, - STATE(5226), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12348), 2, - sym__concat, + ACTIONS(12681), 1, aux_sym_concatenation_token1, - ACTIONS(5587), 7, + ACTIONS(12955), 1, + sym__concat, + STATE(5289), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -308891,7 +314905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5589), 12, + ACTIONS(1316), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -308904,17 +314918,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [279008] = 3, - ACTIONS(71), 1, + [285251] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 6, + ACTIONS(1304), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1342), 16, + ACTIONS(1306), 16, sym__concat, sym_test_operator, sym__brace_start, @@ -308925,23 +314939,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279038] = 3, - ACTIONS(71), 1, + [285281] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(5289), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12957), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1306), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [285315] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 6, + ACTIONS(1352), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1294), 16, + ACTIONS(1354), 16, sym__concat, sym_test_operator, sym__brace_start, @@ -308952,323 +314995,66 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [279068] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12599), 1, - anon_sym_esac, - ACTIONS(12595), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12597), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279100] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5096), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 1, - sym_file_descriptor, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11571), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5092), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11569), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [279142] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12131), 1, - anon_sym_LPAREN, - ACTIONS(12135), 1, - anon_sym_DOLLAR, - ACTIONS(12137), 1, - anon_sym_DQUOTE, - ACTIONS(12139), 1, - aux_sym_number_token1, - ACTIONS(12141), 1, - aux_sym_number_token2, - ACTIONS(12143), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, - anon_sym_BQUOTE, - ACTIONS(12149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12601), 1, - aux_sym__c_word_token1, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, - sym__c_binary_expression, - STATE(3371), 1, - sym__c_postfix_expression, - ACTIONS(12129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3435), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279198] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7794), 1, - aux_sym_number_token1, - ACTIONS(7796), 1, - aux_sym_number_token2, - ACTIONS(12553), 1, - anon_sym_LPAREN, - ACTIONS(12557), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12559), 1, - anon_sym_DOLLAR, - ACTIONS(12561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12565), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12567), 1, - anon_sym_BQUOTE, - ACTIONS(12569), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12603), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12605), 1, - anon_sym_RBRACE3, - ACTIONS(12607), 1, - aux_sym__simple_variable_name_token1, - STATE(5419), 1, - sym_simple_expansion, - STATE(6347), 1, - sym__expansion_max_length_binary_expression, - STATE(6452), 1, - sym__expansion_max_length_expression, - ACTIONS(12551), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6300), 2, - sym_number, - sym_expansion, - STATE(7211), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [279260] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5111), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12201), 1, - sym_file_descriptor, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5094), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(11571), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(5109), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - STATE(5016), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11569), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [279302] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12131), 1, - anon_sym_LPAREN, - ACTIONS(12135), 1, - anon_sym_DOLLAR, - ACTIONS(12137), 1, - anon_sym_DQUOTE, - ACTIONS(12139), 1, - aux_sym_number_token1, - ACTIONS(12141), 1, - aux_sym_number_token2, - ACTIONS(12143), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, - anon_sym_BQUOTE, - ACTIONS(12149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12609), 1, - aux_sym__c_word_token1, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, - sym__c_binary_expression, - STATE(3371), 1, - sym__c_postfix_expression, - ACTIONS(12129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3170), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279358] = 19, + [285345] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(7794), 1, + ACTIONS(7916), 1, aux_sym_number_token1, - ACTIONS(7796), 1, + ACTIONS(7918), 1, aux_sym_number_token2, - ACTIONS(12553), 1, + ACTIONS(12803), 1, anon_sym_LPAREN, - ACTIONS(12557), 1, + ACTIONS(12807), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(12559), 1, + ACTIONS(12809), 1, anon_sym_DOLLAR, - ACTIONS(12561), 1, + ACTIONS(12811), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12565), 1, + ACTIONS(12815), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12567), 1, + ACTIONS(12817), 1, anon_sym_BQUOTE, - ACTIONS(12569), 1, + ACTIONS(12819), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12611), 1, + ACTIONS(12960), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12613), 1, + ACTIONS(12962), 1, anon_sym_RBRACE3, - ACTIONS(12615), 1, + ACTIONS(12964), 1, aux_sym__simple_variable_name_token1, - STATE(5469), 1, + STATE(5471), 1, sym_simple_expansion, - STATE(6273), 1, + STATE(6324), 1, sym__expansion_max_length_binary_expression, - STATE(6452), 1, + STATE(6476), 1, sym__expansion_max_length_expression, - ACTIONS(12551), 2, + ACTIONS(12801), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6309), 2, + STATE(6319), 2, sym_number, sym_expansion, - STATE(6857), 3, + STATE(7005), 3, sym_parenthesized_expression, sym_arithmetic_expansion, sym_command_substitution, - [279420] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12131), 1, - anon_sym_LPAREN, - ACTIONS(12135), 1, - anon_sym_DOLLAR, - ACTIONS(12137), 1, - anon_sym_DQUOTE, - ACTIONS(12139), 1, - aux_sym_number_token1, - ACTIONS(12141), 1, - aux_sym_number_token2, - ACTIONS(12143), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, - anon_sym_BQUOTE, - ACTIONS(12149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12617), 1, - aux_sym__c_word_token1, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, - sym__c_binary_expression, - STATE(3371), 1, - sym__c_postfix_expression, - ACTIONS(12129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3414), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279476] = 3, - ACTIONS(71), 1, + [285407] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 6, + ACTIONS(1360), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, sym_word, - ACTIONS(1350), 16, + ACTIONS(1362), 16, sym__concat, sym_test_operator, sym__brace_start, @@ -309279,173 +315065,53 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [279506] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12623), 1, - anon_sym_esac, - ACTIONS(12619), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12621), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279538] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12348), 1, - aux_sym_concatenation_token1, - ACTIONS(12625), 1, - sym__concat, - STATE(5130), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1268), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [279574] = 4, - ACTIONS(71), 1, + [285437] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12631), 1, - anon_sym_esac, - ACTIONS(12627), 6, - anon_sym_LPAREN, + ACTIONS(1364), 6, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12629), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [279606] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12454), 1, - anon_sym_esac, - ACTIONS(12450), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12452), 15, + ACTIONS(1366), 16, + sym__concat, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + aux_sym_concatenation_token1, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [279638] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12639), 1, - anon_sym_LT_LT_LT, - ACTIONS(12641), 1, - sym_file_descriptor, - ACTIONS(11349), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(12637), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12635), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5171), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11355), 5, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_LT_LT_DASH, - ACTIONS(12633), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [279680] = 6, + [285467] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12643), 1, + ACTIONS(12966), 1, sym_variable_name, - STATE(6730), 1, + STATE(6815), 1, sym_subscript, - ACTIONS(11309), 2, + ACTIONS(11679), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5232), 2, + STATE(5295), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(11307), 16, + ACTIONS(11677), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -309462,48 +315128,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [279716] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12547), 1, - anon_sym_esac, - ACTIONS(12543), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12545), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [279748] = 6, + [285503] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12645), 1, + ACTIONS(12968), 1, sym_variable_name, - STATE(6730), 1, + STATE(6815), 1, sym_subscript, - ACTIONS(11294), 2, + ACTIONS(11707), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5232), 2, + STATE(5295), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(11292), 16, + ACTIONS(11705), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -309520,20 +315158,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [279784] = 6, + [285539] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, + ACTIONS(11812), 1, aux_sym_concatenation_token1, - ACTIONS(11460), 1, + ACTIONS(11814), 1, sym__concat, - STATE(5156), 1, + STATE(5220), 1, aux_sym_concatenation_repeat1, - ACTIONS(5167), 3, + ACTIONS(5495), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5165), 16, + ACTIONS(5493), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -309550,20 +315188,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [279820] = 6, + [285575] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11458), 1, + ACTIONS(11812), 1, aux_sym_concatenation_token1, - ACTIONS(11460), 1, + ACTIONS(11814), 1, sym__concat, - STATE(5157), 1, + STATE(5221), 1, aux_sym_concatenation_repeat1, - ACTIONS(5175), 3, + ACTIONS(5501), 3, sym_file_descriptor, sym_variable_name, aux_sym_heredoc_redirect_token1, - ACTIONS(5173), 16, + ACTIONS(5499), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -309580,59 +315218,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [279856] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11264), 1, - anon_sym_DOLLAR, - ACTIONS(11270), 1, - aux_sym_number_token2, - ACTIONS(12255), 1, - anon_sym_LPAREN, - ACTIONS(12259), 1, - anon_sym_DQUOTE, - ACTIONS(12261), 1, - aux_sym_number_token1, - ACTIONS(12263), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, - anon_sym_BQUOTE, - ACTIONS(12269), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12648), 1, - aux_sym__c_word_token1, - STATE(3024), 1, - sym__c_postfix_expression, - STATE(3087), 1, - sym__c_unary_expression, - STATE(3118), 1, - sym__c_binary_expression, - ACTIONS(12253), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3069), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [279912] = 6, + [285611] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(5153), 1, + STATE(5218), 1, aux_sym_concatenation_repeat1, - ACTIONS(2169), 2, + ACTIONS(5901), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 17, + ACTIONS(5899), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -309650,19 +315248,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [279948] = 6, + [285647] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(5151), 1, + STATE(5219), 1, aux_sym_concatenation_repeat1, - ACTIONS(5595), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 17, + ACTIONS(2154), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -309680,19 +315278,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [279984] = 6, + [285683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(5153), 1, + STATE(5218), 1, aux_sym_concatenation_repeat1, - ACTIONS(2173), 2, + ACTIONS(5907), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 17, + ACTIONS(5905), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -309710,19 +315308,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [280020] = 6, + [285719] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(5151), 1, + STATE(5219), 1, aux_sym_concatenation_repeat1, - ACTIONS(4428), 2, + ACTIONS(2160), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 17, + ACTIONS(2158), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -309740,19 +315338,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [280056] = 6, + [285755] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(5153), 1, + STATE(5219), 1, aux_sym_concatenation_repeat1, - ACTIONS(4513), 2, + ACTIONS(5017), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 17, + ACTIONS(5015), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -309770,19 +315368,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [280092] = 6, + [285791] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(5151), 1, + STATE(5218), 1, aux_sym_concatenation_repeat1, - ACTIONS(4579), 2, + ACTIONS(5046), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 17, + ACTIONS(5044), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -309800,19 +315398,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [280128] = 6, + [285827] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11454), 1, + ACTIONS(11789), 1, aux_sym_concatenation_token1, - ACTIONS(11456), 1, + ACTIONS(11791), 1, sym__concat, - STATE(5153), 1, + STATE(5219), 1, aux_sym_concatenation_repeat1, - ACTIONS(4595), 2, + ACTIONS(5050), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 17, + ACTIONS(5048), 17, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -309830,107 +315428,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [280164] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12354), 1, - anon_sym_esac, - ACTIONS(12350), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12352), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [280196] = 16, - ACTIONS(71), 1, + [285863] = 16, + ACTIONS(73), 1, sym_comment, - ACTIONS(12131), 1, + ACTIONS(12474), 1, anon_sym_LPAREN, - ACTIONS(12135), 1, + ACTIONS(12478), 1, anon_sym_DOLLAR, - ACTIONS(12137), 1, + ACTIONS(12480), 1, anon_sym_DQUOTE, - ACTIONS(12139), 1, + ACTIONS(12482), 1, aux_sym_number_token1, - ACTIONS(12141), 1, + ACTIONS(12484), 1, aux_sym_number_token2, - ACTIONS(12143), 1, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, + ACTIONS(12488), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, + ACTIONS(12490), 1, anon_sym_BQUOTE, - ACTIONS(12149), 1, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12650), 1, + ACTIONS(12971), 1, aux_sym__c_word_token1, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, + STATE(3235), 1, sym__c_binary_expression, - STATE(3371), 1, + STATE(3260), 1, sym__c_postfix_expression, - ACTIONS(12129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3187), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [280252] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12131), 1, - anon_sym_LPAREN, - ACTIONS(12135), 1, - anon_sym_DOLLAR, - ACTIONS(12137), 1, - anon_sym_DQUOTE, - ACTIONS(12139), 1, - aux_sym_number_token1, - ACTIONS(12141), 1, - aux_sym_number_token2, - ACTIONS(12143), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, - anon_sym_BQUOTE, - ACTIONS(12149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12652), 1, - aux_sym__c_word_token1, - STATE(3366), 1, + STATE(3498), 1, sym__c_unary_expression, - STATE(3370), 1, - sym__c_binary_expression, - STATE(3371), 1, - sym__c_postfix_expression, - ACTIONS(12129), 2, + ACTIONS(12472), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3286), 7, + STATE(3250), 7, sym__c_expression_not_assignment, sym__c_parenthesized_expression, sym_string, @@ -309938,49 +315468,19 @@ static const uint16_t ts_small_parse_table[] = { sym_simple_expansion, sym_expansion, sym_command_substitution, - [280308] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12348), 1, - aux_sym_concatenation_token1, - ACTIONS(12654), 1, - sym__concat, - STATE(5130), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1288), 12, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [280344] = 4, - ACTIONS(71), 1, + [285919] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(12579), 1, + ACTIONS(12977), 1, anon_sym_esac, - ACTIONS(12575), 6, + ACTIONS(12973), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12577), 15, + ACTIONS(12975), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -309989,62 +315489,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [280376] = 16, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12131), 1, - anon_sym_LPAREN, - ACTIONS(12135), 1, - anon_sym_DOLLAR, - ACTIONS(12137), 1, - anon_sym_DQUOTE, - ACTIONS(12139), 1, - aux_sym_number_token1, - ACTIONS(12141), 1, - aux_sym_number_token2, - ACTIONS(12143), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, - anon_sym_BQUOTE, - ACTIONS(12149), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12656), 1, - aux_sym__c_word_token1, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, - sym__c_binary_expression, - STATE(3371), 1, - sym__c_postfix_expression, - ACTIONS(12129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3453), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [280432] = 5, - ACTIONS(71), 1, + [285951] = 5, + ACTIONS(73), 1, sym_comment, - STATE(5246), 1, + STATE(5405), 1, aux_sym_concatenation_repeat1, - ACTIONS(12348), 2, + ACTIONS(12799), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(2171), 7, + ACTIONS(2154), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310052,70 +315512,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2173), 12, + ACTIONS(2156), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [280466] = 16, - ACTIONS(71), 1, + [285984] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12131), 1, + ACTIONS(12878), 6, anon_sym_LPAREN, - ACTIONS(12135), 1, anon_sym_DOLLAR, - ACTIONS(12137), 1, - anon_sym_DQUOTE, - ACTIONS(12139), 1, aux_sym_number_token1, - ACTIONS(12141), 1, aux_sym_number_token2, - ACTIONS(12143), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, + sym_word, + ACTIONS(12880), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(12149), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12658), 1, - aux_sym__c_word_token1, - STATE(3366), 1, - sym__c_unary_expression, - STATE(3370), 1, - sym__c_binary_expression, - STATE(3371), 1, - sym__c_postfix_expression, - ACTIONS(12129), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3364), 7, - sym__c_expression_not_assignment, - sym__c_parenthesized_expression, - sym_string, - sym_number, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [280522] = 3, - ACTIONS(71), 1, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [286013] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12660), 6, + ACTIONS(12979), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12662), 15, + ACTIONS(12981), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310124,24 +315569,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [280551] = 3, - ACTIONS(71), 1, + [286042] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12664), 6, + ACTIONS(12983), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12666), 15, + ACTIONS(12985), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310150,24 +315595,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [280580] = 3, - ACTIONS(71), 1, + [286071] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12589), 6, + ACTIONS(12973), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12591), 15, + ACTIONS(12975), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310176,24 +315621,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [280609] = 3, - ACTIONS(71), 1, + [286100] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12668), 6, + ACTIONS(12987), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12670), 15, + ACTIONS(12989), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310202,54 +315647,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [280638] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12678), 1, - anon_sym_LT_LT_LT, - ACTIONS(12680), 1, - sym_file_descriptor, - ACTIONS(11349), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(12676), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12674), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5295), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11355), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12672), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [280679] = 5, - ACTIONS(71), 1, + [286129] = 5, + ACTIONS(73), 1, sym_comment, - STATE(5403), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12587), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5593), 7, + ACTIONS(12991), 1, + sym__special_character, + STATE(5422), 1, + aux_sym__literal_repeat1, + ACTIONS(5899), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310257,7 +315669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5595), 11, + ACTIONS(5901), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310269,15 +315681,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [280712] = 5, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [286162] = 3, + ACTIONS(73), 1, sym_comment, - STATE(5403), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12587), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4577), 7, + ACTIONS(1332), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310285,8 +315693,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4579), 11, + ACTIONS(1334), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -310297,15 +315706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [280745] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5337), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12587), 2, - sym__concat, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(4593), 7, + [286191] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1340), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310313,8 +315719,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4595), 11, + ACTIONS(1342), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -310325,15 +315732,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [280778] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5381), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12573), 2, - sym__concat, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(5587), 7, + [286220] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12991), 1, + sym__special_character, + STATE(5422), 1, + aux_sym__literal_repeat1, + ACTIONS(4971), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310341,29 +315749,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5589), 11, + ACTIONS(4973), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [280811] = 3, - ACTIONS(71), 1, + [286253] = 9, + ACTIONS(73), 1, + sym_comment, + ACTIONS(13002), 1, + anon_sym_LT_LT_LT, + ACTIONS(13005), 1, + sym_file_descriptor, + ACTIONS(11645), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(12999), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12996), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5317), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11653), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(12993), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [286294] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12358), 6, + ACTIONS(12908), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12360), 15, + ACTIONS(12910), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310372,50 +315813,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [280840] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5382), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12573), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2167), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2169), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [280873] = 5, - ACTIONS(71), 1, + [286323] = 3, + ACTIONS(73), 1, sym_comment, - STATE(5353), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12422), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5165), 7, + ACTIONS(1320), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310423,36 +315831,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5167), 11, + ACTIONS(1322), 14, sym_file_descriptor, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [280906] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5337), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12587), 2, sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2171), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2173), 11, - sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -310463,80 +315844,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [280939] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5354), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12422), 2, - sym__concat, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(5173), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5175), 11, - sym_file_descriptor, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [280972] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4323), 1, - anon_sym_PIPE_AMP, - ACTIONS(6012), 1, - anon_sym_LT_LT, - ACTIONS(6014), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7280), 1, - anon_sym_RBRACK, - ACTIONS(12682), 1, - sym_file_descriptor, - ACTIONS(6010), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12387), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12385), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5369), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12383), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [281019] = 3, - ACTIONS(71), 1, + [286352] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12684), 6, + ACTIONS(13008), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12686), 15, + ACTIONS(13010), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310545,24 +315865,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281048] = 3, - ACTIONS(71), 1, + [286381] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1376), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1378), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [286410] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12684), 6, + ACTIONS(12979), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12686), 15, + ACTIONS(12981), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310571,21 +315917,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281077] = 5, - ACTIONS(71), 1, + [286439] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12688), 1, + ACTIONS(12991), 1, sym__special_character, - STATE(5355), 1, + STATE(5422), 1, aux_sym__literal_repeat1, - ACTIONS(5587), 7, + ACTIONS(5044), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310593,7 +315939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5589), 12, + ACTIONS(5046), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310606,15 +315952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [281110] = 5, - ACTIONS(71), 1, + [286472] = 3, + ACTIONS(73), 1, sym_comment, - STATE(5381), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12573), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5593), 7, + ACTIONS(1372), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310622,27 +315963,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5595), 11, + ACTIONS(1374), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [281143] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5382), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12573), 2, - sym__concat, aux_sym_concatenation_token1, - ACTIONS(2171), 7, + [286501] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(13012), 1, + sym_variable_name, + STATE(6826), 1, + sym_subscript, + STATE(5345), 2, + sym_variable_assignment, + aux_sym_variable_assignments_repeat1, + ACTIONS(11677), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -310650,7 +315996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2173), 11, + ACTIONS(11679), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -310661,18 +316007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [281176] = 3, - ACTIONS(71), 1, + [286536] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12690), 6, + ACTIONS(12914), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12692), 15, + ACTIONS(12916), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310681,24 +316026,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281205] = 3, - ACTIONS(71), 1, + [286565] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12690), 6, + ACTIONS(13014), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12692), 15, + ACTIONS(13016), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310707,24 +316052,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281234] = 3, - ACTIONS(71), 1, + [286594] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12694), 6, + ACTIONS(12914), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12696), 15, + ACTIONS(12916), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310733,24 +316078,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281263] = 3, - ACTIONS(71), 1, + [286623] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12694), 6, + ACTIONS(13018), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12696), 15, + ACTIONS(13020), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310759,24 +316104,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281292] = 3, - ACTIONS(71), 1, + [286652] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12694), 6, + ACTIONS(12872), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12696), 15, + ACTIONS(12874), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310785,50 +316130,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281321] = 3, - ACTIONS(71), 1, + [286681] = 10, + ACTIONS(73), 1, sym_comment, - ACTIONS(12694), 6, - anon_sym_LPAREN, + ACTIONS(11728), 1, + anon_sym_PIPE, + ACTIONS(13025), 1, + anon_sym_LT_LT, + ACTIONS(13034), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13037), 1, + sym_file_descriptor, + ACTIONS(13031), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13028), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5331), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11739), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + ACTIONS(13022), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [286724] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(5403), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12799), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5899), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5901), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [286757] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(13040), 1, + sym__special_character, + STATE(5333), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 5, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12696), 15, + ACTIONS(1396), 14, sym_test_operator, - sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281350] = 3, - ACTIONS(71), 1, + [286790] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12690), 6, + ACTIONS(13043), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12692), 15, + ACTIONS(13045), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310837,24 +316245,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281379] = 3, - ACTIONS(71), 1, + [286819] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12690), 6, + ACTIONS(12845), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12692), 15, + ACTIONS(12847), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310863,64 +316271,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281408] = 10, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11398), 1, - anon_sym_PIPE, - ACTIONS(12701), 1, - anon_sym_LT_LT, - ACTIONS(12710), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12713), 1, - sym_file_descriptor, - ACTIONS(12707), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12704), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5279), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11409), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - ACTIONS(12698), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [281451] = 5, + [286848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(12195), 1, + ACTIONS(12617), 1, sym__special_character, - STATE(4990), 1, + STATE(5071), 1, aux_sym__literal_repeat1, - ACTIONS(12306), 3, + ACTIONS(12670), 3, sym_test_operator, sym__brace_start, aux_sym_heredoc_redirect_token1, - ACTIONS(12304), 16, + ACTIONS(12668), 16, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, aux_sym_number_token1, aux_sym_number_token2, @@ -310931,17 +316306,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, sym_word, - [281484] = 3, - ACTIONS(71), 1, + [286881] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(5403), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12799), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5905), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(5907), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [286914] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(5405), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12799), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(2158), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(2160), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [286947] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12410), 6, + ACTIONS(13047), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12412), 15, + ACTIONS(13049), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310950,24 +316381,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281513] = 3, - ACTIONS(71), 1, + [286976] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1356), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1358), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [287005] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12364), 6, + ACTIONS(13047), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12366), 15, + ACTIONS(13049), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -310976,24 +316433,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281542] = 3, - ACTIONS(71), 1, + [287034] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12432), 6, + ACTIONS(12689), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12434), 15, + ACTIONS(12691), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311002,94 +316459,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281571] = 12, - ACTIONS(71), 1, + [287063] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(4499), 1, anon_sym_PIPE, - ACTIONS(4323), 1, + ACTIONS(4508), 1, anon_sym_PIPE_AMP, - ACTIONS(6012), 1, + ACTIONS(6248), 1, anon_sym_LT_LT, - ACTIONS(6014), 1, + ACTIONS(6250), 1, anon_sym_LT_LT_DASH, - ACTIONS(7386), 1, + ACTIONS(7687), 1, anon_sym_RBRACK, - ACTIONS(12682), 1, + ACTIONS(13051), 1, sym_file_descriptor, - ACTIONS(6010), 2, + ACTIONS(6246), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12387), 2, + ACTIONS(12705), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12385), 3, + ACTIONS(12703), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5369), 3, + STATE(5385), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12383), 5, + ACTIONS(12701), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [281618] = 12, - ACTIONS(71), 1, + [287110] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4323), 1, - anon_sym_PIPE_AMP, - ACTIONS(6012), 1, + ACTIONS(11846), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13053), 1, + sym_file_descriptor, + ACTIONS(5166), 2, anon_sym_LT_LT, - ACTIONS(6014), 1, anon_sym_LT_LT_DASH, - ACTIONS(7454), 1, - anon_sym_RBRACK, - ACTIONS(12682), 1, - sym_file_descriptor, - ACTIONS(6010), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12387), 2, + ACTIONS(12637), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12385), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5369), 3, + STATE(5365), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12383), 5, + ACTIONS(11844), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12635), 8, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [281665] = 6, - ACTIONS(71), 1, + anon_sym_GT_PIPE, + [287149] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(12716), 1, + ACTIONS(13055), 1, sym_variable_name, - STATE(6769), 1, + STATE(6826), 1, sym_subscript, - STATE(5286), 2, + STATE(5345), 2, sym_variable_assignment, aux_sym_variable_assignments_repeat1, - ACTIONS(11292), 7, + ACTIONS(11705), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311097,7 +316550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11294), 10, + ACTIONS(11707), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -311108,17 +316561,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [281700] = 3, - ACTIONS(71), 1, + [287184] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12426), 6, + ACTIONS(13014), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12428), 15, + ACTIONS(13016), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311127,59 +316580,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281729] = 12, - ACTIONS(71), 1, + [287213] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(12951), 1, + aux_sym_concatenation_token1, + ACTIONS(13058), 1, + sym__concat, + STATE(5358), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 7, anon_sym_PIPE, - ACTIONS(4323), 1, - anon_sym_PIPE_AMP, - ACTIONS(6012), 1, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(6014), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7426), 1, - anon_sym_RBRACK, - ACTIONS(12682), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1296), 11, sym_file_descriptor, - ACTIONS(6010), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12387), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12385), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5369), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12383), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [281776] = 3, - ACTIONS(71), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [287248] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12619), 6, + ACTIONS(12837), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12621), 15, + ACTIONS(12839), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311188,24 +316635,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281805] = 3, - ACTIONS(71), 1, + [287277] = 12, + ACTIONS(73), 1, + sym_comment, + ACTIONS(4499), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_PIPE_AMP, + ACTIONS(6248), 1, + anon_sym_LT_LT, + ACTIONS(6250), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7705), 1, + anon_sym_RBRACK, + ACTIONS(13051), 1, + sym_file_descriptor, + ACTIONS(6246), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12705), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12703), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5385), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12701), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [287324] = 12, + ACTIONS(73), 1, + sym_comment, + ACTIONS(4499), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_PIPE_AMP, + ACTIONS(6248), 1, + anon_sym_LT_LT, + ACTIONS(6250), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7485), 1, + anon_sym_RBRACK, + ACTIONS(13051), 1, + sym_file_descriptor, + ACTIONS(6246), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12705), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12703), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5385), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12701), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [287371] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12951), 1, + aux_sym_concatenation_token1, + ACTIONS(13060), 1, + sym__concat, + STATE(5358), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1316), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [287406] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1380), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1382), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [287435] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12575), 6, + ACTIONS(13062), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12577), 15, + ACTIONS(13064), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311214,24 +316786,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281834] = 3, - ACTIONS(71), 1, + [287464] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12575), 6, + ACTIONS(13043), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12577), 15, + ACTIONS(13045), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311240,24 +316812,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281863] = 3, - ACTIONS(71), 1, + [287493] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12364), 6, + ACTIONS(13066), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12366), 15, + ACTIONS(13068), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311266,24 +316838,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281892] = 3, - ACTIONS(71), 1, + [287522] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12375), 6, + ACTIONS(13066), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12377), 15, + ACTIONS(13068), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311292,24 +316864,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281921] = 3, - ACTIONS(71), 1, + [287551] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12627), 6, + ACTIONS(12695), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12629), 15, + ACTIONS(12697), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311318,56 +316890,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [281950] = 9, - ACTIONS(71), 1, + [287580] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12728), 1, - anon_sym_LT_LT_LT, - ACTIONS(12731), 1, - sym_file_descriptor, - ACTIONS(11365), 2, + STATE(5358), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13070), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 7, anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(12725), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12722), 3, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1306), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5295), 3, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [287613] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11842), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(12639), 1, + anon_sym_LT_LT_LT, + ACTIONS(13073), 1, + sym_file_descriptor, + ACTIONS(12637), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5003), 2, sym_file_redirect, sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(11373), 4, + ACTIONS(11840), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(12719), 5, + ACTIONS(12635), 8, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [281991] = 3, - ACTIONS(71), 1, + anon_sym_GT_PIPE, + [287652] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12404), 6, + ACTIONS(13075), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12406), 15, + ACTIONS(13077), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311376,89 +316975,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282020] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11548), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12734), 1, - sym_file_descriptor, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(12326), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5301), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11546), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(12324), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [282059] = 8, - ACTIONS(3), 1, + [287681] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11466), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12328), 1, - anon_sym_LT_LT_LT, - ACTIONS(12736), 1, - sym_file_descriptor, - ACTIONS(12326), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(4968), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(11464), 6, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12324), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [282098] = 5, + ACTIONS(12753), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12755), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [287710] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4310), 2, + ACTIONS(4499), 2, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(4327), 2, + ACTIONS(4501), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5297), 3, + STATE(5344), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 14, + ACTIONS(4497), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -311473,17 +317036,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282131] = 4, + [287743] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(13079), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13081), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [287772] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4327), 2, + ACTIONS(4501), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - STATE(5297), 3, + STATE(5344), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 16, + ACTIONS(4497), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, @@ -311500,29 +317089,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [282162] = 8, + [287803] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11409), 1, + ACTIONS(11739), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12744), 1, + ACTIONS(13089), 1, sym_file_descriptor, - ACTIONS(11904), 2, + ACTIONS(12109), 2, anon_sym_LT_LT, anon_sym_LT_LT_DASH, - ACTIONS(12741), 2, + ACTIONS(13086), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5301), 3, + STATE(5365), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11398), 4, + ACTIONS(11728), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_PIPE_AMP, - ACTIONS(12738), 8, + ACTIONS(13083), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -311531,29 +317120,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [282201] = 8, + [287842] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11416), 1, + ACTIONS(11853), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12328), 1, + ACTIONS(12639), 1, anon_sym_LT_LT_LT, - ACTIONS(12736), 1, + ACTIONS(13073), 1, sym_file_descriptor, - ACTIONS(12326), 2, + ACTIONS(12637), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4976), 2, + STATE(4939), 2, sym_file_redirect, sym_herestring_redirect, - ACTIONS(11414), 6, + ACTIONS(11851), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(12324), 8, + ACTIONS(12635), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -311562,29 +317151,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [282240] = 8, + [287881] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(11450), 1, + ACTIONS(11722), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12328), 1, + ACTIONS(12639), 1, anon_sym_LT_LT_LT, - ACTIONS(12736), 1, + ACTIONS(13073), 1, sym_file_descriptor, - ACTIONS(12326), 2, + ACTIONS(12637), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(4998), 2, + STATE(4964), 2, sym_file_redirect, sym_herestring_redirect, - ACTIONS(11448), 6, + ACTIONS(11720), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - ACTIONS(12324), 8, + ACTIONS(12635), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -311593,112 +317182,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [282279] = 9, + [287920] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 1, + ACTIONS(7916), 1, + aux_sym_number_token1, + ACTIONS(7918), 1, + aux_sym_number_token2, + ACTIONS(12803), 1, + anon_sym_LPAREN, + ACTIONS(12807), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12811), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12815), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12817), 1, + anon_sym_BQUOTE, + ACTIONS(12819), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13092), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12734), 1, - sym_file_descriptor, - ACTIONS(4310), 2, + ACTIONS(13094), 1, + anon_sym_COLON, + ACTIONS(13096), 1, + anon_sym_RBRACE3, + ACTIONS(13098), 1, + aux_sym__simple_variable_name_token1, + STATE(6296), 1, + sym__expansion_max_length_binary_expression, + STATE(6476), 1, + sym__expansion_max_length_expression, + ACTIONS(12801), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6286), 2, + sym_number, + sym_expansion, + STATE(6807), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [287979] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12711), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12713), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [288008] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12991), 1, + sym__special_character, + STATE(5422), 1, + aux_sym__literal_repeat1, + ACTIONS(5905), 7, anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5836), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12326), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5297), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12324), 8, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(5907), 12, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [282320] = 12, - ACTIONS(71), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [288041] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(4499), 1, anon_sym_PIPE, - ACTIONS(4323), 1, + ACTIONS(4508), 1, anon_sym_PIPE_AMP, - ACTIONS(6012), 1, + ACTIONS(6248), 1, anon_sym_LT_LT, - ACTIONS(6014), 1, + ACTIONS(6250), 1, anon_sym_LT_LT_DASH, - ACTIONS(7462), 1, + ACTIONS(7587), 1, anon_sym_RBRACK, - ACTIONS(12682), 1, + ACTIONS(13051), 1, sym_file_descriptor, - ACTIONS(6010), 2, + ACTIONS(6246), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12387), 2, + ACTIONS(12705), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12385), 3, + ACTIONS(12703), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5369), 3, + STATE(5385), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12383), 5, + ACTIONS(12701), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [282367] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12747), 1, - sym__special_character, - STATE(5306), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1362), 14, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [282400] = 3, - ACTIONS(71), 1, + [288088] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12595), 6, + ACTIONS(12785), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12597), 15, + ACTIONS(12787), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311707,24 +317331,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282429] = 3, - ACTIONS(71), 1, + [288117] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12543), 6, + ACTIONS(13043), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12545), 15, + ACTIONS(13045), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311733,21 +317357,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282458] = 5, - ACTIONS(71), 1, + [288146] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12688), 1, - sym__special_character, - STATE(5355), 1, - aux_sym__literal_repeat1, - ACTIONS(5593), 7, + ACTIONS(1368), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -311755,8 +317375,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5595), 12, + ACTIONS(1370), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -311768,43 +317389,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [282491] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [288175] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12543), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12545), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [282520] = 3, - ACTIONS(71), 1, + ACTIONS(1384), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1386), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [288204] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1370), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [288233] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12404), 6, + ACTIONS(12785), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12406), 15, + ACTIONS(12787), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311813,24 +317461,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282549] = 3, - ACTIONS(71), 1, + [288262] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12350), 6, + ACTIONS(13100), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12352), 15, + ACTIONS(13102), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311839,24 +317487,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282578] = 3, - ACTIONS(71), 1, + [288291] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12350), 6, + ACTIONS(13043), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12352), 15, + ACTIONS(13045), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311865,24 +317513,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282607] = 3, - ACTIONS(71), 1, + [288320] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12375), 6, + ACTIONS(13104), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12377), 15, + ACTIONS(13106), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311891,24 +317539,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282636] = 3, - ACTIONS(71), 1, + [288349] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12450), 6, + ACTIONS(13047), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12452), 15, + ACTIONS(13049), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311917,24 +317565,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282665] = 3, - ACTIONS(71), 1, + [288378] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12438), 6, + ACTIONS(13108), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12440), 15, + ACTIONS(13110), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311943,24 +317591,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282694] = 3, - ACTIONS(71), 1, + [288407] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12750), 6, + ACTIONS(13108), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12752), 15, + ACTIONS(13110), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -311969,56 +317617,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282723] = 9, - ACTIONS(3), 1, + [288436] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(5843), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12734), 1, - sym_file_descriptor, - ACTIONS(4310), 2, + ACTIONS(4499), 1, anon_sym_PIPE, + ACTIONS(4508), 1, anon_sym_PIPE_AMP, - ACTIONS(4705), 2, + ACTIONS(6248), 1, anon_sym_LT_LT, + ACTIONS(6250), 1, anon_sym_LT_LT_DASH, - ACTIONS(5836), 2, + ACTIONS(7703), 1, + anon_sym_RBRACK, + ACTIONS(13051), 1, + sym_file_descriptor, + ACTIONS(6246), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12326), 2, + ACTIONS(12705), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5297), 3, + ACTIONS(12703), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5385), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12324), 8, + ACTIONS(12701), 5, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + [288483] = 10, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6248), 1, + anon_sym_LT_LT, + ACTIONS(6250), 1, + anon_sym_LT_LT_DASH, + ACTIONS(11844), 1, + anon_sym_PIPE, + ACTIONS(13051), 1, + sym_file_descriptor, + ACTIONS(12705), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12703), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [282764] = 3, - ACTIONS(71), 1, + STATE(5331), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11846), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + ACTIONS(12701), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [288526] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12754), 6, + ACTIONS(13108), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12756), 15, + ACTIONS(13110), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312027,24 +317711,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282793] = 3, - ACTIONS(71), 1, + [288555] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12754), 6, + ACTIONS(13108), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12756), 15, + ACTIONS(13110), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312053,180 +317737,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282822] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4323), 1, - anon_sym_PIPE_AMP, - ACTIONS(6012), 1, - anon_sym_LT_LT, - ACTIONS(6014), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7492), 1, - anon_sym_RBRACK, - ACTIONS(12682), 1, - sym_file_descriptor, - ACTIONS(6010), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12387), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12385), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5369), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12383), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [282869] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(12758), 1, - sym__concat, - STATE(4287), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [282904] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(12760), 1, - sym__concat, - STATE(4287), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [282939] = 5, - ACTIONS(71), 1, + [288584] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12762), 1, - sym__special_character, - STATE(5306), 1, - aux_sym__literal_repeat1, - ACTIONS(5315), 5, + ACTIONS(12831), 6, + anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(5317), 14, + ACTIONS(12833), 15, sym_test_operator, + sym_extglob_pattern, sym__brace_start, anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, + sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [282972] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4323), 1, - anon_sym_PIPE_AMP, - ACTIONS(6012), 1, - anon_sym_LT_LT, - ACTIONS(6014), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7502), 1, - anon_sym_RBRACK, - ACTIONS(12682), 1, - sym_file_descriptor, - ACTIONS(6010), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12387), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12385), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5369), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12383), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [283019] = 3, - ACTIONS(71), 1, + [288613] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12438), 6, + ACTIONS(13112), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12440), 15, + ACTIONS(13114), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312235,24 +317789,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283048] = 3, - ACTIONS(71), 1, + [288642] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12450), 6, + ACTIONS(12987), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12452), 15, + ACTIONS(12989), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312261,80 +317815,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283077] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5403), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12587), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5587), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(5589), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [283110] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5337), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12587), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2167), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(2169), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [283143] = 3, - ACTIONS(71), 1, + [288671] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12764), 6, + ACTIONS(12872), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12766), 15, + ACTIONS(12874), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312343,24 +317841,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283172] = 3, - ACTIONS(71), 1, + [288700] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12768), 6, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(13116), 1, + sym__concat, + STATE(4342), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1294), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [288735] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(13018), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12770), 15, + ACTIONS(13020), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312369,24 +317896,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283201] = 3, - ACTIONS(71), 1, + [288764] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(13118), 1, + sym__concat, + STATE(4342), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1314), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [288799] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12772), 6, + ACTIONS(13018), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12774), 15, + ACTIONS(13020), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312395,24 +317951,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283230] = 3, - ACTIONS(71), 1, + [288828] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12776), 6, + ACTIONS(13014), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12778), 15, + ACTIONS(13016), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312421,24 +317977,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283259] = 3, - ACTIONS(71), 1, + [288857] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12776), 6, + ACTIONS(13066), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12778), 15, + ACTIONS(13068), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312447,52 +318003,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283288] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5337), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12587), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4511), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4513), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [283321] = 3, - ACTIONS(71), 1, + [288886] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12776), 6, + ACTIONS(13066), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12778), 15, + ACTIONS(13068), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312501,23 +318029,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283350] = 6, - ACTIONS(71), 1, + [288915] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(12587), 1, + ACTIONS(12717), 1, aux_sym_concatenation_token1, - ACTIONS(12780), 1, + ACTIONS(13120), 1, sym__concat, - STATE(5339), 1, + STATE(5457), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 7, + ACTIONS(1294), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312525,29 +318053,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1288), 11, + ACTIONS(1296), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283385] = 3, - ACTIONS(71), 1, + [288950] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12776), 6, + ACTIONS(12711), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12778), 15, + ACTIONS(12713), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -312556,22 +318084,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [283414] = 5, - ACTIONS(71), 1, + [288979] = 5, + ACTIONS(73), 1, sym_comment, - STATE(5339), 1, + STATE(5347), 1, aux_sym_concatenation_repeat1, - ACTIONS(12782), 2, + ACTIONS(12951), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1276), 7, + ACTIONS(5905), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312579,7 +318107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 11, + ACTIONS(5907), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -312591,14 +318119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283447] = 5, - ACTIONS(71), 1, + [289012] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12688), 1, - sym__special_character, - STATE(5355), 1, - aux_sym__literal_repeat1, - ACTIONS(4426), 7, + STATE(5533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13122), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312606,110 +318135,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4428), 12, + ACTIONS(1302), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [283480] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12754), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12756), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [283509] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12754), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12756), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [283538] = 12, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4310), 1, - anon_sym_PIPE, - ACTIONS(4323), 1, - anon_sym_PIPE_AMP, - ACTIONS(6012), 1, - anon_sym_LT_LT, - ACTIONS(6014), 1, - anon_sym_LT_LT_DASH, - ACTIONS(7496), 1, - anon_sym_RBRACK, - ACTIONS(12682), 1, - sym_file_descriptor, - ACTIONS(6010), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12387), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12385), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5369), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12383), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [283585] = 3, - ACTIONS(71), 1, + [289045] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(12799), 1, + aux_sym_concatenation_token1, + ACTIONS(13124), 1, + sym__concat, + STATE(5410), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312717,51 +318164,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 14, + ACTIONS(1296), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283614] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12785), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12787), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [283643] = 3, - ACTIONS(71), 1, + [289080] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 7, + ACTIONS(12717), 1, + aux_sym_concatenation_token1, + ACTIONS(13126), 1, + sym__concat, + STATE(5457), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312769,25 +318193,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 14, + ACTIONS(1316), 11, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283672] = 3, - ACTIONS(71), 1, + [289115] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(12799), 1, + aux_sym_concatenation_token1, + ACTIONS(13128), 1, + sym__concat, + STATE(5410), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312795,51 +318222,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 14, + ACTIONS(1316), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283701] = 3, - ACTIONS(71), 1, + [289150] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1310), 14, - sym_file_descriptor, + STATE(5351), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12951), 2, sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [283730] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1312), 7, + ACTIONS(2158), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312847,9 +318250,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 14, + ACTIONS(2160), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -312860,53 +318262,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283759] = 18, - ACTIONS(3), 1, + [289183] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7794), 1, + ACTIONS(12695), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, aux_sym_number_token1, - ACTIONS(7796), 1, aux_sym_number_token2, - ACTIONS(12553), 1, - anon_sym_LPAREN, - ACTIONS(12557), 1, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12697), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, - ACTIONS(12561), 1, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, - ACTIONS(12565), 1, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [289212] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(13018), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(12567), 1, + sym_word, + ACTIONS(13020), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(12569), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(12789), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12791), 1, - anon_sym_COLON, - ACTIONS(12793), 1, - anon_sym_RBRACE3, - ACTIONS(12795), 1, - aux_sym__simple_variable_name_token1, - STATE(6214), 1, - sym__expansion_max_length_binary_expression, - STATE(6452), 1, - sym__expansion_max_length_expression, - ACTIONS(12551), 2, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [289241] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(13014), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(13016), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6218), 2, - sym_number, - sym_expansion, - STATE(6755), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [283818] = 3, - ACTIONS(71), 1, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [289270] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 7, + STATE(5410), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13130), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312914,57 +318356,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 14, + ACTIONS(1306), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283847] = 3, - ACTIONS(71), 1, + [289303] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(4499), 1, anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_PIPE_AMP, + ACTIONS(6248), 1, + anon_sym_LT_LT, + ACTIONS(6250), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7577), 1, + anon_sym_RBRACK, + ACTIONS(13051), 1, + sym_file_descriptor, + ACTIONS(6246), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12705), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12703), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5385), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12701), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 14, + [289350] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12719), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12721), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [289379] = 12, + ACTIONS(73), 1, + sym_comment, + ACTIONS(4499), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_PIPE_AMP, + ACTIONS(6248), 1, + anon_sym_LT_LT, + ACTIONS(6250), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7713), 1, + anon_sym_RBRACK, + ACTIONS(13051), 1, sym_file_descriptor, - sym__concat, + ACTIONS(6246), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(12705), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12703), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [283876] = 6, - ACTIONS(71), 1, + STATE(5385), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12701), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [289426] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12422), 1, - aux_sym_concatenation_token1, - ACTIONS(12797), 1, - sym__concat, - STATE(5356), 1, + ACTIONS(12987), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12989), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [289455] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(5403), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 7, + ACTIONS(12799), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4971), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -312972,9 +318506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1268), 11, + ACTIONS(4973), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -312984,16 +318517,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283911] = 6, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [289488] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12422), 1, - aux_sym_concatenation_token1, - ACTIONS(12799), 1, - sym__concat, - STATE(5356), 1, + STATE(5405), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 7, + ACTIONS(12799), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5015), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313001,9 +318534,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1288), 11, + ACTIONS(5017), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -313013,14 +318545,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [283946] = 5, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [289521] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12801), 1, - sym__special_character, - STATE(5355), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 7, + STATE(5347), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12951), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4971), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313028,7 +318562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1362), 12, + ACTIONS(4973), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -313040,16 +318574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [283979] = 5, - ACTIONS(71), 1, + [289554] = 5, + ACTIONS(73), 1, sym_comment, - STATE(5356), 1, + STATE(5351), 1, aux_sym_concatenation_repeat1, - ACTIONS(12804), 2, + ACTIONS(12951), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1276), 7, + ACTIONS(5015), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313057,27 +318590,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 11, + ACTIONS(5017), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284012] = 5, - ACTIONS(71), 1, + [289587] = 3, + ACTIONS(73), 1, sym_comment, - STATE(5381), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12573), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4426), 7, + ACTIONS(12719), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12721), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [289616] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1344), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313085,27 +318639,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4428), 11, + ACTIONS(1346), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [284045] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5382), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12573), 2, - sym__concat, aux_sym_concatenation_token1, - ACTIONS(4511), 7, + [289645] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1388), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313113,26 +318665,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4513), 11, + ACTIONS(1390), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [284078] = 5, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [289674] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12688), 1, + ACTIONS(13133), 1, sym__special_character, - STATE(5355), 1, + STATE(5422), 1, aux_sym__literal_repeat1, - ACTIONS(4577), 7, + ACTIONS(1394), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313140,7 +318695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4579), 12, + ACTIONS(1396), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -313153,10 +318708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [284111] = 3, - ACTIONS(71), 1, + [289707] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 7, + ACTIONS(1324), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313164,7 +318719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1322), 14, + ACTIONS(1326), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -313179,10 +318734,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284140] = 3, - ACTIONS(71), 1, + [289736] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 7, + ACTIONS(1348), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313190,7 +318745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1326), 14, + ACTIONS(1350), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -313205,10 +318760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284169] = 3, - ACTIONS(71), 1, + [289765] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313216,7 +318771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1330), 14, + ACTIONS(1306), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -313231,10 +318786,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284198] = 3, - ACTIONS(71), 1, + [289794] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 7, + ACTIONS(12845), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12847), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [289823] = 12, + ACTIONS(73), 1, + sym_comment, + ACTIONS(4499), 1, + anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_PIPE_AMP, + ACTIONS(6248), 1, + anon_sym_LT_LT, + ACTIONS(6250), 1, + anon_sym_LT_LT_DASH, + ACTIONS(7631), 1, + anon_sym_RBRACK, + ACTIONS(13051), 1, + sym_file_descriptor, + ACTIONS(6246), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12705), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12703), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5385), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12701), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [289870] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313242,7 +318858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1334), 14, + ACTIONS(1354), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -313257,10 +318873,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284227] = 3, - ACTIONS(71), 1, + [289899] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 7, + ACTIONS(12683), 6, + anon_sym_LPAREN, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(12685), 15, + sym_test_operator, + sym_extglob_pattern, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [289928] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(5347), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12951), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5044), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313268,9 +318915,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1338), 14, + ACTIONS(5046), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -313281,12 +318927,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [284256] = 3, - ACTIONS(71), 1, + [289961] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 7, + STATE(5351), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12951), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5048), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313294,9 +318943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1342), 14, + ACTIONS(5050), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -313307,12 +318955,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [284285] = 3, - ACTIONS(71), 1, + [289994] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(1360), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313320,7 +318966,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 14, + ACTIONS(1362), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -313335,10 +318981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284314] = 3, - ACTIONS(71), 1, + [290023] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 7, + STATE(5403), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12799), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5044), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313346,25 +318997,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1350), 14, + ACTIONS(5046), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [284343] = 3, - ACTIONS(71), 1, + [290056] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 7, + STATE(5405), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12799), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5048), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313372,58 +319025,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1354), 14, + ACTIONS(5050), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [284372] = 10, - ACTIONS(71), 1, + [290089] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(6012), 1, - anon_sym_LT_LT, - ACTIONS(6014), 1, - anon_sym_LT_LT_DASH, - ACTIONS(11546), 1, - anon_sym_PIPE, - ACTIONS(12682), 1, - sym_file_descriptor, - ACTIONS(12387), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12385), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5279), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11548), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - ACTIONS(12383), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [284415] = 3, - ACTIONS(71), 1, + ACTIONS(13136), 1, + sym__special_character, + STATE(5333), 1, + aux_sym__literal_repeat1, + ACTIONS(5440), 5, + anon_sym_DOLLAR, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LPAREN, + sym_word, + ACTIONS(5442), 14, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + [290122] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 7, + STATE(5399), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12717), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5493), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313431,25 +319081,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1358), 14, + ACTIONS(5495), 11, sym_file_descriptor, - sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [284444] = 3, - ACTIONS(71), 1, + [290155] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 7, + ACTIONS(1364), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313457,7 +319104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1346), 14, + ACTIONS(1366), 14, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -313472,10 +319119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [284473] = 3, - ACTIONS(71), 1, + [290184] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 7, + STATE(5347), 1, + aux_sym_concatenation_repeat1, + ACTIONS(12951), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5899), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313483,9 +319135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1358), 14, + ACTIONS(5901), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -313496,69 +319147,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [284502] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12684), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12686), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [284531] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12684), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12686), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [284560] = 5, - ACTIONS(71), 1, + [290217] = 5, + ACTIONS(73), 1, sym_comment, - STATE(5381), 1, + STATE(5351), 1, aux_sym_concatenation_repeat1, - ACTIONS(12573), 2, + ACTIONS(12951), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4577), 7, + ACTIONS(2154), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313566,27 +319163,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4579), 11, + ACTIONS(2156), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [284593] = 5, - ACTIONS(71), 1, + [290250] = 5, + ACTIONS(73), 1, sym_comment, - STATE(5382), 1, + STATE(5404), 1, aux_sym_concatenation_repeat1, - ACTIONS(12573), 2, + ACTIONS(12717), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4593), 7, + ACTIONS(5499), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313594,8 +319191,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4595), 11, + ACTIONS(5501), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -313605,18 +319203,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [284626] = 6, - ACTIONS(71), 1, + [290283] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12807), 1, - sym_variable_name, - STATE(6769), 1, - sym_subscript, - STATE(5286), 2, - sym_variable_assignment, - aux_sym_variable_assignments_repeat1, - ACTIONS(11307), 7, + ACTIONS(1328), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -313624,220 +319214,331 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11309), 10, + ACTIONS(1330), 14, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [284661] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [290312] = 12, + ACTIONS(73), 1, sym_comment, - ACTIONS(12809), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12811), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, + ACTIONS(7910), 1, anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(7912), 1, + anon_sym_SQUOTE, + ACTIONS(7920), 1, anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [284690] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12809), 6, + ACTIONS(12654), 1, anon_sym_LPAREN, + ACTIONS(12656), 1, anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, + ACTIONS(12660), 1, anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12811), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, + ACTIONS(12662), 1, anon_sym_BQUOTE, + ACTIONS(12664), 1, anon_sym_DOLLAR_BQUOTE, + ACTIONS(7930), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [284719] = 5, - ACTIONS(71), 1, + ACTIONS(13138), 4, + sym_variable_name, + sym__expansion_word, + sym_ansi_c_string, + sym_word, + STATE(6566), 7, + sym_string, + sym_array, + sym_raw_string, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + sym_process_substitution, + [290359] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5475), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12813), 2, - sym__concat, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(1272), 7, + ACTIONS(11883), 1, + sym__concat, + STATE(5392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5901), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5899), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [290394] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(5394), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2156), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2154), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [284752] = 6, - ACTIONS(71), 1, + [290429] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(12815), 1, + ACTIONS(11883), 1, sym__concat, - STATE(5384), 1, + STATE(5392), 1, aux_sym_concatenation_repeat1, - ACTIONS(1266), 7, + ACTIONS(4973), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(4971), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1268), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [290464] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(5394), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5017), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5015), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [284787] = 6, - ACTIONS(71), 1, + [290499] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(12573), 1, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(12817), 1, + ACTIONS(11883), 1, sym__concat, - STATE(5384), 1, + STATE(5392), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 7, + ACTIONS(5907), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5905), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1288), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [290534] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(5394), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2158), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [284822] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12819), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12821), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [284851] = 5, - ACTIONS(71), 1, + [290569] = 6, + ACTIONS(3), 1, sym_comment, - STATE(5384), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12823), 2, - sym__concat, + ACTIONS(11881), 1, aux_sym_concatenation_token1, - ACTIONS(1276), 7, + ACTIONS(11883), 1, + sym__concat, + STATE(5392), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5046), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5044), 16, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 11, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [290604] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11881), 1, + aux_sym_concatenation_token1, + ACTIONS(11883), 1, + sym__concat, + STATE(5394), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5050), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5048), 16, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + [290639] = 9, + ACTIONS(73), 1, + sym_comment, + ACTIONS(13146), 1, anon_sym_LT_LT_LT, - [284884] = 3, - ACTIONS(71), 1, + ACTIONS(13148), 1, + sym_file_descriptor, + ACTIONS(11617), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(13144), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13142), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5317), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(11623), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(13140), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [290680] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12826), 6, + ACTIONS(12979), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12828), 15, + ACTIONS(12981), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -313846,24 +319547,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [284913] = 3, - ACTIONS(71), 1, + [290709] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6104), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13053), 1, + sym_file_descriptor, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6102), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12637), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5344), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12635), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [290750] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12826), 6, + ACTIONS(13047), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12828), 15, + ACTIONS(13049), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -313872,24 +319605,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [284942] = 3, - ACTIONS(71), 1, + [290779] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6111), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13053), 1, + sym_file_descriptor, + ACTIONS(4499), 2, + anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6102), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12637), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5344), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12635), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [290820] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12826), 6, + ACTIONS(12987), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12828), 15, + ACTIONS(12989), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -313898,24 +319663,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [284971] = 3, - ACTIONS(71), 1, + [290849] = 5, + ACTIONS(73), 1, + sym_comment, + STATE(5457), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13150), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1306), 11, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [290882] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1336), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1338), 14, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [290911] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12826), 6, + ACTIONS(12979), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12828), 15, + ACTIONS(12981), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -313924,24 +319743,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [285000] = 3, - ACTIONS(71), 1, + [290940] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12809), 6, + ACTIONS(12866), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12811), 15, + ACTIONS(12868), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -313950,24 +319769,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [285029] = 3, - ACTIONS(71), 1, + [290969] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12809), 6, + ACTIONS(12683), 6, anon_sym_LPAREN, anon_sym_DOLLAR, aux_sym_number_token1, aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, sym_word, - ACTIONS(12811), 15, + ACTIONS(12685), 15, sym_test_operator, sym_extglob_pattern, sym__brace_start, @@ -313976,306 +319795,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LBRACK, sym__special_character, anon_sym_DQUOTE, - sym_raw_string, + anon_sym_SQUOTE, sym_ansi_c_string, anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - [285058] = 6, - ACTIONS(3), 1, + [290998] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(5322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5589), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1320), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1322), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285093] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11604), 1, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(5323), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + [291026] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1320), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1322), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285128] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(5322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 2, + [291054] = 9, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12829), 1, + anon_sym_LT_LT_LT, + ACTIONS(13159), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 16, + ACTIONS(11840), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(13157), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5712), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(13155), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(11842), 4, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(13153), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [291094] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1340), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1342), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285163] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(5323), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4513), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + [291122] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1320), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1322), 13, + sym_file_descriptor, + sym__concat, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285198] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11604), 1, aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(5322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5595), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + [291150] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1344), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1346), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285233] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11604), 1, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(5323), 1, - aux_sym_concatenation_repeat1, - ACTIONS(2173), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + [291178] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(13161), 1, + sym__special_character, + STATE(5550), 1, + aux_sym__literal_repeat1, + ACTIONS(4971), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(4973), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285268] = 6, - ACTIONS(3), 1, + [291210] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11604), 1, - aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(5322), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4579), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1360), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1362), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285303] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11604), 1, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(11606), 1, - sym__concat, - STATE(5323), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 16, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + [291238] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1364), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1366), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285338] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [291266] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(12664), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, + ACTIONS(7916), 1, aux_sym_number_token1, + ACTIONS(7918), 1, aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12666), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, + ACTIONS(12803), 1, + anon_sym_LPAREN, + ACTIONS(12807), 1, anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, + ACTIONS(12811), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(12815), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12817), 1, anon_sym_BQUOTE, + ACTIONS(12819), 1, anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [285367] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12664), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12666), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, + ACTIONS(13163), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13165), 1, + anon_sym_RBRACE3, + ACTIONS(13167), 1, + aux_sym__simple_variable_name_token1, + STATE(6360), 1, + sym__expansion_max_length_binary_expression, + STATE(6476), 1, + sym__expansion_max_length_expression, + ACTIONS(12801), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [285396] = 5, - ACTIONS(71), 1, + STATE(6359), 2, + sym_number, + sym_expansion, + STATE(7326), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [291322] = 5, + ACTIONS(73), 1, sym_comment, - STATE(5403), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12587), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4426), 7, + ACTIONS(13161), 1, + sym__special_character, + STATE(5550), 1, + aux_sym__literal_repeat1, + ACTIONS(5044), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314283,7 +320089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4428), 11, + ACTIONS(5046), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -314295,42 +320101,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285429] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12664), 6, - anon_sym_LPAREN, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(12666), 15, - sym_test_operator, - sym_extglob_pattern, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [285458] = 6, - ACTIONS(71), 1, + [291354] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12587), 1, - aux_sym_concatenation_token1, - ACTIONS(12830), 1, - sym__concat, - STATE(5339), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314338,22 +320112,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1268), 11, + ACTIONS(1358), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285493] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [291382] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 7, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314361,7 +320137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1346), 13, + ACTIONS(1354), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -314375,10 +320151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [285521] = 3, - ACTIONS(71), 1, + [291410] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 7, + ACTIONS(13169), 1, + sym__special_character, + STATE(5479), 1, + aux_sym__literal_repeat1, + ACTIONS(5493), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314386,9 +320166,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1358), 13, + ACTIONS(5495), 11, sym_file_descriptor, - sym__concat, sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -314399,43 +320178,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [285549] = 6, - ACTIONS(71), 1, + [291442] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(1372), 7, anon_sym_PIPE, - ACTIONS(4323), 1, - anon_sym_PIPE_AMP, - STATE(5473), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4327), 9, + ACTIONS(1374), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285583] = 5, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [291470] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12832), 1, - sym__special_character, - STATE(5443), 1, - aux_sym__literal_repeat1, - ACTIONS(4577), 7, + ACTIONS(1376), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314443,8 +320214,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4579), 11, + ACTIONS(1378), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314455,14 +320227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285615] = 5, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [291498] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12834), 1, + ACTIONS(13171), 1, sym__special_character, - STATE(5417), 1, + STATE(5478), 1, aux_sym__literal_repeat1, - ACTIONS(5587), 7, + ACTIONS(1394), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314470,7 +320243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5589), 11, + ACTIONS(1396), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -314482,45 +320255,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [285647] = 9, - ACTIONS(71), 1, + [291530] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12416), 1, - anon_sym_LT_LT_LT, - ACTIONS(12842), 1, - sym_file_descriptor, - ACTIONS(11414), 2, + ACTIONS(13174), 1, + sym__special_character, + STATE(5479), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 7, anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(12840), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5663), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(12838), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11416), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12836), 5, anon_sym_LT, anon_sym_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [285687] = 4, - ACTIONS(71), 1, + ACTIONS(1396), 11, + sym_file_descriptor, + sym_variable_name, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [291562] = 3, + ACTIONS(73), 1, sym_comment, - STATE(5473), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(4325), 7, + ACTIONS(1324), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314528,8 +320293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4327), 10, + ACTIONS(1326), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314539,35 +320306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [285717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12346), 3, - sym_test_operator, - sym__brace_start, - aux_sym_heredoc_redirect_token1, - ACTIONS(12344), 17, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - sym_word, - [285745] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [291590] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 7, + ACTIONS(1376), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314575,9 +320318,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1342), 13, + ACTIONS(1378), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314587,12 +320331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [285773] = 3, - ACTIONS(71), 1, + [291618] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(1336), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314600,9 +320343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 13, + ACTIONS(1338), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314612,12 +320356,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [285801] = 3, - ACTIONS(71), 1, + [291646] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 7, + ACTIONS(1380), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314625,7 +320368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1346), 13, + ACTIONS(1382), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -314639,10 +320382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [285829] = 3, - ACTIONS(71), 1, + [291674] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 7, + ACTIONS(1332), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314650,7 +320393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1358), 13, + ACTIONS(1334), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -314664,10 +320407,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [285857] = 3, - ACTIONS(71), 1, + [291702] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 7, + ACTIONS(1368), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314675,9 +320418,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 13, + ACTIONS(1370), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314687,16 +320431,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [285885] = 5, - ACTIONS(71), 1, + [291730] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12844), 1, - sym__special_character, - STATE(5417), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 7, + ACTIONS(1384), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314704,8 +320443,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1362), 11, + ACTIONS(1386), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314715,11 +320456,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [285917] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [291758] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1368), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314727,9 +320468,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 13, + ACTIONS(1370), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314739,51 +320481,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [285945] = 17, - ACTIONS(3), 1, + [291786] = 10, + ACTIONS(73), 1, sym_comment, - ACTIONS(7794), 1, - aux_sym_number_token1, - ACTIONS(7796), 1, - aux_sym_number_token2, - ACTIONS(12553), 1, - anon_sym_LPAREN, - ACTIONS(12557), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12565), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12567), 1, - anon_sym_BQUOTE, - ACTIONS(12569), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12847), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12849), 1, - anon_sym_RBRACE3, - ACTIONS(12851), 1, - aux_sym__simple_variable_name_token1, - STATE(6338), 1, - sym__expansion_max_length_binary_expression, - STATE(6452), 1, - sym__expansion_max_length_expression, - ACTIONS(12551), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6303), 2, - sym_number, - sym_expansion, - STATE(6799), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [286001] = 3, - ACTIONS(71), 1, + ACTIONS(11844), 1, + anon_sym_PIPE, + ACTIONS(13177), 1, + anon_sym_LT_LT, + ACTIONS(13179), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13181), 1, + sym_file_descriptor, + ACTIONS(13157), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11846), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + ACTIONS(13155), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5513), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13153), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [291828] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 7, + STATE(5533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13122), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5899), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314791,9 +320530,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1358), 13, + ACTIONS(5901), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314803,17 +320541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [286029] = 5, - ACTIONS(71), 1, + [291860] = 5, + ACTIONS(73), 1, sym_comment, - STATE(5475), 1, + STATE(5535), 1, aux_sym_concatenation_repeat1, - ACTIONS(12813), 2, + ACTIONS(13122), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(4426), 7, + ACTIONS(2154), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314821,7 +320557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4428), 10, + ACTIONS(2156), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -314832,8 +320568,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [286061] = 3, - ACTIONS(71), 1, + [291892] = 9, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12829), 1, + anon_sym_LT_LT_LT, + ACTIONS(13159), 1, + sym_file_descriptor, + ACTIONS(11851), 2, + anon_sym_PIPE, + anon_sym_LT_LT, + ACTIONS(13157), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5692), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(13155), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(11853), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, + anon_sym_LT_LT_DASH, + ACTIONS(13153), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [291932] = 3, + ACTIONS(73), 1, sym_comment, ACTIONS(1356), 7, anon_sym_PIPE, @@ -314846,6 +320613,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(1358), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314855,17 +320623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286089] = 5, - ACTIONS(71), 1, + [291960] = 3, + ACTIONS(73), 1, sym_comment, - STATE(5476), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12813), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(4511), 7, + ACTIONS(1388), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314873,8 +320635,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4513), 10, + ACTIONS(1390), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314884,15 +320647,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [286121] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5475), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12813), 2, - sym__concat, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(4577), 7, + [291988] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314900,8 +320660,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4579), 10, + ACTIONS(1354), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314911,15 +320673,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [286153] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5476), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12813), 2, - sym__concat, aux_sym_concatenation_token1, - ACTIONS(4593), 7, + [292016] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1328), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314927,8 +320685,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4595), 10, + ACTIONS(1330), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314938,10 +320697,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [286185] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292044] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 7, + ACTIONS(1380), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314949,24 +320710,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1338), 13, + ACTIONS(1382), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [286213] = 3, - ACTIONS(71), 1, + [292072] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 7, + STATE(5533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13122), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5905), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -314974,9 +320740,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1326), 13, + ACTIONS(5907), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -314986,17 +320751,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [286241] = 5, - ACTIONS(71), 1, + [292104] = 5, + ACTIONS(73), 1, sym_comment, - STATE(5475), 1, + STATE(5535), 1, aux_sym_concatenation_repeat1, - ACTIONS(12813), 2, + ACTIONS(13122), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(5587), 7, + ACTIONS(2158), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315004,7 +320767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5589), 10, + ACTIONS(2160), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -315015,52 +320778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [286273] = 20, - ACTIONS(3), 1, + [292136] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7794), 1, - aux_sym_number_token1, - ACTIONS(7796), 1, - aux_sym_number_token2, - ACTIONS(12553), 1, - anon_sym_LPAREN, - ACTIONS(12557), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12565), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12567), 1, - anon_sym_BQUOTE, - ACTIONS(12569), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12853), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12855), 1, - anon_sym_RBRACE3, - ACTIONS(12857), 1, - aux_sym__simple_variable_name_token1, - STATE(6294), 1, - sym_number, - STATE(6322), 1, - sym_expansion, - STATE(6354), 1, - sym__expansion_max_length_binary_expression, - STATE(6452), 1, - sym__expansion_max_length_expression, - STATE(6860), 1, - sym_parenthesized_expression, - STATE(6903), 1, - sym_arithmetic_expansion, - STATE(6956), 1, - sym_command_substitution, - ACTIONS(12551), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - [286335] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1296), 7, + ACTIONS(1372), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315068,51 +320789,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 13, + ACTIONS(1374), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [286363] = 5, - ACTIONS(71), 1, + [292164] = 6, + ACTIONS(73), 1, sym_comment, - STATE(5476), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12813), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2167), 7, + ACTIONS(4499), 1, anon_sym_PIPE, + ACTIONS(4508), 1, + anon_sym_PIPE_AMP, + STATE(5488), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2169), 10, + ACTIONS(4501), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [286395] = 3, - ACTIONS(71), 1, + [292198] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 7, + STATE(5488), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(4497), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315120,24 +320846,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 13, + ACTIONS(4501), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [286423] = 3, - ACTIONS(71), 1, + [292228] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(1340), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315145,24 +320868,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 13, + ACTIONS(1342), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286451] = 3, - ACTIONS(71), 1, + [292256] = 17, + ACTIONS(3), 1, sym_comment, - ACTIONS(1348), 7, + ACTIONS(7916), 1, + aux_sym_number_token1, + ACTIONS(7918), 1, + aux_sym_number_token2, + ACTIONS(12803), 1, + anon_sym_LPAREN, + ACTIONS(12807), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12811), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12815), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12817), 1, + anon_sym_BQUOTE, + ACTIONS(12819), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13183), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13185), 1, + anon_sym_RBRACE3, + ACTIONS(13187), 1, + aux_sym__simple_variable_name_token1, + STATE(6413), 1, + sym__expansion_max_length_binary_expression, + STATE(6476), 1, + sym__expansion_max_length_expression, + ACTIONS(12801), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6406), 2, + sym_number, + sym_expansion, + STATE(7609), 3, + sym_parenthesized_expression, + sym_arithmetic_expansion, + sym_command_substitution, + [292312] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(12676), 3, + sym_test_operator, + sym__brace_start, + aux_sym_heredoc_redirect_token1, + ACTIONS(12674), 17, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + anon_sym_LT_LPAREN, + anon_sym_GT_LPAREN, + sym_word, + [292340] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(13189), 1, + sym__special_character, + STATE(5478), 1, + aux_sym__literal_repeat1, + ACTIONS(5899), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315170,9 +320961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1350), 13, + ACTIONS(5901), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315183,15 +320973,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [286479] = 5, - ACTIONS(71), 1, + [292372] = 20, + ACTIONS(3), 1, sym_comment, - ACTIONS(12832), 1, + ACTIONS(7916), 1, + aux_sym_number_token1, + ACTIONS(7918), 1, + aux_sym_number_token2, + ACTIONS(12803), 1, + anon_sym_LPAREN, + ACTIONS(12807), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(12811), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(12815), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12817), 1, + anon_sym_BQUOTE, + ACTIONS(12819), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13191), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13193), 1, + anon_sym_RBRACE3, + ACTIONS(13195), 1, + aux_sym__simple_variable_name_token1, + STATE(6416), 1, + sym_number, + STATE(6417), 1, + sym_expansion, + STATE(6418), 1, + sym__expansion_max_length_binary_expression, + STATE(6476), 1, + sym__expansion_max_length_expression, + STATE(7639), 1, + sym_parenthesized_expression, + STATE(7640), 1, + sym_arithmetic_expansion, + STATE(7659), 1, + sym_command_substitution, + ACTIONS(12801), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + [292434] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(13189), 1, sym__special_character, - STATE(5443), 1, + STATE(5478), 1, aux_sym__literal_repeat1, - ACTIONS(5587), 7, + ACTIONS(5905), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315199,22 +321030,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5589), 11, + ACTIONS(5907), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [292466] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1370), 13, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [286511] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [292494] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1384), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315222,7 +321078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(1386), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315236,10 +321092,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [286539] = 3, - ACTIONS(71), 1, + [292522] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1368), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315247,7 +321103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 13, + ACTIONS(1370), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315261,10 +321117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [286567] = 3, - ACTIONS(71), 1, + [292550] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 7, + ACTIONS(1344), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315272,7 +321128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 13, + ACTIONS(1346), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315286,93 +321142,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [286595] = 11, - ACTIONS(71), 1, + [292578] = 11, + ACTIONS(73), 1, sym_comment, - ACTIONS(4310), 1, + ACTIONS(4499), 1, anon_sym_PIPE, - ACTIONS(4323), 1, + ACTIONS(4508), 1, anon_sym_PIPE_AMP, - ACTIONS(6012), 1, + ACTIONS(6248), 1, anon_sym_LT_LT, - ACTIONS(6014), 1, + ACTIONS(6250), 1, anon_sym_LT_LT_DASH, - ACTIONS(12682), 1, + ACTIONS(13051), 1, sym_file_descriptor, - ACTIONS(6010), 2, + ACTIONS(6246), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12387), 2, + ACTIONS(12705), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12385), 3, + ACTIONS(12703), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5369), 3, + STATE(5385), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12383), 5, + ACTIONS(12701), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [286639] = 3, - ACTIONS(71), 1, + [292622] = 10, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(11728), 1, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(13200), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(13209), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13212), 1, sym_file_descriptor, - sym__concat, + ACTIONS(13206), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(11739), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, + ACTIONS(13203), 3, + anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [286667] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1332), 7, - anon_sym_PIPE, + STATE(5513), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(13197), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1334), 13, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [286695] = 3, - ACTIONS(71), 1, + [292664] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 7, + ACTIONS(1348), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315380,28 +321218,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1354), 13, + ACTIONS(1350), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286723] = 5, - ACTIONS(71), 1, + [292692] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12859), 1, - sym__special_character, - STATE(5443), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315409,22 +321243,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1362), 11, + ACTIONS(1306), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [286755] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292720] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 7, + ACTIONS(1344), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315432,9 +321268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1338), 13, + ACTIONS(1346), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315444,12 +321281,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [286783] = 3, - ACTIONS(71), 1, + [292748] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 7, + ACTIONS(1300), 8, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315457,55 +321293,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1326), 13, + sym__special_character, + ACTIONS(1302), 12, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [286811] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12416), 1, anon_sym_LT_LT_LT, - ACTIONS(12842), 1, - sym_file_descriptor, - ACTIONS(11464), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(12840), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5675), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(12838), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11466), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12836), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [286851] = 3, - ACTIONS(71), 1, + [292776] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315513,24 +321318,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 13, + ACTIONS(1354), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [286879] = 3, - ACTIONS(71), 1, + [292804] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 8, + ACTIONS(1348), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315538,22 +321343,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1274), 12, + ACTIONS(1350), 13, sym_file_descriptor, + sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [286907] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [292832] = 3, + ACTIONS(73), 1, sym_comment, ACTIONS(1304), 7, anon_sym_PIPE, @@ -315577,10 +321382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [286935] = 3, - ACTIONS(71), 1, + [292860] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(13161), 1, + sym__special_character, + STATE(5550), 1, + aux_sym__literal_repeat1, + ACTIONS(5905), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315588,24 +321397,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 13, + ACTIONS(5907), 11, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [286963] = 3, - ACTIONS(71), 1, + [292892] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1360), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315613,7 +321420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(1362), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -315627,10 +321434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [286991] = 3, - ACTIONS(71), 1, + [292920] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 7, + ACTIONS(1324), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315638,7 +321445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1330), 13, + ACTIONS(1326), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315652,15 +321459,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [287019] = 5, - ACTIONS(71), 1, + [292948] = 3, + ACTIONS(73), 1, sym_comment, - STATE(5476), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12813), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(2171), 7, + ACTIONS(1376), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315668,8 +321470,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2173), 10, + ACTIONS(1378), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315679,10 +321482,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [287051] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [292976] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1336), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315690,10 +321495,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 13, + ACTIONS(1338), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315703,11 +321507,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [287079] = 3, - ACTIONS(71), 1, + [293004] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 7, + ACTIONS(1380), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315715,24 +321520,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1322), 13, + ACTIONS(1382), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [287107] = 3, - ACTIONS(71), 1, + [293032] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 7, + ACTIONS(1360), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315740,7 +321545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1326), 13, + ACTIONS(1362), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315754,10 +321559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287135] = 3, - ACTIONS(71), 1, + [293060] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 7, + ACTIONS(1332), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315765,10 +321570,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1350), 13, + ACTIONS(1334), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315778,11 +321582,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [287163] = 3, - ACTIONS(71), 1, + [293088] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 7, + STATE(5533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13122), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(4971), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315790,28 +321600,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1330), 13, + ACTIONS(4973), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [287191] = 5, - ACTIONS(71), 1, + [293120] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12834), 1, - sym__special_character, - STATE(5417), 1, - aux_sym__literal_repeat1, - ACTIONS(4426), 7, + STATE(5535), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13122), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5015), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315819,7 +321627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4428), 11, + ACTIONS(5017), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -315830,11 +321638,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [287223] = 3, - ACTIONS(71), 1, + [293152] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 7, + ACTIONS(1364), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315842,24 +321649,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1334), 13, + ACTIONS(1366), 13, sym_file_descriptor, sym__concat, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287251] = 3, - ACTIONS(71), 1, + [293180] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 7, + ACTIONS(1388), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315867,7 +321674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1338), 13, + ACTIONS(1390), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315881,10 +321688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287279] = 3, - ACTIONS(71), 1, + [293208] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 7, + ACTIONS(13122), 1, + aux_sym_concatenation_token1, + ACTIONS(13215), 1, + sym__concat, + STATE(5538), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1294), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315892,24 +321705,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1342), 13, + ACTIONS(1296), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [287307] = 3, - ACTIONS(71), 1, + [293242] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(1364), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315917,7 +321727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 13, + ACTIONS(1366), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -315931,10 +321741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287335] = 3, - ACTIONS(71), 1, + [293270] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 7, + ACTIONS(13122), 1, + aux_sym_concatenation_token1, + ACTIONS(13217), 1, + sym__concat, + STATE(5538), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1314), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315942,28 +321758,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1350), 13, + ACTIONS(1316), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [287363] = 5, - ACTIONS(71), 1, + [293304] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12862), 1, - sym__special_character, - STATE(5465), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 7, + STATE(5533), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13122), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5044), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315971,9 +321785,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1362), 11, + ACTIONS(5046), 10, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -315983,10 +321796,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [287395] = 3, - ACTIONS(71), 1, + [293336] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 7, + STATE(5535), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13122), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(5048), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -315994,10 +321812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 13, + ACTIONS(5050), 10, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316007,11 +321823,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [287423] = 3, - ACTIONS(71), 1, + [293368] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 7, + STATE(5538), 1, + aux_sym_concatenation_repeat1, + ACTIONS(13219), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316019,88 +321839,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1354), 13, + ACTIONS(1306), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [287451] = 3, - ACTIONS(71), 1, + [293400] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(12829), 1, + anon_sym_LT_LT_LT, + ACTIONS(13159), 1, + sym_file_descriptor, + ACTIONS(11720), 2, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1302), 13, - sym_file_descriptor, - sym__concat, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(13157), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5737), 2, + sym_file_redirect, + sym_herestring_redirect, + ACTIONS(13155), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(11722), 4, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_PIPE_AMP, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [287479] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7794), 1, - aux_sym_number_token1, - ACTIONS(7796), 1, - aux_sym_number_token2, - ACTIONS(12553), 1, - anon_sym_LPAREN, - ACTIONS(12557), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(12561), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12565), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(12567), 1, - anon_sym_BQUOTE, - ACTIONS(12569), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(12865), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12867), 1, - anon_sym_RBRACE3, - ACTIONS(12869), 1, - aux_sym__simple_variable_name_token1, - STATE(6365), 1, - sym__expansion_max_length_binary_expression, - STATE(6452), 1, - sym__expansion_max_length_expression, - ACTIONS(12551), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6360), 2, - sym_number, - sym_expansion, - STATE(6954), 3, - sym_parenthesized_expression, - sym_arithmetic_expansion, - sym_command_substitution, - [287535] = 3, - ACTIONS(71), 1, + ACTIONS(13153), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [293440] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 7, + ACTIONS(1324), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316108,7 +321892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1358), 13, + ACTIONS(1326), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -316122,10 +321906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287563] = 3, - ACTIONS(71), 1, + [293468] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 7, + ACTIONS(1328), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316133,7 +321917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1346), 13, + ACTIONS(1330), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -316147,8 +321931,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287591] = 3, - ACTIONS(71), 1, + [293496] = 3, + ACTIONS(73), 1, sym_comment, ACTIONS(1356), 7, anon_sym_PIPE, @@ -316172,46 +321956,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287619] = 10, - ACTIONS(71), 1, + [293524] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11546), 1, - anon_sym_PIPE, - ACTIONS(12871), 1, - anon_sym_LT_LT, - ACTIONS(12873), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12875), 1, - sym_file_descriptor, - ACTIONS(12840), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11548), 3, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - ACTIONS(12838), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5494), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12836), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [287661] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12877), 1, - sym__special_character, - STATE(5465), 1, - aux_sym__literal_repeat1, - ACTIONS(5165), 7, + ACTIONS(1368), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316219,9 +321967,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5167), 11, + ACTIONS(1370), 13, sym_file_descriptor, - sym_variable_name, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316231,16 +321979,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [287693] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12813), 1, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(12879), 1, - sym__concat, - STATE(5477), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 7, + [293552] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1384), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316248,8 +321992,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1268), 10, + ACTIONS(1386), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316259,16 +322004,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [287727] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12813), 1, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(12881), 1, - sym__concat, - STATE(5477), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1286), 7, + [293580] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316276,8 +322017,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1288), 10, + ACTIONS(1370), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316287,15 +322029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [287761] = 5, - ACTIONS(71), 1, - sym_comment, - STATE(5477), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12883), 2, - sym__concat, + anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - ACTIONS(1276), 7, + [293608] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1372), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316303,54 +322042,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 10, + ACTIONS(1374), 13, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [287793] = 11, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [293636] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(7790), 1, - anon_sym_DQUOTE, - ACTIONS(7798), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(12511), 1, - anon_sym_LPAREN, - ACTIONS(12513), 1, + ACTIONS(1300), 5, anon_sym_DOLLAR, - ACTIONS(12517), 1, + aux_sym_number_token1, + aux_sym_number_token2, anon_sym_DOLLAR_LPAREN, - ACTIONS(12519), 1, + sym_word, + ACTIONS(1302), 15, + sym_test_operator, + sym__brace_start, + anon_sym_LPAREN_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + sym__special_character, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_ansi_c_string, + anon_sym_DOLLAR_LBRACE, anon_sym_BQUOTE, - ACTIONS(12521), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(7808), 2, anon_sym_LT_LPAREN, anon_sym_GT_LPAREN, - ACTIONS(12886), 5, - sym_variable_name, - sym__expansion_word, - sym_raw_string, - sym_ansi_c_string, - sym_word, - STATE(6510), 6, - sym_string, - sym_array, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - sym_process_substitution, - [287837] = 3, - ACTIONS(71), 1, + [293664] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(13189), 1, + sym__special_character, + STATE(5478), 1, + aux_sym__literal_repeat1, + ACTIONS(4971), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316358,9 +322096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 13, + ACTIONS(4973), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316371,11 +322108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [287865] = 3, - ACTIONS(71), 1, + [293696] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 7, + ACTIONS(1336), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316383,28 +322119,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1334), 13, + ACTIONS(1338), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287893] = 5, - ACTIONS(71), 1, + [293724] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12834), 1, + ACTIONS(13222), 1, sym__special_character, - STATE(5417), 1, + STATE(5550), 1, aux_sym__literal_repeat1, - ACTIONS(4577), 7, + ACTIONS(1394), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316412,26 +322148,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4579), 11, + ACTIONS(1396), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [287925] = 5, - ACTIONS(71), 1, + [293756] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12832), 1, + ACTIONS(13189), 1, sym__special_character, - STATE(5443), 1, + STATE(5478), 1, aux_sym__literal_repeat1, - ACTIONS(5593), 7, + ACTIONS(5044), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316439,22 +322175,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5595), 11, + ACTIONS(5046), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [287957] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [293788] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 7, + ACTIONS(1332), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316462,24 +322198,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1322), 13, + ACTIONS(1334), 13, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [287985] = 3, - ACTIONS(71), 1, + [293816] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 7, + ACTIONS(1388), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316487,7 +322223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1330), 13, + ACTIONS(1390), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -316501,10 +322237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288013] = 3, - ACTIONS(71), 1, + [293844] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 7, + ACTIONS(1328), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316512,7 +322248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1354), 13, + ACTIONS(1330), 13, sym_file_descriptor, sym__concat, sym_variable_name, @@ -316526,10 +322262,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288041] = 3, - ACTIONS(71), 1, + [293872] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 7, + ACTIONS(1340), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316537,24 +322273,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1306), 13, + ACTIONS(1342), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [288069] = 3, - ACTIONS(71), 1, + [293900] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1276), 7, + ACTIONS(13161), 1, + sym__special_character, + STATE(5550), 1, + aux_sym__literal_repeat1, + ACTIONS(5899), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316562,55 +322302,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 13, + ACTIONS(5901), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [288097] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12416), 1, - anon_sym_LT_LT_LT, - ACTIONS(12842), 1, - sym_file_descriptor, - ACTIONS(11448), 2, - anon_sym_PIPE, - anon_sym_LT_LT, - ACTIONS(12840), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5648), 2, - sym_file_redirect, - sym_herestring_redirect, - ACTIONS(12838), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(11450), 4, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - anon_sym_LT_LT_DASH, - ACTIONS(12836), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [288137] = 3, - ACTIONS(71), 1, + [293932] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 7, + ACTIONS(1348), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316618,7 +322325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1322), 13, + ACTIONS(1350), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -316632,10 +322339,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [288165] = 3, - ACTIONS(71), 1, + [293960] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316643,24 +322350,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 13, + ACTIONS(1306), 13, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [288193] = 3, - ACTIONS(71), 1, + [293988] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 7, + ACTIONS(1332), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316668,10 +322375,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1342), 13, + ACTIONS(1334), 12, sym_file_descriptor, sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316682,10 +322388,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288221] = 3, - ACTIONS(71), 1, + [294015] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(2154), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316693,24 +322399,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 13, + ACTIONS(2156), 12, sym_file_descriptor, - sym__concat, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [288249] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [294042] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1296), 7, + ACTIONS(1328), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316718,7 +322423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1298), 13, + ACTIONS(1330), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -316730,73 +322435,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [288277] = 10, - ACTIONS(71), 1, + [294069] = 8, + ACTIONS(3), 1, sym_comment, - ACTIONS(11398), 1, - anon_sym_PIPE, - ACTIONS(12891), 1, + ACTIONS(6104), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13053), 1, + sym_file_descriptor, + ACTIONS(5166), 2, anon_sym_LT_LT, - ACTIONS(12900), 1, anon_sym_LT_LT_DASH, - ACTIONS(12903), 1, - sym_file_descriptor, - ACTIONS(12897), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(11409), 3, + ACTIONS(6102), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_PIPE_AMP, - ACTIONS(12894), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5494), 3, + ACTIONS(12637), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5344), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12888), 5, + ACTIONS(12635), 8, anon_sym_LT, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [288319] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 5, - anon_sym_DOLLAR, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LPAREN, - sym_word, - ACTIONS(1274), 15, - sym_test_operator, - sym__brace_start, - anon_sym_LPAREN_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - sym__special_character, - anon_sym_DQUOTE, - sym_raw_string, - sym_ansi_c_string, - anon_sym_DOLLAR_LBRACE, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - anon_sym_LT_LPAREN, - anon_sym_GT_LPAREN, - [288347] = 5, - ACTIONS(71), 1, + anon_sym_GT_PIPE, + [294106] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12832), 1, + ACTIONS(13225), 1, sym__special_character, - STATE(5443), 1, + STATE(5564), 1, aux_sym__literal_repeat1, - ACTIONS(4426), 7, + ACTIONS(4971), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316804,26 +322480,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4428), 11, + ACTIONS(4973), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [288379] = 5, - ACTIONS(71), 1, + [294137] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(12834), 1, + ACTIONS(13227), 1, sym__special_character, - STATE(5417), 1, + STATE(5564), 1, aux_sym__literal_repeat1, - ACTIONS(5593), 7, + ACTIONS(1394), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316831,7 +322506,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5595), 11, + ACTIONS(1396), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -316842,16 +322517,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [288411] = 5, - ACTIONS(71), 1, + [294168] = 8, + ACTIONS(3), 1, sym_comment, - STATE(5475), 1, - aux_sym_concatenation_repeat1, - ACTIONS(12813), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(5593), 7, + ACTIONS(6111), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(13053), 1, + sym_file_descriptor, + ACTIONS(5166), 2, + anon_sym_LT_LT, + anon_sym_LT_LT_DASH, + ACTIONS(6102), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12637), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5344), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12635), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [294205] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1324), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316859,8 +322557,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5595), 10, + ACTIONS(1326), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -316870,10 +322569,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [288443] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [294232] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1328), 7, + ACTIONS(1376), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316881,7 +322581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1330), 12, + ACTIONS(1378), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -316894,27 +322594,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288470] = 8, + [294259] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5838), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12734), 1, + ACTIONS(13230), 1, + aux_sym_concatenation_token1, + ACTIONS(13232), 1, + sym__concat, + STATE(5670), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1302), 2, sym_file_descriptor, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5836), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12326), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5297), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12324), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -316923,10 +322617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [288507] = 3, - ACTIONS(71), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + sym__special_character, + [294292] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1324), 7, + ACTIONS(1336), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -316934,7 +322632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1326), 12, + ACTIONS(1338), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -316947,70 +322645,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288534] = 9, - ACTIONS(3), 1, + [294319] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(3664), 1, - anon_sym_LT_LT_LT, - ACTIONS(3688), 1, + ACTIONS(1380), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(1382), 12, sym_file_descriptor, - ACTIONS(12906), 1, - aux_sym_heredoc_redirect_token1, - STATE(6881), 1, - sym__heredoc_expression, - ACTIONS(3654), 2, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3660), 2, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5564), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [294346] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(13225), 1, + sym__special_character, + STATE(5564), 1, + aux_sym__literal_repeat1, + ACTIONS(5044), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [288573] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3664), 1, - anon_sym_LT_LT_LT, - ACTIONS(3688), 1, + ACTIONS(5046), 10, sym_file_descriptor, - ACTIONS(12908), 1, - aux_sym_heredoc_redirect_token1, - STATE(7429), 1, - sym__heredoc_expression, - ACTIONS(3654), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3660), 2, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5564), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, + anon_sym_LT_LT_DASH, + [294377] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1348), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(1350), 12, + sym_file_descriptor, + sym__concat, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - [288612] = 3, - ACTIONS(71), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + aux_sym_concatenation_token1, + [294404] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1320), 7, + ACTIONS(1304), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317018,7 +322730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1322), 12, + ACTIONS(1306), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317031,14 +322743,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288639] = 5, - ACTIONS(71), 1, + [294431] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12910), 1, - sym__special_character, - STATE(5519), 1, - aux_sym__literal_repeat1, - ACTIONS(5587), 7, + ACTIONS(1356), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317046,8 +322754,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5589), 10, + ACTIONS(1358), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -317057,10 +322766,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [288670] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [294458] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(4511), 7, + ACTIONS(13225), 1, + sym__special_character, + STATE(5564), 1, + aux_sym__literal_repeat1, + ACTIONS(5905), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317068,41 +322782,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4513), 12, + ACTIONS(5907), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [288697] = 9, + [294489] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, + ACTIONS(3747), 1, anon_sym_LT_LT_LT, - ACTIONS(3688), 1, + ACTIONS(3773), 1, sym_file_descriptor, - ACTIONS(12912), 1, + ACTIONS(13234), 1, aux_sym_heredoc_redirect_token1, - STATE(7215), 1, + STATE(7669), 1, sym__heredoc_expression, - ACTIONS(3654), 2, + ACTIONS(3737), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3660), 2, + ACTIONS(3743), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5564), 3, + STATE(5616), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -317111,28 +322823,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [288736] = 9, + [294528] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, + ACTIONS(3747), 1, anon_sym_LT_LT_LT, - ACTIONS(3688), 1, + ACTIONS(3773), 1, sym_file_descriptor, - ACTIONS(12914), 1, + ACTIONS(13236), 1, aux_sym_heredoc_redirect_token1, - STATE(7432), 1, + STATE(7206), 1, sym__heredoc_expression, - ACTIONS(3654), 2, + ACTIONS(3737), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3660), 2, + ACTIONS(3743), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5564), 3, + STATE(5616), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -317141,28 +322853,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [288775] = 9, + [294567] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, + ACTIONS(3747), 1, anon_sym_LT_LT_LT, - ACTIONS(3688), 1, + ACTIONS(3773), 1, sym_file_descriptor, - ACTIONS(12916), 1, + ACTIONS(13238), 1, aux_sym_heredoc_redirect_token1, - STATE(7219), 1, + STATE(7672), 1, sym__heredoc_expression, - ACTIONS(3654), 2, + ACTIONS(3737), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3660), 2, + ACTIONS(3743), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5564), 3, + STATE(5616), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -317171,34 +322883,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [288814] = 3, - ACTIONS(71), 1, + [294606] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 8, - anon_sym_PIPE, + ACTIONS(3747), 1, + anon_sym_LT_LT_LT, + ACTIONS(3773), 1, + sym_file_descriptor, + ACTIONS(13240), 1, + aux_sym_heredoc_redirect_token1, + STATE(7211), 1, + sym__heredoc_expression, + ACTIONS(3737), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3743), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5616), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - sym__special_character, - ACTIONS(1274), 11, + anon_sym_GT_PIPE, + [294645] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3747), 1, + anon_sym_LT_LT_LT, + ACTIONS(3773), 1, sym_file_descriptor, + ACTIONS(13242), 1, + aux_sym_heredoc_redirect_token1, + STATE(7381), 1, + sym__heredoc_expression, + ACTIONS(3737), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(3743), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5616), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [288841] = 3, - ACTIONS(71), 1, + [294684] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1356), 7, + ACTIONS(13246), 1, + anon_sym_DQUOTE, + ACTIONS(13250), 1, + sym_variable_name, + STATE(6275), 1, + sym_string, + ACTIONS(13248), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1255), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(13244), 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__, + [294719] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317206,7 +322982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1358), 12, + ACTIONS(1370), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317219,10 +322995,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288868] = 3, - ACTIONS(71), 1, + [294746] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(1344), 7, + ACTIONS(3747), 1, + anon_sym_LT_LT_LT, + ACTIONS(3773), 1, + sym_file_descriptor, + ACTIONS(13252), 1, + aux_sym_heredoc_redirect_token1, + STATE(7457), 1, + sym__heredoc_expression, + ACTIONS(3737), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(3743), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + STATE(5616), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + [294785] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1352), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317230,7 +323036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1346), 12, + ACTIONS(1354), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317243,10 +323049,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [288895] = 3, - ACTIONS(71), 1, + [294812] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 7, + ACTIONS(13225), 1, + sym__special_character, + STATE(5564), 1, + aux_sym__literal_repeat1, + ACTIONS(5899), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317254,9 +323064,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1358), 12, + ACTIONS(5901), 10, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -317266,11 +323075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [288922] = 3, - ACTIONS(71), 1, + [294843] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1332), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317278,9 +323086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1334), 12, + ACTIONS(1302), 12, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -317290,11 +323097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [288949] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + sym__special_character, + [294870] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(5015), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317302,83 +323110,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 12, + ACTIONS(5017), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - sym__special_character, - [288976] = 7, - ACTIONS(3), 1, + [294897] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12920), 1, - anon_sym_DQUOTE, - ACTIONS(12924), 1, - sym_variable_name, - STATE(6233), 1, - sym_string, - ACTIONS(12922), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1227), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - ACTIONS(12918), 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__, - [289011] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12920), 1, - anon_sym_DQUOTE, - ACTIONS(12924), 1, - sym_variable_name, - STATE(6233), 1, - sym_string, - ACTIONS(12922), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(1239), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_heredoc_redirect_token1, - ACTIONS(12918), 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__, - [289046] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12910), 1, - sym__special_character, - STATE(5519), 1, - aux_sym__literal_repeat1, - ACTIONS(5593), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317386,8 +323134,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5595), 10, + ACTIONS(1302), 12, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -317397,36 +323146,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [289077] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12926), 1, sym__special_character, - STATE(5519), 1, - aux_sym__literal_repeat1, - ACTIONS(1360), 7, + [294924] = 5, + ACTIONS(3), 1, + sym_comment, + STATE(5591), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12229), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(13254), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12225), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1362), 10, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [289108] = 3, - ACTIONS(71), 1, + [294955] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4593), 7, + ACTIONS(1372), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317434,47 +323184,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4595), 12, + ACTIONS(1374), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [289135] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [294982] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(1272), 7, + STATE(5591), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12193), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(13256), 2, anon_sym_PIPE, + anon_sym_PIPE_AMP, + ACTIONS(12188), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 12, - sym_file_descriptor, - sym_variable_name, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [289162] = 3, - ACTIONS(71), 1, + [295013] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1352), 7, + ACTIONS(1388), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317482,7 +323234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1354), 12, + ACTIONS(1390), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317495,55 +323247,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289189] = 6, - ACTIONS(3), 1, + [295040] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12929), 1, - aux_sym_concatenation_token1, - ACTIONS(12931), 1, - sym__concat, - STATE(5562), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1274), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(1300), 8, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + sym__special_character, + ACTIONS(1302), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_RBRACK, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [289222] = 9, + anon_sym_LT_LT_DASH, + [295067] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, + ACTIONS(3747), 1, anon_sym_LT_LT_LT, - ACTIONS(3688), 1, + ACTIONS(3773), 1, sym_file_descriptor, - ACTIONS(12933), 1, + ACTIONS(13259), 1, aux_sym_heredoc_redirect_token1, - STATE(7004), 1, + STATE(7111), 1, sym__heredoc_expression, - ACTIONS(3654), 2, + ACTIONS(3737), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3660), 2, + ACTIONS(3743), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5564), 3, + STATE(5616), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -317552,34 +323301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [289261] = 3, - ACTIONS(71), 1, + [295106] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1304), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1306), 12, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [289288] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1276), 7, + ACTIONS(1344), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317587,7 +323312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1278), 12, + ACTIONS(1346), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317600,28 +323325,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289315] = 9, + [295133] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, + ACTIONS(3747), 1, anon_sym_LT_LT_LT, - ACTIONS(3688), 1, + ACTIONS(3773), 1, sym_file_descriptor, - ACTIONS(12935), 1, + ACTIONS(13261), 1, aux_sym_heredoc_redirect_token1, - STATE(7464), 1, + STATE(6868), 1, sym__heredoc_expression, - ACTIONS(3654), 2, + ACTIONS(3737), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3660), 2, + ACTIONS(3743), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5564), 3, + STATE(5616), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -317630,28 +323355,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [289354] = 9, + [295172] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, + ACTIONS(3747), 1, anon_sym_LT_LT_LT, - ACTIONS(3688), 1, + ACTIONS(3773), 1, sym_file_descriptor, - ACTIONS(12937), 1, + ACTIONS(13263), 1, aux_sym_heredoc_redirect_token1, - STATE(6800), 1, + STATE(6869), 1, sym__heredoc_expression, - ACTIONS(3654), 2, + ACTIONS(3737), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3660), 2, + ACTIONS(3743), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - STATE(5564), 3, + STATE(5616), 3, sym_file_redirect, sym_herestring_redirect, aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -317660,34 +323385,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [289393] = 3, - ACTIONS(71), 1, + [295211] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(1296), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(1298), 12, - sym_file_descriptor, - sym__concat, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [289420] = 3, - ACTIONS(71), 1, + ACTIONS(13246), 1, + anon_sym_DQUOTE, + ACTIONS(13250), 1, + sym_variable_name, + STATE(6275), 1, + sym_string, + ACTIONS(13248), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1267), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_heredoc_redirect_token1, + ACTIONS(13244), 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__, + [295246] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1336), 7, + ACTIONS(1340), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317695,7 +323424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1338), 12, + ACTIONS(1342), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317708,10 +323437,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289447] = 3, - ACTIONS(71), 1, + [295273] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1308), 7, + ACTIONS(1360), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317719,7 +323448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1310), 12, + ACTIONS(1362), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317732,10 +323461,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289474] = 3, - ACTIONS(71), 1, + [295300] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1312), 7, + ACTIONS(1364), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317743,7 +323472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1314), 12, + ACTIONS(1366), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317756,14 +323485,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289501] = 5, - ACTIONS(71), 1, + [295327] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12910), 1, - sym__special_character, - STATE(5519), 1, - aux_sym__literal_repeat1, - ACTIONS(4426), 7, + ACTIONS(2158), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317771,73 +323496,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4428), 10, + ACTIONS(2160), 12, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [289532] = 5, + anon_sym_LT_LT_LT, + [295354] = 9, ACTIONS(3), 1, sym_comment, - STATE(5535), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11899), 2, + ACTIONS(3747), 1, + anon_sym_LT_LT_LT, + ACTIONS(3773), 1, sym_file_descriptor, + ACTIONS(13265), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(12939), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11895), 14, + STATE(7454), 1, + sym__heredoc_expression, + ACTIONS(3737), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(3743), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [289563] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(5535), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11844), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(12941), 2, - anon_sym_PIPE, - anon_sym_PIPE_AMP, - ACTIONS(11839), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + STATE(5616), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(3741), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_GT_GT, anon_sym_AMP_GT, anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [289594] = 3, - ACTIONS(71), 1, + [295393] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1316), 7, + ACTIONS(1320), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317845,7 +323550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1318), 12, + ACTIONS(1322), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317858,10 +323563,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289621] = 3, - ACTIONS(71), 1, + [295420] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(2167), 7, + ACTIONS(1368), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317869,23 +323574,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2169), 12, + ACTIONS(1370), 12, sym_file_descriptor, + sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [289648] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [295447] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 7, + ACTIONS(1384), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317893,7 +323598,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1342), 12, + ACTIONS(1386), 12, sym_file_descriptor, sym__concat, anon_sym_PIPE_PIPE, @@ -317906,10 +323611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, aux_sym_concatenation_token1, - [289675] = 3, - ACTIONS(71), 1, + [295474] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 7, + ACTIONS(5048), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317917,23 +323622,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1294), 12, + ACTIONS(5050), 12, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [289702] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [295501] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1300), 7, + ACTIONS(12311), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -317941,9 +323646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1302), 12, + ACTIONS(12309), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -317953,61 +323657,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [289729] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [295527] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(2171), 7, + ACTIONS(12323), 1, anon_sym_PIPE, + ACTIONS(13267), 1, + anon_sym_PIPE_AMP, + STATE(5643), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12188), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2173), 12, + ACTIONS(12193), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [289756] = 5, - ACTIONS(71), 1, + [295559] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(12910), 1, - sym__special_character, - STATE(5519), 1, - aux_sym__literal_repeat1, - ACTIONS(4577), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(5166), 1, anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4579), 10, + ACTIONS(12261), 1, sym_file_descriptor, + ACTIONS(13276), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13270), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + ACTIONS(13274), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13272), 3, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [289787] = 3, - ACTIONS(71), 1, + STATE(4824), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11757), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [295597] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1348), 7, + ACTIONS(2154), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318015,9 +323724,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1350), 12, + ACTIONS(2156), 11, sym_file_descriptor, - sym__concat, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -318027,88 +323735,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - aux_sym_concatenation_token1, - [289814] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3664), 1, anon_sym_LT_LT_LT, - ACTIONS(3688), 1, - sym_file_descriptor, - ACTIONS(12944), 1, - aux_sym_heredoc_redirect_token1, - STATE(7491), 1, - sym__heredoc_expression, - ACTIONS(3654), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(3660), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5564), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [289853] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5843), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12734), 1, - sym_file_descriptor, - ACTIONS(4705), 2, - anon_sym_LT_LT, - anon_sym_LT_LT_DASH, - ACTIONS(5836), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12326), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5297), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12324), 8, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - [289890] = 9, + [295623] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3664), 1, - anon_sym_LT_LT_LT, - ACTIONS(3688), 1, + ACTIONS(13230), 1, + aux_sym_concatenation_token1, + ACTIONS(13278), 1, + sym__concat, + STATE(5653), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 2, sym_file_descriptor, - ACTIONS(12946), 1, aux_sym_heredoc_redirect_token1, - STATE(6994), 1, - sym__heredoc_expression, - ACTIONS(3654), 2, + ACTIONS(1314), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(3660), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5564), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(3658), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -318117,33 +323759,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [289929] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12191), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12193), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [289955] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [295655] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12271), 7, + ACTIONS(12291), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318151,22 +323773,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12273), 11, + ACTIONS(12293), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [289981] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [295681] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12271), 7, + ACTIONS(12287), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318174,22 +323796,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12273), 11, + ACTIONS(12285), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290007] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [295707] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12107), 7, + ACTIONS(12561), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318197,7 +323819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12105), 11, + ACTIONS(12563), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318209,85 +323831,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290033] = 6, + [295733] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(12929), 1, - aux_sym_concatenation_token1, - ACTIONS(12931), 1, - sym__concat, - STATE(5562), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4428), 2, - sym_file_descriptor, + ACTIONS(11653), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, + ACTIONS(13286), 1, anon_sym_LT_LT_LT, - [290065] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12929), 1, - aux_sym_concatenation_token1, - ACTIONS(12931), 1, - sym__concat, - STATE(5563), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4513), 2, + ACTIONS(13289), 1, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 13, + ACTIONS(11645), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, + ACTIONS(13283), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [290097] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12275), 7, - anon_sym_PIPE, + STATE(5616), 3, + sym_file_redirect, + sym_herestring_redirect, + aux_sym_redirected_statement_repeat2, + ACTIONS(13280), 8, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12277), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [290123] = 3, - ACTIONS(71), 1, + [295769] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5871), 7, + ACTIONS(2158), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318295,9 +323870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5873), 11, + ACTIONS(2160), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -318307,10 +323881,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290149] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [295795] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12275), 7, + ACTIONS(12573), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318318,7 +323893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12277), 11, + ACTIONS(12575), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318330,10 +323905,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290175] = 3, - ACTIONS(71), 1, + [295821] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12109), 7, + ACTIONS(12440), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318341,7 +323916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12111), 11, + ACTIONS(12438), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318353,68 +323928,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290201] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4469), 1, - anon_sym_LT_LT, - ACTIONS(11634), 1, - sym_file_descriptor, - ACTIONS(12954), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12948), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12952), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12950), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4509), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11299), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [290239] = 9, - ACTIONS(71), 1, + [295847] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(4705), 1, + ACTIONS(4521), 1, anon_sym_LT_LT, - ACTIONS(12201), 1, + ACTIONS(11744), 1, sym_file_descriptor, - ACTIONS(12962), 1, + ACTIONS(13298), 1, anon_sym_LT_LT_DASH, - ACTIONS(12956), 2, + ACTIONS(13292), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12960), 2, + ACTIONS(13296), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12958), 3, + ACTIONS(13294), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5016), 3, + STATE(4436), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11569), 5, + ACTIONS(11565), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [290277] = 3, - ACTIONS(71), 1, + [295885] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4511), 7, + ACTIONS(12440), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318422,45 +323968,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4513), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [290303] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12069), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12067), 11, + ACTIONS(12438), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [290329] = 3, - ACTIONS(71), 1, + [295911] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11887), 7, + ACTIONS(1300), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318468,7 +323991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11885), 11, + ACTIONS(1302), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318479,20 +324002,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [290355] = 6, + sym__special_character, + [295937] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12929), 1, + ACTIONS(13230), 1, aux_sym_concatenation_token1, - ACTIONS(12964), 1, + ACTIONS(13232), 1, sym__concat, - STATE(5566), 1, + STATE(5670), 1, aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, + ACTIONS(4973), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1266), 13, + ACTIONS(4971), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -318506,19 +324029,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [290387] = 6, + [295969] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12929), 1, + ACTIONS(13230), 1, aux_sym_concatenation_token1, - ACTIONS(12966), 1, + ACTIONS(13232), 1, sym__concat, - STATE(5566), 1, + STATE(5612), 1, aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, + ACTIONS(5017), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1286), 13, + ACTIONS(5015), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -318532,26 +324055,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [290419] = 8, + [296001] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(11373), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(12974), 1, - anon_sym_LT_LT_LT, - ACTIONS(12977), 1, + ACTIONS(13230), 1, + aux_sym_concatenation_token1, + ACTIONS(13232), 1, + sym__concat, + STATE(5670), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5901), 2, sym_file_descriptor, - ACTIONS(11365), 2, + aux_sym_heredoc_redirect_token1, + ACTIONS(5899), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12971), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - STATE(5564), 3, - sym_file_redirect, - sym_herestring_redirect, - aux_sym_redirected_statement_repeat2, - ACTIONS(12968), 8, anon_sym_LT, anon_sym_GT, anon_sym_GT_GT, @@ -318560,42 +324078,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP, anon_sym_GT_AMP, anon_sym_GT_PIPE, - [290455] = 3, - ACTIONS(71), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [296033] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(11953), 7, + ACTIONS(13300), 1, anon_sym_PIPE, + ACTIONS(13303), 1, + anon_sym_PIPE_AMP, + STATE(5626), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12188), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11951), 11, + ACTIONS(12193), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [290481] = 6, + [296065] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12980), 1, + ACTIONS(13230), 1, aux_sym_concatenation_token1, - ACTIONS(12983), 1, + ACTIONS(13232), 1, sym__concat, - STATE(5566), 1, + STATE(5612), 1, aux_sym_concatenation_repeat1, - ACTIONS(1278), 2, + ACTIONS(2156), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 13, + ACTIONS(2154), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -318609,71 +324133,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [290513] = 9, - ACTIONS(71), 1, + [296097] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(4312), 1, + ACTIONS(5166), 1, anon_sym_LT_LT, - ACTIONS(11512), 1, + ACTIONS(12066), 1, sym_file_descriptor, - ACTIONS(12992), 1, + ACTIONS(13276), 1, anon_sym_LT_LT_DASH, - ACTIONS(12986), 2, + ACTIONS(13306), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12990), 2, + ACTIONS(13310), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12988), 3, + ACTIONS(13308), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4407), 3, + STATE(4739), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11246), 5, + ACTIONS(11712), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [290551] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12121), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12123), 11, - sym_file_descriptor, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [290577] = 6, + [296135] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12929), 1, + ACTIONS(13230), 1, aux_sym_concatenation_token1, - ACTIONS(12931), 1, + ACTIONS(13232), 1, sym__concat, - STATE(5562), 1, + STATE(5670), 1, aux_sym_concatenation_repeat1, - ACTIONS(5595), 2, + ACTIONS(5046), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 13, + ACTIONS(5044), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -318687,19 +324188,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [290609] = 6, + [296167] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12929), 1, + ACTIONS(13230), 1, aux_sym_concatenation_token1, - ACTIONS(12931), 1, + ACTIONS(13232), 1, sym__concat, - STATE(5563), 1, + STATE(5612), 1, aux_sym_concatenation_repeat1, - ACTIONS(2173), 2, + ACTIONS(5050), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 13, + ACTIONS(5048), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -318713,10 +324214,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [290641] = 3, - ACTIONS(71), 1, + [296199] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12229), 7, + ACTIONS(2158), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318724,7 +324225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12227), 11, + ACTIONS(2160), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318736,10 +324237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290667] = 3, - ACTIONS(71), 1, + [296225] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12125), 7, + ACTIONS(12219), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318747,48 +324248,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12127), 11, + ACTIONS(12221), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290693] = 6, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [296251] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12994), 1, + ACTIONS(12235), 7, anon_sym_PIPE, - ACTIONS(12996), 1, - anon_sym_PIPE_AMP, - STATE(5583), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11895), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11899), 9, + ACTIONS(12237), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290725] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [296277] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(2171), 7, + ACTIONS(13230), 1, + aux_sym_concatenation_token1, + ACTIONS(13232), 1, + sym__concat, + STATE(5670), 1, + aux_sym_concatenation_repeat1, + ACTIONS(5907), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5905), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [296309] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5015), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318796,7 +324320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2173), 11, + ACTIONS(5017), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -318808,33 +324332,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290751] = 3, - ACTIONS(71), 1, + [296335] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(12163), 7, - anon_sym_PIPE, + ACTIONS(5166), 1, + anon_sym_LT_LT, + ACTIONS(13053), 1, + sym_file_descriptor, + ACTIONS(13276), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13312), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(13316), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13314), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5344), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12635), 5, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12165), 11, + [296373] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13230), 1, + aux_sym_concatenation_token1, + ACTIONS(13232), 1, + sym__concat, + STATE(5612), 1, + aux_sym_concatenation_repeat1, + ACTIONS(2160), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2158), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [290777] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [296405] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5173), 7, + ACTIONS(12537), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318842,22 +324398,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5175), 11, + ACTIONS(12539), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290803] = 3, - ACTIONS(71), 1, + [296431] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11875), 7, + ACTIONS(12515), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318865,51 +324421,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11873), 11, + ACTIONS(12513), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [290829] = 9, - ACTIONS(71), 1, + [296457] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(4705), 1, + ACTIONS(4731), 1, anon_sym_LT_LT, - ACTIONS(11867), 1, + ACTIONS(11879), 1, sym_file_descriptor, - ACTIONS(12962), 1, + ACTIONS(13324), 1, anon_sym_LT_LT_DASH, - ACTIONS(12998), 2, + ACTIONS(13318), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13002), 2, + ACTIONS(13322), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13000), 3, + ACTIONS(13320), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4670), 3, + STATE(4473), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11468), 5, + ACTIONS(11639), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [290867] = 3, - ACTIONS(71), 1, + [296495] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12004), 7, + ACTIONS(12515), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318917,22 +324473,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12002), 11, + ACTIONS(12513), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [290893] = 3, - ACTIONS(71), 1, + [296521] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12245), 7, + ACTIONS(12154), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318940,45 +324496,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12243), 11, + ACTIONS(12152), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290919] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [296547] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(12211), 7, + ACTIONS(13326), 1, anon_sym_PIPE, + ACTIONS(13328), 1, + anon_sym_PIPE_AMP, + STATE(5626), 1, + aux_sym_pipeline_repeat1, + ACTIONS(12225), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12213), 11, + ACTIONS(12229), 9, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, - anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [290945] = 3, - ACTIONS(71), 1, + [296579] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(2167), 7, + ACTIONS(12561), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -318986,48 +324545,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2169), 11, + ACTIONS(12563), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [290971] = 6, - ACTIONS(71), 1, + [296605] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(13004), 1, + ACTIONS(6133), 7, anon_sym_PIPE, - ACTIONS(13007), 1, - anon_sym_PIPE_AMP, - STATE(5583), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11839), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11844), 9, + ACTIONS(6135), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291003] = 3, - ACTIONS(71), 1, + [296631] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5888), 7, + ACTIONS(12583), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319035,22 +324591,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5890), 11, + ACTIONS(12581), 11, sym_file_descriptor, - sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291029] = 3, - ACTIONS(71), 1, + [296657] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11945), 7, + ACTIONS(12446), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319058,51 +324614,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11943), 11, + ACTIONS(12448), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [291055] = 9, - ACTIONS(71), 1, + [296683] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(4705), 1, + ACTIONS(5166), 1, anon_sym_LT_LT, - ACTIONS(11831), 1, + ACTIONS(12466), 1, sym_file_descriptor, - ACTIONS(12962), 1, + ACTIONS(13276), 1, anon_sym_LT_LT_DASH, - ACTIONS(13010), 2, + ACTIONS(13330), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13014), 2, + ACTIONS(13334), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13012), 3, + ACTIONS(13332), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(4669), 3, + STATE(5058), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(11540), 5, + ACTIONS(11962), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [291093] = 3, - ACTIONS(71), 1, + [296721] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12167), 7, + ACTIONS(12122), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319110,22 +324666,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12169), 11, + ACTIONS(12120), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291119] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [296747] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(11779), 7, + ACTIONS(5166), 1, + anon_sym_LT_LT, + ACTIONS(12384), 1, + sym_file_descriptor, + ACTIONS(13276), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13336), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(13340), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(13338), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(4869), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(11775), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [296785] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5015), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319133,7 +324718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11777), 11, + ACTIONS(5017), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319145,19 +324730,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [291145] = 6, + [296811] = 9, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6248), 1, + anon_sym_LT_LT, + ACTIONS(6250), 1, + anon_sym_LT_LT_DASH, + ACTIONS(13051), 1, + sym_file_descriptor, + ACTIONS(6246), 2, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(12705), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(12703), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + STATE(5385), 3, + sym_file_redirect, + sym_heredoc_redirect, + aux_sym_redirected_statement_repeat1, + ACTIONS(12701), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [296849] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12929), 1, + ACTIONS(13342), 1, aux_sym_concatenation_token1, - ACTIONS(12931), 1, + ACTIONS(13345), 1, sym__concat, - STATE(5562), 1, + STATE(5653), 1, aux_sym_concatenation_repeat1, - ACTIONS(4579), 2, + ACTIONS(1306), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 13, + ACTIONS(1304), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -319171,10 +324785,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [291177] = 3, - ACTIONS(71), 1, + [296881] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4593), 7, + ACTIONS(12549), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319182,48 +324796,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4595), 11, + ACTIONS(12551), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [291203] = 6, - ACTIONS(3), 1, + [296907] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12929), 1, - aux_sym_concatenation_token1, - ACTIONS(12931), 1, - sym__concat, - STATE(5563), 1, - aux_sym_concatenation_repeat1, - ACTIONS(4595), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12241), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12243), 11, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [291235] = 3, - ACTIONS(71), 1, + [296933] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12119), 7, + ACTIONS(5048), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319231,80 +324842,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12117), 11, + ACTIONS(5050), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291261] = 9, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [296959] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(6012), 1, + ACTIONS(13177), 1, anon_sym_LT_LT, - ACTIONS(6014), 1, + ACTIONS(13179), 1, anon_sym_LT_LT_DASH, - ACTIONS(12682), 1, + ACTIONS(13181), 1, sym_file_descriptor, - ACTIONS(6010), 2, + ACTIONS(6246), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(12387), 2, + ACTIONS(13157), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(12385), 3, + ACTIONS(13155), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5369), 3, + STATE(5488), 3, sym_file_redirect, sym_heredoc_redirect, aux_sym_redirected_statement_repeat1, - ACTIONS(12383), 5, + ACTIONS(13153), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [291299] = 9, - ACTIONS(71), 1, + [296997] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4705), 1, - anon_sym_LT_LT, - ACTIONS(11829), 1, - sym_file_descriptor, - ACTIONS(12962), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13016), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(13020), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13018), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(4634), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(11522), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [291337] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11823), 7, + ACTIONS(12362), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319312,7 +324894,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11821), 11, + ACTIONS(12364), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319324,36 +324906,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, anon_sym_LT_LT_LT, - [291363] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(12929), 1, - aux_sym_concatenation_token1, - ACTIONS(12931), 1, - sym__concat, - STATE(5562), 1, - aux_sym_concatenation_repeat1, - ACTIONS(5589), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [291395] = 3, - ACTIONS(71), 1, + [297023] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12167), 7, + ACTIONS(12307), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319361,48 +324917,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12169), 11, + ACTIONS(12305), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291421] = 6, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [297049] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11841), 1, + ACTIONS(12076), 7, anon_sym_PIPE, - ACTIONS(13022), 1, - anon_sym_PIPE_AMP, - STATE(5573), 1, - aux_sym_pipeline_repeat1, - ACTIONS(11839), 6, anon_sym_LT, anon_sym_GT, anon_sym_LT_LT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11844), 9, + ACTIONS(12074), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291453] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [297075] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12179), 7, + ACTIONS(2154), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319410,7 +324963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12181), 11, + ACTIONS(2156), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319422,10 +324975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291479] = 3, - ACTIONS(71), 1, + [297101] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12179), 7, + ACTIONS(12509), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319433,7 +324986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12181), 11, + ACTIONS(12511), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319445,10 +324998,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291505] = 3, - ACTIONS(71), 1, + [297127] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12189), 7, + ACTIONS(5048), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319456,7 +325009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12187), 11, + ACTIONS(5050), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319468,10 +325021,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291531] = 3, - ACTIONS(71), 1, + [297153] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11931), 7, + ACTIONS(12517), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319479,22 +325032,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11929), 11, + ACTIONS(12519), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [291557] = 3, - ACTIONS(71), 1, + [297179] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11789), 7, + ACTIONS(12521), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319502,22 +325055,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11787), 11, + ACTIONS(12523), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [291583] = 3, - ACTIONS(71), 1, + [297205] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11994), 7, + ACTIONS(12525), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319525,22 +325078,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11992), 11, + ACTIONS(12527), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [291609] = 3, - ACTIONS(71), 1, + [297231] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(2167), 7, + ACTIONS(12553), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319548,7 +325101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2169), 11, + ACTIONS(12555), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319560,39 +325113,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291635] = 9, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12871), 1, - anon_sym_LT_LT, - ACTIONS(12873), 1, - anon_sym_LT_LT_DASH, - ACTIONS(12875), 1, - sym_file_descriptor, - ACTIONS(6010), 2, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - ACTIONS(12840), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(12838), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - STATE(5473), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12836), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [291673] = 3, - ACTIONS(71), 1, + [297257] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4593), 7, + ACTIONS(12529), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319600,7 +325124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4595), 11, + ACTIONS(12531), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319612,10 +325136,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291699] = 3, - ACTIONS(71), 1, + [297283] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11797), 7, + ACTIONS(12529), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319623,31 +325147,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11795), 11, + ACTIONS(12531), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [291725] = 6, + [297309] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12929), 1, + ACTIONS(13230), 1, aux_sym_concatenation_token1, - ACTIONS(12931), 1, + ACTIONS(13348), 1, sym__concat, - STATE(5563), 1, + STATE(5653), 1, aux_sym_concatenation_repeat1, - ACTIONS(2169), 2, + ACTIONS(1296), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 13, + ACTIONS(1294), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -319661,10 +325185,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [291757] = 3, - ACTIONS(71), 1, + [297341] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4511), 7, + ACTIONS(12148), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319672,22 +325196,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4513), 11, + ACTIONS(12150), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291783] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + [297367] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11923), 7, + ACTIONS(5499), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319695,8 +325219,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11921), 11, + ACTIONS(5501), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, @@ -319706,11 +325231,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [291809] = 3, - ACTIONS(71), 1, + [297393] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(2171), 7, + ACTIONS(12533), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319718,51 +325242,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2173), 11, + ACTIONS(12535), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - anon_sym_LT_LT_LT, - [291835] = 9, - ACTIONS(71), 1, + [297419] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4705), 1, + ACTIONS(12315), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, anon_sym_LT_LT, - ACTIONS(12734), 1, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12313), 11, sym_file_descriptor, - ACTIONS(12962), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13025), 2, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(13029), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13027), 3, anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - STATE(5297), 3, - sym_file_redirect, - sym_heredoc_redirect, - aux_sym_redirected_statement_repeat1, - ACTIONS(12324), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [291873] = 3, - ACTIONS(71), 1, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + anon_sym_LT_LT_LT, + [297445] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1272), 7, + ACTIONS(12533), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319770,22 +325288,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(1274), 11, + ACTIONS(12535), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, + anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - sym__special_character, - [291899] = 3, - ACTIONS(71), 1, + [297471] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12119), 7, + ACTIONS(12553), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319793,7 +325311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12117), 11, + ACTIONS(12555), 11, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319805,10 +325323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291925] = 3, - ACTIONS(71), 1, + [297497] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12229), 7, + ACTIONS(6129), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319816,72 +325334,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12227), 11, + ACTIONS(6131), 11, sym_file_descriptor, + sym_variable_name, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_GT_GT, anon_sym_PIPE_AMP, - anon_sym_RBRACK, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [291951] = 5, - ACTIONS(3), 1, + [297523] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(13031), 1, - sym__special_character, - STATE(5631), 1, - aux_sym__literal_repeat1, - ACTIONS(5589), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5587), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12529), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [291980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1314), 3, + ACTIONS(12531), 10, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [292005] = 3, + anon_sym_LT_LT_DASH, + [297548] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 3, + ACTIONS(1366), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 14, + ACTIONS(1364), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -319896,10 +325390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [292030] = 3, - ACTIONS(71), 1, + [297573] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11923), 7, + ACTIONS(12315), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319907,7 +325401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11921), 10, + ACTIONS(12313), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319918,10 +325412,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292055] = 3, - ACTIONS(71), 1, + [297598] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12275), 7, + ACTIONS(12537), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319929,7 +325423,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12277), 10, + ACTIONS(12539), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319940,10 +325434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292080] = 3, - ACTIONS(71), 1, + [297623] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12245), 7, + ACTIONS(12567), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319951,7 +325445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12243), 10, + ACTIONS(12565), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -319962,32 +325456,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1318), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [292130] = 3, - ACTIONS(71), 1, + [297648] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12211), 7, + ACTIONS(12547), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -319995,7 +325467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12213), 10, + ACTIONS(12545), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320006,14 +325478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292155] = 3, + [297673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 3, + ACTIONS(1346), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 14, + ACTIONS(1344), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -320028,10 +325500,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [292180] = 3, - ACTIONS(71), 1, + [297698] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12185), 7, + ACTIONS(5048), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320039,7 +325511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12183), 10, + ACTIONS(5050), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320050,32 +325522,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1302), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [292230] = 3, - ACTIONS(71), 1, + [297723] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12177), 7, + ACTIONS(12583), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320083,7 +325533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12175), 10, + ACTIONS(12581), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320094,14 +325544,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292255] = 3, + [297748] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 3, + ACTIONS(13350), 1, + sym__special_character, + STATE(5687), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 14, + ACTIONS(1394), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -320115,40 +325568,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [292280] = 3, - ACTIONS(71), 1, + [297777] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12229), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12227), 10, + ACTIONS(1382), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1380), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [292305] = 5, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [297802] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(13033), 1, + ACTIONS(13353), 1, sym__special_character, - STATE(5631), 1, + STATE(5687), 1, aux_sym__literal_repeat1, - ACTIONS(1362), 2, + ACTIONS(4973), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(1360), 13, + ACTIONS(4971), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -320162,10 +325614,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [292334] = 3, - ACTIONS(71), 1, + [297831] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11931), 7, + ACTIONS(12442), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320173,7 +325625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11929), 10, + ACTIONS(12444), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320184,10 +325636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292359] = 3, - ACTIONS(71), 1, + [297856] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12069), 7, + ACTIONS(12468), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320195,7 +325647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12067), 10, + ACTIONS(12470), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320206,10 +325658,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292384] = 3, - ACTIONS(71), 1, + [297881] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12229), 7, + ACTIONS(12452), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320217,7 +325669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12227), 10, + ACTIONS(12450), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320228,10 +325680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292409] = 3, - ACTIONS(71), 1, + [297906] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12119), 7, + ACTIONS(12122), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320239,7 +325691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12117), 10, + ACTIONS(12120), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320250,14 +325702,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292434] = 3, + [297931] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 3, + ACTIONS(1334), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 14, + ACTIONS(1332), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -320272,10 +325724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [292459] = 3, - ACTIONS(71), 1, + [297956] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12115), 7, + ACTIONS(12464), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320283,7 +325735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12113), 10, + ACTIONS(12462), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320294,34 +325746,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292484] = 5, - ACTIONS(3), 1, + [297981] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(13031), 1, - sym__special_character, - STATE(5631), 1, - aux_sym__literal_repeat1, - ACTIONS(5595), 2, + ACTIONS(6209), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(6211), 10, sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(5593), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [298006] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12517), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + ACTIONS(12519), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_DASH, + [298031] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12533), 7, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_LT, + anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12535), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [292513] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_DASH, + [298056] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12179), 7, + ACTIONS(12311), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320329,7 +325823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12181), 10, + ACTIONS(12309), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320340,10 +325834,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292538] = 3, - ACTIONS(71), 1, + [298081] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12119), 7, + ACTIONS(12579), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320351,7 +325845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12117), 10, + ACTIONS(12577), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320362,10 +325856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292563] = 3, - ACTIONS(71), 1, + [298106] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12271), 7, + ACTIONS(2154), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320373,7 +325867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12273), 10, + ACTIONS(2156), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320384,10 +325878,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292588] = 3, - ACTIONS(71), 1, + [298131] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12281), 7, + ACTIONS(12440), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320395,7 +325889,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12279), 10, + ACTIONS(12438), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320406,14 +325900,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292613] = 3, + [298156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 3, + ACTIONS(13353), 1, + sym__special_character, + STATE(5687), 1, + aux_sym__literal_repeat1, + ACTIONS(5901), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 14, + ACTIONS(5899), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -320427,11 +325924,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [292638] = 3, - ACTIONS(71), 1, + [298185] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12163), 7, + ACTIONS(12515), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320439,7 +325935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12165), 10, + ACTIONS(12513), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320450,10 +325946,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292663] = 3, - ACTIONS(71), 1, + [298210] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12271), 7, + ACTIONS(12509), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320461,7 +325957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12273), 10, + ACTIONS(12511), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320472,54 +325968,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292688] = 3, - ACTIONS(71), 1, + [298235] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12107), 7, - anon_sym_PIPE, + ACTIONS(1306), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1304), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12105), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [298260] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1390), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1388), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [292713] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [298285] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12115), 7, - anon_sym_PIPE, + ACTIONS(1342), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12113), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [298310] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [292738] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [298335] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12239), 7, + ACTIONS(12521), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320527,7 +326067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12241), 10, + ACTIONS(12523), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320538,10 +326078,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292763] = 3, - ACTIONS(71), 1, + [298360] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(4511), 7, + ACTIONS(12456), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320549,7 +326089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(4513), 10, + ACTIONS(12454), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320560,10 +326100,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292788] = 3, - ACTIONS(71), 1, + [298385] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12231), 7, + ACTIONS(12559), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320571,7 +326111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12233), 10, + ACTIONS(12557), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320582,32 +326122,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292813] = 3, - ACTIONS(3), 1, + [298410] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1334), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [292838] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12109), 7, + ACTIONS(12456), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320615,7 +326133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12111), 10, + ACTIONS(12454), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320626,34 +326144,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292863] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13031), 1, - sym__special_character, - STATE(5631), 1, - aux_sym__literal_repeat1, - ACTIONS(4579), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4577), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [292892] = 3, - ACTIONS(71), 1, + [298435] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12235), 7, + ACTIONS(12458), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320661,7 +326155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12237), 10, + ACTIONS(12460), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320672,10 +326166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292917] = 3, - ACTIONS(71), 1, + [298460] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12275), 7, + ACTIONS(12434), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320683,7 +326177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12277), 10, + ACTIONS(12436), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320694,10 +326188,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292942] = 3, - ACTIONS(71), 1, + [298485] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12173), 7, + ACTIONS(12561), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320705,7 +326199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12171), 10, + ACTIONS(12563), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320716,14 +326210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [292967] = 3, + [298510] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 3, + ACTIONS(1330), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 14, + ACTIONS(1328), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -320738,32 +326232,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [292992] = 3, - ACTIONS(3), 1, + [298535] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1278), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12307), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12305), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [293017] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_DASH, + [298560] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12209), 7, + ACTIONS(12494), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320771,7 +326265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12207), 10, + ACTIONS(12496), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320782,32 +326276,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293042] = 3, - ACTIONS(3), 1, + [298585] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12515), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, + ACTIONS(12513), 10, + sym_file_descriptor, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_GT_GT, + anon_sym_PIPE_AMP, + anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [293067] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_DASH, + [298610] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11823), 7, + ACTIONS(12420), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320815,7 +326309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11821), 10, + ACTIONS(12422), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320826,10 +326320,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293092] = 3, - ACTIONS(71), 1, + [298635] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11779), 7, + ACTIONS(5015), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320837,7 +326331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11777), 10, + ACTIONS(5017), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320848,10 +326342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293117] = 3, - ACTIONS(71), 1, + [298660] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12219), 7, + ACTIONS(12525), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320859,7 +326353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12221), 10, + ACTIONS(12527), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320870,10 +326364,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293142] = 3, - ACTIONS(71), 1, + [298685] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12121), 7, + ACTIONS(12561), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320881,7 +326375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12123), 10, + ACTIONS(12563), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320892,10 +326386,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293167] = 3, - ACTIONS(71), 1, + [298710] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13353), 1, + sym__special_character, + STATE(5687), 1, + aux_sym__literal_repeat1, + ACTIONS(5046), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5044), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [298739] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12217), 7, + ACTIONS(12287), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320903,7 +326421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12215), 10, + ACTIONS(12285), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320914,10 +326432,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293192] = 3, - ACTIONS(71), 1, + [298764] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12179), 7, + ACTIONS(12573), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320925,7 +326443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12181), 10, + ACTIONS(12575), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320936,10 +326454,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293217] = 3, - ACTIONS(71), 1, + [298789] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12167), 7, + ACTIONS(12235), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320947,7 +326465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12169), 10, + ACTIONS(12237), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320958,10 +326476,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293242] = 3, - ACTIONS(71), 1, + [298814] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12225), 7, + ACTIONS(12553), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320969,7 +326487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12223), 10, + ACTIONS(12555), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -320980,10 +326498,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293267] = 3, - ACTIONS(71), 1, + [298839] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12125), 7, + ACTIONS(12148), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -320991,7 +326509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12127), 10, + ACTIONS(12150), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321002,17 +326520,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293292] = 5, + [298864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13031), 1, - sym__special_character, - STATE(5631), 1, - aux_sym__literal_repeat1, - ACTIONS(4428), 2, + ACTIONS(1378), 3, sym_file_descriptor, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(4426), 13, + ACTIONS(1376), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -321026,14 +326541,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [293321] = 3, + aux_sym_concatenation_token1, + [298889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 3, + ACTIONS(1370), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 14, + ACTIONS(1368), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -321048,10 +326564,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [293346] = 3, - ACTIONS(71), 1, + [298914] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11953), 7, + ACTIONS(12446), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321059,7 +326575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11951), 10, + ACTIONS(12448), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321070,10 +326586,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293371] = 3, - ACTIONS(71), 1, + [298939] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12189), 7, + ACTIONS(12507), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321081,7 +326597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12187), 10, + ACTIONS(12505), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321092,32 +326608,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293396] = 3, - ACTIONS(71), 1, + [298964] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12247), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12249), 10, + ACTIONS(1358), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1356), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [293421] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [298989] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12159), 7, + ACTIONS(12424), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321125,7 +326641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12161), 10, + ACTIONS(12426), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321136,10 +326652,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293446] = 3, - ACTIONS(71), 1, + [299014] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12167), 7, + ACTIONS(12428), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321147,7 +326663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12169), 10, + ACTIONS(12430), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321158,36 +326674,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293471] = 3, - ACTIONS(71), 1, + [299039] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12004), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(12002), 10, + ACTIONS(1354), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1352), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [293496] = 3, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [299064] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 3, + ACTIONS(1350), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 14, + ACTIONS(1348), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -321202,10 +326718,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [293521] = 3, - ACTIONS(71), 1, + [299089] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12205), 7, + ACTIONS(12529), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321213,7 +326729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12203), 10, + ACTIONS(12531), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321224,32 +326740,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293546] = 3, - ACTIONS(71), 1, + [299114] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 7, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_LT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - ACTIONS(4595), 10, + ACTIONS(1386), 3, sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1384), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [293571] = 3, - ACTIONS(71), 1, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [299139] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12191), 7, + ACTIONS(12219), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321257,7 +326773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12193), 10, + ACTIONS(12221), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321268,10 +326784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293596] = 3, - ACTIONS(71), 1, + [299164] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5927), 7, + ACTIONS(12500), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321279,7 +326795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5929), 10, + ACTIONS(12498), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321290,10 +326806,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293621] = 3, - ACTIONS(71), 1, + [299189] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12185), 7, + ACTIONS(12440), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321301,7 +326817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12183), 10, + ACTIONS(12438), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321312,10 +326828,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293646] = 3, - ACTIONS(71), 1, + [299214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1370), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1368), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [299239] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12290), 7, + ACTIONS(12553), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321323,7 +326861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12288), 10, + ACTIONS(12555), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321334,10 +326872,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293671] = 3, - ACTIONS(71), 1, + [299264] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5927), 7, + ACTIONS(12543), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321345,7 +326883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(5929), 10, + ACTIONS(12541), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321356,58 +326894,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293696] = 3, - ACTIONS(3), 1, + [299289] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1350), 3, - sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(12547), 7, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, - anon_sym_GT_GT, + anon_sym_LT_LT, anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [293721] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1338), 3, + ACTIONS(12545), 10, sym_file_descriptor, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP_GT, + anon_sym_PIPE_AMP, anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [293746] = 3, + anon_sym_LT_LT_DASH, + [299314] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1330), 3, + ACTIONS(13353), 1, + sym__special_character, + STATE(5687), 1, + aux_sym__literal_repeat1, + ACTIONS(5907), 2, sym_file_descriptor, - sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1328), 14, + ACTIONS(5905), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -321421,11 +326940,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - aux_sym_concatenation_token1, - [293771] = 3, - ACTIONS(71), 1, + [299343] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(2171), 7, + ACTIONS(12569), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321433,7 +326951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2173), 10, + ACTIONS(12571), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321444,10 +326962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293796] = 3, - ACTIONS(71), 1, + [299368] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12151), 7, + ACTIONS(2158), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321455,7 +326973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12153), 10, + ACTIONS(2160), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321466,14 +326984,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293821] = 3, + [299393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 3, + ACTIONS(1362), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 14, + ACTIONS(1360), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -321488,10 +327006,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [293846] = 3, - ACTIONS(71), 1, + [299418] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(2167), 7, + ACTIONS(12533), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321499,7 +327017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(2169), 10, + ACTIONS(12535), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321510,14 +327028,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293871] = 3, + [299443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 3, + ACTIONS(1374), 3, sym_file_descriptor, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 14, + ACTIONS(1372), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -321532,10 +327050,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, aux_sym_concatenation_token1, - [293896] = 3, - ACTIONS(71), 1, + [299468] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12155), 7, + ACTIONS(1338), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1336), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [299493] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6209), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321543,7 +327083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12157), 10, + ACTIONS(6211), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321554,10 +327094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293921] = 3, - ACTIONS(71), 1, + [299518] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(11789), 7, + ACTIONS(12549), 7, anon_sym_PIPE, anon_sym_LT, anon_sym_GT, @@ -321565,7 +327105,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(11787), 10, + ACTIONS(12551), 10, sym_file_descriptor, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -321576,72 +327116,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_DASH, - [293946] = 3, - ACTIONS(71), 1, + [299543] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(12103), 7, - anon_sym_PIPE, + ACTIONS(1326), 3, + sym_file_descriptor, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1324), 14, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, anon_sym_LT, anon_sym_GT, - anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - ACTIONS(12101), 10, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + aux_sym_concatenation_token1, + [299568] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 2, sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 14, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, anon_sym_GT_GT, - anon_sym_PIPE_AMP, + anon_sym_AMP_GT, anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, anon_sym_GT_PIPE, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_DASH, - [293971] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(11735), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, - anon_sym_BQUOTE, - ACTIONS(11739), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13040), 1, - aux_sym__simple_variable_name_token1, - ACTIONS(13042), 1, - sym_variable_name, - STATE(3545), 1, - sym_subscript, - STATE(6460), 1, - sym_command_substitution, - ACTIONS(13038), 3, - anon_sym_DOLLAR, - anon_sym_0, - anon_sym__, - ACTIONS(13036), 6, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_POUND, - anon_sym_AT2, - [294009] = 7, + anon_sym_LT_LT_LT, + sym__special_character, + [299592] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6494), 1, + ACTIONS(6679), 1, anon_sym_DQUOTE, - ACTIONS(13048), 1, + ACTIONS(13359), 1, sym_variable_name, - STATE(6482), 1, + STATE(6596), 1, sym_string, - ACTIONS(1227), 2, + ACTIONS(1267), 2, anon_sym_PIPE, anon_sym_RPAREN, - ACTIONS(13046), 2, + ACTIONS(13357), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13044), 9, + ACTIONS(13355), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321651,43 +327184,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [294041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1274), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 14, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - sym__special_character, - [294065] = 7, + [299624] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6494), 1, + ACTIONS(6679), 1, anon_sym_DQUOTE, - ACTIONS(13048), 1, + ACTIONS(13359), 1, sym_variable_name, - STATE(6482), 1, + STATE(6596), 1, sym_string, - ACTIONS(1239), 2, + ACTIONS(1255), 2, anon_sym_PIPE, anon_sym_RPAREN, - ACTIONS(13046), 2, + ACTIONS(13357), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13044), 9, + ACTIONS(13355), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -321697,341 +327209,561 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [294097] = 9, + [299656] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(11735), 1, + ACTIONS(12056), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(11737), 1, + ACTIONS(12058), 1, anon_sym_BQUOTE, - ACTIONS(11739), 1, + ACTIONS(12060), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13054), 1, + ACTIONS(13365), 1, aux_sym__simple_variable_name_token1, - ACTIONS(13056), 1, + ACTIONS(13367), 1, sym_variable_name, - STATE(6460), 2, + STATE(3626), 1, sym_subscript, + STATE(6487), 1, sym_command_substitution, - ACTIONS(13052), 3, + ACTIONS(13363), 3, anon_sym_DOLLAR, anon_sym_0, anon_sym__, - ACTIONS(13050), 6, + ACTIONS(13361), 6, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, anon_sym_QMARK, anon_sym_POUND, anon_sym_AT2, - [294133] = 12, + [299694] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(12056), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12058), 1, + anon_sym_BQUOTE, + ACTIONS(12060), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13373), 1, + aux_sym__simple_variable_name_token1, + ACTIONS(13375), 1, + sym_variable_name, + STATE(6487), 2, + sym_subscript, + sym_command_substitution, + ACTIONS(13371), 3, + anon_sym_DOLLAR, + anon_sym_0, + anon_sym__, + ACTIONS(13369), 6, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_POUND, + anon_sym_AT2, + [299730] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13062), 1, + ACTIONS(13381), 1, anon_sym_DOLLAR, - ACTIONS(13064), 1, + ACTIONS(13383), 1, anon_sym_DQUOTE, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294174] = 12, + [299771] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13076), 1, + ACTIONS(13395), 1, anon_sym_DOLLAR, - ACTIONS(13078), 1, + ACTIONS(13397), 1, anon_sym_DQUOTE, - STATE(5705), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294215] = 3, + [299812] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4513), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(4511), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [294238] = 12, + ACTIONS(13379), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13385), 1, + sym_string_content, + ACTIONS(13387), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13389), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13391), 1, + anon_sym_BQUOTE, + ACTIONS(13393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13399), 1, + anon_sym_DOLLAR, + ACTIONS(13401), 1, + anon_sym_DQUOTE, + STATE(5880), 1, + aux_sym_string_repeat1, + ACTIONS(13377), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6198), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [299853] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13080), 1, + ACTIONS(13403), 1, anon_sym_DOLLAR, - ACTIONS(13082), 1, + ACTIONS(13405), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294279] = 12, + [299894] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13084), 1, + ACTIONS(13407), 1, anon_sym_DOLLAR, - ACTIONS(13086), 1, + ACTIONS(13409), 1, anon_sym_DQUOTE, - STATE(5708), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294320] = 12, + [299935] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13088), 1, + ACTIONS(13411), 1, anon_sym_DOLLAR, - ACTIONS(13090), 1, + ACTIONS(13413), 1, anon_sym_DQUOTE, - STATE(5711), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294361] = 12, + [299976] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13092), 1, + ACTIONS(13415), 1, anon_sym_DOLLAR, - ACTIONS(13094), 1, + ACTIONS(13417), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294402] = 3, + [300017] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2171), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [294425] = 12, + ACTIONS(13379), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13385), 1, + sym_string_content, + ACTIONS(13387), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13389), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13391), 1, + anon_sym_BQUOTE, + ACTIONS(13393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13419), 1, + anon_sym_DOLLAR, + ACTIONS(13421), 1, + anon_sym_DQUOTE, + STATE(5880), 1, + aux_sym_string_repeat1, + ACTIONS(13377), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6198), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [300058] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13096), 1, + ACTIONS(13423), 1, anon_sym_DOLLAR, - ACTIONS(13098), 1, + ACTIONS(13425), 1, anon_sym_DQUOTE, - STATE(5720), 1, + STATE(5787), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294466] = 12, + [300099] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13100), 1, + ACTIONS(13427), 1, anon_sym_DOLLAR, - ACTIONS(13102), 1, + ACTIONS(13429), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294507] = 12, + [300140] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13104), 1, + ACTIONS(13431), 1, anon_sym_DOLLAR, - ACTIONS(13106), 1, + ACTIONS(13433), 1, anon_sym_DQUOTE, - STATE(5714), 1, + STATE(5785), 1, + aux_sym_string_repeat1, + ACTIONS(13377), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6198), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [300181] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13379), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13385), 1, + sym_string_content, + ACTIONS(13387), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13389), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13391), 1, + anon_sym_BQUOTE, + ACTIONS(13393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13435), 1, + anon_sym_DOLLAR, + ACTIONS(13437), 1, + anon_sym_DQUOTE, + STATE(5880), 1, + aux_sym_string_repeat1, + ACTIONS(13377), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6198), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [300222] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13379), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13385), 1, + sym_string_content, + ACTIONS(13387), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13389), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13391), 1, + anon_sym_BQUOTE, + ACTIONS(13393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13439), 1, + anon_sym_DOLLAR, + ACTIONS(13441), 1, + anon_sym_DQUOTE, + STATE(5880), 1, + aux_sym_string_repeat1, + ACTIONS(13377), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6198), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [300263] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13379), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13385), 1, + sym_string_content, + ACTIONS(13387), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13389), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13391), 1, + anon_sym_BQUOTE, + ACTIONS(13393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13443), 1, + anon_sym_DOLLAR, + ACTIONS(13445), 1, + anon_sym_DQUOTE, + STATE(5794), 1, + aux_sym_string_repeat1, + ACTIONS(13377), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6198), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [300304] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13379), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13385), 1, + sym_string_content, + ACTIONS(13387), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13389), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13391), 1, + anon_sym_BQUOTE, + ACTIONS(13393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13447), 1, + anon_sym_DOLLAR, + ACTIONS(13449), 1, + anon_sym_DQUOTE, + STATE(5791), 1, + aux_sym_string_repeat1, + ACTIONS(13377), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6198), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [300345] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13379), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13385), 1, + sym_string_content, + ACTIONS(13387), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13389), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13391), 1, + anon_sym_BQUOTE, + ACTIONS(13393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13451), 1, + anon_sym_DOLLAR, + ACTIONS(13453), 1, + anon_sym_DQUOTE, + STATE(5880), 1, + aux_sym_string_repeat1, + ACTIONS(13377), 2, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + STATE(6198), 4, + sym_arithmetic_expansion, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + [300386] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13379), 1, + anon_sym_DOLLAR_LBRACK, + ACTIONS(13385), 1, + sym_string_content, + ACTIONS(13387), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(13389), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(13391), 1, + anon_sym_BQUOTE, + ACTIONS(13393), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(13455), 1, + anon_sym_DOLLAR, + ACTIONS(13457), 1, + anon_sym_DQUOTE, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294548] = 3, + [300427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4595), 2, + ACTIONS(5017), 2, sym_file_descriptor, aux_sym_heredoc_redirect_token1, - ACTIONS(4593), 13, + ACTIONS(5015), 13, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_LT, @@ -322045,4389 +327777,4373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, anon_sym_LT_LT_LT, - [294571] = 12, + [300450] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13108), 1, + ACTIONS(13459), 1, anon_sym_DOLLAR, - ACTIONS(13110), 1, + ACTIONS(13461), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5907), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294612] = 12, + [300491] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13112), 1, + ACTIONS(13463), 1, anon_sym_DOLLAR, - ACTIONS(13114), 1, + ACTIONS(13465), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294653] = 12, + [300532] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13116), 1, + ACTIONS(13467), 1, anon_sym_DOLLAR, - ACTIONS(13118), 1, + ACTIONS(13469), 1, anon_sym_DQUOTE, - STATE(5746), 1, + STATE(5768), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294694] = 12, + [300573] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13120), 1, + ACTIONS(13471), 1, anon_sym_DOLLAR, - ACTIONS(13122), 1, + ACTIONS(13473), 1, anon_sym_DQUOTE, - STATE(5719), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294735] = 12, + [300614] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13124), 1, + ACTIONS(13475), 1, anon_sym_DOLLAR, - ACTIONS(13126), 1, + ACTIONS(13477), 1, anon_sym_DQUOTE, - STATE(5723), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294776] = 12, + [300655] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13128), 1, + ACTIONS(13479), 1, anon_sym_DOLLAR, - ACTIONS(13130), 1, + ACTIONS(13481), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294817] = 12, + [300696] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13132), 1, + ACTIONS(13483), 1, anon_sym_DOLLAR, - ACTIONS(13134), 1, + ACTIONS(13485), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5871), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294858] = 12, + [300737] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13136), 1, + ACTIONS(13487), 1, anon_sym_DOLLAR, - ACTIONS(13138), 1, + ACTIONS(13489), 1, anon_sym_DQUOTE, - STATE(5722), 1, + STATE(5793), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294899] = 12, + [300778] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13140), 1, + ACTIONS(13491), 1, anon_sym_DOLLAR, - ACTIONS(13142), 1, + ACTIONS(13493), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5798), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294940] = 12, + [300819] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13144), 1, + ACTIONS(13495), 1, anon_sym_DOLLAR, - ACTIONS(13146), 1, + ACTIONS(13497), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [294981] = 12, + [300860] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13148), 1, + ACTIONS(13499), 1, anon_sym_DOLLAR, - ACTIONS(13150), 1, + ACTIONS(13501), 1, anon_sym_DQUOTE, - STATE(5725), 1, + STATE(5780), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295022] = 12, + [300901] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13152), 1, + ACTIONS(13503), 1, anon_sym_DOLLAR, - ACTIONS(13154), 1, + ACTIONS(13505), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295063] = 12, + [300942] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13156), 1, + ACTIONS(13507), 1, anon_sym_DOLLAR, - ACTIONS(13158), 1, + ACTIONS(13509), 1, anon_sym_DQUOTE, - STATE(5732), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295104] = 12, + [300983] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13160), 1, + ACTIONS(13511), 1, anon_sym_DOLLAR, - ACTIONS(13162), 1, + ACTIONS(13513), 1, anon_sym_DQUOTE, - STATE(5728), 1, + STATE(5810), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295145] = 12, + [301024] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13164), 1, + ACTIONS(13515), 1, anon_sym_DOLLAR, - ACTIONS(13166), 1, + ACTIONS(13517), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5800), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295186] = 12, + [301065] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13168), 1, + ACTIONS(13519), 1, anon_sym_DOLLAR, - ACTIONS(13170), 1, + ACTIONS(13521), 1, anon_sym_DQUOTE, - STATE(5733), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295227] = 12, + [301106] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13172), 1, + ACTIONS(13523), 1, anon_sym_DOLLAR, - ACTIONS(13174), 1, + ACTIONS(13525), 1, anon_sym_DQUOTE, - STATE(5731), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295268] = 12, + [301147] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13176), 1, + ACTIONS(13527), 1, anon_sym_DOLLAR, - ACTIONS(13178), 1, + ACTIONS(13529), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5913), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295309] = 12, + [301188] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13180), 1, + ACTIONS(13531), 1, anon_sym_DOLLAR, - ACTIONS(13182), 1, + ACTIONS(13533), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295350] = 12, + [301229] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13184), 1, + ACTIONS(13535), 1, anon_sym_DOLLAR, - ACTIONS(13186), 1, + ACTIONS(13537), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5821), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295391] = 12, + [301270] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13188), 1, + ACTIONS(13539), 1, anon_sym_DOLLAR, - ACTIONS(13190), 1, + ACTIONS(13541), 1, anon_sym_DQUOTE, - STATE(5735), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295432] = 12, + [301311] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13192), 1, + ACTIONS(13543), 1, anon_sym_DOLLAR, - ACTIONS(13194), 1, + ACTIONS(13545), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5806), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295473] = 12, + [301352] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13196), 1, + ACTIONS(13547), 1, anon_sym_DOLLAR, - ACTIONS(13198), 1, + ACTIONS(13549), 1, anon_sym_DQUOTE, - STATE(5738), 1, + STATE(5910), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295514] = 12, + [301393] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13200), 1, + ACTIONS(13551), 1, anon_sym_DOLLAR, - ACTIONS(13202), 1, + ACTIONS(13553), 1, anon_sym_DQUOTE, - STATE(5742), 1, + STATE(5823), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295555] = 12, + [301434] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13204), 1, + ACTIONS(13555), 1, anon_sym_DOLLAR, - ACTIONS(13206), 1, + ACTIONS(13557), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295596] = 12, + [301475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, - sym_string_content, - ACTIONS(13068), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, - anon_sym_BQUOTE, - ACTIONS(13074), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13208), 1, - anon_sym_DOLLAR, - ACTIONS(13210), 1, - anon_sym_DQUOTE, - STATE(5743), 1, - aux_sym_string_repeat1, - ACTIONS(13058), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [295637] = 12, + ACTIONS(2156), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2154), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [301498] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13212), 1, + ACTIONS(13559), 1, anon_sym_DOLLAR, - ACTIONS(13214), 1, + ACTIONS(13561), 1, anon_sym_DQUOTE, - STATE(5752), 1, + STATE(5814), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295678] = 12, + [301539] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13216), 1, + ACTIONS(13563), 1, anon_sym_DOLLAR, - ACTIONS(13218), 1, + ACTIONS(13565), 1, anon_sym_DQUOTE, - STATE(5702), 1, + STATE(5819), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295719] = 12, + [301580] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13220), 1, + ACTIONS(13567), 1, anon_sym_DOLLAR, - ACTIONS(13222), 1, + ACTIONS(13569), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295760] = 12, + [301621] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13224), 1, + ACTIONS(13571), 1, anon_sym_DOLLAR, - ACTIONS(13226), 1, + ACTIONS(13573), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5862), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295801] = 12, + [301662] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13228), 1, + ACTIONS(13575), 1, anon_sym_DOLLAR, - ACTIONS(13230), 1, + ACTIONS(13577), 1, anon_sym_DQUOTE, - STATE(5747), 1, + STATE(5865), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295842] = 12, + [301703] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13232), 1, + ACTIONS(13579), 1, anon_sym_DOLLAR, - ACTIONS(13234), 1, + ACTIONS(13581), 1, anon_sym_DQUOTE, - STATE(5748), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295883] = 12, + [301744] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13236), 1, + ACTIONS(13583), 1, anon_sym_DOLLAR, - ACTIONS(13238), 1, + ACTIONS(13585), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295924] = 12, + [301785] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13240), 1, + ACTIONS(13587), 1, anon_sym_DOLLAR, - ACTIONS(13242), 1, + ACTIONS(13589), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [295965] = 12, + [301826] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13244), 1, + ACTIONS(13591), 1, anon_sym_DOLLAR, - ACTIONS(13246), 1, + ACTIONS(13593), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5820), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296006] = 12, + [301867] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13248), 1, + ACTIONS(13595), 1, anon_sym_DOLLAR, - ACTIONS(13250), 1, + ACTIONS(13597), 1, anon_sym_DQUOTE, - STATE(5751), 1, + STATE(5832), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296047] = 12, + [301908] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13252), 1, + ACTIONS(13599), 1, anon_sym_DOLLAR, - ACTIONS(13254), 1, + ACTIONS(13601), 1, anon_sym_DQUOTE, - STATE(5753), 1, + STATE(5770), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296088] = 12, + [301949] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13256), 1, + ACTIONS(13603), 1, anon_sym_DOLLAR, - ACTIONS(13258), 1, + ACTIONS(13605), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296129] = 12, + [301990] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13260), 1, + ACTIONS(13607), 1, anon_sym_DOLLAR, - ACTIONS(13262), 1, + ACTIONS(13609), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296170] = 12, + [302031] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13264), 1, + ACTIONS(13611), 1, anon_sym_DOLLAR, - ACTIONS(13266), 1, + ACTIONS(13613), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296211] = 12, + [302072] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13271), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13274), 1, - anon_sym_DOLLAR, - ACTIONS(13277), 1, - anon_sym_DQUOTE, - ACTIONS(13279), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13282), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13285), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13288), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13291), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - STATE(5754), 1, - aux_sym_string_repeat1, - ACTIONS(13268), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [296252] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13060), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, - sym_string_content, - ACTIONS(13068), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, - anon_sym_BQUOTE, - ACTIONS(13074), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13294), 1, + ACTIONS(13615), 1, anon_sym_DOLLAR, - ACTIONS(13296), 1, + ACTIONS(13617), 1, anon_sym_DQUOTE, - STATE(5757), 1, + STATE(5825), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296293] = 12, + [302113] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13298), 1, + ACTIONS(13619), 1, anon_sym_DOLLAR, - ACTIONS(13300), 1, + ACTIONS(13621), 1, anon_sym_DQUOTE, - STATE(5758), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296334] = 12, + [302154] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13302), 1, + ACTIONS(13623), 1, anon_sym_DOLLAR, - ACTIONS(13304), 1, + ACTIONS(13625), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296375] = 12, + [302195] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13306), 1, + ACTIONS(13627), 1, anon_sym_DOLLAR, - ACTIONS(13308), 1, + ACTIONS(13629), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296416] = 12, + [302236] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13310), 1, + ACTIONS(13631), 1, anon_sym_DOLLAR, - ACTIONS(13312), 1, + ACTIONS(13633), 1, anon_sym_DQUOTE, - STATE(5762), 1, + STATE(5848), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296457] = 12, + [302277] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13314), 1, + ACTIONS(13635), 1, anon_sym_DOLLAR, - ACTIONS(13316), 1, + ACTIONS(13637), 1, anon_sym_DQUOTE, - STATE(5761), 1, + STATE(5836), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296498] = 12, + [302318] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13318), 1, + ACTIONS(13639), 1, anon_sym_DOLLAR, - ACTIONS(13320), 1, + ACTIONS(13641), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5897), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296539] = 12, + [302359] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13322), 1, + ACTIONS(13643), 1, anon_sym_DOLLAR, - ACTIONS(13324), 1, + ACTIONS(13645), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296580] = 12, + [302400] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13326), 1, + ACTIONS(13647), 1, anon_sym_DOLLAR, - ACTIONS(13328), 1, + ACTIONS(13649), 1, anon_sym_DQUOTE, - STATE(5766), 1, + STATE(5797), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296621] = 12, + [302441] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13330), 1, + ACTIONS(13651), 1, anon_sym_DOLLAR, - ACTIONS(13332), 1, + ACTIONS(13653), 1, anon_sym_DQUOTE, - STATE(5783), 1, + STATE(5764), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296662] = 12, + [302482] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13334), 1, + ACTIONS(13655), 1, anon_sym_DOLLAR, - ACTIONS(13336), 1, + ACTIONS(13657), 1, anon_sym_DQUOTE, - STATE(5767), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296703] = 12, + [302523] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13338), 1, + ACTIONS(13659), 1, anon_sym_DOLLAR, - ACTIONS(13340), 1, + ACTIONS(13661), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5815), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296744] = 12, + [302564] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13342), 1, + ACTIONS(13663), 1, anon_sym_DOLLAR, - ACTIONS(13344), 1, + ACTIONS(13665), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5860), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296785] = 12, + [302605] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13346), 1, + ACTIONS(13667), 1, anon_sym_DOLLAR, - ACTIONS(13348), 1, + ACTIONS(13669), 1, anon_sym_DQUOTE, - STATE(5771), 1, + STATE(5844), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296826] = 12, + [302646] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13350), 1, + ACTIONS(13671), 1, anon_sym_DOLLAR, - ACTIONS(13352), 1, + ACTIONS(13673), 1, anon_sym_DQUOTE, - STATE(5770), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296867] = 12, + [302687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(5050), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(5048), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [302710] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13354), 1, + ACTIONS(13675), 1, anon_sym_DOLLAR, - ACTIONS(13356), 1, + ACTIONS(13677), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5841), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296908] = 12, + [302751] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13358), 1, + ACTIONS(13679), 1, anon_sym_DOLLAR, - ACTIONS(13360), 1, + ACTIONS(13681), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296949] = 12, + [302792] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13362), 1, + ACTIONS(13683), 1, anon_sym_DOLLAR, - ACTIONS(13364), 1, + ACTIONS(13685), 1, anon_sym_DQUOTE, - STATE(5777), 1, + STATE(5857), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [296990] = 12, + [302833] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13366), 1, + ACTIONS(13687), 1, anon_sym_DOLLAR, - ACTIONS(13368), 1, + ACTIONS(13689), 1, anon_sym_DQUOTE, - STATE(5775), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297031] = 12, + [302874] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13370), 1, + ACTIONS(13691), 1, anon_sym_DOLLAR, - ACTIONS(13372), 1, + ACTIONS(13693), 1, anon_sym_DQUOTE, - STATE(5852), 1, + STATE(5813), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297072] = 12, + [302915] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13374), 1, + ACTIONS(13695), 1, anon_sym_DOLLAR, - ACTIONS(13376), 1, + ACTIONS(13697), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5846), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297113] = 12, + [302956] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13378), 1, + ACTIONS(13699), 1, anon_sym_DOLLAR, - ACTIONS(13380), 1, + ACTIONS(13701), 1, anon_sym_DQUOTE, - STATE(5778), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297154] = 12, + [302997] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13382), 1, + ACTIONS(13703), 1, anon_sym_DOLLAR, - ACTIONS(13384), 1, + ACTIONS(13705), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297195] = 12, + [303038] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13386), 1, + ACTIONS(13707), 1, anon_sym_DOLLAR, - ACTIONS(13388), 1, + ACTIONS(13709), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297236] = 12, + [303079] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13390), 1, + ACTIONS(13711), 1, anon_sym_DOLLAR, - ACTIONS(13392), 1, + ACTIONS(13713), 1, anon_sym_DQUOTE, - STATE(5782), 1, + STATE(5771), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297277] = 12, + [303120] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13394), 1, + ACTIONS(13715), 1, anon_sym_DOLLAR, - ACTIONS(13396), 1, + ACTIONS(13717), 1, anon_sym_DQUOTE, - STATE(5781), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297318] = 12, + [303161] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13398), 1, + ACTIONS(13719), 1, anon_sym_DOLLAR, - ACTIONS(13400), 1, + ACTIONS(13721), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5853), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297359] = 12, + [303202] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13402), 1, + ACTIONS(13723), 1, anon_sym_DOLLAR, - ACTIONS(13404), 1, + ACTIONS(13725), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5866), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297400] = 12, + [303243] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13406), 1, + ACTIONS(13727), 1, anon_sym_DOLLAR, - ACTIONS(13408), 1, + ACTIONS(13729), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5902), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297441] = 12, + [303284] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13410), 1, + ACTIONS(13731), 1, anon_sym_DOLLAR, - ACTIONS(13412), 1, + ACTIONS(13733), 1, anon_sym_DQUOTE, - STATE(5786), 1, + STATE(5773), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297482] = 12, + [303325] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13414), 1, + ACTIONS(13735), 1, anon_sym_DOLLAR, - ACTIONS(13416), 1, + ACTIONS(13737), 1, anon_sym_DQUOTE, - STATE(5787), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297523] = 12, + [303366] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13418), 1, + ACTIONS(13739), 1, anon_sym_DOLLAR, - ACTIONS(13420), 1, + ACTIONS(13741), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297564] = 12, + [303407] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13422), 1, + ACTIONS(13743), 1, anon_sym_DOLLAR, - ACTIONS(13424), 1, + ACTIONS(13745), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297605] = 12, + [303448] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13426), 1, + ACTIONS(13747), 1, anon_sym_DOLLAR, - ACTIONS(13428), 1, + ACTIONS(13749), 1, anon_sym_DQUOTE, - STATE(5864), 1, + STATE(5859), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297646] = 12, + [303489] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13430), 1, + ACTIONS(13751), 1, anon_sym_DOLLAR, - ACTIONS(13432), 1, + ACTIONS(13753), 1, anon_sym_DQUOTE, - STATE(5793), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297687] = 12, + [303530] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13434), 1, + ACTIONS(13755), 1, anon_sym_DOLLAR, - ACTIONS(13436), 1, + ACTIONS(13757), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5908), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297728] = 12, + [303571] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13438), 1, + ACTIONS(13759), 1, anon_sym_DOLLAR, - ACTIONS(13440), 1, + ACTIONS(13761), 1, anon_sym_DQUOTE, - STATE(5807), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297769] = 12, + [303612] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13442), 1, + ACTIONS(13763), 1, anon_sym_DOLLAR, - ACTIONS(13444), 1, + ACTIONS(13765), 1, anon_sym_DQUOTE, - STATE(5794), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297810] = 12, + [303653] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13446), 1, + ACTIONS(13767), 1, anon_sym_DOLLAR, - ACTIONS(13448), 1, + ACTIONS(13769), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5864), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297851] = 12, + [303694] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13450), 1, + ACTIONS(13771), 1, anon_sym_DOLLAR, - ACTIONS(13452), 1, + ACTIONS(13773), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297892] = 12, + [303735] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13454), 1, + ACTIONS(13775), 1, anon_sym_DOLLAR, - ACTIONS(13456), 1, + ACTIONS(13777), 1, anon_sym_DQUOTE, - STATE(5796), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297933] = 12, + [303776] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13458), 1, + ACTIONS(13779), 1, anon_sym_DOLLAR, - ACTIONS(13460), 1, + ACTIONS(13781), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [297974] = 12, + [303817] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13462), 1, + ACTIONS(13783), 1, anon_sym_DOLLAR, - ACTIONS(13464), 1, + ACTIONS(13785), 1, anon_sym_DQUOTE, - STATE(5800), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298015] = 12, + [303858] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13466), 1, + ACTIONS(13787), 1, anon_sym_DOLLAR, - ACTIONS(13468), 1, + ACTIONS(13789), 1, anon_sym_DQUOTE, - STATE(5799), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298056] = 12, + [303899] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13470), 1, + ACTIONS(13791), 1, anon_sym_DOLLAR, - ACTIONS(13472), 1, + ACTIONS(13793), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5873), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298097] = 12, + [303940] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13474), 1, + ACTIONS(13795), 1, anon_sym_DOLLAR, - ACTIONS(13476), 1, + ACTIONS(13797), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5898), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298138] = 12, + [303981] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13478), 1, + ACTIONS(13799), 1, anon_sym_DOLLAR, - ACTIONS(13480), 1, + ACTIONS(13801), 1, anon_sym_DQUOTE, - STATE(5802), 1, + STATE(5899), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298179] = 12, + [304022] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13482), 1, + ACTIONS(13803), 1, anon_sym_DOLLAR, - ACTIONS(13484), 1, + ACTIONS(13805), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5767), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298220] = 12, + [304063] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13486), 1, + ACTIONS(13807), 1, anon_sym_DOLLAR, - ACTIONS(13488), 1, + ACTIONS(13809), 1, anon_sym_DQUOTE, - STATE(5806), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298261] = 12, + [304104] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13490), 1, + ACTIONS(13811), 1, anon_sym_DOLLAR, - ACTIONS(13492), 1, + ACTIONS(13813), 1, anon_sym_DQUOTE, - STATE(5805), 1, + STATE(5863), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298302] = 12, + [304145] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13494), 1, + ACTIONS(13815), 1, anon_sym_DOLLAR, - ACTIONS(13496), 1, + ACTIONS(13817), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298343] = 12, + [304186] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13498), 1, + ACTIONS(13819), 1, anon_sym_DOLLAR, - ACTIONS(13500), 1, + ACTIONS(13821), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5783), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298384] = 12, + [304227] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13502), 1, + ACTIONS(13823), 1, anon_sym_DOLLAR, - ACTIONS(13504), 1, + ACTIONS(13825), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5905), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298425] = 12, + [304268] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13506), 1, + ACTIONS(13827), 1, anon_sym_DOLLAR, - ACTIONS(13508), 1, + ACTIONS(13829), 1, anon_sym_DQUOTE, - STATE(5810), 1, + STATE(5879), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298466] = 12, + [304309] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13510), 1, + ACTIONS(13831), 1, anon_sym_DOLLAR, - ACTIONS(13512), 1, + ACTIONS(13833), 1, anon_sym_DQUOTE, - STATE(5812), 1, + STATE(5915), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298507] = 12, + [304350] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13514), 1, + ACTIONS(13835), 1, anon_sym_DOLLAR, - ACTIONS(13516), 1, + ACTIONS(13837), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5893), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298548] = 12, + [304391] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13518), 1, + ACTIONS(13839), 1, anon_sym_DOLLAR, - ACTIONS(13520), 1, + ACTIONS(13841), 1, anon_sym_DQUOTE, - STATE(5715), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298589] = 12, + [304432] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13846), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13849), 1, + anon_sym_DOLLAR, + ACTIONS(13852), 1, + anon_sym_DQUOTE, + ACTIONS(13854), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13857), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13860), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13863), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13866), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13522), 1, - anon_sym_DOLLAR, - ACTIONS(13524), 1, - anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13843), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298630] = 12, + [304473] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13526), 1, + ACTIONS(13869), 1, anon_sym_DOLLAR, - ACTIONS(13528), 1, + ACTIONS(13871), 1, anon_sym_DQUOTE, - STATE(5814), 1, + STATE(5885), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298671] = 12, + [304514] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13530), 1, + ACTIONS(13873), 1, anon_sym_DOLLAR, - ACTIONS(13532), 1, + ACTIONS(13875), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5845), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298712] = 12, + [304555] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13534), 1, + ACTIONS(13877), 1, anon_sym_DOLLAR, - ACTIONS(13536), 1, + ACTIONS(13879), 1, anon_sym_DQUOTE, - STATE(5820), 1, + STATE(5889), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298753] = 12, + [304596] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13538), 1, + ACTIONS(13881), 1, anon_sym_DOLLAR, - ACTIONS(13540), 1, + ACTIONS(13883), 1, anon_sym_DQUOTE, - STATE(5818), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298794] = 12, + [304637] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13542), 1, + ACTIONS(13885), 1, anon_sym_DOLLAR, - ACTIONS(13544), 1, + ACTIONS(13887), 1, anon_sym_DQUOTE, - STATE(5828), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298835] = 12, + [304678] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13546), 1, + ACTIONS(13889), 1, anon_sym_DOLLAR, - ACTIONS(13548), 1, + ACTIONS(13891), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5855), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298876] = 12, + [304719] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13550), 1, + ACTIONS(13893), 1, anon_sym_DOLLAR, - ACTIONS(13552), 1, + ACTIONS(13895), 1, anon_sym_DQUOTE, - STATE(5821), 1, + STATE(5890), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298917] = 12, + [304760] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13554), 1, + ACTIONS(13897), 1, anon_sym_DOLLAR, - ACTIONS(13556), 1, + ACTIONS(13899), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5779), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298958] = 12, + [304801] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13558), 1, + ACTIONS(13901), 1, anon_sym_DOLLAR, - ACTIONS(13560), 1, + ACTIONS(13903), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [298999] = 12, + [304842] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13562), 1, + ACTIONS(13905), 1, anon_sym_DOLLAR, - ACTIONS(13564), 1, + ACTIONS(13907), 1, anon_sym_DQUOTE, - STATE(5824), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299040] = 12, + [304883] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13566), 1, + ACTIONS(13909), 1, anon_sym_DOLLAR, - ACTIONS(13568), 1, + ACTIONS(13911), 1, anon_sym_DQUOTE, - STATE(5825), 1, + STATE(5896), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299081] = 12, + [304924] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13570), 1, + ACTIONS(13913), 1, anon_sym_DOLLAR, - ACTIONS(13572), 1, + ACTIONS(13915), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5829), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299122] = 12, + [304965] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13574), 1, + ACTIONS(13917), 1, anon_sym_DOLLAR, - ACTIONS(13576), 1, + ACTIONS(13919), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299163] = 12, + [305006] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13578), 1, + ACTIONS(13921), 1, anon_sym_DOLLAR, - ACTIONS(13580), 1, + ACTIONS(13923), 1, anon_sym_DQUOTE, - STATE(5830), 1, + STATE(5824), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299204] = 12, + [305047] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13582), 1, + ACTIONS(13925), 1, anon_sym_DOLLAR, - ACTIONS(13584), 1, + ACTIONS(13927), 1, anon_sym_DQUOTE, - STATE(5829), 1, + STATE(5765), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299245] = 12, + [305088] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13586), 1, + ACTIONS(13929), 1, anon_sym_DOLLAR, - ACTIONS(13588), 1, + ACTIONS(13931), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299286] = 12, + [305129] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13590), 1, + ACTIONS(13933), 1, anon_sym_DOLLAR, - ACTIONS(13592), 1, + ACTIONS(13935), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299327] = 12, + [305170] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13594), 1, + ACTIONS(13937), 1, anon_sym_DOLLAR, - ACTIONS(13596), 1, + ACTIONS(13939), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299368] = 12, + [305211] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13598), 1, + ACTIONS(13941), 1, anon_sym_DOLLAR, - ACTIONS(13600), 1, + ACTIONS(13943), 1, anon_sym_DQUOTE, - STATE(5832), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299409] = 12, + [305252] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13602), 1, + ACTIONS(13945), 1, anon_sym_DOLLAR, - ACTIONS(13604), 1, + ACTIONS(13947), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5775), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299450] = 12, + [305293] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13606), 1, + ACTIONS(13949), 1, anon_sym_DOLLAR, - ACTIONS(13608), 1, + ACTIONS(13951), 1, anon_sym_DQUOTE, - STATE(5835), 1, + STATE(5920), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299491] = 12, + [305334] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13610), 1, + ACTIONS(13953), 1, anon_sym_DOLLAR, - ACTIONS(13612), 1, + ACTIONS(13955), 1, anon_sym_DQUOTE, - STATE(5856), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299532] = 12, + [305375] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13614), 1, + ACTIONS(13957), 1, anon_sym_DOLLAR, - ACTIONS(13616), 1, + ACTIONS(13959), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5802), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2169), 2, - sym_file_descriptor, - aux_sym_heredoc_redirect_token1, - ACTIONS(2167), 13, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_LT, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP_GT, - anon_sym_AMP_GT_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - anon_sym_GT_PIPE, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - anon_sym_LT_LT_LT, - [299596] = 12, + [305416] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13618), 1, + ACTIONS(13961), 1, anon_sym_DOLLAR, - ACTIONS(13620), 1, + ACTIONS(13963), 1, anon_sym_DQUOTE, - STATE(5846), 1, + STATE(5914), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299637] = 12, + [305457] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13622), 1, + ACTIONS(13965), 1, anon_sym_DOLLAR, - ACTIONS(13624), 1, + ACTIONS(13967), 1, anon_sym_DQUOTE, - STATE(5840), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299678] = 12, + [305498] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13626), 1, + ACTIONS(13969), 1, anon_sym_DOLLAR, - ACTIONS(13628), 1, + ACTIONS(13971), 1, anon_sym_DQUOTE, - STATE(5845), 1, + STATE(5776), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299719] = 12, + [305539] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13630), 1, + ACTIONS(13973), 1, anon_sym_DOLLAR, - ACTIONS(13632), 1, + ACTIONS(13975), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299760] = 12, + [305580] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13634), 1, + ACTIONS(13977), 1, anon_sym_DOLLAR, - ACTIONS(13636), 1, + ACTIONS(13979), 1, anon_sym_DQUOTE, - STATE(5842), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299801] = 12, + [305621] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13638), 1, + ACTIONS(13981), 1, anon_sym_DOLLAR, - ACTIONS(13640), 1, + ACTIONS(13983), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5854), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299842] = 12, + [305662] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13642), 1, + ACTIONS(13985), 1, anon_sym_DOLLAR, - ACTIONS(13644), 1, + ACTIONS(13987), 1, anon_sym_DQUOTE, - STATE(5844), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299883] = 12, + [305703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(2160), 2, + sym_file_descriptor, + aux_sym_heredoc_redirect_token1, + ACTIONS(2158), 13, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_LT, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP_GT, + anon_sym_AMP_GT_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + anon_sym_GT_PIPE, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + anon_sym_LT_LT_LT, + [305726] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13646), 1, + ACTIONS(13989), 1, anon_sym_DOLLAR, - ACTIONS(13648), 1, + ACTIONS(13991), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299924] = 12, + [305767] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13650), 1, + ACTIONS(13993), 1, anon_sym_DOLLAR, - ACTIONS(13652), 1, + ACTIONS(13995), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [299965] = 12, + [305808] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13654), 1, + ACTIONS(13997), 1, anon_sym_DOLLAR, - ACTIONS(13656), 1, + ACTIONS(13999), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [300006] = 12, + [305849] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13658), 1, + ACTIONS(14001), 1, anon_sym_DOLLAR, - ACTIONS(13660), 1, + ACTIONS(14003), 1, anon_sym_DQUOTE, - STATE(5848), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [300047] = 12, + [305890] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13662), 1, + ACTIONS(14005), 1, anon_sym_DOLLAR, - ACTIONS(13664), 1, + ACTIONS(14007), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5769), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [300088] = 12, + [305931] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13666), 1, + ACTIONS(14009), 1, anon_sym_DOLLAR, - ACTIONS(13668), 1, + ACTIONS(14011), 1, anon_sym_DQUOTE, - STATE(5850), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [300129] = 12, + [305972] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13670), 1, + ACTIONS(14013), 1, anon_sym_DOLLAR, - ACTIONS(13672), 1, + ACTIONS(14015), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5921), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [300170] = 12, + [306013] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13674), 1, + ACTIONS(14017), 1, anon_sym_DOLLAR, - ACTIONS(13676), 1, + ACTIONS(14019), 1, anon_sym_DQUOTE, - STATE(5861), 1, + STATE(5839), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [300211] = 12, + [306054] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13678), 1, + ACTIONS(14021), 1, anon_sym_DOLLAR, - ACTIONS(13680), 1, + ACTIONS(14023), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [300252] = 12, + [306095] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13682), 1, + ACTIONS(14025), 1, anon_sym_DOLLAR, - ACTIONS(13684), 1, + ACTIONS(14027), 1, anon_sym_DQUOTE, - STATE(5854), 1, + STATE(5880), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [300293] = 12, + [306136] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13686), 1, + ACTIONS(14029), 1, anon_sym_DOLLAR, - ACTIONS(13688), 1, + ACTIONS(14031), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5912), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [300334] = 12, + [306177] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13690), 1, + ACTIONS(14033), 1, anon_sym_DOLLAR, - ACTIONS(13692), 1, + ACTIONS(14035), 1, anon_sym_DQUOTE, - STATE(5857), 1, + STATE(5917), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [300375] = 12, + [306218] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13694), 1, + ACTIONS(14037), 1, anon_sym_DOLLAR, - ACTIONS(13696), 1, + ACTIONS(14039), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5884), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [300416] = 12, + [306259] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13698), 1, + ACTIONS(14041), 1, anon_sym_DOLLAR, - ACTIONS(13700), 1, + ACTIONS(14043), 1, anon_sym_DQUOTE, - STATE(5754), 1, + STATE(5786), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [300457] = 12, + [306300] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, + ACTIONS(13379), 1, anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13385), 1, sym_string_content, - ACTIONS(13068), 1, + ACTIONS(13387), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, + ACTIONS(13389), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, + ACTIONS(13391), 1, anon_sym_BQUOTE, - ACTIONS(13074), 1, + ACTIONS(13393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(13702), 1, + ACTIONS(14045), 1, anon_sym_DOLLAR, - ACTIONS(13704), 1, + ACTIONS(14047), 1, anon_sym_DQUOTE, - STATE(5859), 1, + STATE(5766), 1, aux_sym_string_repeat1, - ACTIONS(13058), 2, + ACTIONS(13377), 2, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, + STATE(6198), 4, sym_arithmetic_expansion, sym_simple_expansion, sym_expansion, sym_command_substitution, - [300498] = 12, + [306341] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(14051), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13068), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, - anon_sym_BQUOTE, - ACTIONS(13074), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13706), 1, + ACTIONS(14057), 1, + sym_variable_name, + ACTIONS(14055), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14049), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(13708), 1, - anon_sym_DQUOTE, - STATE(5754), 1, - aux_sym_string_repeat1, - ACTIONS(13058), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [300539] = 12, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [306369] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, - sym_string_content, - ACTIONS(13068), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, - anon_sym_BQUOTE, - ACTIONS(13074), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13710), 1, + ACTIONS(5544), 1, + anon_sym_DQUOTE, + ACTIONS(5548), 1, + sym_variable_name, + STATE(2989), 1, + sym_string, + ACTIONS(5546), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(5542), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(13712), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [306397] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1273), 1, anon_sym_DQUOTE, - STATE(5862), 1, - aux_sym_string_repeat1, - ACTIONS(13058), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [300580] = 12, + ACTIONS(1277), 1, + sym_variable_name, + STATE(518), 1, + sym_string, + ACTIONS(1275), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(1271), 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__, + [306425] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13421), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13068), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, - anon_sym_BQUOTE, - ACTIONS(13074), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13714), 1, + ACTIONS(14057), 1, + sym_variable_name, + ACTIONS(14055), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14049), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(13716), 1, - anon_sym_DQUOTE, - STATE(5754), 1, - aux_sym_string_repeat1, - ACTIONS(13058), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [300621] = 12, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [306453] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13068), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, - anon_sym_BQUOTE, - ACTIONS(13074), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13718), 1, + ACTIONS(14057), 1, + sym_variable_name, + ACTIONS(14059), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14049), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(13720), 1, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [306481] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10995), 1, anon_sym_DQUOTE, - STATE(5754), 1, - aux_sym_string_repeat1, - ACTIONS(13058), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [300662] = 12, + ACTIONS(10999), 1, + sym_variable_name, + STATE(5595), 1, + sym_string, + ACTIONS(10997), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(10993), 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__, + [306509] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(13473), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13068), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, - anon_sym_BQUOTE, - ACTIONS(13074), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13722), 1, + ACTIONS(14057), 1, + sym_variable_name, + ACTIONS(14055), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14049), 9, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_DOLLAR, - ACTIONS(13724), 1, - anon_sym_DQUOTE, - STATE(5790), 1, - aux_sym_string_repeat1, - ACTIONS(13058), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [300703] = 12, + anon_sym_POUND, + anon_sym_AT2, + anon_sym_0, + anon_sym__, + [306537] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13060), 1, - anon_sym_DOLLAR_LBRACK, - ACTIONS(13066), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13068), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(13070), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(13072), 1, - anon_sym_BQUOTE, - ACTIONS(13074), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(13726), 1, - anon_sym_DOLLAR, - ACTIONS(13728), 1, + ACTIONS(14057), 1, + sym_variable_name, + ACTIONS(14061), 1, anon_sym_DQUOTE, - STATE(5754), 1, - aux_sym_string_repeat1, - ACTIONS(13058), 2, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - STATE(6149), 4, - sym_arithmetic_expansion, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - [300744] = 6, + ACTIONS(14055), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14049), 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__, + [306565] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5347), 1, + ACTIONS(5283), 1, anon_sym_DQUOTE, - ACTIONS(5351), 1, + ACTIONS(5287), 1, sym_variable_name, - STATE(2691), 1, + STATE(2753), 1, sym_string, - ACTIONS(5349), 2, + ACTIONS(5285), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5345), 9, + ACTIONS(5281), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326437,19 +332153,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [300772] = 6, + [306593] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7476), 1, + ACTIONS(13505), 1, anon_sym_DQUOTE, - ACTIONS(7480), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(4510), 1, - sym_string, - ACTIONS(7478), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7474), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326459,19 +332175,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [300800] = 6, + [306621] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2129), 1, + ACTIONS(13975), 1, anon_sym_DQUOTE, - ACTIONS(3716), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(1725), 1, - sym_string, - ACTIONS(3714), 2, + ACTIONS(14055), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14049), 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__, + [306649] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, + sym_variable_name, + ACTIONS(14063), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3712), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326481,19 +332219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [300828] = 6, + [306677] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3247), 1, + ACTIONS(9143), 1, anon_sym_DQUOTE, - ACTIONS(3724), 1, + ACTIONS(9147), 1, sym_variable_name, - STATE(1876), 1, + STATE(5467), 1, sym_string, - ACTIONS(3722), 2, + ACTIONS(9145), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3720), 9, + ACTIONS(9141), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326503,41 +332241,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [300856] = 6, + [306705] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13114), 1, + ACTIONS(13533), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13734), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 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__, - [300884] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1908), 1, - anon_sym_DQUOTE, - ACTIONS(1912), 1, + ACTIONS(14057), 1, sym_variable_name, - STATE(1129), 1, - sym_string, - ACTIONS(1910), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1906), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326547,41 +332263,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [300912] = 6, + [306733] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13356), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 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__, - [300940] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7008), 1, + ACTIONS(14065), 1, anon_sym_DQUOTE, - ACTIONS(7012), 1, - sym_variable_name, - STATE(4270), 1, - sym_string, - ACTIONS(7010), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7006), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326591,19 +332285,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [300968] = 6, + [306761] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13360), 1, + ACTIONS(2722), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(2726), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1178), 1, + sym_string, + ACTIONS(2724), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(2720), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326613,19 +332307,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [300996] = 6, + [306789] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13110), 1, + ACTIONS(13557), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326635,19 +332329,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301024] = 6, + [306817] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13738), 1, + ACTIONS(14067), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326657,19 +332351,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301052] = 6, + [306845] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13740), 1, + ACTIONS(1678), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(3127), 1, + sym_variable_name, + STATE(1184), 1, + sym_string, + ACTIONS(3125), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3123), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326679,19 +332373,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301080] = 6, + [306873] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13178), 1, + ACTIONS(13585), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326701,19 +332395,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301108] = 6, + [306901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1498), 1, - anon_sym_DQUOTE, - ACTIONS(2165), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(1215), 1, - sym_string, - ACTIONS(2163), 2, + ACTIONS(14069), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2161), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326723,19 +332417,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301136] = 6, + [306929] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1623), 1, + ACTIONS(2376), 1, anon_sym_DQUOTE, - ACTIONS(1627), 1, + ACTIONS(3133), 1, sym_variable_name, - STATE(838), 1, + STATE(1395), 1, sym_string, - ACTIONS(1625), 2, + ACTIONS(3131), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1621), 9, + ACTIONS(3129), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326745,19 +332439,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301164] = 6, + [306957] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13182), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14071), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326767,19 +332461,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301192] = 6, + [306985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13376), 1, + ACTIONS(13609), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326789,19 +332483,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301220] = 6, + [307013] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13742), 1, + ACTIONS(14073), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326811,19 +332505,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301248] = 6, + [307041] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4654), 1, + ACTIONS(1450), 1, anon_sym_DQUOTE, - ACTIONS(4658), 1, + ACTIONS(1948), 1, sym_variable_name, - STATE(2645), 1, + STATE(970), 1, sym_string, - ACTIONS(4656), 2, + ACTIONS(1946), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4652), 9, + ACTIONS(1944), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326833,19 +332527,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301276] = 6, + [307069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13629), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13744), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326855,41 +332549,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301304] = 6, + [307097] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13384), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 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__, - [301332] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6431), 1, + ACTIONS(14075), 1, anon_sym_DQUOTE, - ACTIONS(6435), 1, - sym_variable_name, - STATE(3505), 1, - sym_string, - ACTIONS(6433), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6429), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326899,19 +332571,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301360] = 6, + [307125] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1418), 1, + ACTIONS(2908), 1, anon_sym_DQUOTE, - ACTIONS(1742), 1, + ACTIONS(3139), 1, sym_variable_name, - STATE(1000), 1, + STATE(1591), 1, sym_string, - ACTIONS(1740), 2, + ACTIONS(3137), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1738), 9, + ACTIONS(3135), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326921,19 +332593,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301388] = 6, + [307153] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13186), 1, + ACTIONS(13673), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326943,19 +332615,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301416] = 6, + [307181] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13388), 1, + ACTIONS(2090), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(4397), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1661), 1, + sym_string, + ACTIONS(4395), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(4393), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326965,19 +332637,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301444] = 6, + [307209] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13746), 1, + ACTIONS(14077), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -326987,19 +332659,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301472] = 6, + [307237] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13748), 1, + ACTIONS(3503), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(7092), 1, + sym_variable_name, + STATE(4582), 1, + sym_string, + ACTIONS(7090), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(7088), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327009,19 +332681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301500] = 6, + [307265] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13689), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13750), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327031,19 +332703,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301528] = 6, + [307293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4442), 1, - anon_sym_DQUOTE, - ACTIONS(4446), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(2392), 1, - sym_string, - ACTIONS(4444), 2, + ACTIONS(14079), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4440), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327053,19 +332725,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301556] = 6, + [307321] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2950), 1, + ACTIONS(2420), 1, anon_sym_DQUOTE, - ACTIONS(2954), 1, + ACTIONS(2862), 1, sym_variable_name, - STATE(1459), 1, + STATE(1438), 1, sym_string, - ACTIONS(2952), 2, + ACTIONS(2860), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2948), 9, + ACTIONS(2858), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327075,19 +332747,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301584] = 6, + [307349] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13064), 1, + ACTIONS(13709), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327097,19 +332769,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301612] = 6, + [307377] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13400), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14081), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327119,19 +332791,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301640] = 6, + [307405] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13752), 1, + ACTIONS(14083), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327141,19 +332813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301668] = 6, + [307433] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13404), 1, + ACTIONS(2654), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(7041), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(4413), 1, + sym_string, + ACTIONS(7039), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(7037), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327163,19 +332835,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301696] = 6, + [307461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13737), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13754), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327185,19 +332857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301724] = 6, + [307489] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13408), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14085), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327207,19 +332879,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301752] = 6, + [307517] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13194), 1, + ACTIONS(13521), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327229,19 +332901,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301780] = 6, + [307545] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1231), 1, + ACTIONS(1952), 1, anon_sym_DQUOTE, - ACTIONS(1237), 1, + ACTIONS(1956), 1, sym_variable_name, - STATE(476), 1, + STATE(981), 1, sym_string, - ACTIONS(1233), 2, + ACTIONS(1954), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1229), 9, + ACTIONS(1950), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327251,41 +332923,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301808] = 6, + [307573] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3135), 1, + ACTIONS(13761), 1, anon_sym_DQUOTE, - ACTIONS(7081), 1, - sym_variable_name, - STATE(4523), 1, - sym_string, - ACTIONS(7079), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(7077), 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__, - [301836] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13756), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327295,19 +332945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301864] = 6, + [307601] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13758), 1, + ACTIONS(14087), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327317,19 +332967,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301892] = 6, + [307629] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13424), 1, + ACTIONS(7096), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(7100), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(4426), 1, + sym_string, + ACTIONS(7098), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(7094), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327339,19 +332989,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301920] = 6, + [307657] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13420), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14089), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327361,19 +333011,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301948] = 6, + [307685] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13781), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13760), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327383,41 +333033,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [301976] = 6, + [307713] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13762), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 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__, - [302004] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1882), 1, + ACTIONS(14091), 1, anon_sym_DQUOTE, - ACTIONS(3477), 1, - sym_variable_name, - STATE(1334), 1, - sym_string, - ACTIONS(3475), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3473), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327427,19 +333055,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302032] = 6, + [307741] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5339), 1, + ACTIONS(3143), 1, anon_sym_DQUOTE, - ACTIONS(5343), 1, + ACTIONS(3147), 1, sym_variable_name, - STATE(2538), 1, + STATE(1373), 1, sym_string, - ACTIONS(5341), 2, + ACTIONS(3145), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5337), 9, + ACTIONS(3141), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327449,19 +333077,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302060] = 6, + [307769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13094), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14093), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327471,19 +333099,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302088] = 6, + [307797] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13817), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13764), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327493,19 +333121,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302116] = 6, + [307825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13766), 1, + ACTIONS(14095), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327515,19 +333143,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302144] = 6, + [307853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13728), 1, + ACTIONS(1856), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(3951), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1400), 1, + sym_string, + ACTIONS(3949), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3947), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327537,19 +333165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302172] = 6, + [307881] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3390), 1, + ACTIONS(13841), 1, anon_sym_DQUOTE, - ACTIONS(3608), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(1816), 1, - sym_string, - ACTIONS(3606), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3604), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327559,19 +333187,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302200] = 6, + [307909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13768), 1, + ACTIONS(14097), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327581,19 +333209,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302228] = 6, + [307937] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1245), 1, + ACTIONS(2738), 1, anon_sym_DQUOTE, - ACTIONS(1249), 1, + ACTIONS(3678), 1, sym_variable_name, - STATE(508), 1, + STATE(1589), 1, sym_string, - ACTIONS(1247), 2, + ACTIONS(3676), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1243), 9, + ACTIONS(3674), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327603,41 +333231,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302256] = 6, + [307965] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13448), 1, + ACTIONS(3099), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13734), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 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__, - [302284] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(4405), 1, sym_variable_name, - ACTIONS(13770), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + STATE(1916), 1, + sym_string, + ACTIONS(4403), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(4401), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327647,41 +333253,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302312] = 6, + [307993] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13206), 1, + ACTIONS(13887), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13734), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 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__, - [302340] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13772), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327691,19 +333275,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302368] = 6, + [308021] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13774), 1, + ACTIONS(14099), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327713,19 +333297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302396] = 6, + [308049] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13452), 1, + ACTIONS(1492), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(2280), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1107), 1, + sym_string, + ACTIONS(2278), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(2276), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327735,19 +333319,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302424] = 6, + [308077] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8918), 1, + ACTIONS(13907), 1, anon_sym_DQUOTE, - ACTIONS(8922), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(5529), 1, - sym_string, - ACTIONS(8920), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8916), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327757,19 +333341,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302452] = 6, + [308105] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13776), 1, + ACTIONS(14101), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327779,19 +333363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302480] = 6, + [308133] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13778), 1, + ACTIONS(3539), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(3813), 1, + sym_variable_name, + STATE(1880), 1, + sym_string, + ACTIONS(3811), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3809), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327801,19 +333385,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302508] = 6, + [308161] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13460), 1, + ACTIONS(13931), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327823,19 +333407,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302536] = 6, + [308189] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2623), 1, + ACTIONS(4044), 1, anon_sym_DQUOTE, - ACTIONS(3483), 1, + ACTIONS(7627), 1, sym_variable_name, - STATE(1605), 1, + STATE(4859), 1, sym_string, - ACTIONS(3481), 2, + ACTIONS(7625), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3479), 9, + ACTIONS(7623), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327845,19 +333429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302564] = 6, + [308217] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4106), 1, + ACTIONS(13657), 1, anon_sym_DQUOTE, - ACTIONS(4110), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(2268), 1, - sym_string, - ACTIONS(4108), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4104), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327867,19 +333451,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302592] = 6, + [308245] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14027), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13780), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327889,19 +333473,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302620] = 6, + [308273] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13782), 1, + ACTIONS(14103), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327911,19 +333495,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302648] = 6, + [308301] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13472), 1, + ACTIONS(2874), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(3204), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1696), 1, + sym_string, + ACTIONS(3202), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3200), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327933,19 +333517,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302676] = 6, + [308329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13134), 1, + ACTIONS(14011), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327955,19 +333539,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302704] = 6, + [308357] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13476), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14105), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327977,19 +333561,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302732] = 6, + [308385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13784), 1, + ACTIONS(3621), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(7106), 1, + sym_variable_name, + STATE(4658), 1, + sym_string, + ACTIONS(7104), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(7102), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -327999,19 +333583,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302760] = 6, + [308413] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13786), 1, + ACTIONS(14107), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328021,19 +333605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302788] = 6, + [308441] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13226), 1, + ACTIONS(14003), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328043,19 +333627,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302816] = 6, + [308469] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13788), 1, + ACTIONS(14109), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328065,19 +333649,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302844] = 6, + [308497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13484), 1, + ACTIONS(7635), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(7639), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(4571), 1, + sym_string, + ACTIONS(7637), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(7633), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328087,19 +333671,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302872] = 6, + [308525] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13222), 1, + ACTIONS(13625), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328109,19 +333693,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302900] = 6, + [308553] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3612), 1, + ACTIONS(13967), 1, anon_sym_DQUOTE, - ACTIONS(3616), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(2249), 1, - sym_string, - ACTIONS(3614), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3610), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328131,19 +333715,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302928] = 6, + [308581] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13130), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14111), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328153,19 +333737,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302956] = 6, + [308609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3416), 1, + ACTIONS(1594), 1, anon_sym_DQUOTE, - ACTIONS(3420), 1, + ACTIONS(2360), 1, sym_variable_name, - STATE(1573), 1, + STATE(1236), 1, sym_string, - ACTIONS(3418), 2, + ACTIONS(2358), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3414), 9, + ACTIONS(2356), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328175,19 +333759,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [302984] = 6, + [308637] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13429), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13790), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328197,19 +333781,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303012] = 6, + [308665] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13792), 1, + ACTIONS(14113), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328219,19 +333803,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303040] = 6, + [308693] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13082), 1, + ACTIONS(13541), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328241,19 +333825,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303068] = 6, + [308721] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13504), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14115), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328263,19 +333847,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303096] = 6, + [308749] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13496), 1, + ACTIONS(13753), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328285,19 +333869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303124] = 6, + [308777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13500), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14117), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328307,19 +333891,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303152] = 6, + [308805] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13238), 1, + ACTIONS(13789), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328329,19 +333913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303180] = 6, + [308833] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13903), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13794), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328351,19 +333935,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303208] = 6, + [308861] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13796), 1, + ACTIONS(14119), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328373,19 +333957,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303236] = 6, + [308889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13645), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13798), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328395,19 +333979,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303264] = 6, + [308917] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13800), 1, + ACTIONS(14121), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328417,19 +334001,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303292] = 6, + [308945] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1458), 1, + ACTIONS(13441), 1, anon_sym_DQUOTE, - ACTIONS(1813), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(1026), 1, - sym_string, - ACTIONS(1811), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1809), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328439,19 +334023,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303320] = 6, + [308973] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13802), 1, + ACTIONS(14123), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328461,19 +334045,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303348] = 6, + [309001] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13516), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14125), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328483,19 +334067,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303376] = 6, + [309029] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3580), 1, + ACTIONS(13955), 1, anon_sym_DQUOTE, - ACTIONS(3584), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(1952), 1, - sym_string, - ACTIONS(3582), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3578), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328505,19 +334089,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303404] = 6, + [309057] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2468), 1, - anon_sym_DQUOTE, - ACTIONS(2895), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(1470), 1, - sym_string, - ACTIONS(2893), 2, + ACTIONS(14127), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2891), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328527,19 +334111,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303432] = 6, + [309085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1534), 1, + ACTIONS(13437), 1, anon_sym_DQUOTE, - ACTIONS(2159), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(1202), 1, - sym_string, - ACTIONS(2157), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2155), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328549,19 +334133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303460] = 6, + [309113] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13804), 1, + ACTIONS(14129), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328571,19 +334155,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303488] = 6, + [309141] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13806), 1, + ACTIONS(5265), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(5269), 1, + sym_variable_name, + STATE(2626), 1, + sym_string, + ACTIONS(5267), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(5263), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328593,19 +334177,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303516] = 6, + [309169] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13524), 1, + ACTIONS(13413), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328615,19 +334199,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303544] = 6, + [309197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 1, - anon_sym_DQUOTE, - ACTIONS(2315), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(1411), 1, - sym_string, - ACTIONS(2313), 2, + ACTIONS(14131), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2309), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328637,19 +334221,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303572] = 6, + [309225] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13457), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13808), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328659,19 +334243,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303600] = 6, + [309253] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13242), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14133), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328681,19 +334265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303628] = 6, + [309281] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4078), 1, + ACTIONS(13919), 1, anon_sym_DQUOTE, - ACTIONS(7611), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(4444), 1, - sym_string, - ACTIONS(7609), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7607), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328703,19 +334287,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303656] = 6, + [309309] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13532), 1, + ACTIONS(13681), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328725,19 +334309,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303684] = 6, + [309337] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13102), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14135), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328747,19 +334331,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303712] = 6, + [309365] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8728), 1, + ACTIONS(13773), 1, anon_sym_DQUOTE, - ACTIONS(8732), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(5493), 1, - sym_string, - ACTIONS(8730), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8726), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328769,19 +334353,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303740] = 6, + [309393] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13810), 1, + ACTIONS(14137), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328791,19 +334375,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303768] = 6, + [309421] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13465), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13812), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328813,19 +334397,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303796] = 6, + [309449] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3279), 1, - anon_sym_DQUOTE, - ACTIONS(3491), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(1800), 1, - sym_string, - ACTIONS(3489), 2, + ACTIONS(14139), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3487), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328835,19 +334419,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303824] = 6, + [309477] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13246), 1, + ACTIONS(13605), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328857,19 +334441,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303852] = 6, + [309505] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13548), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14141), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328879,19 +334463,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303880] = 6, + [309533] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13814), 1, + ACTIONS(14143), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328901,19 +334485,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303908] = 6, + [309561] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13816), 1, + ACTIONS(268), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(5567), 1, + sym_variable_name, + STATE(2769), 1, + sym_string, + ACTIONS(5565), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(5563), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328923,19 +334507,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303936] = 6, + [309589] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13142), 1, + ACTIONS(13883), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328945,19 +334529,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303964] = 6, + [309617] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13556), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14145), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328967,19 +334551,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [303992] = 6, + [309645] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13560), 1, + ACTIONS(3941), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(3945), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1592), 1, + sym_string, + ACTIONS(3943), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3939), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -328989,19 +334573,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304020] = 6, + [309673] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13777), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13818), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329011,19 +334595,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304048] = 6, + [309701] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13820), 1, + ACTIONS(14147), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329033,19 +334617,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304076] = 6, + [309729] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13262), 1, + ACTIONS(2074), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(2078), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1158), 1, + sym_string, + ACTIONS(2076), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(2072), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329055,19 +334639,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304104] = 6, + [309757] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3169), 1, + ACTIONS(2128), 1, anon_sym_DQUOTE, - ACTIONS(3426), 1, + ACTIONS(4267), 1, sym_variable_name, - STATE(1731), 1, + STATE(1617), 1, sym_string, - ACTIONS(3424), 2, + ACTIONS(4265), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3422), 9, + ACTIONS(4263), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329077,19 +334661,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304132] = 6, + [309785] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4916), 1, - anon_sym_DQUOTE, - ACTIONS(4920), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(2612), 1, - sym_string, - ACTIONS(4918), 2, + ACTIONS(14149), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4914), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329099,19 +334683,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304160] = 6, + [309813] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(12920), 1, - anon_sym_DQUOTE, - ACTIONS(12924), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(6233), 1, - sym_string, - ACTIONS(12922), 2, + ACTIONS(14151), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(12918), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329121,19 +334705,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304188] = 6, + [309841] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13588), 1, + ACTIONS(13745), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329143,19 +334727,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304216] = 6, + [309869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13572), 1, + ACTIONS(3244), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(4241), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(1852), 1, + sym_string, + ACTIONS(4239), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(4237), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329165,19 +334749,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304244] = 6, + [309897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13258), 1, + ACTIONS(13741), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329187,19 +334771,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304272] = 6, + [309925] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13576), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14153), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329209,19 +334793,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304300] = 6, + [309953] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(1640), 1, + anon_sym_DQUOTE, + ACTIONS(2404), 1, sym_variable_name, - ACTIONS(13822), 1, + STATE(1269), 1, + sym_string, + ACTIONS(2402), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(2400), 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__, + [309981] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2216), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(2220), 1, + sym_variable_name, + STATE(1093), 1, + sym_string, + ACTIONS(2218), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(2214), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329231,19 +334837,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304328] = 6, + [310009] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13705), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13824), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329253,19 +334859,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304356] = 6, + [310037] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13826), 1, + ACTIONS(14155), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329275,19 +334881,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304384] = 6, + [310065] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, + ACTIONS(6641), 1, anon_sym_DQUOTE, - ACTIONS(7194), 1, + ACTIONS(6645), 1, sym_variable_name, - STATE(4297), 1, + STATE(3555), 1, sym_string, - ACTIONS(7192), 2, + ACTIONS(6643), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7190), 9, + ACTIONS(6639), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329297,19 +334903,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304412] = 6, + [310093] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13146), 1, + ACTIONS(13397), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329319,19 +334925,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304440] = 6, + [310121] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13828), 1, + ACTIONS(14157), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329341,19 +334947,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304468] = 6, + [310149] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13266), 1, + ACTIONS(5028), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(5032), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(2470), 1, + sym_string, + ACTIONS(5030), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(5026), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329363,19 +334969,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304496] = 6, + [310177] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13592), 1, + ACTIONS(13569), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329385,19 +334991,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304524] = 6, + [310205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13405), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13830), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329407,19 +335013,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304552] = 6, + [310233] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13596), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14159), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329429,19 +335035,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304580] = 6, + [310261] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13832), 1, + ACTIONS(5432), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(5436), 1, + sym_variable_name, + STATE(2432), 1, + sym_string, + ACTIONS(5434), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(5430), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329451,19 +335057,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304608] = 6, + [310289] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2727), 1, + ACTIONS(1259), 1, anon_sym_DQUOTE, - ACTIONS(6779), 1, + ACTIONS(1265), 1, sym_variable_name, - STATE(4341), 1, + STATE(480), 1, sym_string, - ACTIONS(6777), 2, + ACTIONS(1261), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(6775), 9, + ACTIONS(1257), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329473,19 +335079,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304636] = 6, + [310317] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13589), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13834), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329495,19 +335101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304664] = 6, + [310345] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8615), 1, - anon_sym_DQUOTE, - ACTIONS(8619), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(5158), 1, - sym_string, - ACTIONS(8617), 2, + ACTIONS(14161), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8613), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329517,19 +335123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304692] = 6, + [310373] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3852), 1, + ACTIONS(5571), 1, anon_sym_DQUOTE, - ACTIONS(7460), 1, + ACTIONS(5575), 1, sym_variable_name, - STATE(4863), 1, + STATE(2491), 1, sym_string, - ACTIONS(7458), 2, + ACTIONS(5573), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7456), 9, + ACTIONS(5569), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329539,19 +335145,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304720] = 6, + [310401] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13604), 1, + ACTIONS(13717), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329561,19 +335167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304748] = 6, + [310429] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13836), 1, + ACTIONS(14163), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329583,19 +335189,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304776] = 6, + [310457] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5777), 1, + ACTIONS(5613), 1, anon_sym_DQUOTE, - ACTIONS(11244), 1, + ACTIONS(5617), 1, sym_variable_name, - STATE(5671), 1, + STATE(2723), 1, sym_string, - ACTIONS(11242), 2, + ACTIONS(5615), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(11240), 9, + ACTIONS(5611), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329605,19 +335211,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304804] = 6, + [310485] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13453), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13838), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329627,19 +335233,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304832] = 6, + [310513] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13840), 1, + ACTIONS(14165), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329649,19 +335255,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304860] = 6, + [310541] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 1, + ACTIONS(4466), 1, anon_sym_DQUOTE, - ACTIONS(7768), 1, + ACTIONS(4470), 1, sym_variable_name, - STATE(4636), 1, + STATE(2348), 1, sym_string, - ACTIONS(7766), 2, + ACTIONS(4468), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7764), 9, + ACTIONS(4464), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329671,19 +335277,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304888] = 6, + [310569] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(262), 1, - anon_sym_DQUOTE, - ACTIONS(5185), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(2710), 1, - sym_string, - ACTIONS(5183), 2, + ACTIONS(14167), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5181), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329693,19 +335299,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304916] = 6, + [310597] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13616), 1, + ACTIONS(13621), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329715,19 +335321,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304944] = 6, + [310625] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5555), 1, + ACTIONS(14023), 1, anon_sym_DQUOTE, - ACTIONS(5559), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(3442), 1, - sym_string, - ACTIONS(5557), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5553), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329737,19 +335343,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [304972] = 6, + [310653] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13304), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14169), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329759,19 +335365,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305000] = 6, + [310681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(4251), 1, anon_sym_DQUOTE, - ACTIONS(1920), 1, + ACTIONS(4255), 1, sym_variable_name, - STATE(1090), 1, + STATE(2105), 1, sym_string, - ACTIONS(1918), 2, + ACTIONS(4253), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1914), 9, + ACTIONS(4249), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329781,19 +335387,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305028] = 6, + [310709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 1, + ACTIONS(13383), 1, anon_sym_DQUOTE, - ACTIONS(5090), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(2862), 1, - sym_string, - ACTIONS(5088), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5084), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329803,19 +335409,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305056] = 6, + [310737] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13842), 1, + ACTIONS(14171), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329825,19 +335431,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305084] = 6, + [310765] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3706), 1, - anon_sym_DQUOTE, - ACTIONS(3710), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(1942), 1, - sym_string, - ACTIONS(3708), 2, + ACTIONS(14173), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3704), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329847,19 +335453,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305112] = 6, + [310793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13308), 1, + ACTIONS(3917), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(4261), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(2125), 1, + sym_string, + ACTIONS(4259), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(4257), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329869,19 +335475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305140] = 6, + [310821] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2295), 1, + ACTIONS(13979), 1, anon_sym_DQUOTE, - ACTIONS(2299), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(1266), 1, - sym_string, - ACTIONS(2297), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2293), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329891,19 +335497,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305168] = 6, + [310849] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13154), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14175), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329913,19 +335519,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305196] = 6, + [310877] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13632), 1, + ACTIONS(4211), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(8005), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(4476), 1, + sym_string, + ACTIONS(8003), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(8001), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329935,19 +335541,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305224] = 6, + [310905] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13409), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13844), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329957,19 +335563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305252] = 6, + [310933] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13846), 1, + ACTIONS(14177), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -329979,19 +335585,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305280] = 6, + [310961] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3022), 1, + ACTIONS(3292), 1, anon_sym_DQUOTE, - ACTIONS(3026), 1, + ACTIONS(4132), 1, sym_variable_name, - STATE(1747), 1, + STATE(2027), 1, sym_string, - ACTIONS(3024), 2, + ACTIONS(4130), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3020), 9, + ACTIONS(4128), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330001,19 +335607,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305308] = 6, + [310989] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13401), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13848), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330023,19 +335629,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305336] = 6, + [311017] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13640), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14179), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330045,19 +335651,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305364] = 6, + [311045] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2816), 1, + ACTIONS(3711), 1, anon_sym_DQUOTE, - ACTIONS(2960), 1, + ACTIONS(7701), 1, sym_variable_name, - STATE(1690), 1, + STATE(4345), 1, sym_string, - ACTIONS(2958), 2, + ACTIONS(7699), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2956), 9, + ACTIONS(7697), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330067,19 +335673,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305392] = 6, + [311073] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13935), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13850), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330089,19 +335695,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305420] = 6, + [311101] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6494), 1, - anon_sym_DQUOTE, - ACTIONS(13048), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(6482), 1, - sym_string, - ACTIONS(13046), 2, + ACTIONS(14181), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13044), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330111,19 +335717,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305448] = 6, + [311129] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2695), 1, + ACTIONS(9151), 1, anon_sym_DQUOTE, - ACTIONS(2901), 1, + ACTIONS(9155), 1, sym_variable_name, - STATE(1555), 1, + STATE(5283), 1, sym_string, - ACTIONS(2899), 2, + ACTIONS(9153), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2897), 9, + ACTIONS(9149), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330133,19 +335739,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305476] = 6, + [311157] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13477), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13852), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330155,19 +335761,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305504] = 6, + [311185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13652), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14183), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330177,19 +335783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305532] = 6, + [311213] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13648), 1, + ACTIONS(3755), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(8677), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(4915), 1, + sym_string, + ACTIONS(8675), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(8673), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330199,19 +335805,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305560] = 6, + [311241] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3103), 1, + ACTIONS(13525), 1, anon_sym_DQUOTE, - ACTIONS(3107), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(1501), 1, - sym_string, - ACTIONS(3105), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3101), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330221,19 +335827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305588] = 6, + [311269] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13854), 1, + ACTIONS(14185), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330243,19 +335849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305616] = 6, + [311297] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(3827), 1, anon_sym_DQUOTE, - ACTIONS(5030), 1, + ACTIONS(4247), 1, sym_variable_name, - STATE(2466), 1, + STATE(2209), 1, sym_string, - ACTIONS(5028), 2, + ACTIONS(4245), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5024), 9, + ACTIONS(4243), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330265,19 +335871,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305644] = 6, + [311325] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13856), 1, + ACTIONS(4020), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(4024), 1, + sym_variable_name, + STATE(1733), 1, + sym_string, + ACTIONS(4022), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(4018), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330287,19 +335893,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305672] = 6, + [311353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13656), 1, + ACTIONS(13987), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330309,19 +335915,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305700] = 6, + [311381] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13858), 1, + ACTIONS(14187), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330331,19 +335937,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305728] = 6, + [311409] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13680), 1, + ACTIONS(3423), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(3699), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(2070), 1, + sym_string, + ACTIONS(3697), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(3695), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330353,19 +335959,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305756] = 6, + [311437] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13320), 1, + ACTIONS(13995), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330375,19 +335981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305784] = 6, + [311465] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13862), 1, + ACTIONS(13246), 1, anon_sym_DQUOTE, - ACTIONS(13866), 1, + ACTIONS(13250), 1, sym_variable_name, - STATE(6761), 1, + STATE(6275), 1, sym_string, - ACTIONS(13864), 2, + ACTIONS(13248), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13860), 9, + ACTIONS(13244), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330397,19 +336003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305812] = 6, + [311493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13868), 1, + ACTIONS(14189), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330419,19 +336025,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305840] = 6, + [311521] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13696), 1, + ACTIONS(6679), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(13359), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(6596), 1, + sym_string, + ACTIONS(13357), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(13355), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330441,19 +336047,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305868] = 6, + [311549] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13664), 1, + ACTIONS(13497), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330463,19 +336069,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305896] = 6, + [311577] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13870), 1, + ACTIONS(14191), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330485,19 +336091,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305924] = 6, + [311605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13872), 1, + ACTIONS(5240), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(5244), 1, + sym_variable_name, + STATE(2551), 1, + sym_string, + ACTIONS(5242), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(5238), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330507,19 +336113,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305952] = 6, + [311633] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5037), 1, + ACTIONS(13785), 1, anon_sym_DQUOTE, - ACTIONS(5041), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(2596), 1, - sym_string, - ACTIONS(5039), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(5035), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330529,19 +336135,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [305980] = 6, + [311661] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13324), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14193), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330551,19 +336157,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306008] = 6, + [311689] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1698), 1, + ACTIONS(5251), 1, anon_sym_DQUOTE, - ACTIONS(2889), 1, + ACTIONS(5255), 1, sym_variable_name, - STATE(1284), 1, + STATE(2665), 1, sym_string, - ACTIONS(2887), 2, + ACTIONS(5253), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(2885), 9, + ACTIONS(5249), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330573,19 +336179,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306036] = 6, + [311717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13672), 1, + ACTIONS(13509), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330595,19 +336201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306064] = 6, + [311745] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13874), 1, + ACTIONS(14195), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330617,19 +336223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306092] = 6, + [311773] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1746), 1, + ACTIONS(9061), 1, anon_sym_DQUOTE, - ACTIONS(1750), 1, + ACTIONS(9065), 1, sym_variable_name, - STATE(904), 1, + STATE(5511), 1, sym_string, - ACTIONS(1748), 2, + ACTIONS(9063), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(1744), 9, + ACTIONS(9059), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330639,41 +336245,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306120] = 6, + [311801] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13876), 1, + ACTIONS(13417), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 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__, - [306148] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13878), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330683,19 +336267,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306176] = 6, + [311829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8661), 1, + ACTIONS(13765), 1, anon_sym_DQUOTE, - ACTIONS(8665), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(5430), 1, - sym_string, - ACTIONS(8663), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8659), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330705,19 +336289,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306204] = 6, + [311857] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13880), 1, + ACTIONS(14197), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330727,19 +336311,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306232] = 6, + [311885] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(4874), 1, anon_sym_DQUOTE, - ACTIONS(3878), 1, + ACTIONS(4878), 1, sym_variable_name, - STATE(1683), 1, + STATE(2565), 1, sym_string, - ACTIONS(3876), 2, + ACTIONS(4876), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(3874), 9, + ACTIONS(4872), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330749,41 +336333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306260] = 6, + [311913] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13688), 1, + ACTIONS(13943), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13734), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 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__, - [306288] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13882), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330793,19 +336355,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306316] = 6, + [311941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13884), 1, + ACTIONS(14199), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330815,19 +336377,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306344] = 6, + [311969] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4459), 1, + ACTIONS(8807), 1, anon_sym_DQUOTE, - ACTIONS(4463), 1, + ACTIONS(8811), 1, sym_variable_name, - STATE(2520), 1, + STATE(5420), 1, sym_string, - ACTIONS(4461), 2, + ACTIONS(8809), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(4457), 9, + ACTIONS(8805), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330837,41 +336399,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306372] = 6, + [311997] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5065), 1, + ACTIONS(13999), 1, anon_sym_DQUOTE, - ACTIONS(5069), 1, - sym_variable_name, - STATE(2433), 1, - sym_string, - ACTIONS(5067), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(5063), 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__, - [306400] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3354), 1, - anon_sym_DQUOTE, - ACTIONS(7115), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(4471), 1, - sym_string, - ACTIONS(7113), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7111), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330881,19 +336421,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306428] = 6, + [312025] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13700), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14201), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330903,19 +336443,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306456] = 6, + [312053] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13886), 1, + ACTIONS(14203), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330925,19 +336465,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306484] = 6, + [312081] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13888), 1, + ACTIONS(7868), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(7872), 1, + sym_variable_name, + STATE(4372), 1, + sym_string, + ACTIONS(7870), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(7866), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330947,19 +336487,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306512] = 6, + [312109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8555), 1, + ACTIONS(13991), 1, anon_sym_DQUOTE, - ACTIONS(8559), 1, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, sym_variable_name, - STATE(5344), 1, - sym_string, - ACTIONS(8557), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(8553), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330969,19 +336509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306540] = 6, + [312137] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13166), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14205), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -330991,19 +336531,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306568] = 6, + [312165] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13708), 1, + ACTIONS(10809), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(10813), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(5516), 1, + sym_string, + ACTIONS(10811), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(10807), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331013,19 +336553,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306596] = 6, + [312193] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13340), 1, + ACTIONS(13481), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331035,19 +336575,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306624] = 6, + [312221] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13890), 1, + ACTIONS(14207), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331057,19 +336597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306652] = 6, + [312249] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7631), 1, + ACTIONS(14211), 1, anon_sym_DQUOTE, - ACTIONS(7635), 1, + ACTIONS(14215), 1, sym_variable_name, - STATE(4316), 1, + STATE(6825), 1, sym_string, - ACTIONS(7633), 2, + ACTIONS(14213), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(7629), 9, + ACTIONS(14209), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331079,19 +336619,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306680] = 6, + [312277] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13613), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13892), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331101,19 +336641,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306708] = 6, + [312305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13716), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14217), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331123,19 +336663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306736] = 6, + [312333] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13344), 1, + ACTIONS(5717), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, + ACTIONS(5897), 1, sym_variable_name, - ACTIONS(13734), 2, + STATE(3418), 1, + sym_string, + ACTIONS(5895), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(5893), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331145,19 +336685,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306764] = 6, + [312361] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13720), 1, + ACTIONS(13701), 1, anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331167,19 +336707,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306792] = 6, + [312389] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13894), 1, + ACTIONS(14219), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331189,19 +336729,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306820] = 6, + [312417] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13809), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13896), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331211,19 +336751,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306848] = 6, + [312445] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(9028), 1, + ACTIONS(5929), 1, anon_sym_DQUOTE, - ACTIONS(9032), 1, + ACTIONS(11563), 1, sym_variable_name, - STATE(5447), 1, + STATE(5684), 1, sym_string, - ACTIONS(9030), 2, + ACTIONS(11561), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(9026), 9, + ACTIONS(11559), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331233,19 +336773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306876] = 6, + [312473] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13939), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13898), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331255,19 +336795,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306904] = 6, + [312501] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13436), 1, - anon_sym_DQUOTE, - ACTIONS(13732), 1, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13734), 2, + ACTIONS(14221), 1, + anon_sym_DQUOTE, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331277,19 +336817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306932] = 6, + [312529] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13900), 1, + ACTIONS(1830), 1, anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(1834), 1, + sym_variable_name, + STATE(861), 1, + sym_string, + ACTIONS(1832), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(1828), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331299,19 +336839,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306960] = 6, + [312557] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(13732), 1, + ACTIONS(13581), 1, + anon_sym_DQUOTE, + ACTIONS(14053), 1, sym_string_content, - ACTIONS(13736), 1, + ACTIONS(14057), 1, sym_variable_name, - ACTIONS(13902), 1, - anon_sym_DQUOTE, - ACTIONS(13734), 2, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 9, + ACTIONS(14049), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331321,267 +336861,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [306988] = 7, - ACTIONS(71), 1, + [312585] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(13906), 1, + ACTIONS(14225), 1, anon_sym_LT_LT, - ACTIONS(13912), 1, + ACTIONS(14231), 1, anon_sym_LT_LT_DASH, - ACTIONS(13914), 1, + ACTIONS(14233), 1, anon_sym_LT_LT_LT, - ACTIONS(13910), 2, + ACTIONS(14229), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13908), 3, + ACTIONS(14227), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13904), 5, + ACTIONS(14223), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307017] = 3, - ACTIONS(3), 1, + [312614] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(1342), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 12, - anon_sym_LPAREN_LPAREN, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - aux_sym__simple_variable_name_token1, - [307038] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13918), 1, + ACTIONS(14237), 1, anon_sym_LT_LT, - ACTIONS(13924), 1, + ACTIONS(14243), 1, anon_sym_LT_LT_DASH, - ACTIONS(13926), 1, + ACTIONS(14245), 1, anon_sym_LT_LT_LT, - ACTIONS(13922), 2, + ACTIONS(14241), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13920), 3, + ACTIONS(14239), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13916), 5, + ACTIONS(14235), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307067] = 7, - ACTIONS(71), 1, + [312643] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(13918), 1, + ACTIONS(14225), 1, anon_sym_LT_LT, - ACTIONS(13924), 1, + ACTIONS(14231), 1, anon_sym_LT_LT_DASH, - ACTIONS(13934), 1, + ACTIONS(14253), 1, anon_sym_LT_LT_LT, - ACTIONS(13932), 2, + ACTIONS(14251), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13930), 3, + ACTIONS(14249), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13928), 5, + ACTIONS(14247), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307096] = 7, - ACTIONS(71), 1, + [312672] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(13918), 1, + ACTIONS(14257), 1, anon_sym_LT_LT, - ACTIONS(13924), 1, + ACTIONS(14263), 1, anon_sym_LT_LT_DASH, - ACTIONS(13942), 1, + ACTIONS(14265), 1, anon_sym_LT_LT_LT, - ACTIONS(13940), 2, + ACTIONS(14261), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13938), 3, + ACTIONS(14259), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13936), 5, + ACTIONS(14255), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307125] = 7, - ACTIONS(71), 1, + [312701] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13946), 1, + ACTIONS(1342), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1340), 12, + anon_sym_LPAREN_LPAREN, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + aux_sym__simple_variable_name_token1, + [312722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1322), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1320), 12, + anon_sym_LPAREN_LPAREN, + anon_sym_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + aux_sym_number_token1, + aux_sym_number_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_RBRACE3, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + aux_sym__simple_variable_name_token1, + [312743] = 7, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14225), 1, anon_sym_LT_LT, - ACTIONS(13952), 1, + ACTIONS(14231), 1, anon_sym_LT_LT_DASH, - ACTIONS(13954), 1, + ACTIONS(14273), 1, anon_sym_LT_LT_LT, - ACTIONS(13950), 2, + ACTIONS(14271), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13948), 3, + ACTIONS(14269), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13944), 5, + ACTIONS(14267), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307154] = 7, - ACTIONS(71), 1, + [312772] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(13918), 1, + ACTIONS(14277), 1, anon_sym_LT_LT, - ACTIONS(13924), 1, + ACTIONS(14283), 1, anon_sym_LT_LT_DASH, - ACTIONS(13962), 1, + ACTIONS(14285), 1, anon_sym_LT_LT_LT, - ACTIONS(13960), 2, + ACTIONS(14281), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13958), 3, + ACTIONS(14279), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13956), 5, + ACTIONS(14275), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307183] = 7, - ACTIONS(71), 1, + [312801] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(13966), 1, + ACTIONS(14225), 1, anon_sym_LT_LT, - ACTIONS(13972), 1, + ACTIONS(14231), 1, anon_sym_LT_LT_DASH, - ACTIONS(13974), 1, + ACTIONS(14293), 1, anon_sym_LT_LT_LT, - ACTIONS(13970), 2, + ACTIONS(14291), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13968), 3, + ACTIONS(14289), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13964), 5, + ACTIONS(14287), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307212] = 3, + [312830] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 12, - anon_sym_LPAREN_LPAREN, - anon_sym_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - aux_sym_number_token1, - aux_sym_number_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_RBRACE3, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, + ACTIONS(14053), 1, + sym_string_content, + ACTIONS(14057), 1, + sym_variable_name, + ACTIONS(14055), 2, aux_sym__simple_variable_name_token1, - [307233] = 7, - ACTIONS(71), 1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14049), 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__, + [312855] = 7, + ACTIONS(73), 1, sym_comment, - ACTIONS(13918), 1, + ACTIONS(14225), 1, anon_sym_LT_LT, - ACTIONS(13924), 1, + ACTIONS(14231), 1, anon_sym_LT_LT_DASH, - ACTIONS(13982), 1, + ACTIONS(14301), 1, anon_sym_LT_LT_LT, - ACTIONS(13980), 2, + ACTIONS(14299), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13978), 3, + ACTIONS(14297), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13976), 5, + ACTIONS(14295), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307262] = 5, - ACTIONS(3), 1, + [312884] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(13732), 1, - sym_string_content, - ACTIONS(13736), 1, - sym_variable_name, - ACTIONS(13734), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(13730), 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__, - [307287] = 6, - ACTIONS(71), 1, + ACTIONS(14257), 1, + anon_sym_LT_LT, + ACTIONS(14263), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14261), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14259), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14255), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [312910] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14277), 1, + anon_sym_LT_LT, + ACTIONS(14283), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14281), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14279), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14275), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [312936] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(13918), 1, + ACTIONS(14225), 1, anon_sym_LT_LT, - ACTIONS(13924), 1, + ACTIONS(14231), 1, anon_sym_LT_LT_DASH, - ACTIONS(13980), 2, + ACTIONS(14299), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13978), 3, + ACTIONS(14297), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13976), 5, + ACTIONS(14295), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307313] = 4, + [312962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13988), 1, + ACTIONS(14307), 1, sym_variable_name, - ACTIONS(13986), 2, + ACTIONS(14305), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13984), 9, + ACTIONS(14303), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331591,35 +337171,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307335] = 6, - ACTIONS(71), 1, + [312984] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(13946), 1, + ACTIONS(14225), 1, anon_sym_LT_LT, - ACTIONS(13952), 1, + ACTIONS(14231), 1, anon_sym_LT_LT_DASH, - ACTIONS(13950), 2, + ACTIONS(14229), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13948), 3, + ACTIONS(14227), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13944), 5, + ACTIONS(14223), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307361] = 4, + [313010] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(13994), 1, + ACTIONS(14313), 1, sym_variable_name, - ACTIONS(13992), 2, + ACTIONS(14311), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13990), 9, + ACTIONS(14309), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331629,15 +337209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307383] = 4, + [313032] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14000), 1, + ACTIONS(14319), 1, sym_variable_name, - ACTIONS(13998), 2, + ACTIONS(14317), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(13996), 9, + ACTIONS(14315), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331647,75 +337227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307405] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13918), 1, - anon_sym_LT_LT, - ACTIONS(13924), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13940), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13938), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(13936), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [307431] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13918), 1, - anon_sym_LT_LT, - ACTIONS(13924), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13932), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13930), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(13928), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [307457] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(13966), 1, - anon_sym_LT_LT, - ACTIONS(13972), 1, - anon_sym_LT_LT_DASH, - ACTIONS(13970), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13968), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(13964), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [307483] = 4, + [313054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14006), 1, + ACTIONS(14215), 1, sym_variable_name, - ACTIONS(14004), 2, + ACTIONS(14213), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14002), 9, + ACTIONS(14209), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331725,15 +337245,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307505] = 4, + [313076] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14012), 1, + ACTIONS(14325), 1, sym_variable_name, - ACTIONS(14010), 2, + ACTIONS(14323), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14008), 9, + ACTIONS(14321), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331743,15 +337263,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307527] = 4, + [313098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14018), 1, + ACTIONS(14331), 1, sym_variable_name, - ACTIONS(14016), 2, + ACTIONS(14329), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14014), 9, + ACTIONS(14327), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331761,113 +337281,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307549] = 6, - ACTIONS(71), 1, + [313120] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(13918), 1, + ACTIONS(14335), 1, anon_sym_LT_LT, - ACTIONS(13924), 1, + ACTIONS(14341), 1, anon_sym_LT_LT_DASH, - ACTIONS(13922), 2, + ACTIONS(14339), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13920), 3, + ACTIONS(14337), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13916), 5, + ACTIONS(14333), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307575] = 4, - ACTIONS(3), 1, + [313146] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(13866), 1, - sym_variable_name, - ACTIONS(13864), 2, - aux_sym__simple_variable_name_token1, - aux_sym__multiline_variable_name_token1, - ACTIONS(13860), 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__, - [307597] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14022), 1, + ACTIONS(14237), 1, anon_sym_LT_LT, - ACTIONS(14028), 1, + ACTIONS(14243), 1, anon_sym_LT_LT_DASH, - ACTIONS(14026), 2, + ACTIONS(14241), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14024), 3, + ACTIONS(14239), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14020), 5, + ACTIONS(14235), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307623] = 6, - ACTIONS(71), 1, + [313172] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(13918), 1, + ACTIONS(14225), 1, anon_sym_LT_LT, - ACTIONS(13924), 1, + ACTIONS(14231), 1, anon_sym_LT_LT_DASH, - ACTIONS(13960), 2, + ACTIONS(14291), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13958), 3, + ACTIONS(14289), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13956), 5, + ACTIONS(14287), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307649] = 6, - ACTIONS(71), 1, + [313198] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14347), 1, + sym_variable_name, + ACTIONS(14345), 2, + aux_sym__simple_variable_name_token1, + aux_sym__multiline_variable_name_token1, + ACTIONS(14343), 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__, + [313220] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(13906), 1, + ACTIONS(14225), 1, anon_sym_LT_LT, - ACTIONS(13912), 1, + ACTIONS(14231), 1, anon_sym_LT_LT_DASH, - ACTIONS(13910), 2, + ACTIONS(14271), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13908), 3, + ACTIONS(14269), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13904), 5, + ACTIONS(14267), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307675] = 4, + [313246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14034), 1, + ACTIONS(14353), 1, sym_variable_name, - ACTIONS(14032), 2, + ACTIONS(14351), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14030), 9, + ACTIONS(14349), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331877,15 +337397,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307697] = 4, + [313268] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14225), 1, + anon_sym_LT_LT, + ACTIONS(14231), 1, + anon_sym_LT_LT_DASH, + ACTIONS(14251), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14249), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14247), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [313294] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14040), 1, + ACTIONS(14359), 1, sym_variable_name, - ACTIONS(14038), 2, + ACTIONS(14357), 2, aux_sym__simple_variable_name_token1, aux_sym__multiline_variable_name_token1, - ACTIONS(14036), 9, + ACTIONS(14355), 9, anon_sym_DASH, anon_sym_STAR, anon_sym_BANG, @@ -331895,180 +337435,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT2, anon_sym_0, anon_sym__, - [307719] = 9, - ACTIONS(71), 1, + [313316] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14042), 1, - anon_sym_DOLLAR, - ACTIONS(14045), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14048), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14051), 1, - anon_sym_BQUOTE, - ACTIONS(14054), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14057), 1, - sym_heredoc_content, - ACTIONS(14060), 1, - sym_heredoc_end, - STATE(6117), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [307750] = 5, - ACTIONS(71), 1, + ACTIONS(14361), 1, + anon_sym_RBRACE3, + ACTIONS(14363), 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, + [313335] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14068), 1, + ACTIONS(14293), 1, anon_sym_LT_LT_LT, - ACTIONS(14066), 2, + ACTIONS(14291), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14064), 3, + ACTIONS(14289), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14062), 5, + ACTIONS(14287), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307773] = 5, - ACTIONS(71), 1, + [313358] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14076), 1, + ACTIONS(14371), 1, anon_sym_LT_LT_LT, - ACTIONS(14074), 2, + ACTIONS(14369), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14072), 3, + ACTIONS(14367), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14070), 5, + ACTIONS(14365), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307796] = 5, - ACTIONS(71), 1, + [313381] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14084), 1, + ACTIONS(14379), 1, anon_sym_LT_LT_LT, - ACTIONS(14082), 2, + ACTIONS(14377), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14080), 3, + ACTIONS(14375), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14078), 5, + ACTIONS(14373), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307819] = 5, - ACTIONS(71), 1, + [313404] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(13934), 1, + ACTIONS(14387), 1, anon_sym_LT_LT_LT, - ACTIONS(13932), 2, + ACTIONS(14385), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13930), 3, + ACTIONS(14383), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13928), 5, + ACTIONS(14381), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307842] = 9, - ACTIONS(71), 1, + [313427] = 9, + ACTIONS(73), 1, sym_comment, - ACTIONS(14086), 1, + ACTIONS(14389), 1, anon_sym_DOLLAR, - ACTIONS(14088), 1, + ACTIONS(14391), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(14090), 1, + ACTIONS(14393), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(14092), 1, + ACTIONS(14395), 1, anon_sym_BQUOTE, - ACTIONS(14094), 1, + ACTIONS(14397), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14096), 1, + ACTIONS(14399), 1, sym_heredoc_content, - ACTIONS(14098), 1, + ACTIONS(14401), 1, sym_heredoc_end, - STATE(6117), 4, + STATE(6187), 4, sym_simple_expansion, sym_expansion, sym_command_substitution, aux_sym_heredoc_body_repeat1, - [307873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1350), 1, - sym__concat, - ACTIONS(1348), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [307892] = 5, - ACTIONS(71), 1, + [313458] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(13914), 1, + ACTIONS(14409), 1, anon_sym_LT_LT_LT, - ACTIONS(13910), 2, + ACTIONS(14407), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13908), 3, + ACTIONS(14405), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13904), 5, + ACTIONS(14403), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307915] = 5, - ACTIONS(71), 1, + [313481] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14106), 1, + ACTIONS(14417), 1, anon_sym_LT_LT_LT, - ACTIONS(14104), 2, + ACTIONS(14415), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14102), 3, + ACTIONS(14413), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14100), 5, + ACTIONS(14411), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [307938] = 3, + [313504] = 9, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14419), 1, + anon_sym_DOLLAR, + ACTIONS(14422), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14425), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14428), 1, + anon_sym_BQUOTE, + ACTIONS(14431), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14434), 1, + sym_heredoc_content, + ACTIONS(14437), 1, + sym_heredoc_end, + STATE(6187), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [313535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 1, + ACTIONS(1342), 1, sym__concat, - ACTIONS(1300), 10, + ACTIONS(1340), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -332079,228 +337619,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [307957] = 5, - ACTIONS(71), 1, + [313554] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(13962), 1, - anon_sym_LT_LT_LT, - ACTIONS(13960), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(13958), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(13956), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [307980] = 5, - ACTIONS(71), 1, + ACTIONS(1322), 1, + sym__concat, + ACTIONS(1320), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [313573] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14114), 1, + ACTIONS(14445), 1, anon_sym_LT_LT_LT, - ACTIONS(14112), 2, + ACTIONS(14443), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14110), 3, + ACTIONS(14441), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14108), 5, + ACTIONS(14439), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308003] = 5, - ACTIONS(71), 1, + [313596] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14122), 1, + ACTIONS(14301), 1, anon_sym_LT_LT_LT, - ACTIONS(14120), 2, + ACTIONS(14299), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14118), 3, + ACTIONS(14297), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14116), 5, + ACTIONS(14295), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308026] = 5, - ACTIONS(71), 1, + [313619] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(13954), 1, + ACTIONS(14453), 1, anon_sym_LT_LT_LT, - ACTIONS(13950), 2, + ACTIONS(14451), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13948), 3, + ACTIONS(14449), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13944), 5, + ACTIONS(14447), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308049] = 5, - ACTIONS(71), 1, + [313642] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14130), 1, + ACTIONS(14273), 1, anon_sym_LT_LT_LT, - ACTIONS(14128), 2, + ACTIONS(14271), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14126), 3, + ACTIONS(14269), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14124), 5, + ACTIONS(14267), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308072] = 5, - ACTIONS(71), 1, + [313665] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14138), 1, + ACTIONS(14461), 1, anon_sym_LT_LT_LT, - ACTIONS(14136), 2, + ACTIONS(14459), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14134), 3, + ACTIONS(14457), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14132), 5, + ACTIONS(14455), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308095] = 5, - ACTIONS(71), 1, + [313688] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14146), 1, - anon_sym_LT_LT_LT, - ACTIONS(14144), 2, - anon_sym_LT_AMP_DASH, - anon_sym_GT_AMP_DASH, - ACTIONS(14142), 3, - anon_sym_GT_GT, - anon_sym_AMP_GT_GT, - anon_sym_GT_PIPE, - ACTIONS(14140), 5, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP_GT, - anon_sym_LT_AMP, - anon_sym_GT_AMP, - [308118] = 5, - ACTIONS(71), 1, + ACTIONS(1378), 1, + sym__concat, + ACTIONS(1376), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [313707] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14154), 1, + ACTIONS(14469), 1, anon_sym_LT_LT_LT, - ACTIONS(14152), 2, + ACTIONS(14467), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14150), 3, + ACTIONS(14465), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14148), 5, + ACTIONS(14463), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308141] = 5, - ACTIONS(71), 1, + [313730] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14162), 1, + ACTIONS(14477), 1, anon_sym_LT_LT_LT, - ACTIONS(14160), 2, + ACTIONS(14475), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14158), 3, + ACTIONS(14473), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14156), 5, + ACTIONS(14471), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308164] = 5, - ACTIONS(71), 1, + [313753] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14170), 1, + ACTIONS(14481), 1, + sym__concat, + ACTIONS(14479), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [313772] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14245), 1, anon_sym_LT_LT_LT, - ACTIONS(14168), 2, + ACTIONS(14241), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14166), 3, + ACTIONS(14239), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14164), 5, + ACTIONS(14235), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308187] = 5, - ACTIONS(71), 1, + [313795] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14178), 1, + ACTIONS(14253), 1, anon_sym_LT_LT_LT, - ACTIONS(14176), 2, + ACTIONS(14251), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14174), 3, + ACTIONS(14249), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14172), 5, + ACTIONS(14247), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308210] = 5, - ACTIONS(71), 1, + [313818] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(13942), 1, + ACTIONS(14489), 1, anon_sym_LT_LT_LT, - ACTIONS(13940), 2, + ACTIONS(14487), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13938), 3, + ACTIONS(14485), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13936), 5, + ACTIONS(14483), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308233] = 3, + [313841] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 1, + ACTIONS(1382), 1, sym__concat, - ACTIONS(1316), 10, + ACTIONS(1380), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [313860] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1370), 1, + sym__concat, + ACTIONS(1368), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -332311,176 +337879,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [308252] = 5, - ACTIONS(71), 1, + [313879] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(13982), 1, + ACTIONS(14233), 1, anon_sym_LT_LT_LT, - ACTIONS(13980), 2, + ACTIONS(14229), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13978), 3, + ACTIONS(14227), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13976), 5, + ACTIONS(14223), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308275] = 5, - ACTIONS(71), 1, + [313902] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14186), 1, + ACTIONS(14497), 1, anon_sym_LT_LT_LT, - ACTIONS(14184), 2, + ACTIONS(14495), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14182), 3, + ACTIONS(14493), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14180), 5, + ACTIONS(14491), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308298] = 5, - ACTIONS(71), 1, + [313925] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14194), 1, + ACTIONS(1386), 1, + sym__concat, + ACTIONS(1384), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [313944] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1370), 1, + sym__concat, + ACTIONS(1368), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [313963] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14505), 1, anon_sym_LT_LT_LT, - ACTIONS(14192), 2, + ACTIONS(14503), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14190), 3, + ACTIONS(14501), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14188), 5, + ACTIONS(14499), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308321] = 5, - ACTIONS(71), 1, + [313986] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(13926), 1, + ACTIONS(14265), 1, anon_sym_LT_LT_LT, - ACTIONS(13922), 2, + ACTIONS(14261), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(13920), 3, + ACTIONS(14259), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(13916), 5, + ACTIONS(14255), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308344] = 5, - ACTIONS(71), 1, + [314009] = 9, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14389), 1, + anon_sym_DOLLAR, + ACTIONS(14391), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14393), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14395), 1, + anon_sym_BQUOTE, + ACTIONS(14397), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14507), 1, + sym_heredoc_content, + ACTIONS(14509), 1, + sym_heredoc_end, + STATE(6184), 4, + sym_simple_expansion, + sym_expansion, + sym_command_substitution, + aux_sym_heredoc_body_repeat1, + [314040] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14202), 1, + ACTIONS(14517), 1, anon_sym_LT_LT_LT, - ACTIONS(14200), 2, + ACTIONS(14515), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14198), 3, + ACTIONS(14513), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14196), 5, + ACTIONS(14511), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308367] = 5, - ACTIONS(71), 1, + [314063] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14210), 1, + ACTIONS(14525), 1, anon_sym_LT_LT_LT, - ACTIONS(14208), 2, + ACTIONS(14523), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14206), 3, + ACTIONS(14521), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14204), 5, + ACTIONS(14519), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308390] = 9, - ACTIONS(71), 1, + [314086] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14086), 1, + ACTIONS(14527), 1, + sym__concat, + ACTIONS(13852), 10, + anon_sym_LPAREN_LPAREN, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, anon_sym_DOLLAR, - ACTIONS(14088), 1, + anon_sym_DQUOTE, + sym_string_content, anon_sym_DOLLAR_LBRACE, - ACTIONS(14090), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(14092), 1, anon_sym_BQUOTE, - ACTIONS(14094), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14212), 1, - sym_heredoc_content, - ACTIONS(14214), 1, - sym_heredoc_end, - STATE(6122), 4, - sym_simple_expansion, - sym_expansion, - sym_command_substitution, - aux_sym_heredoc_body_repeat1, - [308421] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14216), 1, - anon_sym_RBRACE3, - ACTIONS(14218), 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, - [308440] = 5, - ACTIONS(71), 1, + [314105] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14220), 1, + ACTIONS(14535), 1, anon_sym_LT_LT_LT, - ACTIONS(14026), 2, + ACTIONS(14533), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14024), 3, + ACTIONS(14531), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14020), 5, + ACTIONS(14529), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308463] = 3, + [314128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14224), 1, + ACTIONS(1358), 1, sym__concat, - ACTIONS(14222), 10, + ACTIONS(1356), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -332491,80 +338091,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [308482] = 5, - ACTIONS(71), 1, + [314147] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14232), 1, + ACTIONS(14537), 1, anon_sym_LT_LT_LT, - ACTIONS(14230), 2, + ACTIONS(14339), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14228), 3, + ACTIONS(14337), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14226), 5, + ACTIONS(14333), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308505] = 5, - ACTIONS(71), 1, + [314170] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14240), 1, + ACTIONS(14545), 1, anon_sym_LT_LT_LT, - ACTIONS(14238), 2, + ACTIONS(14543), 2, anon_sym_LT_AMP_DASH, anon_sym_GT_AMP_DASH, - ACTIONS(14236), 3, + ACTIONS(14541), 3, anon_sym_GT_GT, anon_sym_AMP_GT_GT, anon_sym_GT_PIPE, - ACTIONS(14234), 5, + ACTIONS(14539), 5, anon_sym_LT, anon_sym_GT, anon_sym_AMP_GT, anon_sym_LT_AMP, anon_sym_GT_AMP, - [308528] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1354), 1, - sym__concat, - ACTIONS(1352), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [308547] = 3, - ACTIONS(3), 1, + [314193] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 1, - sym__concat, - ACTIONS(1356), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [308566] = 3, + ACTIONS(14553), 1, + anon_sym_LT_LT_LT, + ACTIONS(14551), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14549), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14547), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [314216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 1, + ACTIONS(1374), 1, sym__concat, - ACTIONS(1344), 10, + ACTIONS(1372), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -332575,408 +338161,408 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [308585] = 3, - ACTIONS(3), 1, + [314235] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 1, - sym__concat, - ACTIONS(1356), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [308604] = 3, - ACTIONS(3), 1, + ACTIONS(14561), 1, + anon_sym_LT_LT_LT, + ACTIONS(14559), 2, + anon_sym_LT_AMP_DASH, + anon_sym_GT_AMP_DASH, + ACTIONS(14557), 3, + anon_sym_GT_GT, + anon_sym_AMP_GT_GT, + anon_sym_GT_PIPE, + ACTIONS(14555), 5, + anon_sym_LT, + anon_sym_GT, + anon_sym_AMP_GT, + anon_sym_LT_AMP, + anon_sym_GT_AMP, + [314258] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(1342), 1, - sym__concat, - ACTIONS(1340), 10, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [308623] = 3, - ACTIONS(3), 1, + ACTIONS(14565), 1, + anon_sym_LPAREN, + ACTIONS(14567), 1, + anon_sym_if, + ACTIONS(14569), 1, + anon_sym_LBRACE, + ACTIONS(14571), 1, + anon_sym_LBRACK, + ACTIONS(14573), 1, + anon_sym_LBRACK_LBRACK, + STATE(5366), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [314286] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(1294), 1, - sym__concat, - ACTIONS(1292), 10, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [308642] = 3, - ACTIONS(3), 1, + ACTIONS(14565), 1, + anon_sym_LPAREN, + ACTIONS(14567), 1, + anon_sym_if, + ACTIONS(14569), 1, + anon_sym_LBRACE, + ACTIONS(14571), 1, + anon_sym_LBRACK, + ACTIONS(14573), 1, + anon_sym_LBRACK_LBRACK, + STATE(5064), 4, + sym_if_statement, + sym_compound_statement, + sym_subshell, + sym_test_command, + [314314] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14242), 1, - sym__concat, - ACTIONS(13277), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, + ACTIONS(14575), 1, anon_sym_DQUOTE, - sym_string_content, + ACTIONS(14577), 1, anon_sym_DOLLAR_LBRACE, + ACTIONS(14579), 1, anon_sym_DOLLAR_LPAREN, + ACTIONS(14581), 1, anon_sym_BQUOTE, + ACTIONS(14583), 1, anon_sym_DOLLAR_BQUOTE, - [308661] = 8, - ACTIONS(71), 1, + ACTIONS(5802), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + STATE(6715), 3, + sym_string, + sym_expansion, + sym_command_substitution, + [314342] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14246), 1, + ACTIONS(14565), 1, anon_sym_LPAREN, - ACTIONS(14248), 1, + ACTIONS(14567), 1, anon_sym_if, - ACTIONS(14250), 1, + ACTIONS(14569), 1, anon_sym_LBRACE, - ACTIONS(14252), 1, + ACTIONS(14571), 1, anon_sym_LBRACK, - ACTIONS(14254), 1, + ACTIONS(14573), 1, anon_sym_LBRACK_LBRACK, - STATE(5303), 4, + STATE(4864), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308689] = 8, - ACTIONS(71), 1, + [314370] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(14585), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14246), 1, + ACTIONS(14587), 1, anon_sym_LPAREN, - ACTIONS(14248), 1, + ACTIONS(14589), 1, anon_sym_if, - ACTIONS(14250), 1, + ACTIONS(14591), 1, anon_sym_LBRACE, - ACTIONS(14252), 1, + ACTIONS(14593), 1, anon_sym_LBRACK, - ACTIONS(14254), 1, + ACTIONS(14595), 1, anon_sym_LBRACK_LBRACK, - STATE(4956), 4, + STATE(5539), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308717] = 8, - ACTIONS(71), 1, + [314398] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14256), 1, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14258), 1, + ACTIONS(14565), 1, anon_sym_LPAREN, - ACTIONS(14260), 1, + ACTIONS(14567), 1, anon_sym_if, - ACTIONS(14262), 1, + ACTIONS(14569), 1, anon_sym_LBRACE, - ACTIONS(14264), 1, + ACTIONS(14571), 1, anon_sym_LBRACK, - ACTIONS(14266), 1, + ACTIONS(14573), 1, anon_sym_LBRACK_LBRACK, - STATE(5488), 4, + STATE(4769), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308745] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14268), 10, - anon_sym_LPAREN_LPAREN, - anon_sym_DOLLAR_LPAREN_LPAREN, - anon_sym_DOLLAR_LBRACK, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_string_content, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [308761] = 8, - ACTIONS(71), 1, + [314426] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(14585), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14248), 1, + ACTIONS(14589), 1, anon_sym_if, - ACTIONS(14250), 1, + ACTIONS(14591), 1, anon_sym_LBRACE, - ACTIONS(14252), 1, + ACTIONS(14593), 1, anon_sym_LBRACK, - ACTIONS(14254), 1, + ACTIONS(14595), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14270), 1, + ACTIONS(14597), 1, anon_sym_LPAREN, - STATE(4677), 4, + STATE(5464), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308789] = 8, - ACTIONS(71), 1, + [314454] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14256), 1, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14260), 1, + ACTIONS(14565), 1, + anon_sym_LPAREN, + ACTIONS(14567), 1, anon_sym_if, - ACTIONS(14262), 1, + ACTIONS(14569), 1, anon_sym_LBRACE, - ACTIONS(14264), 1, + ACTIONS(14571), 1, anon_sym_LBRACK, - ACTIONS(14266), 1, + ACTIONS(14573), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14272), 1, - anon_sym_LPAREN, - STATE(5446), 4, + STATE(4772), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308817] = 8, - ACTIONS(71), 1, + [314482] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14246), 1, + ACTIONS(14565), 1, anon_sym_LPAREN, - ACTIONS(14248), 1, + ACTIONS(14567), 1, anon_sym_if, - ACTIONS(14250), 1, + ACTIONS(14569), 1, anon_sym_LBRACE, - ACTIONS(14252), 1, + ACTIONS(14571), 1, anon_sym_LBRACK, - ACTIONS(14254), 1, + ACTIONS(14573), 1, anon_sym_LBRACK_LBRACK, - STATE(4683), 4, + STATE(5065), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308845] = 8, - ACTIONS(71), 1, + [314510] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14246), 1, + ACTIONS(14565), 1, anon_sym_LPAREN, - ACTIONS(14248), 1, + ACTIONS(14567), 1, anon_sym_if, - ACTIONS(14250), 1, + ACTIONS(14569), 1, anon_sym_LBRACE, - ACTIONS(14252), 1, + ACTIONS(14571), 1, anon_sym_LBRACK, - ACTIONS(14254), 1, + ACTIONS(14573), 1, anon_sym_LBRACK_LBRACK, - STATE(4685), 4, + STATE(4724), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308873] = 8, - ACTIONS(71), 1, + [314538] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14248), 1, + ACTIONS(14565), 1, + anon_sym_LPAREN, + ACTIONS(14567), 1, anon_sym_if, - ACTIONS(14250), 1, + ACTIONS(14569), 1, anon_sym_LBRACE, - ACTIONS(14252), 1, + ACTIONS(14571), 1, anon_sym_LBRACK, - ACTIONS(14254), 1, + ACTIONS(14573), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14274), 1, - anon_sym_LPAREN, - STATE(5019), 4, + STATE(4777), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308901] = 8, - ACTIONS(71), 1, + [314566] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14276), 1, + ACTIONS(14585), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14278), 1, + ACTIONS(14587), 1, anon_sym_LPAREN, - ACTIONS(14280), 1, + ACTIONS(14589), 1, anon_sym_if, - ACTIONS(14282), 1, + ACTIONS(14591), 1, anon_sym_LBRACE, - ACTIONS(14284), 1, + ACTIONS(14593), 1, anon_sym_LBRACK, - ACTIONS(14286), 1, + ACTIONS(14595), 1, anon_sym_LBRACK_LBRACK, - STATE(4293), 4, + STATE(5491), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308929] = 8, - ACTIONS(71), 1, + [314594] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(14599), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14248), 1, + ACTIONS(14601), 1, + anon_sym_LPAREN, + ACTIONS(14603), 1, anon_sym_if, - ACTIONS(14250), 1, + ACTIONS(14605), 1, anon_sym_LBRACE, - ACTIONS(14252), 1, + ACTIONS(14607), 1, anon_sym_LBRACK, - ACTIONS(14254), 1, + ACTIONS(14609), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14288), 1, - anon_sym_LPAREN, - STATE(4716), 4, + STATE(4604), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308957] = 8, - ACTIONS(71), 1, + [314622] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14276), 1, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14280), 1, + ACTIONS(14567), 1, anon_sym_if, - ACTIONS(14282), 1, + ACTIONS(14569), 1, anon_sym_LBRACE, - ACTIONS(14284), 1, + ACTIONS(14571), 1, anon_sym_LBRACK, - ACTIONS(14286), 1, + ACTIONS(14573), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14290), 1, + ACTIONS(14611), 1, anon_sym_LPAREN, - STATE(4309), 4, + STATE(5359), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [308985] = 8, - ACTIONS(71), 1, + [314650] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14246), 1, - anon_sym_LPAREN, - ACTIONS(14248), 1, + ACTIONS(14567), 1, anon_sym_if, - ACTIONS(14250), 1, + ACTIONS(14569), 1, anon_sym_LBRACE, - ACTIONS(14252), 1, + ACTIONS(14571), 1, anon_sym_LBRACK, - ACTIONS(14254), 1, + ACTIONS(14573), 1, anon_sym_LBRACK_LBRACK, - STATE(4733), 4, + ACTIONS(14613), 1, + anon_sym_LPAREN, + STATE(5060), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309013] = 8, - ACTIONS(71), 1, + [314678] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(14599), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14246), 1, - anon_sym_LPAREN, - ACTIONS(14248), 1, + ACTIONS(14603), 1, anon_sym_if, - ACTIONS(14250), 1, + ACTIONS(14605), 1, anon_sym_LBRACE, - ACTIONS(14252), 1, + ACTIONS(14607), 1, anon_sym_LBRACK, - ACTIONS(14254), 1, + ACTIONS(14609), 1, anon_sym_LBRACK_LBRACK, - STATE(4807), 4, + ACTIONS(14615), 1, + anon_sym_LPAREN, + STATE(4575), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309041] = 8, - ACTIONS(71), 1, + [314706] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14276), 1, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14278), 1, + ACTIONS(14565), 1, anon_sym_LPAREN, - ACTIONS(14280), 1, + ACTIONS(14567), 1, anon_sym_if, - ACTIONS(14282), 1, + ACTIONS(14569), 1, anon_sym_LBRACE, - ACTIONS(14284), 1, + ACTIONS(14571), 1, anon_sym_LBRACK, - ACTIONS(14286), 1, + ACTIONS(14573), 1, anon_sym_LBRACK_LBRACK, - STATE(4266), 4, + STATE(5367), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309069] = 8, - ACTIONS(71), 1, + [314734] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14292), 1, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14294), 1, - anon_sym_LPAREN, - ACTIONS(14296), 1, + ACTIONS(14567), 1, anon_sym_if, - ACTIONS(14298), 1, + ACTIONS(14569), 1, anon_sym_LBRACE, - ACTIONS(14300), 1, + ACTIONS(14571), 1, anon_sym_LBRACK, - ACTIONS(14302), 1, + ACTIONS(14573), 1, anon_sym_LBRACK_LBRACK, - STATE(4431), 4, + ACTIONS(14617), 1, + anon_sym_LPAREN, + STATE(4756), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309097] = 8, - ACTIONS(71), 1, + [314762] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(14619), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14246), 1, + ACTIONS(14621), 1, anon_sym_LPAREN, - ACTIONS(14248), 1, + ACTIONS(14623), 1, anon_sym_if, - ACTIONS(14250), 1, + ACTIONS(14625), 1, anon_sym_LBRACE, - ACTIONS(14252), 1, + ACTIONS(14627), 1, anon_sym_LBRACK, - ACTIONS(14254), 1, + ACTIONS(14629), 1, anon_sym_LBRACK_LBRACK, - STATE(4610), 4, + STATE(4311), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309125] = 2, + [314790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(13277), 10, + ACTIONS(14631), 10, anon_sym_LPAREN_LPAREN, anon_sym_DOLLAR_LPAREN_LPAREN, anon_sym_DOLLAR_LBRACK, @@ -332987,564 +338573,498 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [309141] = 8, - ACTIONS(71), 1, + [314806] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(14599), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14246), 1, + ACTIONS(14601), 1, anon_sym_LPAREN, - ACTIONS(14248), 1, + ACTIONS(14603), 1, anon_sym_if, - ACTIONS(14250), 1, + ACTIONS(14605), 1, anon_sym_LBRACE, - ACTIONS(14252), 1, + ACTIONS(14607), 1, anon_sym_LBRACK, - ACTIONS(14254), 1, + ACTIONS(14609), 1, anon_sym_LBRACK_LBRACK, - STATE(5032), 4, + STATE(4598), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309169] = 8, - ACTIONS(71), 1, + [314834] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(13852), 10, anon_sym_LPAREN_LPAREN, - ACTIONS(14248), 1, - anon_sym_if, - ACTIONS(14250), 1, - anon_sym_LBRACE, - ACTIONS(14252), 1, - anon_sym_LBRACK, - ACTIONS(14254), 1, - anon_sym_LBRACK_LBRACK, - ACTIONS(14304), 1, - anon_sym_LPAREN, - STATE(4748), 4, - sym_if_statement, - sym_compound_statement, - sym_subshell, - sym_test_command, - [309197] = 8, - ACTIONS(71), 1, + anon_sym_DOLLAR_LPAREN_LPAREN, + anon_sym_DOLLAR_LBRACK, + anon_sym_DOLLAR, + anon_sym_DQUOTE, + sym_string_content, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [314850] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14256), 1, + ACTIONS(14619), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14258), 1, + ACTIONS(14621), 1, anon_sym_LPAREN, - ACTIONS(14260), 1, + ACTIONS(14623), 1, anon_sym_if, - ACTIONS(14262), 1, + ACTIONS(14625), 1, anon_sym_LBRACE, - ACTIONS(14264), 1, + ACTIONS(14627), 1, anon_sym_LBRACK, - ACTIONS(14266), 1, + ACTIONS(14629), 1, anon_sym_LBRACK_LBRACK, - STATE(5409), 4, + STATE(4445), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309225] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14218), 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, - [309241] = 8, - ACTIONS(71), 1, + [314878] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14292), 1, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14296), 1, + ACTIONS(14567), 1, anon_sym_if, - ACTIONS(14298), 1, + ACTIONS(14569), 1, anon_sym_LBRACE, - ACTIONS(14300), 1, + ACTIONS(14571), 1, anon_sym_LBRACK, - ACTIONS(14302), 1, + ACTIONS(14573), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14306), 1, + ACTIONS(14633), 1, anon_sym_LPAREN, - STATE(4447), 4, + STATE(4827), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309269] = 8, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14308), 1, - anon_sym_DQUOTE, - ACTIONS(14310), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14312), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14314), 1, - anon_sym_BQUOTE, - ACTIONS(14316), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(5470), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - STATE(6663), 3, - sym_string, - sym_expansion, - sym_command_substitution, - [309297] = 8, - ACTIONS(71), 1, + [314906] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(14619), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14248), 1, + ACTIONS(14623), 1, anon_sym_if, - ACTIONS(14250), 1, + ACTIONS(14625), 1, anon_sym_LBRACE, - ACTIONS(14252), 1, + ACTIONS(14627), 1, anon_sym_LBRACK, - ACTIONS(14254), 1, + ACTIONS(14629), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14318), 1, + ACTIONS(14635), 1, anon_sym_LPAREN, - STATE(5298), 4, + STATE(4429), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309325] = 8, - ACTIONS(71), 1, + [314934] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14246), 1, + ACTIONS(14565), 1, anon_sym_LPAREN, - ACTIONS(14248), 1, + ACTIONS(14567), 1, anon_sym_if, - ACTIONS(14250), 1, + ACTIONS(14569), 1, anon_sym_LBRACE, - ACTIONS(14252), 1, + ACTIONS(14571), 1, anon_sym_LBRACK, - ACTIONS(14254), 1, + ACTIONS(14573), 1, anon_sym_LBRACK_LBRACK, - STATE(4767), 4, + STATE(4862), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309353] = 8, - ACTIONS(71), 1, + [314962] = 8, + ACTIONS(73), 1, sym_comment, - ACTIONS(14292), 1, + ACTIONS(14563), 1, anon_sym_LPAREN_LPAREN, - ACTIONS(14296), 1, + ACTIONS(14567), 1, anon_sym_if, - ACTIONS(14298), 1, + ACTIONS(14569), 1, anon_sym_LBRACE, - ACTIONS(14300), 1, + ACTIONS(14571), 1, anon_sym_LBRACK, - ACTIONS(14302), 1, + ACTIONS(14573), 1, anon_sym_LBRACK_LBRACK, - ACTIONS(14306), 1, + ACTIONS(14637), 1, anon_sym_LPAREN, - STATE(4452), 4, + STATE(4781), 4, sym_if_statement, sym_compound_statement, sym_subshell, sym_test_command, - [309381] = 8, - ACTIONS(71), 1, + [314990] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14244), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(14246), 1, - anon_sym_LPAREN, - ACTIONS(14248), 1, - anon_sym_if, - ACTIONS(14250), 1, - anon_sym_LBRACE, - ACTIONS(14252), 1, - anon_sym_LBRACK, - ACTIONS(14254), 1, - anon_sym_LBRACK_LBRACK, - STATE(5302), 4, - sym_if_statement, - sym_compound_statement, - sym_subshell, - sym_test_command, - [309409] = 6, + ACTIONS(14363), 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, + [315006] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14320), 1, - aux_sym_concatenation_token1, - ACTIONS(14322), 1, - sym__concat, - STATE(6201), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1272), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - sym__special_character, - [309432] = 10, - ACTIONS(71), 1, + ACTIONS(14639), 1, + anon_sym_RPAREN, + ACTIONS(14642), 1, + anon_sym_DQUOTE, + ACTIONS(14645), 1, + anon_sym_SQUOTE, + ACTIONS(14648), 1, + anon_sym_RBRACE3, + ACTIONS(14650), 1, + aux_sym__expansion_regex_token1, + ACTIONS(14653), 1, + sym_regex, + STATE(6249), 3, + sym_string, + sym_raw_string, + aux_sym__expansion_regex_repeat1, + [315033] = 10, + ACTIONS(73), 1, sym_comment, - ACTIONS(14324), 1, + ACTIONS(14656), 1, anon_sym_SLASH, - ACTIONS(14326), 1, + ACTIONS(14658), 1, anon_sym_DQUOTE, - ACTIONS(14328), 1, + ACTIONS(14660), 1, anon_sym_RBRACE3, - ACTIONS(14330), 1, + ACTIONS(14662), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(14332), 1, + ACTIONS(14664), 1, anon_sym_BQUOTE, - ACTIONS(14334), 1, + ACTIONS(14666), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14336), 1, + ACTIONS(14668), 1, sym__regex_no_slash, - STATE(6648), 1, + STATE(6742), 1, sym_string, - STATE(6782), 1, + STATE(6810), 1, sym_command_substitution, - [309463] = 8, + [315064] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(14338), 1, + ACTIONS(14670), 1, anon_sym_RPAREN, - ACTIONS(14341), 1, + ACTIONS(14672), 1, anon_sym_DQUOTE, - ACTIONS(14344), 1, - sym_raw_string, - ACTIONS(14347), 1, + ACTIONS(14674), 1, + anon_sym_SQUOTE, + ACTIONS(14676), 1, anon_sym_RBRACE3, - ACTIONS(14349), 1, + ACTIONS(14678), 1, + aux_sym__expansion_regex_token1, + ACTIONS(14680), 1, + sym_regex, + STATE(6249), 3, + sym_string, + sym_raw_string, + aux_sym__expansion_regex_repeat1, + [315091] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14670), 1, + anon_sym_RPAREN, + ACTIONS(14672), 1, + anon_sym_DQUOTE, + ACTIONS(14674), 1, + anon_sym_SQUOTE, + ACTIONS(14678), 1, aux_sym__expansion_regex_token1, - ACTIONS(14352), 1, + ACTIONS(14682), 1, + anon_sym_RBRACE3, + ACTIONS(14684), 1, sym_regex, - STATE(6189), 2, + STATE(6251), 3, sym_string, + sym_raw_string, aux_sym__expansion_regex_repeat1, - [309489] = 7, + [315118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14320), 1, + ACTIONS(1302), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14686), 1, aux_sym_concatenation_token1, - ACTIONS(14322), 1, + ACTIONS(14688), 1, sym__concat, - ACTIONS(14355), 1, - anon_sym_in, - ACTIONS(14359), 1, - aux_sym_heredoc_redirect_token1, - STATE(6195), 1, + STATE(6258), 1, aux_sym_concatenation_repeat1, - ACTIONS(14357), 3, + ACTIONS(1300), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309513] = 6, + sym__special_character, + [315141] = 7, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7916), 1, + aux_sym_number_token1, + ACTIONS(7918), 1, + aux_sym_number_token2, + ACTIONS(14690), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14692), 1, + aux_sym__simple_variable_name_token1, + STATE(6289), 1, + sym__expansion_max_length_binary_expression, + STATE(6288), 3, + sym_number, + sym_expansion, + sym__expansion_max_length_expression, + [315165] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 1, + ACTIONS(1306), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14361), 1, + ACTIONS(14694), 1, aux_sym_concatenation_token1, - ACTIONS(14364), 1, + ACTIONS(14697), 1, sym__concat, - STATE(6191), 1, + STATE(6255), 1, aux_sym_concatenation_repeat1, - ACTIONS(1276), 4, + ACTIONS(1304), 4, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309535] = 7, + [315187] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14320), 1, + ACTIONS(14686), 1, aux_sym_concatenation_token1, - ACTIONS(14322), 1, + ACTIONS(14688), 1, sym__concat, - ACTIONS(14367), 1, + ACTIONS(14700), 1, anon_sym_in, - ACTIONS(14371), 1, + ACTIONS(14704), 1, aux_sym_heredoc_redirect_token1, - STATE(6201), 1, + STATE(6258), 1, aux_sym_concatenation_repeat1, - ACTIONS(14369), 3, + ACTIONS(14702), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309559] = 7, + [315211] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14320), 1, + ACTIONS(14686), 1, aux_sym_concatenation_token1, - ACTIONS(14322), 1, + ACTIONS(14688), 1, sym__concat, - ACTIONS(14373), 1, + ACTIONS(14706), 1, anon_sym_in, - ACTIONS(14377), 1, + ACTIONS(14710), 1, aux_sym_heredoc_redirect_token1, - STATE(6201), 1, + STATE(6261), 1, aux_sym_concatenation_repeat1, - ACTIONS(14375), 3, + ACTIONS(14708), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309583] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7794), 1, - aux_sym_number_token1, - ACTIONS(7796), 1, - aux_sym_number_token2, - ACTIONS(14379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14381), 1, - aux_sym__simple_variable_name_token1, - STATE(6245), 1, - sym__expansion_max_length_binary_expression, - STATE(6239), 3, - sym_number, - sym_expansion, - sym__expansion_max_length_expression, - [309607] = 6, + [315235] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1288), 1, + ACTIONS(1296), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14320), 1, + ACTIONS(14686), 1, aux_sym_concatenation_token1, - ACTIONS(14383), 1, + ACTIONS(14712), 1, sym__concat, - STATE(6191), 1, + STATE(6255), 1, aux_sym_concatenation_repeat1, - ACTIONS(1286), 4, + ACTIONS(1294), 4, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309629] = 7, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7794), 1, - aux_sym_number_token1, - ACTIONS(7796), 1, - aux_sym_number_token2, - ACTIONS(14379), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(14385), 1, - aux_sym__simple_variable_name_token1, - STATE(6245), 1, - sym__expansion_max_length_binary_expression, - STATE(6206), 3, - sym_number, - sym_expansion, - sym__expansion_max_length_expression, - [309653] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14387), 1, - anon_sym_RPAREN, - ACTIONS(14389), 1, - anon_sym_DQUOTE, - ACTIONS(14391), 1, - sym_raw_string, - ACTIONS(14393), 1, - anon_sym_RBRACE3, - ACTIONS(14395), 1, - aux_sym__expansion_regex_token1, - ACTIONS(14397), 1, - sym_regex, - STATE(6203), 2, - sym_string, - aux_sym__expansion_regex_repeat1, - [309679] = 7, + [315257] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14320), 1, + ACTIONS(14686), 1, aux_sym_concatenation_token1, - ACTIONS(14322), 1, + ACTIONS(14688), 1, sym__concat, - ACTIONS(14399), 1, + ACTIONS(14714), 1, anon_sym_in, - ACTIONS(14403), 1, + ACTIONS(14718), 1, aux_sym_heredoc_redirect_token1, - STATE(6195), 1, + STATE(6258), 1, aux_sym_concatenation_repeat1, - ACTIONS(14401), 3, + ACTIONS(14716), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309703] = 7, + [315281] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14320), 1, + ACTIONS(14686), 1, aux_sym_concatenation_token1, - ACTIONS(14322), 1, + ACTIONS(14688), 1, sym__concat, - ACTIONS(14405), 1, + ACTIONS(14720), 1, anon_sym_in, - ACTIONS(14409), 1, + ACTIONS(14724), 1, aux_sym_heredoc_redirect_token1, - STATE(6201), 1, + STATE(6261), 1, aux_sym_concatenation_repeat1, - ACTIONS(14407), 3, + ACTIONS(14722), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309727] = 7, + [315305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14320), 1, + ACTIONS(1316), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14686), 1, aux_sym_concatenation_token1, - ACTIONS(14322), 1, + ACTIONS(14726), 1, sym__concat, - ACTIONS(14411), 1, - anon_sym_in, - ACTIONS(14415), 1, - aux_sym_heredoc_redirect_token1, - STATE(6201), 1, + STATE(6255), 1, aux_sym_concatenation_repeat1, - ACTIONS(14413), 3, + ACTIONS(1314), 4, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309751] = 6, + [315327] = 7, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7916), 1, + aux_sym_number_token1, + ACTIONS(7918), 1, + aux_sym_number_token2, + ACTIONS(14690), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(14728), 1, + aux_sym__simple_variable_name_token1, + STATE(6289), 1, + sym__expansion_max_length_binary_expression, + STATE(6290), 3, + sym_number, + sym_expansion, + sym__expansion_max_length_expression, + [315351] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1268), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14320), 1, + ACTIONS(14686), 1, aux_sym_concatenation_token1, - ACTIONS(14417), 1, + ACTIONS(14688), 1, sym__concat, - STATE(6191), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1266), 4, + ACTIONS(14730), 1, anon_sym_in, + ACTIONS(14734), 1, + aux_sym_heredoc_redirect_token1, + STATE(6258), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14732), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309773] = 7, + [315375] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14320), 1, + ACTIONS(14686), 1, aux_sym_concatenation_token1, - ACTIONS(14322), 1, + ACTIONS(14688), 1, sym__concat, - ACTIONS(14419), 1, + ACTIONS(14736), 1, anon_sym_in, - ACTIONS(14423), 1, + ACTIONS(14740), 1, aux_sym_heredoc_redirect_token1, - STATE(6195), 1, + STATE(6261), 1, aux_sym_concatenation_repeat1, - ACTIONS(14421), 3, + ACTIONS(14738), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309797] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14387), 1, - anon_sym_RPAREN, - ACTIONS(14389), 1, - anon_sym_DQUOTE, - ACTIONS(14395), 1, - aux_sym__expansion_regex_token1, - ACTIONS(14425), 1, - sym_raw_string, - ACTIONS(14427), 1, - anon_sym_RBRACE3, - ACTIONS(14429), 1, - sym_regex, - STATE(6189), 2, - sym_string, - aux_sym__expansion_regex_repeat1, - [309823] = 7, + [315399] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(14320), 1, + ACTIONS(14686), 1, aux_sym_concatenation_token1, - ACTIONS(14322), 1, + ACTIONS(14688), 1, sym__concat, - ACTIONS(14431), 1, + ACTIONS(14742), 1, anon_sym_in, - ACTIONS(14435), 1, + ACTIONS(14746), 1, aux_sym_heredoc_redirect_token1, - STATE(6195), 1, + STATE(6258), 1, aux_sym_concatenation_repeat1, - ACTIONS(14433), 3, + ACTIONS(14744), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309847] = 3, + [315423] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1350), 2, + ACTIONS(14686), 1, + aux_sym_concatenation_token1, + ACTIONS(14688), 1, sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1348), 5, + ACTIONS(14748), 1, anon_sym_in, + ACTIONS(14752), 1, + aux_sym_heredoc_redirect_token1, + STATE(6261), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14750), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [309862] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14437), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [309875] = 3, + [315447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 2, + ACTIONS(1306), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1320), 5, + ACTIONS(1304), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [309890] = 6, + [315462] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14367), 1, + ACTIONS(14714), 1, anon_sym_in, - ACTIONS(14371), 1, + ACTIONS(14718), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14439), 1, + ACTIONS(14754), 1, sym__special_character, - STATE(6241), 1, + STATE(6294), 1, aux_sym__literal_repeat1, - ACTIONS(14369), 3, + ACTIONS(14716), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [309911] = 2, - ACTIONS(71), 1, + [315483] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 7, + ACTIONS(1382), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -333552,10 +339072,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [309924] = 2, - ACTIONS(71), 1, + [315496] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1346), 7, + ACTIONS(1370), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -333563,10 +339083,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [309937] = 2, - ACTIONS(71), 1, + [315509] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 7, + ACTIONS(1386), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -333574,50 +339094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [309950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 2, - sym__concat, - aux_sym_heredoc_redirect_token1, - ACTIONS(1292), 5, - anon_sym_in, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [309965] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14405), 1, - anon_sym_in, - ACTIONS(14409), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14439), 1, - sym__special_character, - STATE(6241), 1, - aux_sym__literal_repeat1, - ACTIONS(14407), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [309986] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14443), 1, - anon_sym_COLON, - ACTIONS(14445), 1, - anon_sym_RBRACE3, - ACTIONS(14441), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [310003] = 2, - ACTIONS(71), 1, + [315522] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1350), 7, + ACTIONS(1370), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -333625,86 +339105,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [310016] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1356), 1, - anon_sym_DOLLAR, - ACTIONS(1358), 6, - sym_heredoc_content, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [310031] = 3, + [315535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1338), 2, + ACTIONS(1342), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1336), 5, + ACTIONS(1340), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310046] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14449), 1, - anon_sym_COLON, - ACTIONS(14451), 1, - anon_sym_RBRACE3, - ACTIONS(14447), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [310063] = 3, + [315550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1318), 2, + ACTIONS(1322), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1316), 5, + ACTIONS(1320), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310078] = 6, + [315565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14411), 1, - anon_sym_in, - ACTIONS(14415), 1, + ACTIONS(1346), 2, + sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(14439), 1, - sym__special_character, - STATE(6241), 1, - aux_sym__literal_repeat1, - ACTIONS(14413), 3, + ACTIONS(1344), 5, + anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [310099] = 3, + aux_sym_concatenation_token1, + [315580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1306), 2, + ACTIONS(1326), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1304), 5, + ACTIONS(1324), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310114] = 2, - ACTIONS(71), 1, + [315595] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1354), 7, + ACTIONS(1390), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [315608] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1330), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -333712,7 +339175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [310127] = 3, + [315621] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(1330), 2, @@ -333724,133 +339187,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310142] = 3, + [315636] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1334), 2, + ACTIONS(1378), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1332), 5, + ACTIONS(1376), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310157] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1352), 1, - anon_sym_DOLLAR, - ACTIONS(1354), 6, - sym_heredoc_content, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [310172] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14373), 1, - anon_sym_in, - ACTIONS(14377), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14439), 1, - sym__special_character, - STATE(6241), 1, - aux_sym__literal_repeat1, - ACTIONS(14375), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [310193] = 3, + [315651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1326), 2, + ACTIONS(1358), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1324), 5, + ACTIONS(1356), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310208] = 3, + [315666] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1354), 2, + ACTIONS(1370), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1352), 5, + ACTIONS(1368), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310223] = 3, + [315681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 2, + ACTIONS(1338), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 5, + ACTIONS(1336), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310238] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1348), 1, - anon_sym_DOLLAR, - ACTIONS(1350), 6, - sym_heredoc_content, - sym_heredoc_end, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR_LPAREN, - anon_sym_BQUOTE, - anon_sym_DOLLAR_BQUOTE, - [310253] = 3, + [315696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1346), 2, + ACTIONS(1362), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1344), 5, + ACTIONS(1360), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310268] = 3, + [315711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1278), 2, + ACTIONS(1366), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1276), 5, + ACTIONS(1364), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310283] = 3, + [315726] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14758), 1, + anon_sym_COLON, + ACTIONS(14760), 1, + anon_sym_RBRACE3, + ACTIONS(14756), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [315743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 2, + ACTIONS(1370), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1296), 5, + ACTIONS(1368), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310298] = 2, - ACTIONS(71), 1, + [315758] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1330), 7, + ACTIONS(14764), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(14762), 4, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [315773] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14766), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [315786] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14762), 7, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, @@ -333858,17224 +339318,18202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_COLON, anon_sym_RBRACE3, - [310311] = 3, + [315799] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1340), 1, + anon_sym_DOLLAR, + ACTIONS(1342), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [315814] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1320), 1, + anon_sym_DOLLAR, + ACTIONS(1322), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [315829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1358), 2, + ACTIONS(1334), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1356), 5, + ACTIONS(1332), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310326] = 3, + [315844] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1310), 2, - sym__concat, + ACTIONS(1396), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1308), 5, + ACTIONS(14768), 1, + sym__special_character, + STATE(6294), 1, + aux_sym__literal_repeat1, + ACTIONS(1394), 4, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - aux_sym_concatenation_token1, - [310341] = 3, + [315863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1342), 2, + ACTIONS(1354), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1340), 5, + ACTIONS(1352), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310356] = 3, - ACTIONS(71), 1, + [315878] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14771), 1, + anon_sym_COLON, + ACTIONS(14773), 1, + anon_sym_RBRACE3, + ACTIONS(14766), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [315895] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1344), 1, + ACTIONS(1376), 1, anon_sym_DOLLAR, - ACTIONS(1346), 6, + ACTIONS(1378), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [310371] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14453), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(14437), 4, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [310386] = 3, - ACTIONS(71), 1, + [315910] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1340), 1, + ACTIONS(1380), 1, anon_sym_DOLLAR, - ACTIONS(1342), 6, + ACTIONS(1382), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [310401] = 5, + [315925] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1378), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_COLON, + anon_sym_RBRACE3, + [315938] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(14700), 1, + anon_sym_in, + ACTIONS(14704), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14754), 1, + sym__special_character, + STATE(6294), 1, + aux_sym__literal_repeat1, + ACTIONS(14702), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [315959] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(14742), 1, + anon_sym_in, + ACTIONS(14746), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14455), 1, + ACTIONS(14754), 1, sym__special_character, - STATE(6241), 1, + STATE(6294), 1, aux_sym__literal_repeat1, - ACTIONS(1360), 4, + ACTIONS(14744), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [315980] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1350), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1348), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + aux_sym_concatenation_token1, + [315995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1390), 2, + sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1388), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [310420] = 3, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [316010] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1356), 1, + ACTIONS(1368), 1, anon_sym_DOLLAR, - ACTIONS(1358), 6, + ACTIONS(1370), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [310435] = 3, - ACTIONS(71), 1, + [316025] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1292), 1, + ACTIONS(1384), 1, anon_sym_DOLLAR, - ACTIONS(1294), 6, + ACTIONS(1386), 6, + sym_heredoc_content, + sym_heredoc_end, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR_LPAREN, + anon_sym_BQUOTE, + anon_sym_DOLLAR_BQUOTE, + [316040] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1368), 1, + anon_sym_DOLLAR, + ACTIONS(1370), 6, sym_heredoc_content, sym_heredoc_end, anon_sym_DOLLAR_LBRACE, anon_sym_DOLLAR_LPAREN, anon_sym_BQUOTE, anon_sym_DOLLAR_BQUOTE, - [310450] = 3, + [316055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1314), 2, + ACTIONS(1382), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1312), 5, + ACTIONS(1380), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310465] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14441), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [310478] = 3, + [316070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1302), 2, + ACTIONS(1386), 2, sym__concat, aux_sym_heredoc_redirect_token1, - ACTIONS(1300), 5, + ACTIONS(1384), 5, anon_sym_in, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310493] = 2, - ACTIONS(71), 1, + [316085] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(1322), 7, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_COLON, - anon_sym_RBRACE3, - [310506] = 6, - ACTIONS(71), 1, + ACTIONS(14730), 1, + anon_sym_in, + ACTIONS(14734), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14754), 1, + sym__special_character, + STATE(6294), 1, + aux_sym__literal_repeat1, + ACTIONS(14732), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [316106] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14458), 1, - anon_sym_SLASH, - ACTIONS(14462), 1, - anon_sym_RBRACE3, - ACTIONS(14464), 1, - sym__expansion_word, - STATE(6420), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14460), 2, + ACTIONS(1374), 2, sym__concat, + aux_sym_heredoc_redirect_token1, + ACTIONS(1372), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, aux_sym_concatenation_token1, - [310526] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(10742), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10746), 1, - anon_sym_BQUOTE, - ACTIONS(10748), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14466), 1, - anon_sym_DOLLAR_LPAREN, - STATE(6223), 2, - sym_expansion, - sym_command_substitution, - [310546] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9252), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(9254), 1, - anon_sym_BQUOTE, - ACTIONS(9256), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14468), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1601), 2, - sym_expansion, - sym_command_substitution, - [310566] = 3, - ACTIONS(3), 1, + [316121] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1334), 2, - sym_regex, - aux_sym__expansion_regex_token1, - ACTIONS(1332), 4, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(14777), 1, anon_sym_RPAREN, - anon_sym_DQUOTE, - sym_raw_string, - anon_sym_RBRACE3, - [310580] = 6, - ACTIONS(71), 1, + STATE(6437), 1, + aux_sym_concatenation_repeat1, + STATE(6700), 1, + aux_sym_case_item_repeat1, + ACTIONS(14779), 2, + sym__concat, + aux_sym_concatenation_token1, + [316141] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(5207), 1, + ACTIONS(9763), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5211), 1, + ACTIONS(9765), 1, anon_sym_BQUOTE, - ACTIONS(5213), 1, + ACTIONS(9767), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14470), 1, + ACTIONS(14781), 1, anon_sym_DOLLAR_LPAREN, - STATE(2910), 2, + STATE(4442), 2, sym_expansion, sym_command_substitution, - [310600] = 6, - ACTIONS(71), 1, + [316161] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(4227), 1, + ACTIONS(9367), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4231), 1, + ACTIONS(9369), 1, anon_sym_BQUOTE, - ACTIONS(4233), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14472), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2571), 2, - sym_expansion, - sym_command_substitution, - [310620] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(315), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(321), 1, + ACTIONS(9371), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(5884), 1, - anon_sym_BQUOTE, - ACTIONS(14474), 1, + ACTIONS(14783), 1, anon_sym_DOLLAR_LPAREN, - STATE(2615), 2, + STATE(1166), 2, sym_expansion, sym_command_substitution, - [310640] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14478), 1, - anon_sym_COMMA, - ACTIONS(14480), 1, - aux_sym_heredoc_redirect_token1, - STATE(4737), 1, - sym__c_terminator, - STATE(6280), 1, - aux_sym__for_body_repeat1, - ACTIONS(14476), 2, - anon_sym_SEMI, - anon_sym_AMP, - [310660] = 6, - ACTIONS(71), 1, + [316181] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8306), 1, + ACTIONS(9127), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8310), 1, + ACTIONS(9131), 1, anon_sym_BQUOTE, - ACTIONS(8312), 1, + ACTIONS(9133), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14482), 1, + ACTIONS(14785), 1, anon_sym_DOLLAR_LPAREN, - STATE(1203), 2, + STATE(2462), 2, sym_expansion, sym_command_substitution, - [310680] = 6, - ACTIONS(71), 1, + [316201] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8502), 1, + ACTIONS(8227), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8506), 1, + ACTIONS(8231), 1, anon_sym_BQUOTE, - ACTIONS(8508), 1, + ACTIONS(8233), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14484), 1, + ACTIONS(14787), 1, anon_sym_DOLLAR_LPAREN, - STATE(1467), 2, + STATE(1656), 2, sym_expansion, sym_command_substitution, - [310700] = 3, - ACTIONS(3), 1, + [316221] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1338), 2, - sym_regex, - aux_sym__expansion_regex_token1, - ACTIONS(1336), 4, - anon_sym_RPAREN, - anon_sym_DQUOTE, - sym_raw_string, + ACTIONS(14789), 1, + anon_sym_SLASH, + ACTIONS(14793), 1, anon_sym_RBRACE3, - [310714] = 6, - ACTIONS(71), 1, + ACTIONS(14795), 1, + sym__expansion_word, + STATE(6479), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14791), 2, + sym__concat, + aux_sym_concatenation_token1, + [316241] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9450), 1, + ACTIONS(11147), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9452), 1, + ACTIONS(11149), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9454), 1, + ACTIONS(11151), 1, anon_sym_BQUOTE, - ACTIONS(9456), 1, + ACTIONS(11153), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2859), 2, + STATE(2936), 2, sym_expansion, sym_command_substitution, - [310734] = 6, - ACTIONS(71), 1, + [316261] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8070), 1, + ACTIONS(8355), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8072), 1, + ACTIONS(8359), 1, anon_sym_BQUOTE, - ACTIONS(8074), 1, + ACTIONS(8361), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14486), 1, + ACTIONS(14797), 1, anon_sym_DOLLAR_LPAREN, - STATE(1641), 2, + STATE(1201), 2, sym_expansion, sym_command_substitution, - [310754] = 3, - ACTIONS(71), 1, + [316281] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14488), 1, + ACTIONS(14799), 1, anon_sym_RBRACE3, - ACTIONS(14447), 5, + ACTIONS(14756), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [310768] = 6, - ACTIONS(71), 1, + [316295] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(205), 1, + ACTIONS(129), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(209), 1, + ACTIONS(133), 1, anon_sym_BQUOTE, - ACTIONS(211), 1, + ACTIONS(135), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14490), 1, + ACTIONS(14801), 1, anon_sym_DOLLAR_LPAREN, - STATE(505), 2, + STATE(476), 2, sym_expansion, sym_command_substitution, - [310788] = 6, - ACTIONS(71), 1, + [316315] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9996), 1, + ACTIONS(9295), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9998), 1, + ACTIONS(9297), 1, anon_sym_BQUOTE, - ACTIONS(10000), 1, + ACTIONS(9299), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14492), 1, + ACTIONS(14803), 1, anon_sym_DOLLAR_LPAREN, - STATE(4476), 2, + STATE(3493), 2, sym_expansion, sym_command_substitution, - [310808] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14494), 1, - anon_sym_SLASH, - ACTIONS(14496), 1, - anon_sym_RBRACE3, - ACTIONS(14498), 1, - sym__expansion_word, - STATE(6420), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14460), 2, - sym__concat, - aux_sym_concatenation_token1, - [310828] = 6, - ACTIONS(71), 1, + [316335] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9218), 1, + ACTIONS(9513), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9220), 1, + ACTIONS(9515), 1, anon_sym_BQUOTE, - ACTIONS(9222), 1, + ACTIONS(9517), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14500), 1, + ACTIONS(14805), 1, anon_sym_DOLLAR_LPAREN, - STATE(1813), 2, + STATE(2067), 2, sym_expansion, sym_command_substitution, - [310848] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14502), 1, - anon_sym_fi, - ACTIONS(14504), 1, - anon_sym_elif, - ACTIONS(14506), 1, - anon_sym_else, - STATE(7066), 1, - sym_else_clause, - STATE(6422), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [310868] = 6, - ACTIONS(71), 1, + [316355] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9124), 1, + ACTIONS(740), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9126), 1, + ACTIONS(744), 1, anon_sym_BQUOTE, - ACTIONS(9128), 1, + ACTIONS(746), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14508), 1, + ACTIONS(14807), 1, anon_sym_DOLLAR_LPAREN, - STATE(1366), 2, + STATE(1001), 2, sym_expansion, sym_command_substitution, - [310888] = 6, - ACTIONS(71), 1, + [316375] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(8968), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8972), 1, - anon_sym_BQUOTE, - ACTIONS(8974), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14510), 1, - anon_sym_DOLLAR_LPAREN, - STATE(2439), 2, - sym_expansion, - sym_command_substitution, - [310908] = 6, - ACTIONS(71), 1, + ACTIONS(14809), 1, + anon_sym_RBRACE3, + ACTIONS(14766), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [316389] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(721), 1, + ACTIONS(383), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(725), 1, + ACTIONS(387), 1, anon_sym_BQUOTE, - ACTIONS(727), 1, + ACTIONS(389), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14512), 1, + ACTIONS(14811), 1, anon_sym_DOLLAR_LPAREN, - STATE(921), 2, + STATE(1100), 2, sym_expansion, sym_command_substitution, - [310928] = 6, - ACTIONS(71), 1, + [316409] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9394), 1, + ACTIONS(8267), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9396), 1, + ACTIONS(8271), 1, anon_sym_BQUOTE, - ACTIONS(9398), 1, + ACTIONS(8273), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14514), 1, + ACTIONS(14813), 1, anon_sym_DOLLAR_LPAREN, - STATE(1364), 2, + STATE(4388), 2, sym_expansion, sym_command_substitution, - [310948] = 6, - ACTIONS(71), 1, + [316429] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(371), 1, + ACTIONS(1338), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1336), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_RBRACE3, + [316443] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(9887), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(375), 1, + ACTIONS(9889), 1, anon_sym_BQUOTE, - ACTIONS(377), 1, + ACTIONS(9891), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14516), 1, + ACTIONS(14815), 1, anon_sym_DOLLAR_LPAREN, - STATE(1092), 2, + STATE(4696), 2, sym_expansion, sym_command_substitution, - [310968] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14478), 1, - anon_sym_COMMA, - ACTIONS(14520), 1, - aux_sym_heredoc_redirect_token1, - STATE(4249), 1, - sym__c_terminator, - STATE(6359), 1, - aux_sym__for_body_repeat1, - ACTIONS(14518), 2, - anon_sym_SEMI, - anon_sym_AMP, - [310988] = 3, - ACTIONS(71), 1, + [316463] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14522), 1, - anon_sym_RBRACE3, - ACTIONS(14441), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [311002] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9104), 1, + ACTIONS(211), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9106), 1, + ACTIONS(215), 1, anon_sym_BQUOTE, - ACTIONS(9108), 1, + ACTIONS(217), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14524), 1, + ACTIONS(14817), 1, anon_sym_DOLLAR_LPAREN, - STATE(1685), 2, + STATE(523), 2, sym_expansion, sym_command_substitution, - [311022] = 6, - ACTIONS(71), 1, + [316483] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9184), 1, + ACTIONS(4289), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9186), 1, + ACTIONS(4293), 1, anon_sym_BQUOTE, - ACTIONS(9188), 1, + ACTIONS(4295), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14526), 1, + ACTIONS(14819), 1, anon_sym_DOLLAR_LPAREN, - STATE(1742), 2, + STATE(2515), 2, sym_expansion, sym_command_substitution, - [311042] = 6, - ACTIONS(71), 1, + [316503] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(14530), 1, + ACTIONS(14821), 1, anon_sym_RPAREN, - STATE(6463), 1, + STATE(6452), 1, aux_sym_concatenation_repeat1, - STATE(6631), 1, + STATE(6643), 1, aux_sym_case_item_repeat1, - ACTIONS(14532), 2, + ACTIONS(14779), 2, sym__concat, aux_sym_concatenation_token1, - [311062] = 6, - ACTIONS(71), 1, + [316523] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(4681), 1, + ACTIONS(9533), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4685), 1, + ACTIONS(9535), 1, anon_sym_BQUOTE, - ACTIONS(4687), 1, + ACTIONS(9537), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14534), 1, + ACTIONS(14823), 1, anon_sym_DOLLAR_LPAREN, - STATE(2724), 2, + STATE(1519), 2, sym_expansion, sym_command_substitution, - [311082] = 6, - ACTIONS(71), 1, + [316543] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14536), 1, - anon_sym_SLASH, - ACTIONS(14538), 1, - anon_sym_RBRACE3, - ACTIONS(14540), 1, - sym__expansion_word, - STATE(6420), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14460), 2, - sym__concat, - aux_sym_concatenation_token1, - [311102] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(4942), 1, + ACTIONS(4755), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4946), 1, + ACTIONS(4759), 1, anon_sym_BQUOTE, - ACTIONS(4948), 1, + ACTIONS(4761), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14542), 1, + ACTIONS(14825), 1, anon_sym_DOLLAR_LPAREN, - STATE(2595), 2, + STATE(2744), 2, sym_expansion, sym_command_substitution, - [311122] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14478), 1, - anon_sym_COMMA, - ACTIONS(14546), 1, - aux_sym_heredoc_redirect_token1, - STATE(4609), 1, - sym__c_terminator, - STATE(6393), 1, - aux_sym__for_body_repeat1, - ACTIONS(14544), 2, - anon_sym_SEMI, - anon_sym_AMP, - [311142] = 3, - ACTIONS(71), 1, + [316563] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14488), 1, - anon_sym_RBRACE3, - ACTIONS(14447), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [311156] = 6, - ACTIONS(71), 1, + ACTIONS(14827), 1, + anon_sym_fi, + ACTIONS(14829), 1, + anon_sym_elif, + ACTIONS(14831), 1, + anon_sym_else, + STATE(7197), 1, + sym_else_clause, + STATE(6481), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [316583] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(12263), 1, + ACTIONS(12140), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12265), 1, + ACTIONS(12142), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12267), 1, + ACTIONS(12144), 1, anon_sym_BQUOTE, - ACTIONS(12269), 1, + ACTIONS(12146), 1, anon_sym_DOLLAR_BQUOTE, - STATE(2998), 2, + STATE(3462), 2, sym_expansion, sym_command_substitution, - [311176] = 6, - ACTIONS(71), 1, + [316603] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(10344), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(10346), 1, - anon_sym_BQUOTE, - ACTIONS(10348), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14548), 1, - anon_sym_DOLLAR_LPAREN, - STATE(5688), 2, - sym_expansion, - sym_command_substitution, - [311196] = 3, + ACTIONS(14835), 1, + anon_sym_COMMA, + ACTIONS(14837), 1, + aux_sym_heredoc_redirect_token1, + STATE(4799), 1, + sym__c_terminator, + STATE(6448), 1, + aux_sym__for_body_repeat1, + ACTIONS(14833), 2, + anon_sym_SEMI, + anon_sym_AMP, + [316623] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1274), 1, + ACTIONS(14835), 1, + anon_sym_COMMA, + ACTIONS(14841), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(1272), 5, - anon_sym_in, + STATE(4800), 1, + sym__c_terminator, + STATE(6377), 1, + aux_sym__for_body_repeat1, + ACTIONS(14839), 2, anon_sym_SEMI, anon_sym_AMP, - anon_sym_SEMI_SEMI, - sym__special_character, - [311210] = 6, - ACTIONS(71), 1, + [316643] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(7972), 1, + ACTIONS(8389), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7976), 1, + ACTIONS(8391), 1, anon_sym_BQUOTE, - ACTIONS(7978), 1, + ACTIONS(8393), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14550), 1, + ACTIONS(14843), 1, anon_sym_DOLLAR_LPAREN, - STATE(4386), 2, + STATE(1174), 2, sym_expansion, sym_command_substitution, - [311230] = 6, - ACTIONS(71), 1, + [316663] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(10022), 1, + ACTIONS(9985), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(10024), 1, + ACTIONS(9987), 1, anon_sym_BQUOTE, - ACTIONS(10026), 1, + ACTIONS(9989), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14552), 1, + ACTIONS(14845), 1, anon_sym_DOLLAR_LPAREN, - STATE(4353), 2, + STATE(4588), 2, sym_expansion, sym_command_substitution, - [311250] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14488), 1, - anon_sym_RBRACE3, - ACTIONS(14447), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [311264] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14528), 1, - anon_sym_PIPE, - ACTIONS(14554), 1, - anon_sym_RPAREN, - STATE(6463), 1, - aux_sym_concatenation_repeat1, - STATE(6624), 1, - aux_sym_case_item_repeat1, - ACTIONS(14532), 2, - sym__concat, - aux_sym_concatenation_token1, - [311284] = 6, - ACTIONS(71), 1, + [316683] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(11761), 1, + ACTIONS(5072), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(11763), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(11765), 1, + ACTIONS(5076), 1, anon_sym_BQUOTE, - ACTIONS(11767), 1, + ACTIONS(5078), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3293), 2, + ACTIONS(14847), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2622), 2, sym_expansion, sym_command_substitution, - [311304] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14556), 1, - anon_sym_RBRACE3, - ACTIONS(14441), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [311318] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14504), 1, - anon_sym_elif, - ACTIONS(14506), 1, - anon_sym_else, - ACTIONS(14558), 1, - anon_sym_fi, - STATE(7152), 1, - sym_else_clause, - STATE(6422), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [311338] = 6, - ACTIONS(71), 1, + [316703] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1127), 1, + ACTIONS(2704), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1133), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3119), 1, + ACTIONS(2708), 1, anon_sym_BQUOTE, - ACTIONS(14560), 1, + ACTIONS(2710), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14849), 1, anon_sym_DOLLAR_LPAREN, - STATE(2294), 2, + STATE(2364), 2, sym_expansion, sym_command_substitution, - [311358] = 6, - ACTIONS(71), 1, + [316723] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(4821), 1, + ACTIONS(8315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4825), 1, + ACTIONS(8319), 1, anon_sym_BQUOTE, - ACTIONS(4827), 1, + ACTIONS(8321), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14562), 1, + ACTIONS(14851), 1, anon_sym_DOLLAR_LPAREN, - STATE(5362), 2, + STATE(5554), 2, sym_expansion, sym_command_substitution, - [311378] = 3, - ACTIONS(71), 1, + [316743] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_RBRACE3, - ACTIONS(14447), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [311392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14568), 2, - sym_regex, - aux_sym__expansion_regex_token1, - ACTIONS(14566), 4, - anon_sym_RPAREN, - anon_sym_DQUOTE, - sym_raw_string, - anon_sym_RBRACE3, - [311406] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8004), 1, + ACTIONS(8583), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8006), 1, + ACTIONS(8587), 1, anon_sym_BQUOTE, - ACTIONS(8008), 1, + ACTIONS(8589), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14570), 1, + ACTIONS(14853), 1, anon_sym_DOLLAR_LPAREN, - STATE(1315), 2, + STATE(4636), 2, sym_expansion, sym_command_substitution, - [311426] = 6, - ACTIONS(61), 1, + [316763] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8449), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(65), 1, + ACTIONS(8453), 1, anon_sym_BQUOTE, - ACTIONS(67), 1, + ACTIONS(8455), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14572), 1, + ACTIONS(14855), 1, anon_sym_DOLLAR_LPAREN, - STATE(1155), 2, + STATE(4447), 2, sym_expansion, sym_command_substitution, - [311446] = 6, - ACTIONS(71), 1, + [316783] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14504), 1, + ACTIONS(14829), 1, anon_sym_elif, - ACTIONS(14506), 1, + ACTIONS(14831), 1, anon_sym_else, - ACTIONS(14574), 1, + ACTIONS(14857), 1, anon_sym_fi, - STATE(6795), 1, + STATE(7271), 1, sym_else_clause, - STATE(6422), 2, + STATE(6481), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [311466] = 6, - ACTIONS(71), 1, + [316803] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8587), 1, + ACTIONS(1081), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8591), 1, + ACTIONS(1085), 1, anon_sym_BQUOTE, - ACTIONS(8593), 1, + ACTIONS(1087), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14576), 1, + ACTIONS(14859), 1, anon_sym_DOLLAR_LPAREN, - STATE(5178), 2, + STATE(2151), 2, sym_expansion, sym_command_substitution, - [311486] = 3, - ACTIONS(71), 1, + [316823] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14578), 1, - anon_sym_RBRACE3, - ACTIONS(14447), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [311500] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9486), 1, + ACTIONS(8179), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9488), 1, + ACTIONS(8181), 1, anon_sym_BQUOTE, - ACTIONS(9490), 1, + ACTIONS(8183), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14580), 1, + ACTIONS(14861), 1, anon_sym_DOLLAR_LPAREN, - STATE(1818), 2, + STATE(1671), 2, sym_expansion, sym_command_substitution, - [311520] = 6, - ACTIONS(71), 1, + [316843] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9872), 1, + ACTIONS(477), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9874), 1, + ACTIONS(481), 1, anon_sym_BQUOTE, - ACTIONS(9876), 1, + ACTIONS(483), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14582), 1, + ACTIONS(14863), 1, anon_sym_DOLLAR_LPAREN, - STATE(1899), 2, + STATE(871), 2, sym_expansion, sym_command_substitution, - [311540] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14584), 1, - anon_sym_RBRACE3, - ACTIONS(14447), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [311554] = 6, - ACTIONS(71), 1, + [316863] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9356), 1, + ACTIONS(11173), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9358), 1, + ACTIONS(11175), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9360), 1, + ACTIONS(11177), 1, anon_sym_BQUOTE, - ACTIONS(9362), 1, + ACTIONS(11179), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3245), 2, + STATE(3273), 2, sym_expansion, sym_command_substitution, - [311574] = 6, - ACTIONS(71), 1, + [316883] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9772), 1, + ACTIONS(12595), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9774), 1, + ACTIONS(12597), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12599), 1, anon_sym_BQUOTE, - ACTIONS(9776), 1, + ACTIONS(12601), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14586), 1, - anon_sym_DOLLAR_LPAREN, - STATE(4553), 2, + STATE(3136), 2, sym_expansion, sym_command_substitution, - [311594] = 6, - ACTIONS(71), 1, + [316903] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(14865), 1, + anon_sym_RPAREN, + STATE(6452), 1, + aux_sym_concatenation_repeat1, + STATE(6708), 1, + aux_sym_case_item_repeat1, + ACTIONS(14779), 2, + sym__concat, + aux_sym_concatenation_token1, + [316923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1334), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1332), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_RBRACE3, + [316937] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(2667), 1, + ACTIONS(10563), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(2671), 1, + ACTIONS(10565), 1, anon_sym_BQUOTE, - ACTIONS(2673), 1, + ACTIONS(10567), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14588), 1, + ACTIONS(14867), 1, anon_sym_DOLLAR_LPAREN, - STATE(2314), 2, + STATE(1496), 2, sym_expansion, sym_command_substitution, - [311614] = 6, - ACTIONS(71), 1, + [316957] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14869), 1, + anon_sym_SLASH, + ACTIONS(14871), 1, + anon_sym_RBRACE3, + ACTIONS(14873), 1, + sym__expansion_word, + STATE(6479), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14791), 2, + sym__concat, + aux_sym_concatenation_token1, + [316977] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8142), 1, + ACTIONS(9469), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8146), 1, + ACTIONS(9471), 1, anon_sym_BQUOTE, - ACTIONS(8148), 1, + ACTIONS(9473), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14590), 1, + ACTIONS(14875), 1, anon_sym_DOLLAR_LPAREN, - STATE(5484), 2, + STATE(1414), 2, sym_expansion, sym_command_substitution, - [311634] = 6, - ACTIONS(71), 1, + [316997] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14877), 1, + anon_sym_RBRACE3, + ACTIONS(14756), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [317011] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14879), 1, + anon_sym_RBRACE3, + ACTIONS(14766), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [317025] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8846), 1, + ACTIONS(9335), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8848), 1, + ACTIONS(9337), 1, anon_sym_BQUOTE, - ACTIONS(8850), 1, + ACTIONS(9339), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14592), 1, + ACTIONS(14881), 1, anon_sym_DOLLAR_LPAREN, - STATE(2194), 2, + STATE(2173), 2, sym_expansion, sym_command_substitution, - [311654] = 3, - ACTIONS(71), 1, + [317045] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14594), 1, + ACTIONS(14883), 1, anon_sym_RBRACE3, - ACTIONS(14447), 5, + ACTIONS(14756), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [311668] = 6, - ACTIONS(71), 1, + [317059] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14330), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(14332), 1, + ACTIONS(14885), 1, + anon_sym_RBRACE3, + ACTIONS(14766), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [317073] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5597), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5601), 1, anon_sym_BQUOTE, - ACTIONS(14334), 1, + ACTIONS(5603), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14379), 1, + ACTIONS(14887), 1, + anon_sym_DOLLAR_LPAREN, + STATE(5561), 2, + sym_expansion, + sym_command_substitution, + [317093] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1111), 1, anon_sym_DOLLAR_LBRACE, - STATE(6234), 2, + ACTIONS(1113), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3791), 1, + anon_sym_BQUOTE, + ACTIONS(14889), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2687), 2, sym_expansion, sym_command_substitution, - [311688] = 6, - ACTIONS(71), 1, + [317113] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(9016), 1, + ACTIONS(14835), 1, + anon_sym_COMMA, + ACTIONS(14893), 1, + aux_sym_heredoc_redirect_token1, + STATE(4290), 1, + sym__c_terminator, + STATE(6448), 1, + aux_sym__for_body_repeat1, + ACTIONS(14891), 2, + anon_sym_SEMI, + anon_sym_AMP, + [317133] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(8489), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9018), 1, + ACTIONS(8493), 1, anon_sym_BQUOTE, - ACTIONS(9020), 1, + ACTIONS(8495), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14596), 1, + ACTIONS(14895), 1, anon_sym_DOLLAR_LPAREN, - STATE(3305), 2, + STATE(1463), 2, sym_expansion, sym_command_substitution, - [311708] = 6, - ACTIONS(71), 1, + [317153] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(14598), 1, + ACTIONS(14897), 1, anon_sym_RPAREN, - STATE(6388), 1, + STATE(6437), 1, aux_sym_concatenation_repeat1, - STATE(6682), 1, + STATE(6745), 1, aux_sym_case_item_repeat1, - ACTIONS(14532), 2, + ACTIONS(14779), 2, sym__concat, aux_sym_concatenation_token1, - [311728] = 6, - ACTIONS(71), 1, + [317173] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14899), 1, + anon_sym_RBRACE3, + ACTIONS(14756), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [317187] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14899), 1, + anon_sym_RBRACE3, + ACTIONS(14756), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [317201] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14899), 1, + anon_sym_RBRACE3, + ACTIONS(14756), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [317215] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14901), 1, + anon_sym_RBRACE3, + ACTIONS(14766), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [317229] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8248), 1, + ACTIONS(10031), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8250), 1, + ACTIONS(10033), 1, anon_sym_BQUOTE, - ACTIONS(8252), 1, + ACTIONS(10035), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14600), 1, + ACTIONS(14903), 1, anon_sym_DOLLAR_LPAREN, - STATE(1300), 2, + STATE(4505), 2, sym_expansion, sym_command_substitution, - [311748] = 6, - ACTIONS(71), 1, + [317249] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(12143), 1, + ACTIONS(11205), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(12145), 1, + ACTIONS(11207), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(12147), 1, + ACTIONS(11209), 1, anon_sym_BQUOTE, - ACTIONS(12149), 1, + ACTIONS(11211), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3204), 2, + STATE(3322), 2, sym_expansion, sym_command_substitution, - [311768] = 6, - ACTIONS(71), 1, + [317269] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(8428), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8432), 1, - anon_sym_BQUOTE, - ACTIONS(8434), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14602), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1579), 2, - sym_expansion, - sym_command_substitution, - [311788] = 6, - ACTIONS(71), 1, + STATE(6437), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14779), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(1302), 3, + anon_sym_PIPE, + anon_sym_RPAREN, + sym__special_character, + [317285] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14829), 1, + anon_sym_elif, + ACTIONS(14831), 1, + anon_sym_else, + ACTIONS(14905), 1, + anon_sym_fi, + STATE(7141), 1, + sym_else_clause, + STATE(6481), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [317305] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8220), 1, + ACTIONS(9425), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8222), 1, + ACTIONS(9427), 1, anon_sym_BQUOTE, - ACTIONS(8224), 1, + ACTIONS(9429), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14604), 1, + ACTIONS(14907), 1, anon_sym_DOLLAR_LPAREN, - STATE(1618), 2, + STATE(2055), 2, sym_expansion, sym_command_substitution, - [311808] = 6, - ACTIONS(71), 1, + [317325] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1326), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1324), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_RBRACE3, + [317339] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(5131), 1, + ACTIONS(9739), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5135), 1, + ACTIONS(9741), 1, anon_sym_BQUOTE, - ACTIONS(5137), 1, + ACTIONS(9743), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14606), 1, + ACTIONS(14909), 1, anon_sym_DOLLAR_LPAREN, - STATE(5458), 2, + STATE(1929), 2, sym_expansion, sym_command_substitution, - [311828] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14528), 1, - anon_sym_PIPE, - ACTIONS(14608), 1, - anon_sym_RPAREN, - STATE(6463), 1, - aux_sym_concatenation_repeat1, - STATE(6556), 1, - aux_sym_case_item_repeat1, - ACTIONS(14532), 2, - sym__concat, - aux_sym_concatenation_token1, - [311848] = 6, + [317359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14478), 1, + ACTIONS(14835), 1, anon_sym_COMMA, - ACTIONS(14612), 1, + ACTIONS(14913), 1, aux_sym_heredoc_redirect_token1, - STATE(4623), 1, + STATE(4727), 1, sym__c_terminator, - STATE(6393), 1, + STATE(6448), 1, aux_sym__for_body_repeat1, - ACTIONS(14610), 2, + ACTIONS(14911), 2, anon_sym_SEMI, anon_sym_AMP, - [311868] = 6, - ACTIONS(71), 1, + [317379] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8936), 1, + ACTIONS(9171), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8938), 1, + ACTIONS(9173), 1, anon_sym_BQUOTE, - ACTIONS(8940), 1, + ACTIONS(9175), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14614), 1, + ACTIONS(14915), 1, anon_sym_DOLLAR_LPAREN, - STATE(908), 2, + STATE(986), 2, sym_expansion, sym_command_substitution, - [311888] = 6, - ACTIONS(71), 1, + [317399] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(1165), 1, + ACTIONS(1302), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(1300), 5, + anon_sym_in, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + sym__special_character, + [317413] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(9715), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1167), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(3598), 1, + ACTIONS(9717), 1, anon_sym_BQUOTE, - ACTIONS(14616), 1, + ACTIONS(9719), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14917), 1, anon_sym_DOLLAR_LPAREN, - STATE(2654), 2, + STATE(4358), 2, sym_expansion, sym_command_substitution, - [311908] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14564), 1, - anon_sym_RBRACE3, - ACTIONS(14447), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [311922] = 6, - ACTIONS(71), 1, + [317433] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9658), 1, + ACTIONS(8547), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9660), 1, + ACTIONS(8549), 1, anon_sym_BQUOTE, - ACTIONS(9662), 1, + ACTIONS(8551), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14618), 1, + ACTIONS(14919), 1, anon_sym_DOLLAR_LPAREN, - STATE(1488), 2, + STATE(1482), 2, sym_expansion, sym_command_substitution, - [311942] = 6, - ACTIONS(71), 1, + [317453] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(14620), 1, + ACTIONS(14921), 1, anon_sym_RPAREN, - STATE(6463), 1, + STATE(6437), 1, aux_sym_concatenation_repeat1, - STATE(6573), 1, + STATE(6789), 1, aux_sym_case_item_repeat1, - ACTIONS(14532), 2, + ACTIONS(14779), 2, sym__concat, aux_sym_concatenation_token1, - [311962] = 6, - ACTIONS(71), 1, + [317473] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8992), 1, + ACTIONS(10185), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8994), 1, + ACTIONS(10189), 1, anon_sym_BQUOTE, - ACTIONS(8996), 1, + ACTIONS(10191), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14622), 1, + ACTIONS(14923), 1, anon_sym_DOLLAR_LPAREN, - STATE(4709), 2, + STATE(6279), 2, sym_expansion, sym_command_substitution, - [311982] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14528), 1, - anon_sym_PIPE, - ACTIONS(14624), 1, - anon_sym_RPAREN, - STATE(6388), 1, - aux_sym_concatenation_repeat1, - STATE(6575), 1, - aux_sym_case_item_repeat1, - ACTIONS(14532), 2, - sym__concat, - aux_sym_concatenation_token1, - [312002] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14504), 1, - anon_sym_elif, - ACTIONS(14506), 1, - anon_sym_else, - ACTIONS(14626), 1, - anon_sym_fi, - STATE(7342), 1, - sym_else_clause, - STATE(6422), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [312022] = 6, - ACTIONS(71), 1, + [317493] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(4615), 1, + ACTIONS(10377), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4619), 1, + ACTIONS(10379), 1, anon_sym_BQUOTE, - ACTIONS(4621), 1, + ACTIONS(10381), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14628), 1, + ACTIONS(14925), 1, anon_sym_DOLLAR_LPAREN, - STATE(2580), 2, + STATE(5717), 2, sym_expansion, sym_command_substitution, - [312042] = 6, - ACTIONS(71), 1, + [317513] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8828), 1, + ACTIONS(8843), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8830), 1, + ACTIONS(8847), 1, anon_sym_BQUOTE, - ACTIONS(8832), 1, + ACTIONS(8849), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14630), 1, + ACTIONS(14927), 1, anon_sym_DOLLAR_LPAREN, - STATE(1996), 2, + STATE(5212), 2, sym_expansion, sym_command_substitution, - [312062] = 6, - ACTIONS(71), 1, + [317533] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8038), 1, + ACTIONS(12486), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8042), 1, + ACTIONS(12488), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(12490), 1, anon_sym_BQUOTE, - ACTIONS(8044), 1, + ACTIONS(12492), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14632), 1, - anon_sym_DOLLAR_LPAREN, - STATE(4280), 2, + STATE(3343), 2, sym_expansion, sym_command_substitution, - [312082] = 6, - ACTIONS(71), 1, + [317553] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(463), 1, + ACTIONS(9315), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(467), 1, + ACTIONS(9317), 1, anon_sym_BQUOTE, - ACTIONS(469), 1, + ACTIONS(9319), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14634), 1, + ACTIONS(14929), 1, anon_sym_DOLLAR_LPAREN, - STATE(849), 2, + STATE(4795), 2, sym_expansion, sym_command_substitution, - [312102] = 6, - ACTIONS(71), 1, + [317573] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, - anon_sym_PIPE, - ACTIONS(14636), 1, - anon_sym_RPAREN, - STATE(6388), 1, - aux_sym_concatenation_repeat1, - STATE(6562), 1, - aux_sym_case_item_repeat1, - ACTIONS(14532), 2, - sym__concat, - aux_sym_concatenation_token1, - [312122] = 6, - ACTIONS(71), 1, + ACTIONS(14829), 1, + anon_sym_elif, + ACTIONS(14831), 1, + anon_sym_else, + ACTIONS(14931), 1, + anon_sym_fi, + STATE(7426), 1, + sym_else_clause, + STATE(6481), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [317593] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8352), 1, + ACTIONS(9449), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8356), 1, + ACTIONS(9451), 1, anon_sym_BQUOTE, - ACTIONS(8358), 1, + ACTIONS(9453), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14638), 1, + ACTIONS(14933), 1, anon_sym_DOLLAR_LPAREN, - STATE(3491), 2, + STATE(1527), 2, sym_expansion, sym_command_substitution, - [312142] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14478), 1, - anon_sym_COMMA, - ACTIONS(14642), 1, - aux_sym_heredoc_redirect_token1, - STATE(4736), 1, - sym__c_terminator, - STATE(6393), 1, - aux_sym__for_body_repeat1, - ACTIONS(14640), 2, - anon_sym_SEMI, - anon_sym_AMP, - [312162] = 6, - ACTIONS(71), 1, + [317613] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1057), 1, + ACTIONS(8659), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(1061), 1, + ACTIONS(8661), 1, anon_sym_BQUOTE, - ACTIONS(1063), 1, + ACTIONS(8663), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14935), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1695), 2, + sym_expansion, + sym_command_substitution, + [317633] = 6, + ACTIONS(63), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(67), 1, + anon_sym_BQUOTE, + ACTIONS(69), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14644), 1, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14937), 1, anon_sym_DOLLAR_LPAREN, - STATE(1982), 2, + STATE(1098), 2, sym_expansion, sym_command_substitution, - [312182] = 6, - ACTIONS(71), 1, + [317653] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8900), 1, + ACTIONS(14941), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(14939), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_RBRACE3, + [317667] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(5309), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8902), 1, + ACTIONS(5313), 1, anon_sym_BQUOTE, - ACTIONS(8904), 1, + ACTIONS(5315), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14646), 1, + ACTIONS(14943), 1, anon_sym_DOLLAR_LPAREN, - STATE(1763), 2, + STATE(2799), 2, sym_expansion, sym_command_substitution, - [312202] = 4, - ACTIONS(71), 1, + [317687] = 6, + ACTIONS(73), 1, sym_comment, - STATE(6463), 1, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(14945), 1, + anon_sym_RPAREN, + STATE(6437), 1, aux_sym_concatenation_repeat1, - ACTIONS(14532), 2, + STATE(6750), 1, + aux_sym_case_item_repeat1, + ACTIONS(14779), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(1274), 3, + [317707] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14775), 1, anon_sym_PIPE, + ACTIONS(14947), 1, anon_sym_RPAREN, - sym__special_character, - [312218] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14648), 1, - anon_sym_RBRACE3, - ACTIONS(14441), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [312232] = 6, - ACTIONS(71), 1, + STATE(6452), 1, + aux_sym_concatenation_repeat1, + STATE(6739), 1, + aux_sym_case_item_repeat1, + ACTIONS(14779), 2, + sym__concat, + aux_sym_concatenation_token1, + [317727] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9522), 1, + ACTIONS(9079), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9524), 1, + ACTIONS(9081), 1, anon_sym_BQUOTE, - ACTIONS(9526), 1, + ACTIONS(9083), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14650), 1, + ACTIONS(14949), 1, anon_sym_DOLLAR_LPAREN, - STATE(4558), 2, + STATE(2290), 2, sym_expansion, sym_command_substitution, - [312252] = 6, - ACTIONS(71), 1, + [317747] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9154), 1, + ACTIONS(5394), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9156), 1, + ACTIONS(5398), 1, anon_sym_BQUOTE, - ACTIONS(9158), 1, + ACTIONS(5400), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14652), 1, + ACTIONS(14951), 1, anon_sym_DOLLAR_LPAREN, - STATE(1116), 2, + STATE(5495), 2, sym_expansion, sym_command_substitution, - [312272] = 6, - ACTIONS(71), 1, + [317767] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8876), 1, + ACTIONS(9223), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8878), 1, + ACTIONS(9225), 1, anon_sym_BQUOTE, - ACTIONS(8880), 1, + ACTIONS(9227), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14654), 1, + ACTIONS(14953), 1, anon_sym_DOLLAR_LPAREN, - STATE(1242), 2, + STATE(1246), 2, sym_expansion, sym_command_substitution, - [312292] = 6, - ACTIONS(71), 1, + [317787] = 6, + ACTIONS(3), 1, sym_comment, - ACTIONS(5446), 1, + ACTIONS(14835), 1, + anon_sym_COMMA, + ACTIONS(14957), 1, + aux_sym_heredoc_redirect_token1, + STATE(4285), 1, + sym__c_terminator, + STATE(6363), 1, + aux_sym__for_body_repeat1, + ACTIONS(14955), 2, + anon_sym_SEMI, + anon_sym_AMP, + [317807] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(9099), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5450), 1, + ACTIONS(9101), 1, anon_sym_BQUOTE, - ACTIONS(5452), 1, + ACTIONS(9103), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14656), 1, + ACTIONS(14959), 1, anon_sym_DOLLAR_LPAREN, - STATE(5499), 2, + STATE(1975), 2, sym_expansion, sym_command_substitution, - [312312] = 6, - ACTIONS(71), 1, + [317827] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(125), 1, + ACTIONS(9263), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(129), 1, + ACTIONS(9265), 1, anon_sym_BQUOTE, - ACTIONS(131), 1, + ACTIONS(9267), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14658), 1, + ACTIONS(14961), 1, anon_sym_DOLLAR_LPAREN, - STATE(484), 2, + STATE(1285), 2, sym_expansion, sym_command_substitution, - [312332] = 6, - ACTIONS(71), 1, + [317847] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(7208), 1, + ACTIONS(7176), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7210), 1, + ACTIONS(7178), 1, anon_sym_BQUOTE, - ACTIONS(7212), 1, + ACTIONS(7180), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14660), 1, + ACTIONS(14963), 1, anon_sym_DOLLAR_LPAREN, - STATE(6540), 2, + STATE(6561), 2, sym_expansion, sym_command_substitution, - [312352] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14504), 1, - anon_sym_elif, - ACTIONS(14506), 1, - anon_sym_else, - ACTIONS(14662), 1, - anon_sym_fi, - STATE(7189), 1, - sym_else_clause, - STATE(6422), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [312372] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14504), 1, - anon_sym_elif, - ACTIONS(14506), 1, - anon_sym_else, - ACTIONS(14664), 1, - anon_sym_fi, - STATE(7323), 1, - sym_else_clause, - STATE(6422), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [312392] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14666), 1, - anon_sym_RBRACE3, - ACTIONS(14441), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [312406] = 6, + [317867] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14478), 1, + ACTIONS(14835), 1, anon_sym_COMMA, - ACTIONS(14670), 1, + ACTIONS(14967), 1, aux_sym_heredoc_redirect_token1, - STATE(4687), 1, + STATE(4691), 1, sym__c_terminator, - STATE(6319), 1, + STATE(6421), 1, aux_sym__for_body_repeat1, - ACTIONS(14668), 2, + ACTIONS(14965), 2, anon_sym_SEMI, anon_sym_AMP, - [312426] = 6, + [317887] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14969), 1, + anon_sym_SLASH, + ACTIONS(14971), 1, + anon_sym_RBRACE3, + ACTIONS(14973), 1, + sym__expansion_word, + STATE(6479), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14791), 2, + sym__concat, + aux_sym_concatenation_token1, + [317907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14478), 1, + ACTIONS(14835), 1, anon_sym_COMMA, - ACTIONS(14674), 1, + ACTIONS(14977), 1, aux_sym_heredoc_redirect_token1, - STATE(4813), 1, + STATE(4748), 1, sym__c_terminator, - STATE(6334), 1, + STATE(6336), 1, aux_sym__for_body_repeat1, - ACTIONS(14672), 2, + ACTIONS(14975), 2, anon_sym_SEMI, anon_sym_AMP, - [312446] = 6, - ACTIONS(71), 1, + [317927] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14979), 1, + anon_sym_RBRACE3, + ACTIONS(14756), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [317941] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14829), 1, + anon_sym_elif, + ACTIONS(14831), 1, + anon_sym_else, + ACTIONS(14981), 1, + anon_sym_fi, + STATE(7154), 1, + sym_else_clause, + STATE(6481), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [317961] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9836), 1, + ACTIONS(8757), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9838), 1, + ACTIONS(8761), 1, + anon_sym_BQUOTE, + ACTIONS(8763), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14983), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(9840), 1, + STATE(2578), 2, + sym_expansion, + sym_command_substitution, + [317981] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(14985), 1, + anon_sym_RPAREN, + STATE(6452), 1, + aux_sym_concatenation_repeat1, + STATE(6755), 1, + aux_sym_case_item_repeat1, + ACTIONS(14779), 2, + sym__concat, + aux_sym_concatenation_token1, + [318001] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(10745), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(10747), 1, anon_sym_BQUOTE, - ACTIONS(9842), 1, + ACTIONS(10749), 1, anon_sym_DOLLAR_BQUOTE, - STATE(3225), 2, + ACTIONS(14987), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1801), 2, sym_expansion, sym_command_substitution, - [312466] = 6, - ACTIONS(71), 1, + [318021] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8180), 1, + ACTIONS(9577), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8184), 1, + ACTIONS(9579), 1, anon_sym_BQUOTE, - ACTIONS(8186), 1, + ACTIONS(9581), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14676), 1, + ACTIONS(14989), 1, anon_sym_DOLLAR_LPAREN, - STATE(4561), 2, + STATE(1720), 2, sym_expansion, sym_command_substitution, - [312486] = 3, - ACTIONS(71), 1, + [318041] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 2, + sym_regex, + aux_sym__expansion_regex_token1, + ACTIONS(1352), 4, + anon_sym_RPAREN, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_RBRACE3, + [318055] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(14991), 1, anon_sym_RBRACE3, - ACTIONS(14447), 5, + ACTIONS(14766), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [318069] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14993), 1, + anon_sym_RBRACE3, + ACTIONS(14756), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [312500] = 6, - ACTIONS(71), 1, + [318083] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(8390), 1, + ACTIONS(8714), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8394), 1, + ACTIONS(8718), 1, anon_sym_BQUOTE, - ACTIONS(8396), 1, + ACTIONS(8720), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14678), 1, + ACTIONS(14995), 1, anon_sym_DOLLAR_LPAREN, - STATE(2551), 2, + STATE(3574), 2, sym_expansion, sym_command_substitution, - [312520] = 3, - ACTIONS(71), 1, + [318103] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14680), 1, + ACTIONS(14993), 1, anon_sym_RBRACE3, - ACTIONS(14441), 5, + ACTIONS(14756), 5, anon_sym_PLUS, anon_sym_DASH, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - [312534] = 6, - ACTIONS(71), 1, + [318117] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(8104), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8108), 1, - anon_sym_BQUOTE, - ACTIONS(8110), 1, - anon_sym_DOLLAR_BQUOTE, - ACTIONS(14682), 1, - anon_sym_DOLLAR_LPAREN, - STATE(1570), 2, - sym_expansion, - sym_command_substitution, - [312554] = 6, - ACTIONS(71), 1, + ACTIONS(14993), 1, + anon_sym_RBRACE3, + ACTIONS(14756), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [318131] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(5295), 1, + ACTIONS(14997), 1, + anon_sym_RBRACE3, + ACTIONS(14766), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [318145] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(4858), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(5299), 1, + ACTIONS(4862), 1, anon_sym_BQUOTE, - ACTIONS(5301), 1, + ACTIONS(4864), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14684), 1, + ACTIONS(14999), 1, anon_sym_DOLLAR_LPAREN, - STATE(5452), 2, + STATE(2708), 2, sym_expansion, sym_command_substitution, - [312574] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14504), 1, - anon_sym_elif, - ACTIONS(14506), 1, - anon_sym_else, - ACTIONS(14686), 1, - anon_sym_fi, - STATE(7383), 1, - sym_else_clause, - STATE(6422), 2, - sym_elif_clause, - aux_sym_if_statement_repeat1, - [312594] = 6, - ACTIONS(71), 1, + [318165] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14504), 1, + ACTIONS(14829), 1, anon_sym_elif, - ACTIONS(14506), 1, + ACTIONS(14831), 1, anon_sym_else, - ACTIONS(14688), 1, + ACTIONS(15001), 1, anon_sym_fi, - STATE(6880), 1, + STATE(6988), 1, sym_else_clause, - STATE(6422), 2, + STATE(6481), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [312614] = 6, + [318185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(14478), 1, + ACTIONS(14835), 1, anon_sym_COMMA, - ACTIONS(14692), 1, + ACTIONS(15005), 1, aux_sym_heredoc_redirect_token1, - STATE(4236), 1, + STATE(4750), 1, sym__c_terminator, - STATE(6393), 1, + STATE(6448), 1, aux_sym__for_body_repeat1, - ACTIONS(14690), 2, + ACTIONS(15003), 2, anon_sym_SEMI, anon_sym_AMP, - [312634] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14694), 1, - anon_sym_RBRACE3, - ACTIONS(14447), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [312648] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1326), 2, - sym_regex, - aux_sym__expansion_regex_token1, - ACTIONS(1324), 4, - anon_sym_RPAREN, - anon_sym_DQUOTE, - sym_raw_string, - anon_sym_RBRACE3, - [312662] = 6, - ACTIONS(71), 1, + [318205] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9554), 1, + ACTIONS(5218), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9556), 1, + ACTIONS(5222), 1, anon_sym_BQUOTE, - ACTIONS(9558), 1, + ACTIONS(5224), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14696), 1, + ACTIONS(15007), 1, anon_sym_DOLLAR_LPAREN, - STATE(4383), 2, + STATE(5541), 2, sym_expansion, sym_command_substitution, - [312682] = 6, - ACTIONS(71), 1, + [318225] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9714), 1, + ACTIONS(4688), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9716), 1, + ACTIONS(4692), 1, anon_sym_BQUOTE, - ACTIONS(9718), 1, + ACTIONS(4694), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14698), 1, + ACTIONS(15009), 1, anon_sym_DOLLAR_LPAREN, - STATE(4732), 2, + STATE(2591), 2, sym_expansion, sym_command_substitution, - [312702] = 6, - ACTIONS(71), 1, + [318245] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14829), 1, + anon_sym_elif, + ACTIONS(14831), 1, + anon_sym_else, + ACTIONS(15011), 1, + anon_sym_fi, + STATE(7282), 1, + sym_else_clause, + STATE(6481), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [318265] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(4789), 1, + ACTIONS(4995), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(4793), 1, + ACTIONS(4999), 1, anon_sym_BQUOTE, - ACTIONS(4795), 1, + ACTIONS(5001), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14700), 1, + ACTIONS(15013), 1, anon_sym_DOLLAR_LPAREN, - STATE(2708), 2, + STATE(5441), 2, sym_expansion, sym_command_substitution, - [312722] = 3, - ACTIONS(71), 1, + [318285] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14702), 1, - anon_sym_RBRACE3, - ACTIONS(14441), 5, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - [312736] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14528), 1, - anon_sym_PIPE, - ACTIONS(14704), 1, - anon_sym_RPAREN, - STATE(6388), 1, - aux_sym_concatenation_repeat1, - STATE(6635), 1, - aux_sym_case_item_repeat1, - ACTIONS(14532), 2, - sym__concat, - aux_sym_concatenation_token1, - [312756] = 6, - ACTIONS(71), 1, + ACTIONS(1149), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(1155), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(3216), 1, + anon_sym_BQUOTE, + ACTIONS(15015), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2319), 2, + sym_expansion, + sym_command_substitution, + [318305] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(9074), 1, + ACTIONS(9601), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(9076), 1, + ACTIONS(9603), 1, anon_sym_BQUOTE, - ACTIONS(9078), 1, + ACTIONS(9605), 1, anon_sym_DOLLAR_BQUOTE, - ACTIONS(14706), 1, + ACTIONS(15017), 1, anon_sym_DOLLAR_LPAREN, - STATE(1298), 2, + STATE(4610), 2, sym_expansion, sym_command_substitution, - [312776] = 5, - ACTIONS(71), 1, + [318325] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - STATE(7082), 1, - sym_heredoc_body, - STATE(5550), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [312793] = 4, - ACTIONS(3), 1, + ACTIONS(325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(331), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(5851), 1, + anon_sym_BQUOTE, + ACTIONS(15019), 1, + anon_sym_DOLLAR_LPAREN, + STATE(2731), 2, + sym_expansion, + sym_command_substitution, + [318345] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14431), 1, - anon_sym_in, - ACTIONS(14435), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14433), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [312808] = 6, - ACTIONS(71), 1, + ACTIONS(14662), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(14664), 1, + anon_sym_BQUOTE, + ACTIONS(14666), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(14690), 1, + anon_sym_DOLLAR_LBRACE, + STATE(6278), 2, + sym_expansion, + sym_command_substitution, + [318365] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, - anon_sym_PIPE, - ACTIONS(14530), 1, - anon_sym_RPAREN, - ACTIONS(14712), 1, - sym__special_character, - STATE(6528), 1, - aux_sym__literal_repeat1, - STATE(6656), 1, - aux_sym_case_item_repeat1, - [312827] = 3, - ACTIONS(71), 1, + ACTIONS(14829), 1, + anon_sym_elif, + ACTIONS(14831), 1, + anon_sym_else, + ACTIONS(15021), 1, + anon_sym_fi, + STATE(7294), 1, + sym_else_clause, + STATE(6481), 2, + sym_elif_clause, + aux_sym_if_statement_repeat1, + [318385] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14714), 1, + ACTIONS(8625), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8629), 1, + anon_sym_BQUOTE, + ACTIONS(8631), 1, + anon_sym_DOLLAR_BQUOTE, + ACTIONS(15023), 1, + anon_sym_DOLLAR_LPAREN, + STATE(1761), 2, + sym_expansion, + sym_command_substitution, + [318405] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15025), 1, sym__concat, - ACTIONS(6835), 4, + ACTIONS(7001), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [312840] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14716), 1, - sym_simple_heredoc_body, - STATE(4983), 1, - sym__heredoc_body, - STATE(5002), 1, - sym__simple_heredoc_body, - STATE(7280), 1, - sym_heredoc_body, - [312859] = 4, - ACTIONS(71), 1, + [318418] = 2, + ACTIONS(73), 1, sym_comment, - STATE(6373), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1278), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - ACTIONS(14718), 2, + ACTIONS(1370), 5, sym__concat, + sym__expansion_word, + anon_sym_SLASH, aux_sym_concatenation_token1, - [312874] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8561), 1, anon_sym_RBRACE3, - STATE(6400), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [312889] = 5, - ACTIONS(71), 1, + [318429] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14721), 1, + ACTIONS(15027), 1, sym_simple_heredoc_body, - STATE(7484), 1, - sym_heredoc_body, - STATE(5681), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [312906] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14716), 1, - sym_simple_heredoc_body, - STATE(7280), 1, + STATE(7110), 1, sym_heredoc_body, - STATE(4865), 2, + STATE(5733), 2, sym__heredoc_body, sym__simple_heredoc_body, - [312923] = 5, - ACTIONS(71), 1, + [318446] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14716), 1, + ACTIONS(15031), 1, sym_simple_heredoc_body, - STATE(7280), 1, + STATE(7234), 1, sym_heredoc_body, - STATE(4880), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [312940] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14721), 1, - sym_simple_heredoc_body, - STATE(5630), 1, + STATE(4979), 2, sym__heredoc_body, - STATE(5634), 1, sym__simple_heredoc_body, - STATE(7484), 1, - sym_heredoc_body, - [312959] = 6, - ACTIONS(71), 1, + [318463] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14723), 1, + ACTIONS(15031), 1, sym_simple_heredoc_body, - STATE(5062), 1, + STATE(4980), 1, sym__heredoc_body, - STATE(5063), 1, + STATE(4981), 1, sym__simple_heredoc_body, - STATE(6830), 1, + STATE(7234), 1, sym_heredoc_body, - [312978] = 4, - ACTIONS(71), 1, + [318482] = 5, + ACTIONS(73), 1, sym_comment, - STATE(6388), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14532), 2, - sym__concat, + ACTIONS(14779), 1, aux_sym_concatenation_token1, - ACTIONS(14725), 2, + ACTIONS(15033), 1, + sym__concat, + STATE(6471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1296), 2, anon_sym_PIPE, anon_sym_RPAREN, - [312993] = 3, - ACTIONS(71), 1, + [318499] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14727), 1, - sym__concat, - ACTIONS(6863), 4, + ACTIONS(15035), 1, + anon_sym_RBRACE3, + STATE(6439), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, + [318514] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15037), 1, anon_sym_RBRACE3, - [313006] = 6, - ACTIONS(71), 1, + STATE(6439), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(15039), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [318529] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14721), 1, + ACTIONS(15031), 1, sym_simple_heredoc_body, - STATE(5635), 1, + STATE(4983), 1, sym__heredoc_body, - STATE(5640), 1, + STATE(4990), 1, sym__simple_heredoc_body, - STATE(7484), 1, + STATE(7234), 1, sym_heredoc_body, - [313025] = 4, + [318548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14729), 1, + ACTIONS(15042), 1, anon_sym_in, - ACTIONS(14733), 1, + ACTIONS(15046), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14731), 3, + ACTIONS(15044), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [313040] = 6, - ACTIONS(71), 1, + [318563] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(14777), 1, + anon_sym_RPAREN, + ACTIONS(15048), 1, + sym__special_character, + STATE(6576), 1, + aux_sym__literal_repeat1, + STATE(6710), 1, + aux_sym_case_item_repeat1, + [318582] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14723), 1, + ACTIONS(15050), 1, sym_simple_heredoc_body, - STATE(5060), 1, + STATE(7086), 1, + sym_heredoc_body, + STATE(4940), 2, sym__heredoc_body, - STATE(5061), 1, sym__simple_heredoc_body, - STATE(6830), 1, - sym_heredoc_body, - [313059] = 5, - ACTIONS(71), 1, + [318599] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14723), 1, + ACTIONS(15031), 1, sym_simple_heredoc_body, - STATE(6830), 1, + STATE(7234), 1, sym_heredoc_body, - STATE(5038), 2, + STATE(4992), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313076] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14735), 1, - anon_sym_RBRACE3, - STATE(6431), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [313091] = 5, - ACTIONS(71), 1, + [318616] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - STATE(7082), 1, + ACTIONS(15052), 1, + sym_simple_heredoc_body, + STATE(7119), 1, sym_heredoc_body, - STATE(5547), 2, + STATE(5666), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313108] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14532), 1, - aux_sym_concatenation_token1, - ACTIONS(14737), 1, - sym__concat, - STATE(6373), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1288), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [313125] = 6, - ACTIONS(71), 1, + [318633] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14716), 1, + ACTIONS(15027), 1, sym_simple_heredoc_body, - STATE(4946), 1, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + STATE(5704), 1, sym__heredoc_body, - STATE(4951), 1, + STATE(5720), 1, sym__simple_heredoc_body, - STATE(7280), 1, + STATE(7110), 1, sym_heredoc_body, - [313144] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14355), 1, - anon_sym_in, - ACTIONS(14359), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14357), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [313159] = 6, - ACTIONS(71), 1, + [318652] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(14608), 1, + ACTIONS(14897), 1, anon_sym_RPAREN, - ACTIONS(14712), 1, + ACTIONS(15048), 1, sym__special_character, - STATE(6528), 1, + STATE(6576), 1, aux_sym__literal_repeat1, - STATE(6565), 1, + STATE(6767), 1, aux_sym_case_item_repeat1, - [313178] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14716), 1, - sym_simple_heredoc_body, - STATE(7280), 1, - sym_heredoc_body, - STATE(4916), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [313195] = 5, + [318671] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(14741), 1, + ACTIONS(15056), 1, anon_sym_COMMA, - ACTIONS(14744), 1, + ACTIONS(15059), 1, aux_sym_heredoc_redirect_token1, - STATE(6393), 1, + STATE(6448), 1, aux_sym__for_body_repeat1, - ACTIONS(14739), 2, + ACTIONS(15054), 2, anon_sym_SEMI, anon_sym_AMP, - [313212] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - STATE(7082), 1, - sym_heredoc_body, - STATE(5556), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [313229] = 6, - ACTIONS(71), 1, + [318688] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14721), 1, - sym_simple_heredoc_body, - STATE(5621), 1, - sym__simple_heredoc_body, - STATE(5655), 1, - sym__heredoc_body, - STATE(7484), 1, - sym_heredoc_body, - [313248] = 5, - ACTIONS(71), 1, + ACTIONS(15061), 1, + anon_sym_SLASH, + ACTIONS(15063), 1, + anon_sym_RBRACE3, + STATE(6479), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14791), 2, + sym__concat, + aux_sym_concatenation_token1, + [318705] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14746), 1, + ACTIONS(14869), 1, anon_sym_SLASH, - ACTIONS(14748), 1, + ACTIONS(14871), 1, anon_sym_RBRACE3, - STATE(6420), 1, + STATE(6479), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14460), 2, + ACTIONS(14791), 2, sym__concat, aux_sym_concatenation_token1, - [313265] = 4, + [318722] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14419), 1, + ACTIONS(14720), 1, anon_sym_in, - ACTIONS(14423), 1, + ACTIONS(14724), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14421), 3, + ACTIONS(14722), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [313280] = 5, - ACTIONS(71), 1, + [318737] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14750), 1, - anon_sym_SLASH, - ACTIONS(14752), 1, - anon_sym_RBRACE3, - STATE(6420), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14460), 2, - sym__concat, + ACTIONS(14779), 1, aux_sym_concatenation_token1, - [313297] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1358), 5, + ACTIONS(15065), 1, sym__concat, - sym__expansion_word, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [313308] = 4, - ACTIONS(71), 1, + STATE(6471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1316), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [318754] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14754), 1, - anon_sym_RBRACE3, - STATE(6431), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [313323] = 4, - ACTIONS(71), 1, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + ACTIONS(15031), 1, + sym_simple_heredoc_body, + STATE(7234), 1, + sym_heredoc_body, + STATE(5000), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [318771] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, - anon_sym_RBRACE3, - STATE(6431), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8542), 3, + ACTIONS(15067), 1, + sym__concat, + ACTIONS(6993), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [313338] = 5, - ACTIONS(71), 1, + anon_sym_RBRACE3, + [318784] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - STATE(7082), 1, + ACTIONS(15031), 1, + sym_simple_heredoc_body, + STATE(5002), 1, + sym__heredoc_body, + STATE(5004), 1, + sym__simple_heredoc_body, + STATE(7234), 1, sym_heredoc_body, - STATE(5575), 2, + [318803] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + ACTIONS(15031), 1, + sym_simple_heredoc_body, + STATE(5005), 1, sym__heredoc_body, + STATE(5014), 1, sym__simple_heredoc_body, - [313355] = 5, - ACTIONS(71), 1, + STATE(7234), 1, + sym_heredoc_body, + [318822] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14716), 1, + ACTIONS(15031), 1, sym_simple_heredoc_body, - STATE(7280), 1, + STATE(7234), 1, sym_heredoc_body, - STATE(5001), 2, + STATE(5015), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313372] = 5, - ACTIONS(71), 1, + [318839] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14716), 1, + ACTIONS(15031), 1, sym_simple_heredoc_body, - STATE(7280), 1, - sym_heredoc_body, - STATE(4906), 2, + STATE(5017), 1, sym__heredoc_body, + STATE(5019), 1, sym__simple_heredoc_body, - [313389] = 4, - ACTIONS(71), 1, + STATE(7234), 1, + sym_heredoc_body, + [318858] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14758), 1, + ACTIONS(14789), 1, + anon_sym_SLASH, + ACTIONS(14793), 1, + anon_sym_RBRACE3, + STATE(6479), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14791), 2, + sym__concat, + aux_sym_concatenation_token1, + [318875] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15069), 1, anon_sym_RBRACE3, - STATE(6431), 1, + STATE(6439), 1, aux_sym__expansion_body_repeat1, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [313404] = 5, - ACTIONS(71), 1, + [318890] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14723), 1, + ACTIONS(15052), 1, sym_simple_heredoc_body, - STATE(6830), 1, + STATE(7119), 1, sym_heredoc_body, - STATE(5040), 2, + STATE(5654), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313421] = 5, - ACTIONS(71), 1, + [318907] = 4, + ACTIONS(3), 1, sym_comment, + ACTIONS(14706), 1, + anon_sym_in, ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14721), 1, - sym_simple_heredoc_body, - STATE(7484), 1, - sym_heredoc_body, - STATE(5652), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [313438] = 6, - ACTIONS(71), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14708), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [318922] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, - ACTIONS(14710), 1, + ACTIONS(15071), 1, + anon_sym_RBRACE3, + STATE(6439), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [318937] = 4, + ACTIONS(73), 1, + sym_comment, + STATE(6464), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(15073), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + ACTIONS(15075), 2, + sym__concat, + aux_sym_concatenation_token1, + [318952] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - STATE(5587), 1, + ACTIONS(15031), 1, + sym_simple_heredoc_body, + STATE(5020), 1, sym__heredoc_body, - STATE(5597), 1, + STATE(5022), 1, sym__simple_heredoc_body, - STATE(7082), 1, + STATE(7234), 1, sym_heredoc_body, - [313457] = 5, - ACTIONS(71), 1, + [318971] = 6, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15078), 1, + anon_sym_SEMI, + ACTIONS(15080), 1, + anon_sym_do, + STATE(4999), 1, + sym_do_group, + STATE(5001), 1, + sym_compound_statement, + [318990] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14723), 1, + ACTIONS(15050), 1, sym_simple_heredoc_body, - STATE(6830), 1, + STATE(7086), 1, sym_heredoc_body, - STATE(5046), 2, + STATE(5056), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313474] = 6, - ACTIONS(71), 1, + [319007] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14760), 1, + ACTIONS(15050), 1, sym_simple_heredoc_body, - STATE(5013), 1, + STATE(5083), 1, sym__heredoc_body, - STATE(5014), 1, + STATE(5084), 1, sym__simple_heredoc_body, - STATE(7361), 1, + STATE(7086), 1, sym_heredoc_body, - [313493] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8549), 1, - anon_sym_RBRACE3, - STATE(6421), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [313508] = 6, - ACTIONS(71), 1, + [319026] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - STATE(5599), 1, + ACTIONS(15050), 1, + sym_simple_heredoc_body, + STATE(5085), 1, sym__heredoc_body, - STATE(5600), 1, + STATE(5086), 1, sym__simple_heredoc_body, - STATE(7082), 1, + STATE(7086), 1, sym_heredoc_body, - [313527] = 6, - ACTIONS(71), 1, + [319045] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14716), 1, + ACTIONS(15050), 1, sym_simple_heredoc_body, - STATE(4910), 1, + STATE(7086), 1, + sym_heredoc_body, + STATE(5018), 2, sym__heredoc_body, - STATE(4913), 1, sym__simple_heredoc_body, - STATE(7280), 1, - sym_heredoc_body, - [313546] = 4, - ACTIONS(71), 1, + [319062] = 4, + ACTIONS(73), 1, sym_comment, - STATE(6414), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14762), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - ACTIONS(14764), 2, + STATE(6471), 1, + aux_sym_concatenation_repeat1, + ACTIONS(1306), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + ACTIONS(15082), 2, sym__concat, aux_sym_concatenation_token1, - [313561] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - STATE(7082), 1, - sym_heredoc_body, - STATE(5601), 2, - sym__heredoc_body, - sym__simple_heredoc_body, - [313578] = 6, - ACTIONS(71), 1, + [319077] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14723), 1, + ACTIONS(15052), 1, sym_simple_heredoc_body, - STATE(5047), 1, + STATE(5639), 1, sym__heredoc_body, - STATE(5048), 1, + STATE(5641), 1, sym__simple_heredoc_body, - STATE(6830), 1, + STATE(7119), 1, sym_heredoc_body, - [313597] = 5, - ACTIONS(71), 1, + [319096] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - STATE(7082), 1, - sym_heredoc_body, - STATE(5581), 2, + ACTIONS(15052), 1, + sym_simple_heredoc_body, + STATE(5667), 1, sym__heredoc_body, + STATE(5676), 1, sym__simple_heredoc_body, - [313614] = 5, - ACTIONS(71), 1, + STATE(7119), 1, + sym_heredoc_body, + [319115] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14716), 1, + ACTIONS(15050), 1, sym_simple_heredoc_body, - STATE(7280), 1, - sym_heredoc_body, - STATE(4941), 2, - sym__heredoc_body, + STATE(4934), 1, sym__simple_heredoc_body, - [313631] = 5, - ACTIONS(71), 1, + STATE(4948), 1, + sym__heredoc_body, + STATE(7086), 1, + sym_heredoc_body, + [319134] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(14736), 1, + anon_sym_in, + ACTIONS(14740), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14738), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [319149] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15085), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(14764), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + [319162] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14760), 1, + ACTIONS(15052), 1, sym_simple_heredoc_body, - STATE(7361), 1, - sym_heredoc_body, - STATE(4969), 2, - sym__heredoc_body, + STATE(5615), 1, sym__simple_heredoc_body, - [313648] = 4, - ACTIONS(71), 1, + STATE(5644), 1, + sym__heredoc_body, + STATE(7119), 1, + sym_heredoc_body, + [319181] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(443), 1, + anon_sym_LBRACE, + ACTIONS(15087), 1, + anon_sym_SEMI, + ACTIONS(15089), 1, + anon_sym_do, + STATE(5042), 1, + sym_do_group, + STATE(5043), 1, + sym_compound_statement, + [319200] = 4, + ACTIONS(73), 1, sym_comment, - STATE(6414), 1, + STATE(6464), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14460), 2, + ACTIONS(14791), 2, sym__concat, aux_sym_concatenation_token1, - ACTIONS(14767), 2, + ACTIONS(15091), 2, anon_sym_SLASH, anon_sym_RBRACE3, - [313663] = 4, - ACTIONS(71), 1, + [319215] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, - anon_sym_RBRACE3, - STATE(6431), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [313678] = 4, - ACTIONS(71), 1, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + ACTIONS(15050), 1, + sym_simple_heredoc_body, + STATE(7086), 1, + sym_heredoc_body, + STATE(4976), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [319232] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14771), 1, + ACTIONS(15095), 1, anon_sym_elif, - ACTIONS(14769), 2, + ACTIONS(15093), 2, anon_sym_fi, anon_sym_else, - STATE(6422), 2, + STATE(6481), 2, sym_elif_clause, aux_sym_if_statement_repeat1, - [313693] = 5, - ACTIONS(71), 1, + [319247] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15098), 1, + anon_sym_SLASH, + ACTIONS(15100), 1, + anon_sym_RBRACE3, + STATE(6479), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14791), 2, + sym__concat, + aux_sym_concatenation_token1, + [319264] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LBRACE, + ACTIONS(15102), 1, + anon_sym_SEMI, + ACTIONS(15104), 1, + anon_sym_do, + STATE(5683), 1, + sym_compound_statement, + STATE(5748), 1, + sym_do_group, + [319283] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1386), 5, + sym__concat, + sym__expansion_word, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [319294] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14721), 1, + ACTIONS(15052), 1, sym_simple_heredoc_body, - STATE(7484), 1, + STATE(7119), 1, sym_heredoc_body, - STATE(5644), 2, + STATE(5662), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313710] = 3, - ACTIONS(71), 1, + [319311] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14774), 1, - sym__concat, - ACTIONS(6817), 4, + ACTIONS(15106), 1, + anon_sym_RBRACE3, + STATE(6439), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [313723] = 4, - ACTIONS(71), 1, + [319326] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14776), 1, + ACTIONS(8787), 1, anon_sym_RBRACE3, - STATE(6431), 1, + STATE(6518), 1, aux_sym__expansion_body_repeat1, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [313738] = 2, - ACTIONS(71), 1, + [319341] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 5, - sym__concat, - sym__expansion_word, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [313749] = 6, - ACTIONS(71), 1, + ACTIONS(706), 1, + anon_sym_LBRACE, + ACTIONS(15108), 1, + anon_sym_SEMI, + ACTIONS(15110), 1, + anon_sym_do, + STATE(5121), 1, + sym_compound_statement, + STATE(5139), 1, + sym_do_group, + [319360] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14721), 1, + ACTIONS(15027), 1, sym_simple_heredoc_body, - STATE(5667), 1, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + STATE(7110), 1, + sym_heredoc_body, + STATE(5705), 2, sym__heredoc_body, - STATE(5676), 1, sym__simple_heredoc_body, - STATE(7484), 1, - sym_heredoc_body, - [313768] = 4, - ACTIONS(71), 1, + [319377] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, - anon_sym_RBRACE3, - STATE(6431), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [313783] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14723), 1, + ACTIONS(15052), 1, sym_simple_heredoc_body, - STATE(5051), 1, + STATE(7119), 1, + sym_heredoc_body, + STATE(5618), 2, sym__heredoc_body, - STATE(5052), 1, sym__simple_heredoc_body, - STATE(6830), 1, - sym_heredoc_body, - [313802] = 5, - ACTIONS(71), 1, + [319394] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14723), 1, + ACTIONS(15050), 1, sym_simple_heredoc_body, - STATE(6830), 1, + STATE(7086), 1, sym_heredoc_body, - STATE(5053), 2, + STATE(4986), 2, sym__heredoc_body, sym__simple_heredoc_body, - [313819] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14778), 1, - anon_sym_RBRACE3, - STATE(6431), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(14780), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [313834] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14735), 1, - anon_sym_RBRACE3, - STATE(6431), 1, - aux_sym__expansion_body_repeat1, - ACTIONS(8542), 3, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - [313849] = 5, - ACTIONS(71), 1, + [319411] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14723), 1, + ACTIONS(15050), 1, sym_simple_heredoc_body, - STATE(6830), 1, - sym_heredoc_body, - STATE(5054), 2, + STATE(4987), 1, sym__heredoc_body, + STATE(4988), 1, sym__simple_heredoc_body, - [313866] = 6, - ACTIONS(71), 1, + STATE(7086), 1, + sym_heredoc_body, + [319430] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(14620), 1, + ACTIONS(14945), 1, anon_sym_RPAREN, - ACTIONS(14712), 1, + ACTIONS(15048), 1, sym__special_character, - STATE(6528), 1, + STATE(6576), 1, aux_sym__literal_repeat1, - STATE(6585), 1, + STATE(6626), 1, aux_sym_case_item_repeat1, - [313885] = 6, - ACTIONS(71), 1, + [319449] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14721), 1, + ACTIONS(15050), 1, sym_simple_heredoc_body, - STATE(5639), 1, + STATE(4989), 1, sym__heredoc_body, - STATE(5666), 1, + STATE(4991), 1, sym__simple_heredoc_body, - STATE(7484), 1, + STATE(7086), 1, sym_heredoc_body, - [313904] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1346), 5, - sym__concat, - sym__expansion_word, - anon_sym_SLASH, - aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [313915] = 6, - ACTIONS(71), 1, + [319468] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14716), 1, - sym_simple_heredoc_body, - STATE(4873), 1, - sym__simple_heredoc_body, - STATE(4886), 1, - sym__heredoc_body, - STATE(7280), 1, - sym_heredoc_body, - [313934] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14708), 1, + ACTIONS(15050), 1, sym_simple_heredoc_body, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - STATE(5592), 1, + STATE(4973), 1, sym__heredoc_body, - STATE(5615), 1, + STATE(5013), 1, sym__simple_heredoc_body, - STATE(7082), 1, + STATE(7086), 1, sym_heredoc_body, - [313953] = 6, - ACTIONS(71), 1, + [319487] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(689), 1, - anon_sym_LBRACE, - ACTIONS(14783), 1, - anon_sym_SEMI, - ACTIONS(14785), 1, - anon_sym_do, - STATE(5112), 1, - sym_do_group, - STATE(5113), 1, - sym_compound_statement, - [313972] = 6, - ACTIONS(71), 1, + ACTIONS(8813), 1, + anon_sym_RBRACE3, + STATE(6528), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [319502] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14723), 1, + ACTIONS(15050), 1, sym_simple_heredoc_body, - STATE(5055), 1, + STATE(7086), 1, + sym_heredoc_body, + STATE(4993), 2, sym__heredoc_body, - STATE(5056), 1, sym__simple_heredoc_body, - STATE(6830), 1, - sym_heredoc_body, - [313991] = 6, - ACTIONS(71), 1, + [319519] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14723), 1, + ACTIONS(15027), 1, sym_simple_heredoc_body, - STATE(5057), 1, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + STATE(7110), 1, + sym_heredoc_body, + STATE(5723), 2, sym__heredoc_body, - STATE(5058), 1, sym__simple_heredoc_body, - STATE(6830), 1, - sym_heredoc_body, - [314010] = 5, - ACTIONS(71), 1, + [319536] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14536), 1, - anon_sym_SLASH, - ACTIONS(14538), 1, - anon_sym_RBRACE3, - STATE(6420), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14460), 2, - sym__concat, - aux_sym_concatenation_token1, - [314027] = 6, - ACTIONS(71), 1, + ACTIONS(15027), 1, + sym_simple_heredoc_body, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + STATE(5678), 1, + sym__simple_heredoc_body, + STATE(5740), 1, + sym__heredoc_body, + STATE(7110), 1, + sym_heredoc_body, + [319555] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14716), 1, + ACTIONS(15052), 1, sym_simple_heredoc_body, - STATE(4914), 1, + STATE(5673), 1, sym__heredoc_body, - STATE(4915), 1, + STATE(5675), 1, sym__simple_heredoc_body, - STATE(7280), 1, + STATE(7119), 1, sym_heredoc_body, - [314046] = 4, - ACTIONS(71), 1, + [319574] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14754), 1, + ACTIONS(9032), 1, anon_sym_RBRACE3, - STATE(6431), 1, + STATE(6438), 1, aux_sym__expansion_body_repeat1, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [314061] = 6, - ACTIONS(71), 1, + [319589] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15112), 1, + anon_sym_in, + ACTIONS(15116), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(15114), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [319604] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14760), 1, + ACTIONS(15027), 1, sym_simple_heredoc_body, - STATE(4972), 1, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + STATE(5698), 1, sym__heredoc_body, - STATE(4973), 1, + STATE(5753), 1, sym__simple_heredoc_body, - STATE(7361), 1, + STATE(7110), 1, sym_heredoc_body, - [314080] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14787), 1, - anon_sym_SLASH, - ACTIONS(14789), 1, - anon_sym_RBRACE3, - STATE(6420), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14460), 2, - sym__concat, - aux_sym_concatenation_token1, - [314097] = 6, - ACTIONS(71), 1, + [319623] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14708), 1, + ACTIONS(15027), 1, sym_simple_heredoc_body, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - STATE(5548), 1, + STATE(7110), 1, + sym_heredoc_body, + STATE(5681), 2, sym__heredoc_body, - STATE(5549), 1, sym__simple_heredoc_body, - STATE(7082), 1, - sym_heredoc_body, - [314116] = 6, - ACTIONS(71), 1, + [319640] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15118), 1, + anon_sym_in, + ACTIONS(15122), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(15120), 3, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [319655] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14760), 1, + ACTIONS(15052), 1, sym_simple_heredoc_body, - STATE(4961), 1, + STATE(7119), 1, + sym_heredoc_body, + STATE(5647), 2, sym__heredoc_body, - STATE(4962), 1, sym__simple_heredoc_body, - STATE(7361), 1, - sym_heredoc_body, - [314135] = 6, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, + [319672] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(14791), 1, + ACTIONS(14748), 1, + anon_sym_in, + ACTIONS(14752), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(14750), 3, anon_sym_SEMI, - ACTIONS(14793), 1, - anon_sym_do, - STATE(4904), 1, - sym_do_group, - STATE(5017), 1, - sym_compound_statement, - [314154] = 5, - ACTIONS(71), 1, + anon_sym_AMP, + anon_sym_SEMI_SEMI, + [319687] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14458), 1, + ACTIONS(15124), 1, anon_sym_SLASH, - ACTIONS(14462), 1, + ACTIONS(15126), 1, anon_sym_RBRACE3, - STATE(6420), 1, + STATE(6479), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14460), 2, + ACTIONS(14791), 2, sym__concat, aux_sym_concatenation_token1, - [314171] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(14795), 1, - anon_sym_SEMI, - ACTIONS(14797), 1, - anon_sym_do, - STATE(4911), 1, - sym_do_group, - STATE(4912), 1, - sym_compound_statement, - [314190] = 3, - ACTIONS(71), 1, + [319704] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14799), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(14453), 3, - anon_sym_STAR, + ACTIONS(14969), 1, anon_sym_SLASH, - anon_sym_PERCENT, - [314203] = 4, + ACTIONS(14971), 1, + anon_sym_RBRACE3, + STATE(6479), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14791), 2, + sym__concat, + aux_sym_concatenation_token1, + [319721] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15069), 1, + anon_sym_RBRACE3, + STATE(6439), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [319736] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + ACTIONS(15052), 1, + sym_simple_heredoc_body, + STATE(7119), 1, + sym_heredoc_body, + STATE(5638), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [319753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(14399), 1, + ACTIONS(15128), 1, anon_sym_in, - ACTIONS(14403), 1, + ACTIONS(15132), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14401), 3, + ACTIONS(15130), 3, anon_sym_SEMI, anon_sym_AMP, anon_sym_SEMI_SEMI, - [314218] = 6, - ACTIONS(71), 1, + [319768] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, - ACTIONS(14710), 1, + STATE(6437), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14779), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(15134), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [319783] = 4, + ACTIONS(73), 1, + sym_comment, + STATE(6452), 1, + aux_sym_concatenation_repeat1, + ACTIONS(14779), 2, + sym__concat, + aux_sym_concatenation_token1, + ACTIONS(15136), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [319798] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - STATE(5553), 1, + ACTIONS(15052), 1, + sym_simple_heredoc_body, + STATE(5619), 1, sym__heredoc_body, - STATE(5555), 1, + STATE(5621), 1, sym__simple_heredoc_body, - STATE(7082), 1, + STATE(7119), 1, sym_heredoc_body, - [314237] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(14801), 1, - anon_sym_SEMI, - ACTIONS(14803), 1, - anon_sym_do, - STATE(5626), 1, - sym_do_group, - STATE(5683), 1, - sym_compound_statement, - [314256] = 5, - ACTIONS(71), 1, + [319817] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14721), 1, + ACTIONS(15031), 1, sym_simple_heredoc_body, - STATE(7484), 1, + STATE(7234), 1, sym_heredoc_body, - STATE(5646), 2, + STATE(4937), 2, sym__heredoc_body, sym__simple_heredoc_body, - [314273] = 4, - ACTIONS(71), 1, - sym_comment, - STATE(6463), 1, - aux_sym_concatenation_repeat1, - ACTIONS(14532), 2, - sym__concat, - aux_sym_concatenation_token1, - ACTIONS(14805), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [314288] = 5, - ACTIONS(71), 1, + [319834] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14494), 1, - anon_sym_SLASH, - ACTIONS(14496), 1, + ACTIONS(15035), 1, anon_sym_RBRACE3, - STATE(6420), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14460), 2, - sym__concat, - aux_sym_concatenation_token1, - [314305] = 6, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14528), 1, - anon_sym_PIPE, - ACTIONS(14554), 1, - anon_sym_RPAREN, - ACTIONS(14712), 1, - sym__special_character, - STATE(6528), 1, - aux_sym__literal_repeat1, - STATE(6691), 1, - aux_sym_case_item_repeat1, - [314324] = 4, - ACTIONS(71), 1, + STATE(6439), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [319849] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(8530), 1, + ACTIONS(15069), 1, anon_sym_RBRACE3, - STATE(6386), 1, + STATE(6439), 1, aux_sym__expansion_body_repeat1, - ACTIONS(8542), 3, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - [314339] = 6, - ACTIONS(71), 1, + [319864] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14708), 1, - sym_simple_heredoc_body, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - STATE(5571), 1, + ACTIONS(15138), 1, + sym_simple_heredoc_body, + STATE(7668), 1, + sym_heredoc_body, + STATE(5163), 2, sym__heredoc_body, - STATE(5616), 1, sym__simple_heredoc_body, - STATE(7082), 1, - sym_heredoc_body, - [314358] = 5, - ACTIONS(71), 1, + [319881] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14760), 1, + ACTIONS(15138), 1, sym_simple_heredoc_body, - STATE(7361), 1, + STATE(7668), 1, sym_heredoc_body, - STATE(4917), 2, + STATE(5172), 2, sym__heredoc_body, sym__simple_heredoc_body, - [314375] = 5, - ACTIONS(71), 1, + [319898] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14532), 1, - aux_sym_concatenation_token1, - ACTIONS(14807), 1, - sym__concat, - STATE(6373), 1, - aux_sym_concatenation_repeat1, - ACTIONS(1268), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [314392] = 6, - ACTIONS(71), 1, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + ACTIONS(15138), 1, + sym_simple_heredoc_body, + STATE(7668), 1, + sym_heredoc_body, + STATE(5092), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [319915] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14716), 1, + ACTIONS(15138), 1, sym_simple_heredoc_body, - STATE(5020), 1, + STATE(5093), 1, sym__heredoc_body, - STATE(5025), 1, + STATE(5096), 1, sym__simple_heredoc_body, - STATE(7280), 1, + STATE(7668), 1, sym_heredoc_body, - [314411] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14809), 1, - anon_sym_in, - ACTIONS(14813), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14811), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [314426] = 5, - ACTIONS(71), 1, + [319934] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14721), 1, + ACTIONS(15138), 1, sym_simple_heredoc_body, - STATE(7484), 1, - sym_heredoc_body, - STATE(5673), 2, + STATE(5098), 1, sym__heredoc_body, + STATE(5101), 1, sym__simple_heredoc_body, - [314443] = 5, - ACTIONS(71), 1, + STATE(7668), 1, + sym_heredoc_body, + [319953] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14760), 1, + ACTIONS(15138), 1, sym_simple_heredoc_body, - STATE(7361), 1, + STATE(7668), 1, sym_heredoc_body, - STATE(4866), 2, + STATE(5102), 2, sym__heredoc_body, sym__simple_heredoc_body, - [314460] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14815), 1, - anon_sym_in, - ACTIONS(14819), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14817), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [314475] = 5, - ACTIONS(71), 1, + [319970] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14723), 1, + ACTIONS(15027), 1, sym_simple_heredoc_body, - STATE(6830), 1, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + STATE(7110), 1, sym_heredoc_body, - STATE(5059), 2, + STATE(5757), 2, sym__heredoc_body, sym__simple_heredoc_body, - [314492] = 5, - ACTIONS(71), 1, + [319987] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14760), 1, + ACTIONS(15138), 1, sym_simple_heredoc_body, - STATE(7361), 1, + STATE(7668), 1, sym_heredoc_body, - STATE(4885), 2, + STATE(5105), 2, sym__heredoc_body, sym__simple_heredoc_body, - [314509] = 6, - ACTIONS(71), 1, + [320004] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14760), 1, + ACTIONS(15138), 1, sym_simple_heredoc_body, - STATE(4889), 1, + STATE(5109), 1, sym__heredoc_body, - STATE(4892), 1, + STATE(5113), 1, sym__simple_heredoc_body, - STATE(7361), 1, + STATE(7668), 1, sym_heredoc_body, - [314528] = 6, - ACTIONS(71), 1, + [320023] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15106), 1, + anon_sym_RBRACE3, + STATE(6439), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8799), 3, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + [320038] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14760), 1, + ACTIONS(15138), 1, sym_simple_heredoc_body, - STATE(4895), 1, + STATE(5115), 1, sym__heredoc_body, - STATE(4918), 1, + STATE(5124), 1, sym__simple_heredoc_body, - STATE(7361), 1, + STATE(7668), 1, sym_heredoc_body, - [314547] = 5, - ACTIONS(71), 1, + [320057] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14760), 1, + ACTIONS(15138), 1, sym_simple_heredoc_body, - STATE(7361), 1, + STATE(7668), 1, sym_heredoc_body, - STATE(4925), 2, + STATE(5125), 2, sym__heredoc_body, sym__simple_heredoc_body, - [314564] = 5, - ACTIONS(71), 1, + [320074] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14760), 1, + ACTIONS(15052), 1, sym_simple_heredoc_body, - STATE(7361), 1, - sym_heredoc_body, - STATE(4931), 2, + STATE(5668), 1, sym__heredoc_body, + STATE(5669), 1, sym__simple_heredoc_body, - [314581] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14821), 1, - anon_sym_in, - ACTIONS(14825), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14823), 3, - anon_sym_SEMI, - anon_sym_AMP, - anon_sym_SEMI_SEMI, - [314596] = 5, - ACTIONS(71), 1, + STATE(7119), 1, + sym_heredoc_body, + [320093] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14721), 1, + ACTIONS(15138), 1, sym_simple_heredoc_body, - STATE(7484), 1, + STATE(5127), 1, + sym__heredoc_body, + STATE(5128), 1, + sym__simple_heredoc_body, + STATE(7668), 1, sym_heredoc_body, - STATE(5624), 2, + [320112] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + ACTIONS(15138), 1, + sym_simple_heredoc_body, + STATE(5129), 1, sym__heredoc_body, + STATE(5137), 1, sym__simple_heredoc_body, - [314613] = 6, - ACTIONS(71), 1, + STATE(7668), 1, + sym_heredoc_body, + [320131] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, + ACTIONS(15027), 1, + sym_simple_heredoc_body, + ACTIONS(15029), 1, sym__heredoc_body_beginning, - ACTIONS(14760), 1, + STATE(5729), 1, + sym__heredoc_body, + STATE(5746), 1, + sym__simple_heredoc_body, + STATE(7110), 1, + sym_heredoc_body, + [320150] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15027), 1, sym_simple_heredoc_body, - STATE(4957), 1, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + STATE(5716), 1, sym__heredoc_body, - STATE(4960), 1, + STATE(5724), 1, sym__simple_heredoc_body, - STATE(7361), 1, + STATE(7110), 1, sym_heredoc_body, - [314632] = 3, - ACTIONS(71), 1, + [320169] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14827), 1, + ACTIONS(15140), 1, sym__concat, - ACTIONS(6857), 4, + ACTIONS(7017), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [314645] = 6, - ACTIONS(71), 1, + [320182] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14710), 1, - sym__heredoc_body_beginning, - ACTIONS(14721), 1, + ACTIONS(15027), 1, sym_simple_heredoc_body, - STATE(5641), 1, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + STATE(7110), 1, + sym_heredoc_body, + STATE(5727), 2, sym__heredoc_body, - STATE(5645), 1, sym__simple_heredoc_body, - STATE(7484), 1, - sym_heredoc_body, - [314664] = 2, - ACTIONS(71), 1, + [320199] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1350), 4, + ACTIONS(15142), 1, sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(7026), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [314674] = 5, - ACTIONS(71), 1, + [320212] = 6, + ACTIONS(73), 1, sym_comment, - ACTIONS(14829), 1, - anon_sym_esac, - ACTIONS(14831), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14833), 1, - anon_sym_SEMI_AMP, - ACTIONS(14835), 1, - anon_sym_SEMI_SEMI_AMP, - [314690] = 2, - ACTIONS(71), 1, + ACTIONS(15027), 1, + sym_simple_heredoc_body, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + STATE(5702), 1, + sym__simple_heredoc_body, + STATE(5744), 1, + sym__heredoc_body, + STATE(7110), 1, + sym_heredoc_body, + [320231] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1298), 4, - sym__concat, + ACTIONS(15029), 1, + sym__heredoc_body_beginning, + ACTIONS(15031), 1, + sym_simple_heredoc_body, + STATE(7234), 1, + sym_heredoc_body, + STATE(4972), 2, + sym__heredoc_body, + sym__simple_heredoc_body, + [320248] = 6, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14775), 1, anon_sym_PIPE, + ACTIONS(14921), 1, anon_sym_RPAREN, - aux_sym_concatenation_token1, - [314700] = 2, - ACTIONS(71), 1, + ACTIONS(15048), 1, + sym__special_character, + STATE(6576), 1, + aux_sym__literal_repeat1, + STATE(6690), 1, + aux_sym_case_item_repeat1, + [320267] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(1370), 5, sym__concat, + sym__expansion_word, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [314710] = 2, - ACTIONS(71), 1, + [320278] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(15144), 1, + anon_sym_RBRACE3, + STATE(6439), 1, + aux_sym__expansion_body_repeat1, + ACTIONS(8799), 3, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [314720] = 4, - ACTIONS(71), 1, + [320293] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14837), 1, + ACTIONS(706), 1, + anon_sym_LBRACE, + ACTIONS(15110), 1, + anon_sym_do, + STATE(5097), 1, + sym_compound_statement, + STATE(5167), 1, + sym_do_group, + [320309] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15146), 1, anon_sym_RBRACE3, - STATE(6420), 1, + STATE(6479), 1, aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14460), 2, + ACTIONS(14791), 2, sym__concat, aux_sym_concatenation_token1, - [314734] = 4, - ACTIONS(71), 1, + [320323] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14839), 1, - sym__special_character, - STATE(6486), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 2, + ACTIONS(1378), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [320333] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6131), 4, + sym__concat, anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - [314748] = 2, - ACTIONS(71), 1, + [320343] = 2, + ACTIONS(73), 1, sym_comment, ACTIONS(1354), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, aux_sym_concatenation_token1, - [314758] = 5, - ACTIONS(71), 1, + anon_sym_RBRACE3, + [320353] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14842), 1, - anon_sym_esac, - ACTIONS(14844), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14846), 1, - anon_sym_SEMI_AMP, - ACTIONS(14848), 1, - anon_sym_SEMI_SEMI_AMP, - [314774] = 2, - ACTIONS(71), 1, + ACTIONS(7908), 1, + sym__special_character, + ACTIONS(15098), 1, + anon_sym_SLASH, + ACTIONS(15100), 1, + anon_sym_RBRACE3, + STATE(6612), 1, + aux_sym__literal_repeat1, + [320369] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1314), 4, + ACTIONS(1350), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314784] = 2, - ACTIONS(71), 1, + [320379] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(1370), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, aux_sym_concatenation_token1, - [314794] = 2, - ACTIONS(71), 1, + anon_sym_RBRACE3, + [320389] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1346), 4, + ACTIONS(1358), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314804] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(7052), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [314814] = 2, - ACTIONS(71), 1, + [320399] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(5890), 4, + ACTIONS(1338), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [314824] = 5, - ACTIONS(71), 1, + [320409] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(7788), 1, - sym__special_character, - ACTIONS(14746), 1, - anon_sym_SLASH, - ACTIONS(14748), 1, - anon_sym_RBRACE3, - STATE(6486), 1, - aux_sym__literal_repeat1, - [314840] = 2, - ACTIONS(71), 1, + ACTIONS(1390), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [320419] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14850), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [314850] = 5, - ACTIONS(71), 1, + ACTIONS(1366), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [320429] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(7788), 1, - sym__special_character, - ACTIONS(14750), 1, - anon_sym_SLASH, - ACTIONS(14752), 1, - anon_sym_RBRACE3, - STATE(6486), 1, - aux_sym__literal_repeat1, - [314866] = 5, - ACTIONS(71), 1, + ACTIONS(1354), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [320439] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(14852), 1, + ACTIONS(15150), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(15148), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [320451] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15152), 1, anon_sym_esac, - ACTIONS(14854), 1, + ACTIONS(15154), 1, anon_sym_SEMI_SEMI, - ACTIONS(14856), 1, + ACTIONS(15156), 1, anon_sym_SEMI_AMP, - ACTIONS(14858), 1, + ACTIONS(15158), 1, anon_sym_SEMI_SEMI_AMP, - [314882] = 2, - ACTIONS(71), 1, + [320467] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1338), 4, + ACTIONS(1382), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, aux_sym_concatenation_token1, - [314892] = 5, - ACTIONS(71), 1, + anon_sym_RBRACE3, + [320477] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(7788), 1, + ACTIONS(7908), 1, sym__special_character, - ACTIONS(14787), 1, + ACTIONS(15124), 1, anon_sym_SLASH, - ACTIONS(14789), 1, + ACTIONS(15126), 1, anon_sym_RBRACE3, - STATE(6486), 1, + STATE(6612), 1, aux_sym__literal_repeat1, - [314908] = 2, - ACTIONS(71), 1, + [320493] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(1330), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314918] = 2, - ACTIONS(71), 1, + [320503] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1342), 4, + ACTIONS(443), 1, + anon_sym_LBRACE, + ACTIONS(15089), 1, + anon_sym_do, + STATE(5028), 1, + sym_do_group, + STATE(5081), 1, + sym_compound_statement, + [320519] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1370), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314928] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14860), 1, - anon_sym_esac, - ACTIONS(14862), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14864), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [314942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14868), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14866), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [314954] = 2, - ACTIONS(71), 1, + [320529] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1294), 4, + ACTIONS(1374), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314964] = 2, - ACTIONS(71), 1, + [320539] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1306), 4, + ACTIONS(1378), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314974] = 2, - ACTIONS(71), 1, + [320549] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15073), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [320559] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1278), 4, + ACTIONS(1386), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [314984] = 2, - ACTIONS(71), 1, + [320569] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1370), 4, sym__concat, - anon_sym_SLASH, + anon_sym_PIPE, + anon_sym_RPAREN, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [314994] = 5, - ACTIONS(29), 1, - anon_sym_LBRACE, - ACTIONS(71), 1, + [320579] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14793), 1, - anon_sym_do, - STATE(4870), 1, - sym_do_group, - STATE(4981), 1, - sym_compound_statement, - [315010] = 2, - ACTIONS(71), 1, + ACTIONS(15160), 1, + anon_sym_esac, + ACTIONS(15162), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15164), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [320593] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6835), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, - anon_sym_RBRACE3, - [315020] = 2, - ACTIONS(71), 1, + ACTIONS(15048), 1, + sym__special_character, + STATE(6576), 1, + aux_sym__literal_repeat1, + ACTIONS(15134), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [320607] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14762), 4, + ACTIONS(1334), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [315030] = 5, - ACTIONS(71), 1, + [320617] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15166), 1, + anon_sym_esac, + ACTIONS(15168), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15170), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [320631] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14870), 1, + ACTIONS(15172), 1, anon_sym_esac, - ACTIONS(14872), 1, + ACTIONS(15174), 1, anon_sym_SEMI_SEMI, - ACTIONS(14874), 1, + ACTIONS(15176), 2, anon_sym_SEMI_AMP, - ACTIONS(14876), 1, anon_sym_SEMI_SEMI_AMP, - [315046] = 2, - ACTIONS(71), 1, + [320645] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1310), 4, + ACTIONS(1322), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [315056] = 2, - ACTIONS(71), 1, + [320655] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(7071), 4, - sym__external_expansion_sym_hash, - sym__external_expansion_sym_bang, - sym__external_expansion_sym_equal, + ACTIONS(15180), 1, + aux_sym_heredoc_redirect_token1, + ACTIONS(15178), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_AMP, + [320667] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15182), 1, + sym__special_character, + STATE(6576), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [320681] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15185), 1, + anon_sym_esac, + ACTIONS(15187), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15189), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [320695] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(169), 1, + anon_sym_LBRACE, + ACTIONS(15104), 1, + anon_sym_do, + STATE(5711), 1, + sym_do_group, + STATE(5713), 1, + sym_compound_statement, + [320711] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1326), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, anon_sym_RBRACE3, - [315066] = 5, - ACTIONS(71), 1, + [320721] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14829), 1, + ACTIONS(15152), 1, anon_sym_esac, - ACTIONS(14878), 1, + ACTIONS(15191), 1, anon_sym_SEMI_SEMI, - ACTIONS(14880), 1, + ACTIONS(15193), 1, anon_sym_SEMI_AMP, - ACTIONS(14882), 1, + ACTIONS(15195), 1, anon_sym_SEMI_SEMI_AMP, - [315082] = 5, - ACTIONS(71), 1, + [320737] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14852), 1, + ACTIONS(15197), 1, anon_sym_esac, - ACTIONS(14884), 1, + ACTIONS(15199), 1, anon_sym_SEMI_SEMI, - ACTIONS(14886), 1, + ACTIONS(15201), 1, anon_sym_SEMI_AMP, - ACTIONS(14888), 1, + ACTIONS(15203), 1, anon_sym_SEMI_SEMI_AMP, - [315098] = 2, - ACTIONS(71), 1, + [320753] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(6817), 4, + ACTIONS(7381), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [315108] = 2, - ACTIONS(71), 1, + [320763] = 2, + ACTIONS(73), 1, sym_comment, ACTIONS(1334), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [315118] = 2, - ACTIONS(71), 1, + [320773] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(15205), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [315128] = 2, - ACTIONS(71), 1, + [320783] = 5, + ACTIONS(29), 1, + anon_sym_LBRACE, + ACTIONS(73), 1, sym_comment, - ACTIONS(1346), 4, + ACTIONS(15080), 1, + anon_sym_do, + STATE(4944), 1, + sym_do_group, + STATE(4945), 1, + sym_compound_statement, + [320799] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15207), 1, + anon_sym_esac, + ACTIONS(15209), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15211), 1, + anon_sym_SEMI_AMP, + ACTIONS(15213), 1, + anon_sym_SEMI_SEMI_AMP, + [320815] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(6135), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [315138] = 2, - ACTIONS(71), 1, + [320825] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 4, - sym__concat, + ACTIONS(15215), 1, + anon_sym_esac, + ACTIONS(15217), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15219), 1, + anon_sym_SEMI_AMP, + ACTIONS(15221), 1, + anon_sym_SEMI_SEMI_AMP, + [320841] = 5, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7908), 1, + sym__special_character, + ACTIONS(15061), 1, anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(15063), 1, anon_sym_RBRACE3, - [315148] = 3, + STATE(6612), 1, + aux_sym__literal_repeat1, + [320857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(14892), 1, + ACTIONS(15059), 1, aux_sym_heredoc_redirect_token1, - ACTIONS(14890), 3, + ACTIONS(15054), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_AMP, - [315160] = 5, - ACTIONS(71), 1, + [320869] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14870), 1, + ACTIONS(15197), 1, anon_sym_esac, - ACTIONS(14894), 1, + ACTIONS(15223), 1, anon_sym_SEMI_SEMI, - ACTIONS(14896), 1, + ACTIONS(15225), 1, anon_sym_SEMI_AMP, - ACTIONS(14898), 1, + ACTIONS(15227), 1, anon_sym_SEMI_SEMI_AMP, - [315176] = 5, - ACTIONS(71), 1, + [320885] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(689), 1, - anon_sym_LBRACE, - ACTIONS(14785), 1, - anon_sym_do, - STATE(5064), 1, - sym_compound_statement, - STATE(5097), 1, - sym_do_group, - [315192] = 4, - ACTIONS(71), 1, + ACTIONS(1338), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [320895] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14712), 1, - sym__special_character, - STATE(6528), 1, - aux_sym__literal_repeat1, - ACTIONS(14805), 2, + ACTIONS(1326), 4, + sym__concat, anon_sym_PIPE, anon_sym_RPAREN, - [315206] = 2, - ACTIONS(71), 1, + aux_sym_concatenation_token1, + [320905] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1318), 4, + ACTIONS(1362), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [315216] = 5, - ACTIONS(71), 1, + [320915] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14842), 1, + ACTIONS(15207), 1, anon_sym_esac, - ACTIONS(14900), 1, + ACTIONS(15229), 1, anon_sym_SEMI_SEMI, - ACTIONS(14902), 1, + ACTIONS(15231), 1, anon_sym_SEMI_AMP, - ACTIONS(14904), 1, + ACTIONS(15233), 1, anon_sym_SEMI_SEMI_AMP, - [315232] = 4, - ACTIONS(71), 1, + [320931] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1346), 4, + sym__concat, + anon_sym_PIPE, + anon_sym_RPAREN, + aux_sym_concatenation_token1, + [320941] = 5, + ACTIONS(73), 1, sym_comment, - ACTIONS(14906), 1, + ACTIONS(15215), 1, anon_sym_esac, - ACTIONS(14908), 1, + ACTIONS(15235), 1, anon_sym_SEMI_SEMI, - ACTIONS(14910), 2, + ACTIONS(15237), 1, anon_sym_SEMI_AMP, + ACTIONS(15239), 1, anon_sym_SEMI_SEMI_AMP, - [315246] = 4, - ACTIONS(71), 1, + [320957] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14912), 1, - sym__special_character, - STATE(6528), 1, - aux_sym__literal_repeat1, - ACTIONS(1362), 2, + ACTIONS(1342), 4, + sym__concat, anon_sym_PIPE, anon_sym_RPAREN, - [315260] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(5873), 4, - sym__concat, - anon_sym_SLASH, aux_sym_concatenation_token1, - anon_sym_RBRACE3, - [315270] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(431), 1, - anon_sym_LBRACE, - ACTIONS(14797), 1, - anon_sym_do, - STATE(4942), 1, - sym_do_group, - STATE(4943), 1, - sym_compound_statement, - [315286] = 2, - ACTIONS(71), 1, + [320967] = 2, + ACTIONS(73), 1, sym_comment, ACTIONS(1342), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [315296] = 2, - ACTIONS(71), 1, + [320977] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1294), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(1370), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [315306] = 2, - ACTIONS(71), 1, + [320987] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1334), 4, + ACTIONS(1322), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [315316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(14744), 1, - aux_sym_heredoc_redirect_token1, - ACTIONS(14739), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_AMP, - [315328] = 2, - ACTIONS(71), 1, + [320997] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1310), 4, - sym__concat, - anon_sym_SLASH, - aux_sym_concatenation_token1, + ACTIONS(1386), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [315338] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1302), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [315348] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14915), 1, - anon_sym_esac, - ACTIONS(14917), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14919), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [315362] = 2, - ACTIONS(71), 1, + [321007] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1354), 4, + ACTIONS(1370), 4, sym__concat, anon_sym_SLASH, aux_sym_concatenation_token1, anon_sym_RBRACE3, - [315372] = 2, - ACTIONS(71), 1, + [321017] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 4, + ACTIONS(1370), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [315382] = 2, - ACTIONS(71), 1, + [321027] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1330), 4, + ACTIONS(1306), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [315392] = 4, - ACTIONS(71), 1, + [321037] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14921), 1, - anon_sym_esac, - ACTIONS(14923), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14925), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [315406] = 2, - ACTIONS(71), 1, + ACTIONS(1386), 4, + sym__concat, + anon_sym_SLASH, + aux_sym_concatenation_token1, + anon_sym_RBRACE3, + [321047] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1326), 4, + ACTIONS(1382), 4, sym__concat, anon_sym_PIPE, anon_sym_RPAREN, aux_sym_concatenation_token1, - [315416] = 2, - ACTIONS(71), 1, + [321057] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1346), 4, + ACTIONS(7001), 4, sym__external_expansion_sym_hash, sym__external_expansion_sym_bang, sym__external_expansion_sym_equal, anon_sym_RBRACE3, - [315426] = 5, - ACTIONS(71), 1, - sym_comment, - ACTIONS(165), 1, - anon_sym_LBRACE, - ACTIONS(14803), 1, - anon_sym_do, - STATE(5637), 1, - sym_do_group, - STATE(5647), 1, - sym_compound_statement, - [315442] = 2, - ACTIONS(71), 1, + [321067] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1350), 4, - sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, - aux_sym_concatenation_token1, - [315452] = 2, - ACTIONS(71), 1, + ACTIONS(7377), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [321077] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1322), 4, + ACTIONS(1362), 4, sym__concat, - anon_sym_PIPE, - anon_sym_RPAREN, + anon_sym_SLASH, aux_sym_concatenation_token1, - [315462] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(14927), 1, - anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [315475] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(14929), 1, - anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [315488] = 4, - ACTIONS(71), 1, + anon_sym_RBRACE3, + [321087] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14880), 1, - anon_sym_SEMI_AMP, - ACTIONS(14882), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(14931), 1, - anon_sym_SEMI_SEMI, - [315501] = 4, - ACTIONS(71), 1, + ACTIONS(6993), 4, + sym__external_expansion_sym_hash, + sym__external_expansion_sym_bang, + sym__external_expansion_sym_equal, + anon_sym_RBRACE3, + [321097] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, - anon_sym_PIPE, - ACTIONS(14624), 1, - anon_sym_RPAREN, - STATE(6582), 1, - aux_sym_case_item_repeat1, - [315514] = 4, - ACTIONS(71), 1, + ACTIONS(15241), 1, + sym__special_character, + STATE(6612), 1, + aux_sym__literal_repeat1, + ACTIONS(1396), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [321111] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14744), 1, + ACTIONS(15244), 1, anon_sym_RPAREN_RPAREN, - ACTIONS(14933), 1, + ACTIONS(15246), 1, anon_sym_COMMA, - STATE(6551), 1, + STATE(6766), 1, aux_sym__for_body_repeat1, - [315527] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14833), 1, - anon_sym_SEMI_AMP, - ACTIONS(14835), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(14936), 1, - anon_sym_SEMI_SEMI, - [315540] = 4, - ACTIONS(71), 1, + [321124] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(15246), 1, anon_sym_COMMA, - ACTIONS(14938), 1, + ACTIONS(15248), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [315553] = 4, - ACTIONS(71), 1, + STATE(6738), 1, + aux_sym__for_body_repeat1, + [321137] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14846), 1, - anon_sym_SEMI_AMP, - ACTIONS(14848), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(14940), 1, - anon_sym_SEMI_SEMI, - [315566] = 4, - ACTIONS(71), 1, + ACTIONS(1326), 3, + sym__regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [321146] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14942), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(14944), 1, - anon_sym_COMMA, - STATE(6551), 1, - aux_sym__for_body_repeat1, - [315579] = 4, - ACTIONS(71), 1, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15250), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [321157] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(12666), 1, anon_sym_PIPE, - ACTIONS(14946), 1, - anon_sym_RPAREN, - STATE(6717), 1, - aux_sym_case_item_repeat1, - [315592] = 4, - ACTIONS(71), 1, + ACTIONS(15254), 1, + anon_sym_PIPE_AMP, + STATE(5140), 1, + aux_sym_pipeline_repeat1, + [321170] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(14948), 1, + ACTIONS(15256), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [315605] = 4, - ACTIONS(71), 1, + [321183] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(14950), 1, - anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [315618] = 4, - ACTIONS(71), 1, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15258), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [321194] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(15260), 1, anon_sym_COMMA, - ACTIONS(14952), 1, - anon_sym_RPAREN_RPAREN, - STATE(6677), 1, + ACTIONS(15262), 1, + anon_sym_RPAREN, + STATE(6714), 1, aux_sym__for_body_repeat1, - [315631] = 4, - ACTIONS(71), 1, + [321207] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(14954), 1, + ACTIONS(15264), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [315644] = 4, - ACTIONS(71), 1, + [321220] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, - anon_sym_COMMA, - ACTIONS(14956), 1, - anon_sym_RPAREN_RPAREN, - STATE(6551), 1, - aux_sym__for_body_repeat1, - [315657] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14528), 1, + ACTIONS(12432), 1, anon_sym_PIPE, - ACTIONS(14958), 1, + ACTIONS(15266), 1, + anon_sym_PIPE_AMP, + STATE(4931), 1, + aux_sym_pipeline_repeat1, + [321233] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15260), 1, + anon_sym_COMMA, + ACTIONS(15268), 1, anon_sym_RPAREN, - STATE(6717), 1, - aux_sym_case_item_repeat1, - [315670] = 3, - ACTIONS(71), 1, + STATE(6620), 1, + aux_sym__for_body_repeat1, + [321246] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14960), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14910), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [315681] = 4, - ACTIONS(71), 1, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15270), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [321257] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(14962), 1, + ACTIONS(14985), 1, anon_sym_RPAREN, - STATE(6717), 1, + STATE(6761), 1, aux_sym_case_item_repeat1, - [315694] = 4, - ACTIONS(71), 1, + [321270] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(14964), 1, + ACTIONS(15272), 1, anon_sym_RPAREN, - STATE(6717), 1, + STATE(6740), 1, aux_sym_case_item_repeat1, - [315707] = 4, - ACTIONS(71), 1, + [321283] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(14966), 1, + ACTIONS(15274), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [315720] = 4, - ACTIONS(71), 1, + [321296] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14968), 1, - anon_sym_COMMA, - ACTIONS(14970), 1, - anon_sym_RPAREN, - STATE(6581), 1, - aux_sym__for_body_repeat1, - [315733] = 4, - ACTIONS(71), 1, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15276), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [321307] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(14972), 1, + ACTIONS(15278), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [315746] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14896), 1, - anon_sym_SEMI_AMP, - ACTIONS(14898), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(14974), 1, - anon_sym_SEMI_SEMI, - [315759] = 3, - ACTIONS(71), 1, + [321320] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(14976), 2, + ACTIONS(15280), 1, + sym__concat, + ACTIONS(7017), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [315770] = 4, - ACTIONS(71), 1, + [321331] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(14980), 1, + ACTIONS(15282), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [315783] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14886), 1, - anon_sym_SEMI_AMP, - ACTIONS(14888), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(14982), 1, - anon_sym_SEMI_SEMI, - [315796] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14528), 1, - anon_sym_PIPE, - ACTIONS(14984), 1, - anon_sym_RPAREN, - STATE(6717), 1, - aux_sym_case_item_repeat1, - [315809] = 4, - ACTIONS(71), 1, + [321344] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14856), 1, - anon_sym_SEMI_AMP, - ACTIONS(14858), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(14986), 1, - anon_sym_SEMI_SEMI, - [315822] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14528), 1, - anon_sym_PIPE, - ACTIONS(14988), 1, - anon_sym_RPAREN, - STATE(6717), 1, - aux_sym_case_item_repeat1, - [315835] = 4, - ACTIONS(71), 1, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15284), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [321355] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14874), 1, - anon_sym_SEMI_AMP, - ACTIONS(14876), 1, - anon_sym_SEMI_SEMI_AMP, - ACTIONS(14990), 1, - anon_sym_SEMI_SEMI, - [315848] = 4, - ACTIONS(71), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(15286), 1, + anon_sym_RPAREN_RPAREN, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [321368] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(14992), 1, + ACTIONS(15288), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [315861] = 4, - ACTIONS(71), 1, + [321381] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(14994), 1, + ACTIONS(15290), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [315874] = 4, - ACTIONS(71), 1, + [321394] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(14996), 1, + ACTIONS(15292), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [315887] = 3, - ACTIONS(71), 1, + [321407] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1338), 3, + sym__regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [321416] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, + ACTIONS(15252), 1, anon_sym_LBRACK, - ACTIONS(14998), 2, + ACTIONS(15294), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [315898] = 4, - ACTIONS(71), 1, + [321427] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14968), 1, + ACTIONS(15246), 1, anon_sym_COMMA, - ACTIONS(15000), 1, - anon_sym_RPAREN, - STATE(6617), 1, + ACTIONS(15296), 1, + anon_sym_RPAREN_RPAREN, + STATE(6738), 1, aux_sym__for_body_repeat1, - [315911] = 4, - ACTIONS(71), 1, + [321440] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7629), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(15298), 1, + anon_sym_COMMA, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [321453] = 3, + ACTIONS(73), 1, + sym_comment, + STATE(6479), 1, + aux_sym__concatenation_in_expansion_repeat1, + ACTIONS(14791), 2, + sym__concat, + aux_sym_concatenation_token1, + [321464] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15201), 1, + anon_sym_SEMI_AMP, + ACTIONS(15203), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15301), 1, + anon_sym_SEMI_SEMI, + [321477] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(15002), 1, + ACTIONS(15303), 1, anon_sym_RPAREN, - STATE(6717), 1, + STATE(6740), 1, aux_sym_case_item_repeat1, - [315924] = 4, - ACTIONS(71), 1, + [321490] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15305), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [321501] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15004), 1, + ACTIONS(15307), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [315937] = 4, - ACTIONS(71), 1, + [321514] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15006), 1, + ACTIONS(15309), 1, anon_sym_RPAREN_RPAREN, - STATE(6688), 1, - aux_sym__for_body_repeat1, - [315950] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14528), 1, - anon_sym_PIPE, - ACTIONS(15008), 1, - anon_sym_RPAREN, - STATE(6717), 1, - aux_sym_case_item_repeat1, - [315963] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1358), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [315972] = 4, - ACTIONS(71), 1, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [321527] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15010), 1, + ACTIONS(15311), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [315985] = 4, - ACTIONS(71), 1, + [321540] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(12286), 1, - anon_sym_PIPE, - ACTIONS(15012), 1, - anon_sym_PIPE_AMP, - STATE(4995), 1, - aux_sym_pipeline_repeat1, - [315998] = 3, - ACTIONS(71), 1, + ACTIONS(15156), 1, + anon_sym_SEMI_AMP, + ACTIONS(15158), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15313), 1, + anon_sym_SEMI_SEMI, + [321553] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, + ACTIONS(15252), 1, anon_sym_LBRACK, - ACTIONS(15014), 2, + ACTIONS(15315), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316009] = 4, - ACTIONS(71), 1, + [321564] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15016), 1, + ACTIONS(15317), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316022] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15018), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316033] = 4, - ACTIONS(71), 1, + [321577] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15020), 1, + ACTIONS(15319), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316046] = 4, - ACTIONS(71), 1, + [321590] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15321), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15189), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [321601] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15022), 1, + ACTIONS(15323), 1, anon_sym_RPAREN_RPAREN, - STATE(6551), 1, - aux_sym__for_body_repeat1, - [316059] = 4, - ACTIONS(71), 1, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [321614] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(15246), 1, anon_sym_COMMA, - ACTIONS(15024), 1, + ACTIONS(15325), 1, anon_sym_RPAREN_RPAREN, - STATE(6689), 1, + STATE(6661), 1, aux_sym__for_body_repeat1, - [316072] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15026), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316083] = 3, - ACTIONS(71), 1, + [321627] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(15028), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14919), 2, + ACTIONS(15211), 1, anon_sym_SEMI_AMP, + ACTIONS(15213), 1, anon_sym_SEMI_SEMI_AMP, - [316094] = 3, - ACTIONS(71), 1, + ACTIONS(15327), 1, + anon_sym_SEMI_SEMI, + [321640] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15246), 1, + anon_sym_COMMA, + ACTIONS(15329), 1, + anon_sym_RPAREN_RPAREN, + STATE(6738), 1, + aux_sym__for_body_repeat1, + [321653] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, + ACTIONS(15252), 1, anon_sym_LBRACK, - ACTIONS(15030), 2, + ACTIONS(15331), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316105] = 4, - ACTIONS(71), 1, + [321664] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(15246), 1, anon_sym_COMMA, - ACTIONS(15032), 1, + ACTIONS(15333), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [316118] = 4, - ACTIONS(71), 1, + STATE(6741), 1, + aux_sym__for_body_repeat1, + [321677] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(15246), 1, anon_sym_COMMA, - ACTIONS(15034), 1, + ACTIONS(15335), 1, anon_sym_RPAREN_RPAREN, - STATE(6561), 1, + STATE(6738), 1, aux_sym__for_body_repeat1, - [316131] = 3, - ACTIONS(71), 1, + [321690] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15036), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316142] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15038), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316153] = 3, - ACTIONS(71), 1, + ACTIONS(15246), 1, + anon_sym_COMMA, + ACTIONS(15337), 1, + anon_sym_RPAREN_RPAREN, + STATE(6614), 1, + aux_sym__for_body_repeat1, + [321703] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15040), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316164] = 4, - ACTIONS(71), 1, + ACTIONS(15246), 1, + anon_sym_COMMA, + ACTIONS(15339), 1, + anon_sym_RPAREN_RPAREN, + STATE(6738), 1, + aux_sym__for_body_repeat1, + [321716] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15042), 1, + ACTIONS(15341), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316177] = 3, - ACTIONS(71), 1, + [321729] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15044), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316188] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15046), 1, + ACTIONS(15343), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316201] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15048), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316212] = 3, - ACTIONS(71), 1, + [321742] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15050), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316223] = 3, - ACTIONS(71), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(15345), 1, + anon_sym_RPAREN_RPAREN, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [321755] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15052), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316234] = 4, - ACTIONS(71), 1, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(15347), 1, + anon_sym_RPAREN, + STATE(6740), 1, + aux_sym_case_item_repeat1, + [321768] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15054), 1, + ACTIONS(15349), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316247] = 3, - ACTIONS(71), 1, + [321781] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15056), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316258] = 3, - ACTIONS(71), 1, + ACTIONS(13326), 1, + anon_sym_PIPE, + ACTIONS(13328), 1, + anon_sym_PIPE_AMP, + STATE(5643), 1, + aux_sym_pipeline_repeat1, + [321794] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, + ACTIONS(15252), 1, anon_sym_LBRACK, - ACTIONS(15058), 2, + ACTIONS(15351), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316269] = 3, - ACTIONS(71), 1, + [321805] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15060), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316280] = 4, - ACTIONS(71), 1, + ACTIONS(1326), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [321814] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15062), 1, + ACTIONS(15353), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316293] = 4, - ACTIONS(71), 1, + [321827] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(15064), 1, - anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [316306] = 4, - ACTIONS(71), 1, + ACTIONS(1334), 3, + sym__regex_no_slash, + anon_sym_SLASH, + anon_sym_RBRACE3, + [321836] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15066), 1, + ACTIONS(15355), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316319] = 3, - ACTIONS(71), 1, + [321849] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, + ACTIONS(15252), 1, anon_sym_LBRACK, - ACTIONS(15068), 2, + ACTIONS(15357), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316330] = 4, - ACTIONS(71), 1, + [321860] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14744), 1, + ACTIONS(1378), 3, + sym_extglob_pattern, + anon_sym_PIPE, anon_sym_RPAREN, - ACTIONS(15070), 1, - anon_sym_COMMA, - STATE(6617), 1, - aux_sym__for_body_repeat1, - [316343] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15073), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316354] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15075), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316365] = 4, - ACTIONS(71), 1, + [321869] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15077), 1, + ACTIONS(15359), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316378] = 2, - ACTIONS(71), 1, + [321882] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1274), 3, + ACTIONS(12227), 1, anon_sym_PIPE, - anon_sym_RPAREN, - sym__special_character, - [316387] = 4, - ACTIONS(71), 1, + ACTIONS(15361), 1, + anon_sym_PIPE_AMP, + STATE(4735), 1, + aux_sym_pipeline_repeat1, + [321895] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(15260), 1, anon_sym_COMMA, - ACTIONS(15079), 1, - anon_sym_RPAREN_RPAREN, - STATE(6593), 1, + ACTIONS(15363), 1, + anon_sym_RPAREN, + STATE(6729), 1, aux_sym__for_body_repeat1, - [316400] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15081), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316411] = 4, - ACTIONS(71), 1, + [321908] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(1302), 3, anon_sym_PIPE, - ACTIONS(15083), 1, anon_sym_RPAREN, - STATE(6717), 1, - aux_sym_case_item_repeat1, - [316424] = 3, - ACTIONS(71), 1, + sym__special_character, + [321917] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(15085), 1, - sym__concat, - ACTIONS(6835), 2, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(15365), 1, + anon_sym_RPAREN_RPAREN, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [321930] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15367), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316435] = 4, - ACTIONS(71), 1, + [321941] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(15260), 1, anon_sym_COMMA, - ACTIONS(15087), 1, - anon_sym_RPAREN_RPAREN, - STATE(6551), 1, + ACTIONS(15369), 1, + anon_sym_RPAREN, + STATE(6683), 1, aux_sym__for_body_repeat1, - [316448] = 4, - ACTIONS(71), 1, + [321954] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15089), 1, + ACTIONS(15371), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316461] = 4, - ACTIONS(71), 1, + [321967] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(15260), 1, anon_sym_COMMA, - ACTIONS(15091), 1, + ACTIONS(15373), 1, + anon_sym_RPAREN, + STATE(6714), 1, + aux_sym__for_body_repeat1, + [321980] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(15375), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316474] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1346), 3, - sym_extglob_pattern, - anon_sym_PIPE, - anon_sym_RPAREN, - [316483] = 2, - ACTIONS(71), 1, + [321993] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1358), 3, + ACTIONS(1338), 3, sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - [316492] = 4, - ACTIONS(71), 1, + [322002] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(1382), 3, + sym_extglob_pattern, anon_sym_PIPE, - ACTIONS(15093), 1, anon_sym_RPAREN, - STATE(6717), 1, - aux_sym_case_item_repeat1, - [316505] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12316), 1, - anon_sym_PIPE, - ACTIONS(15095), 1, - anon_sym_PIPE_AMP, - STATE(5077), 1, - aux_sym_pipeline_repeat1, - [316518] = 4, - ACTIONS(71), 1, + [322011] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15097), 1, + ACTIONS(15377), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316531] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15099), 1, - sym__concat, - ACTIONS(6817), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316542] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14528), 1, - anon_sym_PIPE, - ACTIONS(15101), 1, - anon_sym_RPAREN, - STATE(6717), 1, - aux_sym_case_item_repeat1, - [316555] = 4, - ACTIONS(71), 1, + [322024] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15103), 1, + ACTIONS(15379), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316568] = 4, - ACTIONS(71), 1, + [322037] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15105), 1, + ACTIONS(15381), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316581] = 4, - ACTIONS(71), 1, + [322050] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(14598), 1, + ACTIONS(15383), 1, anon_sym_RPAREN, - STATE(6683), 1, + STATE(6740), 1, aux_sym_case_item_repeat1, - [316594] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14978), 1, - anon_sym_LBRACK, - ACTIONS(15107), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316605] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(15109), 1, - anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [316618] = 4, - ACTIONS(71), 1, + [322063] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15111), 1, + ACTIONS(15385), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316631] = 2, - ACTIONS(71), 1, + [322076] = 2, + ACTIONS(73), 1, sym_comment, ACTIONS(1334), 3, sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - [316640] = 4, - ACTIONS(71), 1, + [322085] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(15246), 1, anon_sym_COMMA, - ACTIONS(15113), 1, + ACTIONS(15387), 1, anon_sym_RPAREN_RPAREN, - STATE(6551), 1, + STATE(6788), 1, aux_sym__for_body_repeat1, - [316653] = 4, - ACTIONS(71), 1, + [322098] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15115), 1, + ACTIONS(15389), 1, anon_sym_RPAREN_RPAREN, - STATE(6551), 1, - aux_sym__for_body_repeat1, - [316666] = 4, - ACTIONS(71), 1, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [322111] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, - anon_sym_COMMA, - ACTIONS(15117), 1, - anon_sym_RPAREN_RPAREN, - STATE(6555), 1, - aux_sym__for_body_repeat1, - [316679] = 4, - ACTIONS(71), 1, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15391), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [322122] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15119), 1, + ACTIONS(15393), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316692] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14968), 1, - anon_sym_COMMA, - ACTIONS(15121), 1, - anon_sym_RPAREN, - STATE(6617), 1, - aux_sym__for_body_repeat1, - [316705] = 4, - ACTIONS(71), 1, + [322135] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(15123), 1, - anon_sym_SLASH, - ACTIONS(15125), 1, - anon_sym_RBRACE3, - ACTIONS(15127), 1, - sym__regex_no_slash, - [316718] = 4, - ACTIONS(71), 1, + ACTIONS(15395), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15176), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [322146] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15129), 1, + ACTIONS(15397), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316731] = 4, - ACTIONS(71), 1, + [322159] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15131), 1, + ACTIONS(15399), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316744] = 4, - ACTIONS(71), 1, + [322172] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(15401), 1, + anon_sym_RPAREN, + STATE(6740), 1, + aux_sym_case_item_repeat1, + [322185] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(15246), 1, anon_sym_COMMA, - ACTIONS(15133), 1, + ACTIONS(15403), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [316757] = 4, - ACTIONS(71), 1, + STATE(6639), 1, + aux_sym__for_body_repeat1, + [322198] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(15135), 1, + ACTIONS(14947), 1, anon_sym_RPAREN, - STATE(6717), 1, + STATE(6716), 1, aux_sym_case_item_repeat1, - [316770] = 2, - ACTIONS(71), 1, + [322211] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1354), 3, + ACTIONS(1370), 3, sym_extglob_pattern, anon_sym_PIPE, anon_sym_RPAREN, - [316779] = 4, - ACTIONS(71), 1, + [322220] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(12342), 1, + ACTIONS(1386), 3, + sym_extglob_pattern, anon_sym_PIPE, - ACTIONS(15137), 1, - anon_sym_PIPE_AMP, - STATE(5096), 1, - aux_sym_pipeline_repeat1, - [316792] = 4, - ACTIONS(71), 1, + anon_sym_RPAREN, + [322229] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1370), 3, + sym_extglob_pattern, + anon_sym_PIPE, + anon_sym_RPAREN, + [322238] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(15405), 1, + anon_sym_RPAREN_RPAREN, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [322251] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15139), 1, + ACTIONS(15407), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316805] = 4, - ACTIONS(71), 1, + [322264] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(15141), 1, + ACTIONS(15409), 1, anon_sym_RPAREN, - STATE(6717), 1, + STATE(6740), 1, aux_sym_case_item_repeat1, - [316818] = 2, - ACTIONS(71), 1, + [322277] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1326), 3, - sym_extglob_pattern, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(15411), 1, + anon_sym_RPAREN, + STATE(6740), 1, + aux_sym_case_item_repeat1, + [322290] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14775), 1, anon_sym_PIPE, + ACTIONS(15413), 1, anon_sym_RPAREN, - [316827] = 3, - ACTIONS(71), 1, + STATE(6740), 1, + aux_sym_case_item_repeat1, + [322303] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(15143), 1, + ACTIONS(15415), 1, sym__concat, - ACTIONS(6857), 2, + ACTIONS(7026), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [316838] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(15145), 1, - anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [316851] = 4, - ACTIONS(71), 1, + [322314] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15147), 1, + ACTIONS(15417), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316864] = 3, - ACTIONS(71), 1, + [322327] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15149), 1, - sym__concat, - ACTIONS(6863), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [316875] = 4, - ACTIONS(71), 1, + ACTIONS(1358), 3, + anon_sym_SLASH, + anon_sym_COLON, + anon_sym_RBRACE3, + [322336] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(7484), 1, - anon_sym_RPAREN_RPAREN, - ACTIONS(15151), 1, + ACTIONS(15059), 1, + anon_sym_RPAREN, + ACTIONS(15419), 1, anon_sym_COMMA, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [316888] = 3, - ACTIONS(71), 1, + STATE(6714), 1, + aux_sym__for_body_repeat1, + [322349] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(15154), 1, + ACTIONS(15422), 1, sym_extglob_pattern, - ACTIONS(6751), 2, + ACTIONS(6944), 2, anon_sym_PIPE, anon_sym_RPAREN, - [316899] = 4, - ACTIONS(71), 1, + [322360] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(15156), 1, - anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [316912] = 4, - ACTIONS(71), 1, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(15424), 1, + anon_sym_RPAREN, + STATE(6740), 1, + aux_sym_case_item_repeat1, + [322373] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15426), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [322384] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15231), 1, + anon_sym_SEMI_AMP, + ACTIONS(15233), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15428), 1, + anon_sym_SEMI_SEMI, + [322397] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15158), 1, + ACTIONS(15430), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316925] = 4, - ACTIONS(71), 1, + [322410] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14968), 1, + ACTIONS(15246), 1, anon_sym_COMMA, - ACTIONS(15160), 1, - anon_sym_RPAREN, - STATE(6647), 1, + ACTIONS(15432), 1, + anon_sym_RPAREN_RPAREN, + STATE(6656), 1, aux_sym__for_body_repeat1, - [316938] = 4, - ACTIONS(71), 1, + [322423] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15162), 1, + ACTIONS(15434), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [316951] = 4, - ACTIONS(71), 1, + [322436] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(12643), 1, anon_sym_PIPE, - ACTIONS(14704), 1, - anon_sym_RPAREN, - STATE(6652), 1, - aux_sym_case_item_repeat1, - [316964] = 4, - ACTIONS(71), 1, + ACTIONS(15436), 1, + anon_sym_PIPE_AMP, + STATE(5120), 1, + aux_sym_pipeline_repeat1, + [322449] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(15246), 1, anon_sym_COMMA, - ACTIONS(15164), 1, + ACTIONS(15438), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [316977] = 4, - ACTIONS(71), 1, + STATE(6659), 1, + aux_sym__for_body_repeat1, + [322462] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(15246), 1, anon_sym_COMMA, - ACTIONS(15166), 1, + ACTIONS(15440), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [316990] = 4, - ACTIONS(71), 1, + STATE(6738), 1, + aux_sym__for_body_repeat1, + [322475] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15168), 1, + ACTIONS(15442), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317003] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1318), 3, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [317012] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1302), 3, - anon_sym_SLASH, - anon_sym_COLON, - anon_sym_RBRACE3, - [317021] = 4, - ACTIONS(71), 1, + [322488] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15170), 1, + ACTIONS(15444), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317034] = 2, - ACTIONS(71), 1, + [322501] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1350), 3, - sym_extglob_pattern, + ACTIONS(15219), 1, + anon_sym_SEMI_AMP, + ACTIONS(15221), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15446), 1, + anon_sym_SEMI_SEMI, + [322514] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(12924), 1, anon_sym_PIPE, + ACTIONS(15448), 1, + anon_sym_PIPE_AMP, + STATE(5268), 1, + aux_sym_pipeline_repeat1, + [322527] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15260), 1, + anon_sym_COMMA, + ACTIONS(15450), 1, anon_sym_RPAREN, - [317043] = 4, - ACTIONS(71), 1, + STATE(6714), 1, + aux_sym__for_body_repeat1, + [322540] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15452), 1, + sym__concat, + ACTIONS(6993), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [322551] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15172), 1, + ACTIONS(15454), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317056] = 4, - ACTIONS(71), 1, + [322564] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15174), 1, + ACTIONS(15456), 1, anon_sym_RPAREN_RPAREN, - STATE(6551), 1, - aux_sym__for_body_repeat1, - [317069] = 4, - ACTIONS(71), 1, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [322577] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15176), 1, + ACTIONS(15458), 1, anon_sym_RPAREN_RPAREN, - STATE(6643), 1, - aux_sym__for_body_repeat1, - [317082] = 4, - ACTIONS(71), 1, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [322590] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15178), 1, + ACTIONS(15460), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317095] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1272), 1, - sym__special_character, - ACTIONS(1274), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [317106] = 4, - ACTIONS(71), 1, + [322603] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15180), 1, + ACTIONS(15462), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317119] = 4, - ACTIONS(71), 1, + [322616] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15464), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [322627] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(15182), 1, + ACTIONS(14821), 1, anon_sym_RPAREN, - STATE(6717), 1, + STATE(6665), 1, aux_sym_case_item_repeat1, - [317132] = 4, - ACTIONS(71), 1, + [322640] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15059), 1, + anon_sym_RPAREN_RPAREN, + ACTIONS(15466), 1, + anon_sym_COMMA, + STATE(6738), 1, + aux_sym__for_body_repeat1, + [322653] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(15184), 1, + ACTIONS(15469), 1, anon_sym_RPAREN, - STATE(6717), 1, + STATE(6740), 1, aux_sym_case_item_repeat1, - [317145] = 4, - ACTIONS(71), 1, + [322666] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(12994), 1, + ACTIONS(15471), 1, anon_sym_PIPE, - ACTIONS(12996), 1, - anon_sym_PIPE_AMP, - STATE(5573), 1, - aux_sym_pipeline_repeat1, - [317158] = 4, - ACTIONS(71), 1, + ACTIONS(15474), 1, + anon_sym_RPAREN, + STATE(6740), 1, + aux_sym_case_item_repeat1, + [322679] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(15246), 1, anon_sym_COMMA, - ACTIONS(15186), 1, + ACTIONS(15476), 1, anon_sym_RPAREN_RPAREN, - STATE(6644), 1, + STATE(6738), 1, aux_sym__for_body_repeat1, - [317171] = 4, - ACTIONS(71), 1, + [322692] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(15188), 1, - anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [317184] = 4, - ACTIONS(71), 1, + ACTIONS(15478), 1, + anon_sym_SLASH, + ACTIONS(15480), 1, + anon_sym_RBRACE3, + ACTIONS(15482), 1, + sym__regex_no_slash, + [322705] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15190), 1, + ACTIONS(15484), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317197] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14944), 1, - anon_sym_COMMA, - ACTIONS(15192), 1, - anon_sym_RPAREN_RPAREN, - STATE(6551), 1, - aux_sym__for_body_repeat1, - [317210] = 4, - ACTIONS(71), 1, + [322718] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, - anon_sym_COMMA, - ACTIONS(15194), 1, - anon_sym_RPAREN_RPAREN, - STATE(6551), 1, - aux_sym__for_body_repeat1, - [317223] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(6897), 1, - anon_sym_COMMA, - ACTIONS(15196), 1, - anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [317236] = 4, - ACTIONS(71), 1, + ACTIONS(15237), 1, + anon_sym_SEMI_AMP, + ACTIONS(15239), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15486), 1, + anon_sym_SEMI_SEMI, + [322731] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, + ACTIONS(14775), 1, anon_sym_PIPE, - ACTIONS(15198), 1, + ACTIONS(15488), 1, anon_sym_RPAREN, - STATE(6717), 1, + STATE(6740), 1, aux_sym_case_item_repeat1, - [317249] = 2, - ACTIONS(71), 1, + [322744] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1338), 3, - sym_extglob_pattern, + ACTIONS(12672), 1, anon_sym_PIPE, - anon_sym_RPAREN, - [317258] = 4, - ACTIONS(71), 1, + ACTIONS(15490), 1, + anon_sym_PIPE_AMP, + STATE(5156), 1, + aux_sym_pipeline_repeat1, + [322757] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14528), 1, - anon_sym_PIPE, - ACTIONS(14636), 1, - anon_sym_RPAREN, - STATE(6564), 1, - aux_sym_case_item_repeat1, - [317271] = 4, - ACTIONS(71), 1, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15492), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [322768] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15200), 1, + ACTIONS(15494), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317284] = 4, - ACTIONS(71), 1, + [322781] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15202), 1, + ACTIONS(15496), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317297] = 4, - ACTIONS(71), 1, + [322794] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(15498), 1, + anon_sym_RPAREN, + STATE(6740), 1, + aux_sym_case_item_repeat1, + [322807] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15204), 1, + ACTIONS(15500), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317310] = 2, - ACTIONS(71), 1, + [322820] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1326), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [317319] = 4, - ACTIONS(71), 1, + ACTIONS(15502), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15170), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [322831] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15504), 1, + anon_sym_SEMI_SEMI, + ACTIONS(15164), 2, + anon_sym_SEMI_AMP, + anon_sym_SEMI_SEMI_AMP, + [322842] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15206), 1, + ACTIONS(15506), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317332] = 2, - ACTIONS(71), 1, + [322855] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1334), 3, - sym__regex_no_slash, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(15508), 1, + anon_sym_RPAREN, + STATE(6740), 1, + aux_sym_case_item_repeat1, + [322868] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15510), 1, + sym__concat, + ACTIONS(7001), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [322879] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1374), 3, anon_sym_SLASH, + anon_sym_COLON, anon_sym_RBRACE3, - [317341] = 4, - ACTIONS(71), 1, + [322888] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14944), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15208), 1, + ACTIONS(15512), 1, anon_sym_RPAREN_RPAREN, - STATE(6626), 1, - aux_sym__for_body_repeat1, - [317354] = 3, - ACTIONS(71), 1, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [322901] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, + ACTIONS(15252), 1, anon_sym_LBRACK, - ACTIONS(15210), 2, + ACTIONS(15514), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317365] = 2, - ACTIONS(71), 1, + [322912] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1338), 3, - sym__regex_no_slash, - anon_sym_SLASH, - anon_sym_RBRACE3, - [317374] = 4, - ACTIONS(71), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(15516), 1, + anon_sym_RPAREN_RPAREN, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [322925] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(15518), 1, + anon_sym_RPAREN, + STATE(6740), 1, + aux_sym_case_item_repeat1, + [322938] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15212), 1, + ACTIONS(15520), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317387] = 4, - ACTIONS(71), 1, + [322951] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15246), 1, + anon_sym_COMMA, + ACTIONS(15522), 1, + anon_sym_RPAREN_RPAREN, + STATE(6724), 1, + aux_sym__for_body_repeat1, + [322964] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14902), 1, + ACTIONS(15193), 1, anon_sym_SEMI_AMP, - ACTIONS(14904), 1, + ACTIONS(15195), 1, anon_sym_SEMI_SEMI_AMP, - ACTIONS(15214), 1, + ACTIONS(15524), 1, anon_sym_SEMI_SEMI, - [317400] = 4, - ACTIONS(71), 1, + [322977] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(12381), 1, + ACTIONS(13254), 1, anon_sym_PIPE, - ACTIONS(15216), 1, + ACTIONS(15526), 1, anon_sym_PIPE_AMP, - STATE(5132), 1, + STATE(5589), 1, aux_sym_pipeline_repeat1, - [317413] = 4, - ACTIONS(71), 1, + [322990] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(15246), 1, anon_sym_COMMA, - ACTIONS(15218), 1, + ACTIONS(15528), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, - aux_sym_arithmetic_expansion_repeat1, - [317426] = 4, - ACTIONS(71), 1, + STATE(6738), 1, + aux_sym__for_body_repeat1, + [323003] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(15530), 1, + anon_sym_RPAREN, + STATE(6740), 1, + aux_sym_case_item_repeat1, + [323016] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15220), 1, + ACTIONS(15532), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317439] = 4, - ACTIONS(71), 1, + [323029] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15222), 1, + ACTIONS(15534), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317452] = 4, - ACTIONS(71), 1, + [323042] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(12314), 1, - anon_sym_PIPE, - ACTIONS(15224), 1, - anon_sym_PIPE_AMP, - STATE(5075), 1, - aux_sym_pipeline_repeat1, - [317465] = 4, - ACTIONS(71), 1, + ACTIONS(1300), 1, + sym__special_character, + ACTIONS(1302), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [323053] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15536), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [323064] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15226), 1, + ACTIONS(15538), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317478] = 4, - ACTIONS(71), 1, + [323077] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15228), 1, + ACTIONS(15540), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317491] = 4, - ACTIONS(71), 1, + [323090] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15230), 1, + ACTIONS(15542), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317504] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(12939), 1, - anon_sym_PIPE, - ACTIONS(15232), 1, - anon_sym_PIPE_AMP, - STATE(5534), 1, - aux_sym_pipeline_repeat1, - [317517] = 4, - ACTIONS(71), 1, + [323103] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14968), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15234), 1, - anon_sym_RPAREN, - STATE(6725), 1, - aux_sym__for_body_repeat1, - [317530] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15236), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14925), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [317541] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(11897), 1, - anon_sym_PIPE, - ACTIONS(15238), 1, - anon_sym_PIPE_AMP, - STATE(4681), 1, - aux_sym_pipeline_repeat1, - [317554] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15240), 1, - anon_sym_PIPE, - ACTIONS(15243), 1, - anon_sym_RPAREN, - STATE(6717), 1, - aux_sym_case_item_repeat1, - [317567] = 4, - ACTIONS(71), 1, + ACTIONS(15544), 1, + anon_sym_RPAREN_RPAREN, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [323116] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15245), 1, + ACTIONS(15546), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317580] = 3, - ACTIONS(71), 1, + [323129] = 4, + ACTIONS(73), 1, sym_comment, - STATE(6420), 1, - aux_sym__concatenation_in_expansion_repeat1, - ACTIONS(14460), 2, - sym__concat, - aux_sym_concatenation_token1, - [317591] = 4, - ACTIONS(71), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(15548), 1, + anon_sym_RPAREN_RPAREN, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [323142] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15247), 1, + ACTIONS(15550), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317604] = 3, - ACTIONS(71), 1, + [323155] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14978), 1, + ACTIONS(15252), 1, anon_sym_LBRACK, - ACTIONS(15249), 2, + ACTIONS(15552), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317615] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15251), 1, - anon_sym_SEMI_SEMI, - ACTIONS(14864), 2, - anon_sym_SEMI_AMP, - anon_sym_SEMI_SEMI_AMP, - [317626] = 4, - ACTIONS(71), 1, + [323166] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15253), 1, + ACTIONS(15554), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317639] = 4, - ACTIONS(71), 1, + [323179] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(6897), 1, + ACTIONS(7142), 1, anon_sym_COMMA, - ACTIONS(15255), 1, + ACTIONS(15556), 1, anon_sym_RPAREN_RPAREN, - STATE(6662), 1, + STATE(6640), 1, aux_sym_arithmetic_expansion_repeat1, - [317652] = 4, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14968), 1, - anon_sym_COMMA, - ACTIONS(15257), 1, - anon_sym_RPAREN, - STATE(6617), 1, - aux_sym__for_body_repeat1, - [317665] = 3, - ACTIONS(71), 1, + [323192] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(15259), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15261), 1, - aux_sym__simple_variable_name_token1, - [317675] = 3, - ACTIONS(71), 1, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15558), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [323203] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(15263), 1, - anon_sym_SLASH, - ACTIONS(15265), 1, - anon_sym_RBRACE3, - [317685] = 2, - ACTIONS(71), 1, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15560), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [323214] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6817), 2, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15562), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317693] = 2, - ACTIONS(71), 1, + [323225] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14892), 2, + ACTIONS(7142), 1, anon_sym_COMMA, + ACTIONS(15564), 1, + anon_sym_RPAREN_RPAREN, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [323238] = 4, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(14865), 1, anon_sym_RPAREN, - [317701] = 2, - ACTIONS(71), 1, + STATE(6709), 1, + aux_sym_case_item_repeat1, + [323251] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(15058), 2, + ACTIONS(15252), 1, + anon_sym_LBRACK, + ACTIONS(15566), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317709] = 2, - ACTIONS(71), 1, + [323262] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(15018), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [317717] = 3, - ACTIONS(71), 1, + ACTIONS(15246), 1, + anon_sym_COMMA, + ACTIONS(15568), 1, + anon_sym_RPAREN_RPAREN, + STATE(6738), 1, + aux_sym__for_body_repeat1, + [323275] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(15267), 1, - anon_sym_RBRACE3, - ACTIONS(15269), 1, - sym_regex, - [317727] = 2, - ACTIONS(71), 1, + ACTIONS(14775), 1, + anon_sym_PIPE, + ACTIONS(15570), 1, + anon_sym_RPAREN, + STATE(6740), 1, + aux_sym_case_item_repeat1, + [323288] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(14998), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [317735] = 2, - ACTIONS(71), 1, + ACTIONS(7142), 1, + anon_sym_COMMA, + ACTIONS(15572), 1, + anon_sym_RPAREN_RPAREN, + STATE(6640), 1, + aux_sym_arithmetic_expansion_repeat1, + [323301] = 4, + ACTIONS(73), 1, sym_comment, - ACTIONS(1314), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [317743] = 3, - ACTIONS(71), 1, + ACTIONS(15225), 1, + anon_sym_SEMI_AMP, + ACTIONS(15227), 1, + anon_sym_SEMI_SEMI_AMP, + ACTIONS(15574), 1, + anon_sym_SEMI_SEMI, + [323314] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14536), 1, + ACTIONS(15576), 1, anon_sym_SLASH, - ACTIONS(14538), 1, + ACTIONS(15578), 1, anon_sym_RBRACE3, - [317753] = 2, - ACTIONS(71), 1, + [323324] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15026), 2, + ACTIONS(15284), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317761] = 2, - ACTIONS(71), 1, + [323332] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15580), 1, + anon_sym_SLASH, + ACTIONS(15582), 1, + anon_sym_RBRACE3, + [323342] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15060), 2, + ACTIONS(15270), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317769] = 3, - ACTIONS(71), 1, + [323350] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15271), 1, + ACTIONS(1334), 2, anon_sym_SLASH, - ACTIONS(15273), 1, anon_sym_RBRACE3, - [317779] = 3, - ACTIONS(71), 1, + [323358] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15275), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15277), 1, - aux_sym__simple_variable_name_token1, - [317789] = 2, - ACTIONS(71), 1, + ACTIONS(15464), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [323366] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14744), 2, + ACTIONS(15180), 2, anon_sym_COMMA, anon_sym_RPAREN, - [317797] = 3, - ACTIONS(71), 1, + [323374] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14803), 1, + ACTIONS(15110), 1, anon_sym_do, - STATE(5642), 1, + STATE(5100), 1, sym_do_group, - [317807] = 3, - ACTIONS(71), 1, + [323384] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14797), 1, - anon_sym_do, - STATE(4944), 1, - sym_do_group, - [317817] = 2, - ACTIONS(71), 1, + ACTIONS(15584), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15586), 1, + aux_sym__simple_variable_name_token1, + [323394] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1326), 2, + ACTIONS(14869), 1, anon_sym_SLASH, + ACTIONS(14871), 1, anon_sym_RBRACE3, - [317825] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15068), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [317833] = 2, - ACTIONS(71), 1, + [323404] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14744), 2, - anon_sym_RPAREN_RPAREN, - anon_sym_COMMA, - [317841] = 2, - ACTIONS(71), 1, + ACTIONS(7063), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [323412] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15073), 2, + ACTIONS(15562), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317849] = 3, - ACTIONS(71), 1, + [323420] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14785), 1, + ACTIONS(15089), 1, anon_sym_do, - STATE(5065), 1, + STATE(5011), 1, sym_do_group, - [317859] = 2, - ACTIONS(71), 1, + [323430] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15030), 2, + ACTIONS(6993), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317867] = 3, - ACTIONS(71), 1, + [323438] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14750), 1, - anon_sym_SLASH, - ACTIONS(14752), 1, - anon_sym_RBRACE3, - [317877] = 2, - ACTIONS(71), 1, + ACTIONS(15566), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [323446] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6850), 2, + ACTIONS(14758), 1, anon_sym_COLON, + ACTIONS(14760), 1, anon_sym_RBRACE3, - [317885] = 3, - ACTIONS(71), 1, + [323456] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(15279), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15281), 1, - aux_sym__simple_variable_name_token1, - [317895] = 2, - ACTIONS(71), 1, + ACTIONS(15080), 1, + anon_sym_do, + STATE(4954), 1, + sym_do_group, + [323466] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15036), 2, + ACTIONS(15367), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317903] = 3, - ACTIONS(71), 1, + [323474] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(15283), 1, + ACTIONS(15478), 1, anon_sym_SLASH, - ACTIONS(15285), 1, - anon_sym_RBRACE3, - [317913] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14793), 1, - anon_sym_do, - STATE(4928), 1, - sym_do_group, - [317923] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14449), 1, - anon_sym_COLON, - ACTIONS(14451), 1, + ACTIONS(15480), 1, anon_sym_RBRACE3, - [317933] = 2, - ACTIONS(71), 1, + [323484] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15075), 2, + ACTIONS(15357), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317941] = 2, - ACTIONS(71), 1, + [323492] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15038), 2, + ACTIONS(15391), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317949] = 2, - ACTIONS(71), 1, + [323500] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15210), 2, + ACTIONS(15492), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317957] = 2, - ACTIONS(71), 1, + [323508] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(7052), 2, + ACTIONS(15558), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317965] = 2, - ACTIONS(71), 1, + [323516] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(7071), 2, + ACTIONS(15294), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [317973] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(1298), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [317981] = 2, - ACTIONS(71), 1, + [323524] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(6846), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [317989] = 2, - ACTIONS(71), 1, + ACTIONS(7001), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [323532] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14725), 2, - anon_sym_PIPE, - anon_sym_RPAREN, - [317997] = 3, - ACTIONS(71), 1, + ACTIONS(15104), 1, + anon_sym_do, + STATE(5695), 1, + sym_do_group, + [323542] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14793), 1, + ACTIONS(15089), 1, anon_sym_do, - STATE(4982), 1, + STATE(4932), 1, sym_do_group, - [318007] = 2, - ACTIONS(71), 1, + [323552] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15081), 2, + ACTIONS(15258), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318015] = 2, - ACTIONS(71), 1, + [323560] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14976), 2, + ACTIONS(15276), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318023] = 2, - ACTIONS(71), 1, + [323568] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(1334), 2, - anon_sym_SLASH, - anon_sym_RBRACE3, - [318031] = 3, - ACTIONS(71), 1, + ACTIONS(15331), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [323576] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14803), 1, + ACTIONS(15080), 1, anon_sym_do, - STATE(5679), 1, + STATE(4949), 1, sym_do_group, - [318041] = 2, - ACTIONS(71), 1, + [323586] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15044), 2, + ACTIONS(15305), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318049] = 2, - ACTIONS(71), 1, + [323594] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(15014), 2, + ACTIONS(15588), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15590), 1, + aux_sym__simple_variable_name_token1, + [323604] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(1346), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [323612] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15250), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318057] = 2, - ACTIONS(71), 1, + [323620] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15107), 2, + ACTIONS(1338), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [323628] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15315), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318065] = 3, - ACTIONS(71), 1, + [323636] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15287), 1, - anon_sym_LPAREN_LPAREN, - ACTIONS(15289), 1, - aux_sym__simple_variable_name_token1, - [318075] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14868), 2, + ACTIONS(15150), 2, anon_sym_COMMA, anon_sym_RPAREN, - [318083] = 2, - ACTIONS(71), 1, + [323644] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15048), 2, + ACTIONS(15514), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318091] = 3, - ACTIONS(71), 1, + [323652] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15291), 1, + ACTIONS(1366), 2, anon_sym_SLASH, - ACTIONS(15293), 1, anon_sym_RBRACE3, - [318101] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14797), 1, - anon_sym_do, - STATE(5003), 1, - sym_do_group, - [318111] = 3, - ACTIONS(71), 1, + [323660] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14787), 1, - anon_sym_SLASH, ACTIONS(14789), 1, + anon_sym_SLASH, + ACTIONS(14793), 1, anon_sym_RBRACE3, - [318121] = 2, - ACTIONS(71), 1, + [323670] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(6835), 2, - anon_sym_EQ, - anon_sym_PLUS_EQ, - [318129] = 2, - ACTIONS(71), 1, + ACTIONS(15592), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15594), 1, + aux_sym__simple_variable_name_token1, + [323680] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15136), 2, + anon_sym_PIPE, + anon_sym_RPAREN, + [323688] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15050), 2, + ACTIONS(15560), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318137] = 3, - ACTIONS(71), 1, + [323696] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14785), 1, - anon_sym_do, - STATE(5035), 1, - sym_do_group, - [318147] = 2, - ACTIONS(71), 1, + ACTIONS(1326), 2, + anon_sym_SLASH, + anon_sym_RBRACE3, + [323704] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(1338), 2, + ACTIONS(15124), 1, anon_sym_SLASH, + ACTIONS(15126), 1, anon_sym_RBRACE3, - [318155] = 3, - ACTIONS(71), 1, + [323714] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(15123), 1, + ACTIONS(15098), 1, anon_sym_SLASH, - ACTIONS(15125), 1, + ACTIONS(15100), 1, anon_sym_RBRACE3, - [318165] = 2, - ACTIONS(71), 1, + [323724] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15536), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [323732] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14892), 2, + ACTIONS(15180), 2, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - [318173] = 2, - ACTIONS(71), 1, + [323740] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14969), 1, + anon_sym_SLASH, + ACTIONS(14971), 1, + anon_sym_RBRACE3, + [323750] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15596), 1, + anon_sym_SLASH, + ACTIONS(15598), 1, + anon_sym_RBRACE3, + [323760] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15052), 2, + ACTIONS(6989), 2, + anon_sym_COLON, + anon_sym_RBRACE3, + [323768] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15104), 1, + anon_sym_do, + STATE(5715), 1, + sym_do_group, + [323778] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15426), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318181] = 2, - ACTIONS(71), 1, + [323786] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15249), 2, + ACTIONS(7377), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318189] = 3, - ACTIONS(71), 1, + [323794] = 3, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15110), 1, + anon_sym_do, + STATE(5126), 1, + sym_do_group, + [323804] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(14494), 1, + ACTIONS(15061), 1, anon_sym_SLASH, - ACTIONS(14496), 1, + ACTIONS(15063), 1, anon_sym_RBRACE3, - [318199] = 2, - ACTIONS(71), 1, + [323814] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15056), 2, + ACTIONS(15552), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318207] = 3, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14458), 1, - anon_sym_SLASH, - ACTIONS(14462), 1, - anon_sym_RBRACE3, - [318217] = 2, - ACTIONS(71), 1, + [323822] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14868), 2, + ACTIONS(15150), 2, anon_sym_RPAREN_RPAREN, anon_sym_COMMA, - [318225] = 3, - ACTIONS(71), 1, + [323830] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14746), 1, - anon_sym_SLASH, - ACTIONS(14748), 1, - anon_sym_RBRACE3, - [318235] = 2, - ACTIONS(71), 1, + ACTIONS(15351), 2, + anon_sym_EQ, + anon_sym_PLUS_EQ, + [323838] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15040), 2, + ACTIONS(15059), 2, + anon_sym_RPAREN_RPAREN, + anon_sym_COMMA, + [323846] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(7381), 2, anon_sym_EQ, anon_sym_PLUS_EQ, - [318243] = 2, - ACTIONS(71), 1, + [323854] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(15295), 1, + ACTIONS(15600), 1, anon_sym_RBRACE3, - [318250] = 2, - ACTIONS(71), 1, + ACTIONS(15602), 1, + sym_regex, + [323864] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15297), 1, + ACTIONS(15059), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [318257] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15299), 1, - anon_sym_RBRACE2, - [318264] = 2, - ACTIONS(71), 1, + [323872] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(15301), 1, - anon_sym_fi, - [318271] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15303), 1, - anon_sym_esac, - [318278] = 2, - ACTIONS(71), 1, + ACTIONS(15604), 1, + anon_sym_LPAREN_LPAREN, + ACTIONS(15606), 1, + aux_sym__simple_variable_name_token1, + [323882] = 3, + ACTIONS(73), 1, sym_comment, - ACTIONS(15305), 1, + ACTIONS(15608), 1, + anon_sym_SLASH, + ACTIONS(15610), 1, anon_sym_RBRACE3, - [318285] = 2, - ACTIONS(71), 1, + [323892] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15307), 1, + ACTIONS(15612), 1, + aux_sym_brace_expression_token1, + [323899] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15614), 1, anon_sym_RPAREN, - [318292] = 2, - ACTIONS(71), 1, + [323906] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14584), 1, - anon_sym_RBRACE3, - [318299] = 2, + ACTIONS(15616), 1, + aux_sym_heredoc_redirect_token1, + [323913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15309), 1, + ACTIONS(15618), 1, aux_sym_heredoc_redirect_token1, - [318306] = 2, - ACTIONS(71), 1, + [323920] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15311), 1, - aux_sym_brace_expression_token1, - [318313] = 2, - ACTIONS(71), 1, + ACTIONS(15620), 1, + anon_sym_RPAREN, + [323927] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15313), 1, - anon_sym_RBRACE2, - [318320] = 2, - ACTIONS(71), 1, + ACTIONS(15622), 1, + anon_sym_BQUOTE, + [323934] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15315), 1, - anon_sym_LBRACK, - [318327] = 2, - ACTIONS(71), 1, + ACTIONS(15624), 1, + aux_sym_heredoc_redirect_token1, + [323941] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15317), 1, + ACTIONS(15626), 1, + aux_sym_heredoc_redirect_token1, + [323948] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15614), 1, anon_sym_BQUOTE, - [318334] = 2, - ACTIONS(71), 1, + [323955] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15307), 1, + ACTIONS(15628), 1, + anon_sym_SQUOTE, + [323962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15630), 1, + aux_sym_heredoc_redirect_token1, + [323969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15632), 1, + aux_sym_heredoc_redirect_token1, + [323976] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15634), 1, anon_sym_BQUOTE, - [318341] = 2, - ACTIONS(71), 1, + [323983] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, + ACTIONS(15636), 1, anon_sym_RBRACE3, - [318348] = 2, - ACTIONS(71), 1, + [323990] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, + ACTIONS(15069), 1, anon_sym_RBRACE3, - [318355] = 2, - ACTIONS(71), 1, + [323997] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15319), 1, + ACTIONS(15638), 1, anon_sym_RPAREN, - [318362] = 2, - ACTIONS(71), 1, + [324004] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15321), 1, - anon_sym_RBRACE2, - [318369] = 2, - ACTIONS(71), 1, + ACTIONS(15640), 1, + anon_sym_RPAREN, + [324011] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15323), 1, - aux_sym_brace_expression_token1, - [318376] = 2, - ACTIONS(71), 1, + ACTIONS(15642), 1, + anon_sym_BQUOTE, + [324018] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15325), 1, + ACTIONS(15644), 1, + anon_sym_RBRACE2, + [324025] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15638), 1, anon_sym_BQUOTE, - [318383] = 2, - ACTIONS(71), 1, + [324032] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15327), 1, + ACTIONS(15646), 1, + anon_sym_SQUOTE, + [324039] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15648), 1, anon_sym_RBRACE3, - [318390] = 2, - ACTIONS(71), 1, + [324046] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15329), 1, + ACTIONS(15650), 1, + anon_sym_SQUOTE, + [324053] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15652), 1, + anon_sym_RPAREN, + [324060] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15654), 1, anon_sym_RPAREN, - [318397] = 2, - ACTIONS(71), 1, + [324067] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15331), 1, + ACTIONS(15656), 1, anon_sym_RBRACE3, - [318404] = 2, - ACTIONS(71), 1, + [324074] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15333), 1, - anon_sym_BQUOTE, - [318411] = 2, - ACTIONS(71), 1, + ACTIONS(15658), 1, + anon_sym_SQUOTE, + [324081] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15329), 1, - anon_sym_BQUOTE, - [318418] = 2, - ACTIONS(71), 1, + ACTIONS(15660), 1, + anon_sym_RBRACE3, + [324088] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15335), 1, + ACTIONS(15662), 1, anon_sym_RPAREN, - [318425] = 2, - ACTIONS(71), 1, + [324095] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15337), 1, - anon_sym_RPAREN, - [318432] = 2, - ACTIONS(71), 1, + ACTIONS(15664), 1, + anon_sym_esac, + [324102] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15339), 1, - aux_sym_brace_expression_token1, - [318439] = 2, - ACTIONS(71), 1, + ACTIONS(15666), 1, + anon_sym_BQUOTE, + [324109] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15341), 1, - sym_heredoc_end, - [318446] = 2, - ACTIONS(71), 1, + ACTIONS(15668), 1, + sym_raw_string_content, + [324116] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15343), 1, + ACTIONS(15652), 1, anon_sym_BQUOTE, - [318453] = 2, - ACTIONS(71), 1, + [324123] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15345), 1, - anon_sym_esac, - [318460] = 2, - ACTIONS(71), 1, + ACTIONS(15670), 1, + anon_sym_RPAREN, + [324130] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15347), 1, + ACTIONS(15672), 1, + anon_sym_BQUOTE, + [324137] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15662), 1, + anon_sym_BQUOTE, + [324144] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15674), 1, anon_sym_RBRACE2, - [318467] = 2, - ACTIONS(71), 1, + [324151] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15349), 1, + ACTIONS(15676), 1, + anon_sym_RBRACE3, + [324158] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15678), 1, + anon_sym_LT_LT_LT, + [324165] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15680), 1, + aux_sym_brace_expression_token1, + [324172] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15682), 1, anon_sym_RBRACE2, - [318474] = 2, - ACTIONS(71), 1, + [324179] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15684), 1, + anon_sym_SQUOTE, + [324186] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15351), 1, + ACTIONS(15069), 1, anon_sym_RBRACE3, - [318481] = 2, - ACTIONS(71), 1, + [324193] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15353), 1, + ACTIONS(15686), 1, anon_sym_RPAREN, - [318488] = 2, - ACTIONS(71), 1, + [324200] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15337), 1, + ACTIONS(15069), 1, + anon_sym_RBRACE3, + [324207] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15069), 1, + anon_sym_RBRACE3, + [324214] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15688), 1, + sym_raw_string_content, + [324221] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15690), 1, + anon_sym_RBRACE3, + [324228] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15692), 1, + anon_sym_RPAREN, + [324235] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15694), 1, + anon_sym_RBRACE3, + [324242] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15696), 1, + anon_sym_RPAREN, + [324249] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15698), 1, anon_sym_BQUOTE, - [318495] = 2, - ACTIONS(71), 1, + [324256] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15355), 1, + ACTIONS(15700), 1, + anon_sym_LT_LT_LT, + [324263] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15702), 1, aux_sym_brace_expression_token1, - [318502] = 2, - ACTIONS(71), 1, + [324270] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15357), 1, - anon_sym_RPAREN, - [318509] = 2, - ACTIONS(71), 1, + ACTIONS(15704), 1, + anon_sym_BQUOTE, + [324277] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15359), 1, - sym_heredoc_end, - [318516] = 2, - ACTIONS(71), 1, + ACTIONS(15696), 1, + anon_sym_BQUOTE, + [324284] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15361), 1, + ACTIONS(15069), 1, + anon_sym_RBRACE3, + [324291] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15706), 1, anon_sym_BQUOTE, - [318523] = 2, - ACTIONS(71), 1, + [324298] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15353), 1, + ACTIONS(15069), 1, + anon_sym_RBRACE3, + [324305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15708), 1, + sym_raw_string_content, + [324312] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15686), 1, anon_sym_BQUOTE, - [318530] = 2, - ACTIONS(71), 1, + [324319] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15363), 1, + ACTIONS(15710), 1, anon_sym_RPAREN, - [318537] = 2, - ACTIONS(71), 1, + [324326] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15365), 1, - anon_sym_RBRACK_RBRACK, - [318544] = 2, - ACTIONS(71), 1, + ACTIONS(15712), 1, + anon_sym_SQUOTE, + [324333] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, + ACTIONS(15714), 1, anon_sym_RBRACE3, - [318551] = 2, - ACTIONS(71), 1, + [324340] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15367), 1, - anon_sym_RBRACE3, - [318558] = 2, - ACTIONS(71), 1, + ACTIONS(15716), 1, + anon_sym_RPAREN, + [324347] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15369), 1, + ACTIONS(15718), 1, aux_sym_brace_expression_token1, - [318565] = 2, - ACTIONS(71), 1, + [324354] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15371), 1, + ACTIONS(15720), 1, + anon_sym_SQUOTE, + [324361] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15722), 1, anon_sym_RPAREN, - [318572] = 2, - ACTIONS(71), 1, + [324368] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15373), 1, + ACTIONS(15724), 1, + anon_sym_BQUOTE, + [324375] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15726), 1, + sym_raw_string_content, + [324382] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15728), 1, + anon_sym_BQUOTE, + [324389] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15722), 1, + anon_sym_BQUOTE, + [324396] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15730), 1, anon_sym_RBRACE3, - [318579] = 2, - ACTIONS(71), 1, + [324403] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15375), 1, + ACTIONS(15732), 1, + anon_sym_RBRACE3, + [324410] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15734), 1, anon_sym_RPAREN, - [318586] = 2, - ACTIONS(71), 1, + [324417] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15377), 1, - anon_sym_esac, - [318593] = 2, - ACTIONS(71), 1, + ACTIONS(15736), 1, + aux_sym_brace_expression_token1, + [324424] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15379), 1, + ACTIONS(15738), 1, + anon_sym_RPAREN, + [324431] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15740), 1, anon_sym_BQUOTE, - [318600] = 2, - ACTIONS(71), 1, + [324438] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15375), 1, + ACTIONS(15742), 1, + anon_sym_RPAREN, + [324445] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15744), 1, + sym_raw_string_content, + [324452] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15734), 1, anon_sym_BQUOTE, - [318607] = 2, - ACTIONS(71), 1, + [324459] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15381), 1, + ACTIONS(15746), 1, + anon_sym_BQUOTE, + [324466] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15748), 1, + anon_sym_RBRACE2, + [324473] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15750), 1, + anon_sym_BQUOTE, + [324480] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15738), 1, + anon_sym_BQUOTE, + [324487] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15752), 1, + aux_sym_brace_expression_token1, + [324494] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15754), 1, anon_sym_RPAREN, - [318614] = 2, - ACTIONS(71), 1, + [324501] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15383), 1, + ACTIONS(15756), 1, + anon_sym_RBRACE2, + [324508] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15758), 1, anon_sym_RBRACE3, - [318621] = 2, - ACTIONS(71), 1, + [324515] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15385), 1, - aux_sym_brace_expression_token1, - [318628] = 2, - ACTIONS(71), 1, + ACTIONS(15760), 1, + sym_raw_string_content, + [324522] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15387), 1, + ACTIONS(15762), 1, anon_sym_RPAREN, - [318635] = 2, - ACTIONS(71), 1, + [324529] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15389), 1, + ACTIONS(15692), 1, + anon_sym_BQUOTE, + [324536] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15764), 1, + anon_sym_BQUOTE, + [324543] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15762), 1, + anon_sym_BQUOTE, + [324550] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15766), 1, + anon_sym_RPAREN, + [324557] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15768), 1, + aux_sym_brace_expression_token1, + [324564] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15770), 1, + anon_sym_RBRACE2, + [324571] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15772), 1, + anon_sym_BQUOTE, + [324578] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15774), 1, + anon_sym_BQUOTE, + [324585] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15776), 1, + sym_raw_string_content, + [324592] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15778), 1, + anon_sym_BQUOTE, + [324599] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15780), 1, anon_sym_RBRACE3, - [318642] = 2, - ACTIONS(71), 1, + [324606] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15391), 1, - anon_sym_esac, - [318649] = 2, - ACTIONS(71), 1, + ACTIONS(15782), 1, + anon_sym_RPAREN, + [324613] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15393), 1, + ACTIONS(15784), 1, anon_sym_RBRACE2, - [318656] = 2, - ACTIONS(71), 1, + [324620] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15786), 1, + anon_sym_BQUOTE, + [324627] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15788), 1, + aux_sym_brace_expression_token1, + [324634] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15782), 1, + anon_sym_BQUOTE, + [324641] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14564), 1, + ACTIONS(15710), 1, + anon_sym_BQUOTE, + [324648] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15790), 1, + anon_sym_SQUOTE, + [324655] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15792), 1, + sym_raw_string_content, + [324662] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15794), 1, anon_sym_RBRACE3, - [318663] = 2, - ACTIONS(71), 1, + [324669] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15395), 1, - anon_sym_esac, - [318670] = 2, - ACTIONS(71), 1, + ACTIONS(15796), 1, + anon_sym_RPAREN, + [324676] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15397), 1, - anon_sym_esac, - [318677] = 2, - ACTIONS(71), 1, + ACTIONS(9543), 1, + anon_sym_RBRACK, + [324683] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15399), 1, + ACTIONS(15798), 1, + anon_sym_BQUOTE, + [324690] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15800), 1, anon_sym_RPAREN, - [318684] = 2, - ACTIONS(71), 1, + [324697] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15401), 1, + ACTIONS(15802), 1, aux_sym_brace_expression_token1, - [318691] = 2, - ACTIONS(71), 1, + [324704] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15403), 1, + ACTIONS(15804), 1, + anon_sym_SQUOTE, + [324711] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15796), 1, anon_sym_BQUOTE, - [318698] = 2, - ACTIONS(71), 1, + [324718] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15806), 1, + anon_sym_RPAREN, + [324725] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14594), 1, + ACTIONS(15808), 1, + sym_raw_string_content, + [324732] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15810), 1, anon_sym_RBRACE3, - [318705] = 2, - ACTIONS(71), 1, + [324739] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15405), 1, + ACTIONS(15812), 1, anon_sym_RBRACE3, - [318712] = 2, - ACTIONS(71), 1, + [324746] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15407), 1, + ACTIONS(15814), 1, anon_sym_RPAREN, - [318719] = 2, - ACTIONS(71), 1, + [324753] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_RBRACE3, - [318726] = 2, - ACTIONS(71), 1, + ACTIONS(15816), 1, + anon_sym_RBRACE2, + [324760] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15409), 1, + ACTIONS(15818), 1, + anon_sym_SQUOTE, + [324767] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15820), 1, + aux_sym_brace_expression_token1, + [324774] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15822), 1, anon_sym_BQUOTE, - [318733] = 2, - ACTIONS(71), 1, + [324781] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15407), 1, + ACTIONS(15814), 1, anon_sym_BQUOTE, - [318740] = 2, - ACTIONS(71), 1, + [324788] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15411), 1, - sym_word, - [318747] = 2, - ACTIONS(71), 1, + ACTIONS(15824), 1, + anon_sym_RBRACE3, + [324795] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15413), 1, - aux_sym_brace_expression_token1, - [318754] = 2, - ACTIONS(71), 1, + ACTIONS(15826), 1, + sym_raw_string_content, + [324802] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15387), 1, + ACTIONS(14905), 1, + anon_sym_fi, + [324809] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15828), 1, + anon_sym_RPAREN, + [324816] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15830), 1, + anon_sym_RPAREN, + [324823] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15832), 1, anon_sym_BQUOTE, - [318761] = 2, - ACTIONS(71), 1, + [324830] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15415), 1, + ACTIONS(15834), 1, anon_sym_RBRACE3, - [318768] = 2, - ACTIONS(71), 1, + [324837] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15417), 1, - anon_sym_RPAREN, - [318775] = 2, - ACTIONS(71), 1, + ACTIONS(15836), 1, + aux_sym_brace_expression_token1, + [324844] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15419), 1, + ACTIONS(15838), 1, anon_sym_RPAREN, - [318782] = 2, - ACTIONS(71), 1, + [324851] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15421), 1, + ACTIONS(15069), 1, + anon_sym_RBRACE3, + [324858] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15828), 1, anon_sym_BQUOTE, - [318789] = 2, - ACTIONS(71), 1, + [324865] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15417), 1, + ACTIONS(15840), 1, + sym_raw_string_content, + [324872] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15842), 1, anon_sym_BQUOTE, - [318796] = 2, - ACTIONS(71), 1, + [324879] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15423), 1, - anon_sym_RPAREN, - [318803] = 2, - ACTIONS(71), 1, + ACTIONS(15838), 1, + anon_sym_BQUOTE, + [324886] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15425), 1, + ACTIONS(15844), 1, anon_sym_RPAREN, - [318810] = 2, - ACTIONS(71), 1, + [324893] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15846), 1, + anon_sym_esac, + [324900] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(9541), 1, + anon_sym_RBRACK, + [324907] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15427), 1, + ACTIONS(15848), 1, aux_sym_brace_expression_token1, - [318817] = 2, - ACTIONS(71), 1, + [324914] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15429), 1, + ACTIONS(15850), 1, anon_sym_BQUOTE, - [318824] = 2, - ACTIONS(71), 1, + [324921] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15431), 1, - anon_sym_esac, - [318831] = 2, - ACTIONS(71), 1, + ACTIONS(14799), 1, + anon_sym_RBRACE3, + [324928] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15433), 1, + ACTIONS(15852), 1, anon_sym_RBRACE2, - [318838] = 2, - ACTIONS(71), 1, + [324935] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15435), 1, - anon_sym_RBRACE2, - [318845] = 2, - ACTIONS(71), 1, + ACTIONS(15854), 1, + sym_raw_string_content, + [324942] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15437), 1, - anon_sym_RBRACE2, - [318852] = 2, - ACTIONS(71), 1, + ACTIONS(15856), 1, + anon_sym_RBRACE3, + [324949] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15439), 1, - anon_sym_RBRACE2, - [318859] = 2, - ACTIONS(71), 1, + ACTIONS(15858), 1, + anon_sym_RPAREN, + [324956] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14502), 1, - anon_sym_fi, - [318866] = 2, - ACTIONS(3), 1, + ACTIONS(15860), 1, + anon_sym_SQUOTE, + [324963] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15441), 1, - aux_sym_heredoc_redirect_token1, - [318873] = 2, - ACTIONS(71), 1, + ACTIONS(15069), 1, + anon_sym_RBRACE3, + [324970] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15862), 1, + anon_sym_BQUOTE, + [324977] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15443), 1, + ACTIONS(15864), 1, aux_sym_brace_expression_token1, - [318880] = 2, - ACTIONS(71), 1, + [324984] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15445), 1, + ACTIONS(15858), 1, anon_sym_BQUOTE, - [318887] = 2, - ACTIONS(71), 1, + [324991] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15866), 1, + anon_sym_RBRACE2, + [324998] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, + ACTIONS(15868), 1, anon_sym_RBRACE3, - [318894] = 2, - ACTIONS(71), 1, + [325005] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15399), 1, + ACTIONS(15870), 1, + sym_raw_string_content, + [325012] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15872), 1, + anon_sym_RPAREN, + [325019] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15830), 1, anon_sym_BQUOTE, - [318901] = 2, - ACTIONS(71), 1, + [325026] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, + ACTIONS(15874), 1, + anon_sym_SQUOTE, + [325033] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15876), 1, anon_sym_RBRACE3, - [318908] = 2, - ACTIONS(71), 1, + [325040] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15447), 1, + ACTIONS(15878), 1, anon_sym_esac, - [318915] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(8908), 1, - anon_sym_RBRACK, - [318922] = 2, - ACTIONS(71), 1, + [325047] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(8856), 1, - anon_sym_RBRACK, - [318929] = 2, - ACTIONS(71), 1, + ACTIONS(15880), 1, + aux_sym_brace_expression_token1, + [325054] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15449), 1, + ACTIONS(15882), 1, anon_sym_RBRACE3, - [318936] = 2, - ACTIONS(71), 1, + [325061] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15451), 1, - aux_sym_brace_expression_token1, - [318943] = 2, - ACTIONS(71), 1, + ACTIONS(15884), 1, + anon_sym_RPAREN, + [325068] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14662), 1, - anon_sym_fi, - [318950] = 2, - ACTIONS(71), 1, + ACTIONS(15886), 1, + anon_sym_RPAREN, + [325075] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15888), 1, + sym_raw_string_content, + [325082] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15890), 1, + anon_sym_BQUOTE, + [325089] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15884), 1, + anon_sym_BQUOTE, + [325096] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15453), 1, + ACTIONS(15892), 1, + anon_sym_RPAREN, + [325103] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15035), 1, anon_sym_RBRACE3, - [318957] = 2, - ACTIONS(71), 1, + [325110] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15894), 1, + anon_sym_BQUOTE, + [325117] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15896), 1, + aux_sym_brace_expression_token1, + [325124] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15886), 1, + anon_sym_BQUOTE, + [325131] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15455), 1, + ACTIONS(15898), 1, anon_sym_RPAREN, - [318964] = 2, - ACTIONS(71), 1, + [325138] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15457), 1, - anon_sym_RBRACE2, - [318971] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15459), 1, + ACTIONS(15900), 1, anon_sym_BQUOTE, - [318978] = 2, - ACTIONS(71), 1, + [325145] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15902), 1, + sym_raw_string_content, + [325152] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15455), 1, + ACTIONS(15872), 1, anon_sym_BQUOTE, - [318985] = 2, - ACTIONS(71), 1, + [325159] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15461), 1, - anon_sym_RPAREN, - [318992] = 2, - ACTIONS(71), 1, + ACTIONS(15904), 1, + sym_heredoc_end, + [325166] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15463), 1, + ACTIONS(15906), 1, anon_sym_RPAREN, - [318999] = 2, - ACTIONS(71), 1, + [325173] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15908), 1, + anon_sym_RBRACE2, + [325180] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15465), 1, + ACTIONS(15910), 1, + anon_sym_RBRACE3, + [325187] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15912), 1, aux_sym_brace_expression_token1, - [319006] = 2, - ACTIONS(71), 1, + [325194] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15467), 1, + ACTIONS(15914), 1, anon_sym_RPAREN, - [319013] = 2, - ACTIONS(71), 1, + [325201] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15469), 1, + ACTIONS(15035), 1, anon_sym_RBRACE3, - [319020] = 2, - ACTIONS(71), 1, + [325208] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_RBRACE3, - [319027] = 2, - ACTIONS(71), 1, + ACTIONS(15916), 1, + anon_sym_BQUOTE, + [325215] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15471), 1, - anon_sym_RBRACE2, - [319034] = 2, - ACTIONS(71), 1, + ACTIONS(15918), 1, + sym_raw_string_content, + [325222] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15473), 1, - anon_sym_esac, - [319041] = 2, - ACTIONS(71), 1, + ACTIONS(15914), 1, + anon_sym_BQUOTE, + [325229] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15475), 1, - anon_sym_in, - [319048] = 2, - ACTIONS(71), 1, + ACTIONS(15920), 1, + anon_sym_RPAREN, + [325236] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15477), 1, - anon_sym_RBRACE3, - [319055] = 2, - ACTIONS(71), 1, + ACTIONS(15922), 1, + aux_sym_heredoc_redirect_token1, + [325243] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15479), 1, + ACTIONS(15924), 1, + aux_sym_heredoc_redirect_token1, + [325250] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15926), 1, anon_sym_RPAREN, - [319062] = 2, - ACTIONS(71), 1, + [325257] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15481), 1, + ACTIONS(15928), 1, aux_sym_brace_expression_token1, - [319069] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15483), 1, - anon_sym_LT_LT_LT, - [319076] = 2, - ACTIONS(71), 1, + [325264] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, - anon_sym_RBRACE3, - [319083] = 2, - ACTIONS(71), 1, + ACTIONS(15930), 1, + anon_sym_in, + [325271] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15485), 1, + ACTIONS(15932), 1, aux_sym_brace_expression_token1, - [319090] = 2, - ACTIONS(71), 1, + [325278] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15487), 1, - anon_sym_RPAREN_RPAREN, - [319097] = 2, - ACTIONS(71), 1, + ACTIONS(15934), 1, + anon_sym_RBRACE2, + [325285] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(15936), 1, + sym_raw_string_content, + [325292] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15489), 1, + ACTIONS(15938), 1, + anon_sym_SQUOTE, + [325299] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15940), 1, anon_sym_RBRACE3, - [319104] = 2, - ACTIONS(71), 1, + [325306] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15491), 1, + ACTIONS(15942), 1, anon_sym_RPAREN, - [319111] = 2, - ACTIONS(71), 1, + [325313] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15493), 1, - anon_sym_in, - [319118] = 2, - ACTIONS(71), 1, + ACTIONS(15944), 1, + anon_sym_RBRACK_RBRACK, + [325320] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15495), 1, - anon_sym_in, - [319125] = 2, - ACTIONS(71), 1, + ACTIONS(15946), 1, + anon_sym_BQUOTE, + [325327] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15497), 1, + ACTIONS(15948), 1, aux_sym_brace_expression_token1, - [319132] = 2, - ACTIONS(71), 1, + [325334] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15499), 1, + ACTIONS(15942), 1, anon_sym_BQUOTE, - [319139] = 2, - ACTIONS(71), 1, + [325341] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15501), 1, - anon_sym_RBRACE3, - [319146] = 2, - ACTIONS(71), 1, + ACTIONS(9243), 1, + anon_sym_RBRACK, + [325348] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15503), 1, + ACTIONS(15950), 1, anon_sym_RPAREN, - [319153] = 2, - ACTIONS(71), 1, + [325355] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15491), 1, - anon_sym_BQUOTE, - [319160] = 2, - ACTIONS(71), 1, + ACTIONS(15952), 1, + sym_raw_string_content, + [325362] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15505), 1, - anon_sym_BQUOTE, - [319167] = 2, - ACTIONS(71), 1, + ACTIONS(15954), 1, + anon_sym_RPAREN, + [325369] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(9241), 1, + anon_sym_RBRACK, + [325376] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15956), 1, + anon_sym_RBRACE2, + [325383] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15958), 1, + anon_sym_RBRACE2, + [325390] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15503), 1, + ACTIONS(15960), 1, anon_sym_BQUOTE, - [319174] = 2, - ACTIONS(71), 1, + [325397] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15507), 1, + ACTIONS(15962), 1, aux_sym_brace_expression_token1, - [319181] = 2, - ACTIONS(71), 1, + [325404] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15954), 1, + anon_sym_BQUOTE, + [325411] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15509), 1, + ACTIONS(15964), 1, anon_sym_RPAREN, - [319188] = 2, - ACTIONS(71), 1, + [325418] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15511), 1, - anon_sym_in, - [319195] = 2, - ACTIONS(71), 1, + ACTIONS(15966), 1, + sym_raw_string_content, + [325425] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15513), 1, - anon_sym_RPAREN, - [319202] = 2, - ACTIONS(71), 1, + ACTIONS(15069), 1, + anon_sym_RBRACE3, + [325432] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15515), 1, + ACTIONS(15968), 1, anon_sym_RBRACE2, - [319209] = 2, - ACTIONS(71), 1, + [325439] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15517), 1, - anon_sym_RPAREN, - [319216] = 2, - ACTIONS(71), 1, + ACTIONS(15970), 1, + anon_sym_BQUOTE, + [325446] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15519), 1, - anon_sym_esac, - [319223] = 2, - ACTIONS(71), 1, + ACTIONS(15972), 1, + anon_sym_LBRACK, + [325453] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15521), 1, + ACTIONS(15974), 1, aux_sym_brace_expression_token1, - [319230] = 2, - ACTIONS(71), 1, + [325460] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15523), 1, - anon_sym_RBRACE2, - [319237] = 2, - ACTIONS(71), 1, + ACTIONS(15976), 1, + sym_heredoc_end, + [325467] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15525), 1, + ACTIONS(15964), 1, anon_sym_BQUOTE, - [319244] = 2, - ACTIONS(71), 1, + [325474] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14837), 1, - anon_sym_RBRACE3, - [319251] = 2, - ACTIONS(71), 1, + ACTIONS(15978), 1, + sym_raw_string_content, + [325481] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15527), 1, - anon_sym_BQUOTE, - [319258] = 2, - ACTIONS(71), 1, + ACTIONS(15980), 1, + anon_sym_SQUOTE, + [325488] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15529), 1, - anon_sym_BQUOTE, - [319265] = 2, - ACTIONS(71), 1, + ACTIONS(15982), 1, + sym_heredoc_end, + [325495] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14216), 1, + ACTIONS(15984), 1, anon_sym_RBRACE3, - [319272] = 2, - ACTIONS(71), 1, + [325502] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15531), 1, - aux_sym_brace_expression_token1, - [319279] = 2, - ACTIONS(71), 1, + ACTIONS(15986), 1, + anon_sym_RPAREN, + [325509] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, - anon_sym_RBRACE3, - [319286] = 2, - ACTIONS(71), 1, + ACTIONS(15988), 1, + aux_sym_brace_expression_token1, + [325516] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15517), 1, - anon_sym_BQUOTE, - [319293] = 2, - ACTIONS(71), 1, + ACTIONS(15990), 1, + anon_sym_SQUOTE, + [325523] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15533), 1, + ACTIONS(15992), 1, anon_sym_RBRACE3, - [319300] = 2, - ACTIONS(71), 1, + [325530] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15535), 1, - anon_sym_RPAREN, - [319307] = 2, - ACTIONS(71), 1, + ACTIONS(15994), 1, + sym_raw_string_content, + [325537] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15537), 1, + ACTIONS(15996), 1, anon_sym_RPAREN, - [319314] = 2, - ACTIONS(71), 1, + [325544] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15539), 1, - anon_sym_BQUOTE, - [319321] = 2, - ACTIONS(71), 1, + ACTIONS(15069), 1, + anon_sym_RBRACE3, + [325551] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15541), 1, - aux_sym_brace_expression_token1, - [319328] = 2, - ACTIONS(71), 1, + ACTIONS(15998), 1, + anon_sym_BQUOTE, + [325558] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15535), 1, + ACTIONS(15996), 1, anon_sym_BQUOTE, - [319335] = 2, - ACTIONS(71), 1, + [325565] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15543), 1, + ACTIONS(16000), 1, + aux_sym_brace_expression_token1, + [325572] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16002), 1, anon_sym_RPAREN, - [319342] = 2, - ACTIONS(71), 1, + [325579] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15545), 1, + ACTIONS(16004), 1, anon_sym_RBRACE2, - [319349] = 2, - ACTIONS(71), 1, + [325586] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15547), 1, - anon_sym_RBRACE3, - [319356] = 2, - ACTIONS(71), 1, + ACTIONS(16006), 1, + sym_raw_string_content, + [325593] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15549), 1, - sym_heredoc_start, - [319363] = 2, - ACTIONS(71), 1, + ACTIONS(16008), 1, + sym_word, + [325600] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16010), 1, + anon_sym_BQUOTE, + [325607] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15551), 1, + ACTIONS(16012), 1, anon_sym_RBRACE2, - [319370] = 2, - ACTIONS(71), 1, + [325614] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15553), 1, + ACTIONS(16014), 1, + sym_heredoc_end, + [325621] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16016), 1, aux_sym_brace_expression_token1, - [319377] = 2, - ACTIONS(71), 1, + [325628] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14694), 1, + ACTIONS(15986), 1, + anon_sym_BQUOTE, + [325635] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15069), 1, anon_sym_RBRACE3, - [319384] = 2, + [325642] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15555), 1, - aux_sym_heredoc_redirect_token1, - [319391] = 2, - ACTIONS(71), 1, + ACTIONS(16018), 1, + sym_raw_string_content, + [325649] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14564), 1, - anon_sym_RBRACE3, - [319398] = 2, - ACTIONS(71), 1, + ACTIONS(16020), 1, + sym_raw_string_content, + [325656] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15557), 1, - anon_sym_RPAREN, - [319405] = 2, + ACTIONS(16022), 1, + sym_heredoc_end, + [325663] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15559), 1, + ACTIONS(16024), 1, aux_sym_heredoc_redirect_token1, - [319412] = 2, - ACTIONS(71), 1, + [325670] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15561), 1, - anon_sym_RBRACE3, - [319419] = 2, - ACTIONS(71), 1, + ACTIONS(16026), 1, + anon_sym_RPAREN, + [325677] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15563), 1, + ACTIONS(16028), 1, aux_sym_brace_expression_token1, - [319426] = 2, - ACTIONS(71), 1, + [325684] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15565), 1, + ACTIONS(16030), 1, anon_sym_RBRACE3, - [319433] = 2, - ACTIONS(71), 1, + [325691] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15567), 1, - anon_sym_RBRACE2, - [319440] = 2, - ACTIONS(71), 1, + ACTIONS(16032), 1, + anon_sym_RPAREN, + [325698] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15569), 1, - anon_sym_RBRACE3, - [319447] = 2, - ACTIONS(71), 1, + ACTIONS(16034), 1, + sym_raw_string_content, + [325705] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15571), 1, + ACTIONS(15035), 1, anon_sym_RBRACE3, - [319454] = 2, - ACTIONS(71), 1, + [325712] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15573), 1, - anon_sym_RPAREN, - [319461] = 2, - ACTIONS(71), 1, + ACTIONS(16036), 1, + anon_sym_RBRACE2, + [325719] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15575), 1, - anon_sym_RBRACE3, - [319468] = 2, - ACTIONS(71), 1, + ACTIONS(16038), 1, + sym_heredoc_end, + [325726] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15577), 1, + ACTIONS(16040), 1, + anon_sym_esac, + [325733] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16042), 1, aux_sym_brace_expression_token1, - [319475] = 2, - ACTIONS(71), 1, + [325740] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15579), 1, - anon_sym_BQUOTE, - [319482] = 2, - ACTIONS(71), 1, + ACTIONS(16044), 1, + anon_sym_esac, + [325747] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15573), 1, + ACTIONS(16046), 1, anon_sym_BQUOTE, - [319489] = 2, - ACTIONS(71), 1, + [325754] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15581), 1, - anon_sym_RPAREN, - [319496] = 2, - ACTIONS(71), 1, + ACTIONS(16048), 1, + sym_raw_string_content, + [325761] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15583), 1, - anon_sym_esac, - [319503] = 2, - ACTIONS(71), 1, + ACTIONS(16050), 1, + anon_sym_SQUOTE, + [325768] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15585), 1, - anon_sym_RPAREN, - [319510] = 2, - ACTIONS(71), 1, + ACTIONS(14827), 1, + anon_sym_fi, + [325775] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15587), 1, - anon_sym_RBRACE2, - [319517] = 2, - ACTIONS(71), 1, + ACTIONS(16052), 1, + anon_sym_SQUOTE, + [325782] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16054), 1, + anon_sym_RBRACE3, + [325789] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15589), 1, + ACTIONS(16056), 1, aux_sym_brace_expression_token1, - [319524] = 2, - ACTIONS(71), 1, + [325796] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14758), 1, + ACTIONS(16058), 1, + anon_sym_RPAREN, + [325803] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15069), 1, anon_sym_RBRACE3, - [319531] = 2, - ACTIONS(71), 1, + [325810] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15591), 1, - anon_sym_BQUOTE, - [319538] = 2, - ACTIONS(71), 1, + ACTIONS(16060), 1, + sym_raw_string_content, + [325817] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15585), 1, - anon_sym_BQUOTE, - [319545] = 2, - ACTIONS(71), 1, + ACTIONS(16062), 1, + anon_sym_SQUOTE, + [325824] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15593), 1, - anon_sym_esac, - [319552] = 2, - ACTIONS(71), 1, + ACTIONS(16064), 1, + anon_sym_RBRACE3, + [325831] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15595), 1, + ACTIONS(16066), 1, anon_sym_RPAREN, - [319559] = 2, - ACTIONS(3), 1, + [325838] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15597), 1, - aux_sym_heredoc_redirect_token1, - [319566] = 2, - ACTIONS(71), 1, + ACTIONS(16068), 1, + anon_sym_RPAREN, + [325845] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16070), 1, + aux_sym_brace_expression_token1, + [325852] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16072), 1, + anon_sym_LT_LT_LT, + [325859] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15599), 1, + ACTIONS(16074), 1, aux_sym_brace_expression_token1, - [319573] = 2, + [325866] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15601), 1, - aux_sym_heredoc_redirect_token1, - [319580] = 2, - ACTIONS(71), 1, + ACTIONS(16076), 1, + sym_raw_string_content, + [325873] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16078), 1, + anon_sym_fi, + [325880] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15603), 1, + ACTIONS(16080), 1, anon_sym_esac, - [319587] = 2, - ACTIONS(71), 1, + [325887] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15605), 1, - anon_sym_RBRACE2, - [319594] = 2, - ACTIONS(71), 1, + ACTIONS(16082), 1, + anon_sym_SQUOTE, + [325894] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15607), 1, - anon_sym_RBRACK_RBRACK, - [319601] = 2, - ACTIONS(71), 1, + ACTIONS(16084), 1, + anon_sym_RPAREN_RPAREN, + [325901] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16086), 1, + aux_sym_brace_expression_token1, + [325908] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15609), 1, + ACTIONS(16088), 1, anon_sym_RBRACE3, - [319608] = 2, - ACTIONS(71), 1, + [325915] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15611), 1, + ACTIONS(15035), 1, + anon_sym_RBRACE3, + [325922] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16090), 1, + sym_raw_string_content, + [325929] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15035), 1, + anon_sym_RBRACE3, + [325936] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15035), 1, + anon_sym_RBRACE3, + [325943] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15035), 1, + anon_sym_RBRACE3, + [325950] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16092), 1, anon_sym_RPAREN, - [319615] = 2, - ACTIONS(71), 1, + [325957] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15613), 1, + ACTIONS(16094), 1, aux_sym_brace_expression_token1, - [319622] = 2, - ACTIONS(71), 1, + [325964] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15371), 1, - anon_sym_BQUOTE, - [319629] = 2, - ACTIONS(71), 1, + ACTIONS(16096), 1, + anon_sym_fi, + [325971] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15615), 1, - anon_sym_BQUOTE, - [319636] = 2, - ACTIONS(71), 1, + ACTIONS(9485), 1, + anon_sym_RBRACK, + [325978] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15611), 1, + ACTIONS(16098), 1, + sym_raw_string_content, + [325985] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16100), 1, anon_sym_BQUOTE, - [319643] = 2, - ACTIONS(71), 1, + [325992] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15617), 1, - anon_sym_RBRACK_RBRACK, - [319650] = 2, - ACTIONS(71), 1, + ACTIONS(16102), 1, + anon_sym_in, + [325999] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15619), 1, - anon_sym_RPAREN, - [319657] = 2, - ACTIONS(3), 1, + ACTIONS(16104), 1, + anon_sym_in, + [326006] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15621), 1, - aux_sym_heredoc_redirect_token1, - [319664] = 2, - ACTIONS(71), 1, + ACTIONS(16106), 1, + anon_sym_BQUOTE, + [326013] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15623), 1, + ACTIONS(16108), 1, aux_sym_brace_expression_token1, - [319671] = 2, - ACTIONS(71), 1, + [326020] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15625), 1, - anon_sym_RPAREN, - [319678] = 2, - ACTIONS(71), 1, + ACTIONS(16092), 1, + anon_sym_BQUOTE, + [326027] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15627), 1, - anon_sym_RBRACE2, - [319685] = 2, + ACTIONS(16110), 1, + anon_sym_esac, + [326034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15629), 1, - aux_sym_heredoc_redirect_token1, - [319692] = 2, - ACTIONS(71), 1, + ACTIONS(16112), 1, + sym_raw_string_content, + [326041] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15631), 1, - anon_sym_RBRACE3, - [319699] = 2, - ACTIONS(71), 1, + ACTIONS(16114), 1, + anon_sym_RPAREN, + [326048] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16066), 1, + anon_sym_BQUOTE, + [326055] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15633), 1, + ACTIONS(16116), 1, anon_sym_RPAREN, - [319706] = 2, - ACTIONS(71), 1, + [326062] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15635), 1, - anon_sym_RBRACE3, - [319713] = 2, - ACTIONS(71), 1, + ACTIONS(16118), 1, + anon_sym_RBRACE2, + [326069] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15637), 1, + ACTIONS(16120), 1, aux_sym_brace_expression_token1, - [319720] = 2, - ACTIONS(71), 1, + [326076] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15639), 1, - anon_sym_RPAREN, - [319727] = 2, + ACTIONS(16122), 1, + anon_sym_SQUOTE, + [326083] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16124), 1, + anon_sym_RBRACE3, + [326090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15641), 1, - aux_sym_heredoc_redirect_token1, - [319734] = 2, - ACTIONS(71), 1, + ACTIONS(16126), 1, + sym_raw_string_content, + [326097] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15643), 1, - anon_sym_RPAREN, - [319741] = 2, - ACTIONS(71), 1, + ACTIONS(16128), 1, + anon_sym_esac, + [326104] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14488), 1, + ACTIONS(16130), 1, anon_sym_RBRACE3, - [319748] = 2, - ACTIONS(71), 1, + [326111] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15645), 1, - anon_sym_BQUOTE, - [319755] = 2, - ACTIONS(71), 1, + ACTIONS(15035), 1, + anon_sym_RBRACE3, + [326118] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15647), 1, + ACTIONS(16132), 1, anon_sym_RBRACE3, - [319762] = 2, - ACTIONS(71), 1, + [326125] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15649), 1, + ACTIONS(16134), 1, aux_sym_brace_expression_token1, - [319769] = 2, - ACTIONS(71), 1, + [326132] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16136), 1, + anon_sym_BQUOTE, + [326139] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15651), 1, + ACTIONS(16138), 1, anon_sym_RPAREN, - [319776] = 2, - ACTIONS(71), 1, + [326146] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15653), 1, - anon_sym_RBRACE3, - [319783] = 2, - ACTIONS(71), 1, + ACTIONS(16140), 1, + sym_raw_string_content, + [326153] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15655), 1, - anon_sym_BQUOTE, - [319790] = 2, - ACTIONS(71), 1, + ACTIONS(16142), 1, + aux_sym_heredoc_redirect_token1, + [326160] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15651), 1, - anon_sym_BQUOTE, - [319797] = 2, - ACTIONS(71), 1, + ACTIONS(16144), 1, + aux_sym_heredoc_redirect_token1, + [326167] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15657), 1, - anon_sym_RPAREN, - [319804] = 2, - ACTIONS(71), 1, + ACTIONS(16146), 1, + anon_sym_esac, + [326174] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15659), 1, - anon_sym_RBRACE3, - [319811] = 2, - ACTIONS(71), 1, + ACTIONS(16148), 1, + anon_sym_esac, + [326181] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15661), 1, + ACTIONS(16150), 1, aux_sym_brace_expression_token1, - [319818] = 2, - ACTIONS(71), 1, + [326188] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15639), 1, + ACTIONS(16152), 1, anon_sym_BQUOTE, - [319825] = 2, - ACTIONS(71), 1, + [326195] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15663), 1, + ACTIONS(16154), 1, anon_sym_RBRACE2, - [319832] = 2, - ACTIONS(71), 1, + [326202] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15665), 1, - aux_sym_brace_expression_token1, - [319839] = 2, - ACTIONS(71), 1, + ACTIONS(16156), 1, + sym_raw_string_content, + [326209] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15667), 1, - anon_sym_RPAREN, - [319846] = 2, - ACTIONS(71), 1, + ACTIONS(16058), 1, + anon_sym_BQUOTE, + [326216] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15669), 1, - anon_sym_RPAREN, - [319853] = 2, - ACTIONS(71), 1, + ACTIONS(16158), 1, + aux_sym_heredoc_redirect_token1, + [326223] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14688), 1, - anon_sym_fi, - [319860] = 2, - ACTIONS(71), 1, + ACTIONS(16160), 1, + aux_sym_heredoc_redirect_token1, + [326230] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15671), 1, + ACTIONS(16162), 1, + anon_sym_SQUOTE, + [326237] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16164), 1, aux_sym_brace_expression_token1, - [319867] = 2, - ACTIONS(71), 1, + [326244] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15673), 1, + ACTIONS(16166), 1, anon_sym_RBRACE3, - [319874] = 2, - ACTIONS(71), 1, + [326251] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15675), 1, + ACTIONS(16168), 1, anon_sym_RPAREN, - [319881] = 2, - ACTIONS(71), 1, + [326258] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15677), 1, - anon_sym_BQUOTE, - [319888] = 2, - ACTIONS(71), 1, + ACTIONS(16170), 1, + sym_raw_string_content, + [326265] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15679), 1, - anon_sym_BQUOTE, - [319895] = 2, - ACTIONS(71), 1, + ACTIONS(14857), 1, + anon_sym_fi, + [326272] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15675), 1, + ACTIONS(16172), 1, anon_sym_BQUOTE, - [319902] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15681), 1, - anon_sym_RBRACE3, - [319909] = 2, - ACTIONS(71), 1, + [326279] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15683), 1, - aux_sym_brace_expression_token1, - [319916] = 2, - ACTIONS(71), 1, + ACTIONS(16168), 1, + anon_sym_BQUOTE, + [326286] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15685), 1, + ACTIONS(16174), 1, anon_sym_RPAREN, - [319923] = 2, - ACTIONS(71), 1, + [326293] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15687), 1, - anon_sym_RPAREN, - [319930] = 2, - ACTIONS(71), 1, + ACTIONS(16176), 1, + aux_sym_brace_expression_token1, + [326300] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15689), 1, - anon_sym_BQUOTE, - [319937] = 2, - ACTIONS(71), 1, + ACTIONS(15035), 1, + anon_sym_RBRACE3, + [326307] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15685), 1, + ACTIONS(16138), 1, anon_sym_BQUOTE, - [319944] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15691), 1, - anon_sym_RPAREN, - [319951] = 2, - ACTIONS(71), 1, + [326314] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15693), 1, - anon_sym_BQUOTE, - [319958] = 2, - ACTIONS(71), 1, + ACTIONS(16178), 1, + sym_raw_string_content, + [326321] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15695), 1, - aux_sym_brace_expression_token1, - [319965] = 2, - ACTIONS(71), 1, + ACTIONS(16180), 1, + anon_sym_RBRACE2, + [326328] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15669), 1, - anon_sym_BQUOTE, - [319972] = 2, - ACTIONS(71), 1, + ACTIONS(16182), 1, + aux_sym_heredoc_redirect_token1, + [326335] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15697), 1, - anon_sym_RBRACE2, - [319979] = 2, - ACTIONS(71), 1, + ACTIONS(16184), 1, + anon_sym_in, + [326342] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15699), 1, + ACTIONS(16186), 1, anon_sym_RPAREN, - [319986] = 2, - ACTIONS(71), 1, + [326349] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15701), 1, - anon_sym_RBRACE2, - [319993] = 2, - ACTIONS(71), 1, + ACTIONS(16188), 1, + aux_sym_brace_expression_token1, + [326356] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, - anon_sym_RBRACE3, - [320000] = 2, + ACTIONS(16190), 1, + aux_sym_brace_expression_token1, + [326363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15703), 1, + ACTIONS(16192), 1, aux_sym_heredoc_redirect_token1, - [320007] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15705), 1, - aux_sym_brace_expression_token1, - [320014] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15643), 1, - anon_sym_BQUOTE, - [320021] = 2, - ACTIONS(71), 1, + [326370] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15707), 1, - anon_sym_RBRACE2, - [320028] = 2, - ACTIONS(71), 1, + ACTIONS(16194), 1, + sym_raw_string_content, + [326377] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15709), 1, - anon_sym_RBRACE2, - [320035] = 2, - ACTIONS(71), 1, + ACTIONS(15035), 1, + anon_sym_RBRACE3, + [326384] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15711), 1, + ACTIONS(16196), 1, anon_sym_RPAREN, - [320042] = 2, - ACTIONS(71), 1, + [326391] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14488), 1, - anon_sym_RBRACE3, - [320049] = 2, - ACTIONS(71), 1, + ACTIONS(16198), 1, + anon_sym_esac, + [326398] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15713), 1, + ACTIONS(15035), 1, anon_sym_RBRACE3, - [320056] = 2, - ACTIONS(71), 1, + [326405] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15715), 1, + ACTIONS(16200), 1, aux_sym_brace_expression_token1, - [320063] = 2, - ACTIONS(71), 1, + [326412] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15717), 1, + ACTIONS(16202), 1, anon_sym_RPAREN, - [320070] = 2, + [326419] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16204), 1, + anon_sym_esac, + [326426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15719), 1, - aux_sym_heredoc_redirect_token1, - [320077] = 2, - ACTIONS(71), 1, + ACTIONS(16206), 1, + sym_raw_string_content, + [326433] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15721), 1, + ACTIONS(16032), 1, anon_sym_BQUOTE, - [320084] = 2, - ACTIONS(71), 1, + [326440] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15717), 1, - anon_sym_BQUOTE, - [320091] = 2, - ACTIONS(71), 1, + ACTIONS(9483), 1, + anon_sym_RBRACK, + [326447] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15723), 1, - anon_sym_RPAREN, - [320098] = 2, - ACTIONS(71), 1, + ACTIONS(16208), 1, + anon_sym_RBRACE2, + [326454] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15725), 1, + ACTIONS(15035), 1, anon_sym_RBRACE3, - [320105] = 2, - ACTIONS(71), 1, + [326461] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15727), 1, + ACTIONS(16210), 1, aux_sym_brace_expression_token1, - [320112] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(15729), 1, - aux_sym_heredoc_redirect_token1, - [320119] = 2, - ACTIONS(71), 1, + [326468] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14488), 1, + ACTIONS(15071), 1, anon_sym_RBRACE3, - [320126] = 2, - ACTIONS(71), 1, + [326475] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15731), 1, + ACTIONS(16212), 1, anon_sym_RBRACE2, - [320133] = 2, - ACTIONS(71), 1, + [326482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16214), 1, + sym_raw_string_content, + [326489] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15733), 1, + ACTIONS(16216), 1, sym_heredoc_end, - [320140] = 2, - ACTIONS(71), 1, + [326496] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15735), 1, - anon_sym_in, - [320147] = 2, - ACTIONS(71), 1, + ACTIONS(16218), 1, + anon_sym_SQUOTE, + [326503] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16220), 1, + anon_sym_RBRACE3, + [326510] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15737), 1, + ACTIONS(16222), 1, anon_sym_RPAREN, - [320154] = 2, - ACTIONS(71), 1, + [326517] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15739), 1, + ACTIONS(16224), 1, aux_sym_brace_expression_token1, - [320161] = 2, - ACTIONS(71), 1, + [326524] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15741), 1, - anon_sym_fi, - [320168] = 2, - ACTIONS(71), 1, + ACTIONS(16226), 1, + sym_heredoc_end, + [326531] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15743), 1, - anon_sym_RPAREN, - [320175] = 2, - ACTIONS(71), 1, + ACTIONS(16228), 1, + anon_sym_BQUOTE, + [326538] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15745), 1, - sym_heredoc_start, - [320182] = 2, - ACTIONS(71), 1, + ACTIONS(16230), 1, + sym_raw_string_content, + [326545] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15747), 1, - anon_sym_RBRACE3, - [320189] = 2, - ACTIONS(71), 1, + ACTIONS(16222), 1, + anon_sym_BQUOTE, + [326552] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15749), 1, + ACTIONS(16232), 1, anon_sym_RPAREN, - [320196] = 2, - ACTIONS(71), 1, + [326559] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15751), 1, + ACTIONS(16234), 1, anon_sym_RBRACE3, - [320203] = 2, - ACTIONS(71), 1, + [326566] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16236), 1, + anon_sym_BQUOTE, + [326573] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15753), 1, + ACTIONS(16238), 1, aux_sym_brace_expression_token1, - [320210] = 2, - ACTIONS(71), 1, + [326580] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15755), 1, - anon_sym_RPAREN, - [320217] = 2, - ACTIONS(71), 1, + ACTIONS(16240), 1, + anon_sym_SQUOTE, + [326587] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, + ACTIONS(16242), 1, anon_sym_RBRACE3, - [320224] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15757), 1, - anon_sym_BQUOTE, - [320231] = 2, - ACTIONS(71), 1, + [326594] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15281), 1, - aux_sym__simple_variable_name_token1, - [320238] = 2, - ACTIONS(71), 1, + ACTIONS(16244), 1, + sym_raw_string_content, + [326601] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15759), 1, + ACTIONS(16246), 1, anon_sym_RPAREN, - [320245] = 2, - ACTIONS(71), 1, + [326608] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15761), 1, + ACTIONS(16248), 1, anon_sym_RBRACE2, - [320252] = 2, - ACTIONS(71), 1, + [326615] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15763), 1, + ACTIONS(16250), 1, + anon_sym_RBRACE2, + [326622] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16252), 1, + anon_sym_BQUOTE, + [326629] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16254), 1, aux_sym_brace_expression_token1, - [320259] = 2, - ACTIONS(71), 1, + [326636] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15755), 1, + ACTIONS(16246), 1, anon_sym_BQUOTE, - [320266] = 2, - ACTIONS(71), 1, + [326643] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15765), 1, - anon_sym_RPAREN, - [320273] = 2, - ACTIONS(71), 1, + ACTIONS(16256), 1, + anon_sym_esac, + [326650] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15767), 1, - sym_heredoc_end, - [320280] = 2, - ACTIONS(71), 1, + ACTIONS(16258), 1, + sym_raw_string_content, + [326657] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15769), 1, - anon_sym_BQUOTE, - [320287] = 2, - ACTIONS(71), 1, + ACTIONS(16260), 1, + anon_sym_esac, + [326664] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15771), 1, - anon_sym_RBRACE2, - [320294] = 2, - ACTIONS(71), 1, + ACTIONS(16262), 1, + anon_sym_RPAREN, + [326671] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15749), 1, + ACTIONS(16202), 1, anon_sym_BQUOTE, - [320301] = 2, - ACTIONS(71), 1, + [326678] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15773), 1, - aux_sym_brace_expression_token1, - [320308] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15775), 1, + ACTIONS(16264), 1, anon_sym_RPAREN, - [320315] = 2, - ACTIONS(71), 1, + [326685] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16266), 1, + aux_sym_brace_expression_token1, + [326692] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15777), 1, + ACTIONS(16268), 1, anon_sym_RBRACE2, - [320322] = 2, - ACTIONS(71), 1, + [326699] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15779), 1, + ACTIONS(16270), 1, anon_sym_RPAREN, - [320329] = 2, - ACTIONS(71), 1, + [326706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16272), 1, + sym_raw_string_content, + [326713] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16274), 1, + sym_word, + [326720] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15781), 1, + ACTIONS(16276), 1, + anon_sym_SQUOTE, + [326727] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16278), 1, anon_sym_RBRACE2, - [320336] = 2, - ACTIONS(71), 1, + [326734] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14488), 1, - anon_sym_RBRACE3, - [320343] = 2, - ACTIONS(71), 1, + ACTIONS(16280), 1, + anon_sym_SQUOTE, + [326741] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16282), 1, + aux_sym_brace_expression_token1, + [326748] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15783), 1, + ACTIONS(16284), 1, anon_sym_RBRACE3, - [320350] = 2, - ACTIONS(71), 1, + [326755] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15785), 1, - aux_sym_brace_expression_token1, - [320357] = 2, - ACTIONS(71), 1, + ACTIONS(16286), 1, + anon_sym_RPAREN, + [326762] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15787), 1, - anon_sym_RBRACK_RBRACK, - [320364] = 2, - ACTIONS(71), 1, + ACTIONS(16288), 1, + sym_raw_string_content, + [326769] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15789), 1, + ACTIONS(15146), 1, anon_sym_RBRACE3, - [320371] = 2, - ACTIONS(71), 1, + [326776] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(9206), 1, - anon_sym_RBRACK, - [320378] = 2, - ACTIONS(71), 1, + ACTIONS(16290), 1, + anon_sym_BQUOTE, + [326783] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16292), 1, + anon_sym_fi, + [326790] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16294), 1, + anon_sym_SQUOTE, + [326797] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16296), 1, + aux_sym_brace_expression_token1, + [326804] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15791), 1, + ACTIONS(16298), 1, anon_sym_RBRACE3, - [320385] = 2, - ACTIONS(71), 1, + [326811] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15793), 1, + ACTIONS(16300), 1, anon_sym_RPAREN, - [320392] = 2, - ACTIONS(71), 1, + [326818] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15795), 1, - anon_sym_RPAREN, - [320399] = 2, - ACTIONS(71), 1, + ACTIONS(16302), 1, + sym_raw_string_content, + [326825] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15797), 1, - aux_sym_brace_expression_token1, - [320406] = 2, - ACTIONS(71), 1, + ACTIONS(16304), 1, + anon_sym_esac, + [326832] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15799), 1, - anon_sym_BQUOTE, - [320413] = 2, - ACTIONS(71), 1, + ACTIONS(16306), 1, + anon_sym_RPAREN_RPAREN, + [326839] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15793), 1, + ACTIONS(16286), 1, anon_sym_BQUOTE, - [320420] = 2, - ACTIONS(71), 1, + [326846] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15801), 1, + ACTIONS(16308), 1, anon_sym_RPAREN, - [320427] = 2, - ACTIONS(71), 1, + [326853] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(9024), 1, - anon_sym_RBRACK, - [320434] = 2, - ACTIONS(71), 1, + ACTIONS(16310), 1, + aux_sym_brace_expression_token1, + [326860] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16312), 1, + anon_sym_fi, + [326867] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15803), 1, + ACTIONS(16314), 1, anon_sym_RPAREN, - [320441] = 2, - ACTIONS(71), 1, + [326874] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15805), 1, - anon_sym_RBRACK_RBRACK, - [320448] = 2, - ACTIONS(71), 1, + ACTIONS(16316), 1, + sym_raw_string_content, + [326881] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15807), 1, - aux_sym_brace_expression_token1, - [320455] = 2, - ACTIONS(71), 1, + ACTIONS(16318), 1, + anon_sym_esac, + [326888] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15809), 1, - anon_sym_RBRACE2, - [320462] = 2, - ACTIONS(71), 1, + ACTIONS(16320), 1, + anon_sym_BQUOTE, + [326895] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, + ACTIONS(16322), 1, anon_sym_RBRACE3, - [320469] = 2, - ACTIONS(71), 1, + [326902] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15811), 1, - anon_sym_RBRACE2, - [320476] = 2, - ACTIONS(71), 1, + ACTIONS(16324), 1, + anon_sym_SQUOTE, + [326909] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16326), 1, + aux_sym_brace_expression_token1, + [326916] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15813), 1, + ACTIONS(16328), 1, anon_sym_RBRACE2, - [320483] = 2, - ACTIONS(71), 1, + [326923] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15815), 1, + ACTIONS(16330), 1, anon_sym_RBRACK_RBRACK, - [320490] = 2, - ACTIONS(71), 1, + [326930] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15817), 1, - anon_sym_RBRACE3, - [320497] = 2, - ACTIONS(71), 1, + ACTIONS(16332), 1, + sym_raw_string_content, + [326937] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15819), 1, - aux_sym_brace_expression_token1, - [320504] = 2, - ACTIONS(71), 1, + ACTIONS(16334), 1, + anon_sym_SQUOTE, + [326944] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14981), 1, + anon_sym_fi, + [326951] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16300), 1, + anon_sym_BQUOTE, + [326958] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15821), 1, + ACTIONS(16336), 1, anon_sym_RPAREN, - [320511] = 2, - ACTIONS(71), 1, + [326965] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15823), 1, + ACTIONS(16338), 1, + aux_sym_brace_expression_token1, + [326972] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16340), 1, anon_sym_RBRACE3, - [320518] = 2, - ACTIONS(71), 1, + [326979] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15825), 1, + ACTIONS(16342), 1, anon_sym_RPAREN, - [320525] = 2, - ACTIONS(71), 1, + [326986] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16344), 1, + sym_raw_string_content, + [326993] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, + ACTIONS(16346), 1, anon_sym_RBRACE3, - [320532] = 2, - ACTIONS(71), 1, + [327000] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15827), 1, + ACTIONS(16348), 1, anon_sym_RBRACE3, - [320539] = 2, - ACTIONS(71), 1, + [327007] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15829), 1, - anon_sym_RPAREN, - [320546] = 2, - ACTIONS(71), 1, + ACTIONS(16350), 1, + anon_sym_RBRACE3, + [327014] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16352), 1, + anon_sym_BQUOTE, + [327021] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15831), 1, + ACTIONS(16354), 1, aux_sym_brace_expression_token1, - [320553] = 2, - ACTIONS(71), 1, + [327028] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15833), 1, - anon_sym_BQUOTE, - [320560] = 2, - ACTIONS(71), 1, + ACTIONS(16356), 1, + anon_sym_RBRACE2, + [327035] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15835), 1, + ACTIONS(16342), 1, anon_sym_BQUOTE, - [320567] = 2, - ACTIONS(71), 1, + [327042] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15829), 1, - anon_sym_BQUOTE, - [320574] = 2, - ACTIONS(71), 1, + ACTIONS(16358), 1, + sym_raw_string_content, + [327049] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14877), 1, + anon_sym_RBRACE3, + [327056] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15837), 1, + ACTIONS(16360), 1, anon_sym_RPAREN, - [320581] = 2, - ACTIONS(71), 1, + [327063] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15839), 1, - anon_sym_BQUOTE, - [320588] = 2, - ACTIONS(71), 1, + ACTIONS(16362), 1, + anon_sym_esac, + [327070] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15825), 1, - anon_sym_BQUOTE, - [320595] = 2, - ACTIONS(71), 1, + ACTIONS(16364), 1, + anon_sym_RPAREN, + [327077] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15841), 1, + ACTIONS(16366), 1, aux_sym_brace_expression_token1, - [320602] = 2, - ACTIONS(71), 1, + [327084] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15843), 1, - anon_sym_RBRACE2, - [320609] = 2, - ACTIONS(71), 1, + ACTIONS(16368), 1, + anon_sym_SQUOTE, + [327091] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15845), 1, - anon_sym_RPAREN, - [320616] = 2, - ACTIONS(71), 1, + ACTIONS(16370), 1, + anon_sym_RBRACE2, + [327098] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15847), 1, - anon_sym_RPAREN, - [320623] = 2, - ACTIONS(71), 1, + ACTIONS(16372), 1, + sym_raw_string_content, + [327105] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15849), 1, + ACTIONS(16374), 1, anon_sym_BQUOTE, - [320630] = 2, - ACTIONS(71), 1, + [327112] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15851), 1, - anon_sym_RBRACE2, - [320637] = 2, - ACTIONS(71), 1, + ACTIONS(16376), 1, + ts_builtin_sym_end, + [327119] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15821), 1, - anon_sym_BQUOTE, - [320644] = 2, - ACTIONS(71), 1, + ACTIONS(16378), 1, + sym_heredoc_start, + [327126] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15853), 1, + ACTIONS(14361), 1, + anon_sym_RBRACE3, + [327133] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16380), 1, aux_sym_brace_expression_token1, - [320651] = 2, - ACTIONS(71), 1, + [327140] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15855), 1, + ACTIONS(15069), 1, anon_sym_RBRACE3, - [320658] = 2, - ACTIONS(71), 1, + [327147] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15857), 1, - anon_sym_RPAREN, - [320665] = 2, - ACTIONS(71), 1, + ACTIONS(16364), 1, + anon_sym_BQUOTE, + [327154] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15859), 1, - anon_sym_RPAREN, - [320672] = 2, - ACTIONS(71), 1, + ACTIONS(16382), 1, + sym_raw_string_content, + [327161] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15795), 1, - anon_sym_BQUOTE, - [320679] = 2, - ACTIONS(71), 1, + ACTIONS(16384), 1, + anon_sym_SQUOTE, + [327168] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15861), 1, + ACTIONS(14883), 1, anon_sym_RBRACE3, - [320686] = 2, - ACTIONS(71), 1, + [327175] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15863), 1, + ACTIONS(16386), 1, anon_sym_RPAREN, - [320693] = 2, - ACTIONS(71), 1, + [327182] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15865), 1, + ACTIONS(16388), 1, + anon_sym_SQUOTE, + [327189] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16390), 1, aux_sym_brace_expression_token1, - [320700] = 2, - ACTIONS(71), 1, + [327196] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15867), 1, - anon_sym_BQUOTE, - [320707] = 2, - ACTIONS(71), 1, + ACTIONS(16392), 1, + anon_sym_RBRACE3, + [327203] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15869), 1, - anon_sym_BQUOTE, - [320714] = 2, - ACTIONS(71), 1, + ACTIONS(16394), 1, + anon_sym_RBRACE3, + [327210] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15863), 1, - anon_sym_BQUOTE, - [320721] = 2, - ACTIONS(71), 1, + ACTIONS(16396), 1, + sym_raw_string_content, + [327217] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15871), 1, + ACTIONS(16398), 1, anon_sym_RPAREN, - [320728] = 2, - ACTIONS(71), 1, + [327224] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15873), 1, + ACTIONS(16400), 1, anon_sym_RPAREN, - [320735] = 2, - ACTIONS(71), 1, + [327231] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16402), 1, + anon_sym_BQUOTE, + [327238] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15857), 1, + ACTIONS(16398), 1, anon_sym_BQUOTE, - [320742] = 2, - ACTIONS(71), 1, + [327245] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15875), 1, + ACTIONS(16404), 1, aux_sym_brace_expression_token1, - [320749] = 2, - ACTIONS(71), 1, + [327252] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15877), 1, - anon_sym_RBRACE2, - [320756] = 2, - ACTIONS(71), 1, + ACTIONS(14899), 1, + anon_sym_RBRACE3, + [327259] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15879), 1, + ACTIONS(16406), 1, anon_sym_RPAREN, - [320763] = 2, - ACTIONS(71), 1, + [327266] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14626), 1, - anon_sym_fi, - [320770] = 2, - ACTIONS(71), 1, + ACTIONS(16408), 1, + sym_raw_string_content, + [327273] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15881), 1, - anon_sym_LT_LT_LT, - [320777] = 2, - ACTIONS(71), 1, + ACTIONS(16410), 1, + anon_sym_RPAREN, + [327280] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, + ACTIONS(14899), 1, anon_sym_RBRACE3, - [320784] = 2, - ACTIONS(71), 1, + [327287] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15883), 1, + ACTIONS(14899), 1, anon_sym_RBRACE3, - [320791] = 2, - ACTIONS(71), 1, + [327294] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15885), 1, - aux_sym_brace_expression_token1, - [320798] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15887), 1, + ACTIONS(16412), 1, anon_sym_RBRACE3, - [320805] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15889), 1, - anon_sym_RPAREN, - [320812] = 2, - ACTIONS(71), 1, + [327301] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15891), 1, - anon_sym_RPAREN, - [320819] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15893), 1, - anon_sym_RBRACE3, - [320826] = 2, - ACTIONS(71), 1, + ACTIONS(16414), 1, + aux_sym_brace_expression_token1, + [327308] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15895), 1, - anon_sym_RPAREN, - [320833] = 2, - ACTIONS(71), 1, + ACTIONS(16416), 1, + anon_sym_esac, + [327315] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15897), 1, + ACTIONS(16418), 1, anon_sym_BQUOTE, - [320840] = 2, - ACTIONS(71), 1, + [327322] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15899), 1, - aux_sym_brace_expression_token1, - [320847] = 2, - ACTIONS(71), 1, + ACTIONS(16420), 1, + sym_raw_string_content, + [327329] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15901), 1, + ACTIONS(16410), 1, anon_sym_BQUOTE, - [320854] = 2, - ACTIONS(71), 1, + [327336] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15895), 1, - anon_sym_BQUOTE, - [320861] = 2, - ACTIONS(71), 1, + ACTIONS(15606), 1, + aux_sym__simple_variable_name_token1, + [327343] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15903), 1, + ACTIONS(16422), 1, anon_sym_RPAREN, - [320868] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15905), 1, - aux_sym_brace_expression_token1, - [320875] = 2, - ACTIONS(71), 1, + [327350] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15889), 1, - anon_sym_BQUOTE, - [320882] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15907), 1, - anon_sym_RBRACE2, - [320889] = 2, - ACTIONS(71), 1, + ACTIONS(16424), 1, + anon_sym_RPAREN, + [327357] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15909), 1, + ACTIONS(16426), 1, aux_sym_brace_expression_token1, - [320896] = 2, - ACTIONS(71), 1, + [327364] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15911), 1, - anon_sym_RPAREN, - [320903] = 2, - ACTIONS(71), 1, + ACTIONS(16428), 1, + anon_sym_RBRACE2, + [327371] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15913), 1, - anon_sym_BQUOTE, - [320910] = 2, - ACTIONS(71), 1, + ACTIONS(15071), 1, + anon_sym_RBRACE3, + [327378] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15915), 1, - anon_sym_RBRACE2, - [320917] = 2, - ACTIONS(71), 1, + ACTIONS(16430), 1, + sym_raw_string_content, + [327385] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15917), 1, + ACTIONS(16432), 1, anon_sym_RBRACE2, - [320924] = 2, - ACTIONS(71), 1, + [327392] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15919), 1, - anon_sym_RBRACE2, - [320931] = 2, - ACTIONS(71), 1, + ACTIONS(16434), 1, + anon_sym_SQUOTE, + [327399] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14754), 1, + ACTIONS(16436), 1, anon_sym_RBRACE3, - [320938] = 2, - ACTIONS(71), 1, + [327406] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16438), 1, + anon_sym_esac, + [327413] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15921), 1, + ACTIONS(16440), 1, aux_sym_brace_expression_token1, - [320945] = 2, - ACTIONS(71), 1, + [327420] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15923), 1, - anon_sym_BQUOTE, - [320952] = 2, - ACTIONS(71), 1, + ACTIONS(14899), 1, + anon_sym_RBRACE3, + [327427] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15891), 1, - anon_sym_BQUOTE, - [320959] = 2, - ACTIONS(71), 1, + ACTIONS(15069), 1, + anon_sym_RBRACE3, + [327434] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15925), 1, - anon_sym_RPAREN, - [320966] = 2, - ACTIONS(71), 1, + ACTIONS(16442), 1, + sym_raw_string_content, + [327441] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15927), 1, + ACTIONS(15071), 1, anon_sym_RBRACE3, - [320973] = 2, - ACTIONS(71), 1, + [327448] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15929), 1, + ACTIONS(16444), 1, anon_sym_RPAREN, - [320980] = 2, - ACTIONS(71), 1, + [327455] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15931), 1, - anon_sym_RBRACE3, - [320987] = 2, - ACTIONS(71), 1, + ACTIONS(16446), 1, + sym_word, + [327462] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15933), 1, - aux_sym_brace_expression_token1, - [320994] = 2, - ACTIONS(71), 1, + ACTIONS(16448), 1, + anon_sym_RBRACE2, + [327469] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15935), 1, - anon_sym_BQUOTE, - [321001] = 2, - ACTIONS(71), 1, + ACTIONS(16450), 1, + aux_sym_brace_expression_token1, + [327476] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15929), 1, - anon_sym_BQUOTE, - [321008] = 2, - ACTIONS(71), 1, + ACTIONS(16452), 1, + anon_sym_RBRACE3, + [327483] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15937), 1, - anon_sym_RPAREN, - [321015] = 2, - ACTIONS(71), 1, + ACTIONS(16454), 1, + anon_sym_esac, + [327490] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15939), 1, - anon_sym_RPAREN, - [321022] = 2, - ACTIONS(71), 1, + ACTIONS(16456), 1, + sym_raw_string_content, + [327497] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14574), 1, - anon_sym_fi, - [321029] = 2, + ACTIONS(16458), 1, + anon_sym_RBRACK_RBRACK, + [327504] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15941), 1, - aux_sym_heredoc_redirect_token1, - [321036] = 2, - ACTIONS(71), 1, + ACTIONS(16460), 1, + sym_raw_string_content, + [327511] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16462), 1, + anon_sym_BQUOTE, + [327518] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(15071), 1, + anon_sym_RBRACE3, + [327525] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15943), 1, + ACTIONS(16464), 1, aux_sym_brace_expression_token1, - [321043] = 2, - ACTIONS(71), 1, + [327532] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15945), 1, - anon_sym_RBRACE2, - [321050] = 2, + ACTIONS(16466), 1, + anon_sym_SQUOTE, + [327539] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16444), 1, + anon_sym_BQUOTE, + [327546] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15947), 1, - aux_sym_heredoc_redirect_token1, - [321057] = 2, - ACTIONS(71), 1, + ACTIONS(16468), 1, + sym_raw_string_content, + [327553] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15949), 1, - anon_sym_RBRACE3, - [321064] = 2, - ACTIONS(71), 1, + ACTIONS(16470), 1, + aux_sym_heredoc_redirect_token1, + [327560] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, + ACTIONS(16472), 1, anon_sym_RBRACE3, - [321071] = 2, - ACTIONS(71), 1, + [327567] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, - anon_sym_RBRACE3, - [321078] = 2, - ACTIONS(71), 1, + ACTIONS(16474), 1, + anon_sym_LT_LT_LT, + [327574] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, - anon_sym_RBRACE3, - [321085] = 2, - ACTIONS(71), 1, + ACTIONS(16476), 1, + anon_sym_RPAREN, + [327581] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15951), 1, + ACTIONS(16478), 1, aux_sym_brace_expression_token1, - [321092] = 2, - ACTIONS(71), 1, + [327588] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15953), 1, + ACTIONS(16480), 1, anon_sym_RBRACE3, - [321099] = 2, - ACTIONS(71), 1, + [327595] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15955), 1, - anon_sym_RPAREN, - [321106] = 2, - ACTIONS(71), 1, + ACTIONS(16482), 1, + anon_sym_BQUOTE, + [327602] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15957), 1, - anon_sym_RBRACE3, - [321113] = 2, - ACTIONS(71), 1, + ACTIONS(16484), 1, + sym_raw_string_content, + [327609] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16476), 1, + anon_sym_BQUOTE, + [327616] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15959), 1, + ACTIONS(16486), 1, anon_sym_RPAREN, - [321120] = 2, - ACTIONS(71), 1, + [327623] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15961), 1, - anon_sym_esac, - [321127] = 2, - ACTIONS(3), 1, + ACTIONS(16488), 1, + anon_sym_RPAREN, + [327630] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15963), 1, - aux_sym_heredoc_redirect_token1, - [321134] = 2, - ACTIONS(71), 1, + ACTIONS(16490), 1, + ts_builtin_sym_end, + [327637] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15965), 1, + ACTIONS(16492), 1, aux_sym_brace_expression_token1, - [321141] = 2, - ACTIONS(71), 1, + [327644] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15967), 1, - anon_sym_BQUOTE, - [321148] = 2, - ACTIONS(71), 1, + ACTIONS(16494), 1, + anon_sym_esac, + [327651] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15959), 1, + ACTIONS(16496), 1, anon_sym_BQUOTE, - [321155] = 2, + [327658] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15969), 1, - aux_sym_heredoc_redirect_token1, - [321162] = 2, - ACTIONS(71), 1, + ACTIONS(16498), 1, + sym_raw_string_content, + [327665] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15971), 1, - anon_sym_BQUOTE, - [321169] = 2, - ACTIONS(71), 1, + ACTIONS(16500), 1, + anon_sym_RBRACE2, + [327672] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16502), 1, + anon_sym_RBRACE2, + [327679] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15955), 1, + ACTIONS(16424), 1, anon_sym_BQUOTE, - [321176] = 2, - ACTIONS(71), 1, + [327686] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14578), 1, - anon_sym_RBRACE3, - [321183] = 2, - ACTIONS(71), 1, + ACTIONS(16504), 1, + anon_sym_RPAREN, + [327693] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15973), 1, + ACTIONS(16506), 1, aux_sym_brace_expression_token1, - [321190] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15975), 1, - anon_sym_RPAREN, - [321197] = 2, - ACTIONS(71), 1, + [327700] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15977), 1, + ACTIONS(16508), 1, anon_sym_esac, - [321204] = 2, + [327707] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(9401), 1, + anon_sym_RBRACK, + [327714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15979), 1, - aux_sym_heredoc_redirect_token1, - [321211] = 2, - ACTIONS(71), 1, + ACTIONS(16510), 1, + sym_raw_string_content, + [327721] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15981), 1, - anon_sym_RBRACE2, - [321218] = 2, - ACTIONS(71), 1, + ACTIONS(16512), 1, + anon_sym_SQUOTE, + [327728] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15983), 1, + ACTIONS(16514), 1, anon_sym_RBRACE3, - [321225] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15985), 1, - anon_sym_RPAREN, - [321232] = 2, + [327735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(15987), 1, + ACTIONS(16516), 1, aux_sym_heredoc_redirect_token1, - [321239] = 2, - ACTIONS(71), 1, + [327742] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15989), 1, - anon_sym_BQUOTE, - [321246] = 2, - ACTIONS(71), 1, + ACTIONS(16518), 1, + anon_sym_RPAREN, + [327749] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15985), 1, - anon_sym_BQUOTE, - [321253] = 2, - ACTIONS(71), 1, + ACTIONS(16520), 1, + aux_sym_brace_expression_token1, + [327756] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14754), 1, - anon_sym_RBRACE3, - [321260] = 2, - ACTIONS(71), 1, + ACTIONS(16522), 1, + anon_sym_LT_LT_LT, + [327763] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14754), 1, - anon_sym_RBRACE3, - [321267] = 2, - ACTIONS(71), 1, + ACTIONS(16524), 1, + aux_sym_brace_expression_token1, + [327770] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14754), 1, - anon_sym_RBRACE3, - [321274] = 2, - ACTIONS(71), 1, + ACTIONS(16526), 1, + sym_raw_string_content, + [327777] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15991), 1, - anon_sym_BQUOTE, - [321281] = 2, - ACTIONS(71), 1, + ACTIONS(16528), 1, + anon_sym_RPAREN, + [327784] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15993), 1, + ACTIONS(16530), 1, + anon_sym_RPAREN_RPAREN, + [327791] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16532), 1, + anon_sym_SQUOTE, + [327798] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16534), 1, anon_sym_esac, - [321288] = 2, - ACTIONS(71), 1, + [327805] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15995), 1, - sym_heredoc_end, - [321295] = 2, - ACTIONS(71), 1, + ACTIONS(16536), 1, + anon_sym_SQUOTE, + [327812] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15997), 1, + ACTIONS(16538), 1, anon_sym_RBRACE3, - [321302] = 2, - ACTIONS(71), 1, + [327819] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15999), 1, + ACTIONS(16540), 1, + anon_sym_in, + [327826] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16542), 1, + anon_sym_in, + [327833] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16544), 1, anon_sym_RPAREN, - [321309] = 2, - ACTIONS(71), 1, + [327840] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16001), 1, + ACTIONS(16546), 1, anon_sym_RBRACE3, - [321316] = 2, - ACTIONS(71), 1, + [327847] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16003), 1, + ACTIONS(16548), 1, anon_sym_BQUOTE, - [321323] = 2, - ACTIONS(71), 1, + [327854] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16005), 1, - anon_sym_RBRACE3, - [321330] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(15999), 1, + ACTIONS(16544), 1, anon_sym_BQUOTE, - [321337] = 2, - ACTIONS(71), 1, + [327861] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16007), 1, + ACTIONS(16550), 1, anon_sym_RPAREN, - [321344] = 2, - ACTIONS(71), 1, + [327868] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16009), 1, - anon_sym_RBRACE3, - [321351] = 2, - ACTIONS(71), 1, + ACTIONS(15011), 1, + anon_sym_fi, + [327875] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16011), 1, - anon_sym_RPAREN, - [321358] = 2, - ACTIONS(71), 1, + ACTIONS(16552), 1, + anon_sym_SQUOTE, + [327882] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(8948), 1, - anon_sym_RBRACK, - [321365] = 2, - ACTIONS(71), 1, + ACTIONS(16554), 1, + anon_sym_RBRACE2, + [327889] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16013), 1, + ACTIONS(16556), 1, + anon_sym_RBRACK_RBRACK, + [327896] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16558), 1, anon_sym_BQUOTE, - [321372] = 2, - ACTIONS(71), 1, + [327903] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16011), 1, + ACTIONS(16560), 1, anon_sym_BQUOTE, - [321379] = 2, - ACTIONS(71), 1, + [327910] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, - anon_sym_RBRACE3, - [321386] = 2, - ACTIONS(71), 1, + ACTIONS(16562), 1, + anon_sym_BQUOTE, + [327917] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16015), 1, + ACTIONS(16564), 1, + anon_sym_DOT_DOT, + [327924] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16566), 1, + aux_sym_heredoc_redirect_token1, + [327931] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(9191), 1, + anon_sym_RBRACK, + [327938] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(16568), 1, + aux_sym_heredoc_redirect_token1, + [327945] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16570), 1, anon_sym_RPAREN, - [321393] = 2, - ACTIONS(71), 1, + [327952] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16572), 1, + anon_sym_SQUOTE, + [327959] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16574), 1, + anon_sym_RBRACE3, + [327966] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16017), 1, + ACTIONS(16576), 1, anon_sym_RPAREN, - [321400] = 2, - ACTIONS(71), 1, + [327973] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(9281), 1, + anon_sym_RBRACK, + [327980] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16019), 1, + ACTIONS(16578), 1, anon_sym_BQUOTE, - [321407] = 2, - ACTIONS(71), 1, + [327987] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16015), 1, + ACTIONS(16576), 1, anon_sym_BQUOTE, - [321414] = 2, - ACTIONS(71), 1, + [327994] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16021), 1, + ACTIONS(16580), 1, anon_sym_RPAREN, - [321421] = 2, - ACTIONS(71), 1, + [328001] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16023), 1, - anon_sym_BQUOTE, - [321428] = 2, - ACTIONS(71), 1, + ACTIONS(16582), 1, + anon_sym_SQUOTE, + [328008] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16584), 1, + anon_sym_SQUOTE, + [328015] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16025), 1, + ACTIONS(16586), 1, + anon_sym_SQUOTE, + [328022] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16588), 1, anon_sym_RBRACE2, - [321435] = 2, - ACTIONS(71), 1, + [328029] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16007), 1, - anon_sym_BQUOTE, - [321442] = 2, - ACTIONS(71), 1, + ACTIONS(16590), 1, + aux_sym_heredoc_redirect_token1, + [328036] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16027), 1, - anon_sym_RPAREN, - [321449] = 2, - ACTIONS(71), 1, + ACTIONS(16592), 1, + aux_sym_heredoc_redirect_token1, + [328043] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(9204), 1, - anon_sym_RBRACK, - [321456] = 2, - ACTIONS(71), 1, + ACTIONS(16594), 1, + anon_sym_RBRACE2, + [328050] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16029), 1, + ACTIONS(16596), 1, anon_sym_RBRACE3, - [321463] = 2, - ACTIONS(71), 1, + [328057] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16031), 1, + ACTIONS(16598), 1, anon_sym_RPAREN, - [321470] = 2, - ACTIONS(71), 1, + [328064] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15939), 1, - anon_sym_BQUOTE, - [321477] = 2, - ACTIONS(71), 1, + ACTIONS(16600), 1, + aux_sym_heredoc_redirect_token1, + [328071] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16033), 1, - anon_sym_BQUOTE, - [321484] = 2, - ACTIONS(71), 1, + ACTIONS(16602), 1, + anon_sym_RBRACE3, + [328078] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16031), 1, + ACTIONS(16604), 1, anon_sym_BQUOTE, - [321491] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16035), 1, - anon_sym_RBRACE2, - [321498] = 2, - ACTIONS(71), 1, + [328085] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16037), 1, - anon_sym_BQUOTE, - [321505] = 2, - ACTIONS(71), 1, + ACTIONS(16606), 1, + aux_sym_heredoc_redirect_token1, + [328092] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16021), 1, + ACTIONS(16598), 1, anon_sym_BQUOTE, - [321512] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16039), 1, - anon_sym_LT_LT_LT, - [321519] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16041), 1, - anon_sym_RBRACE2, - [321526] = 2, - ACTIONS(71), 1, + [328099] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16043), 1, - anon_sym_RBRACE3, - [321533] = 2, - ACTIONS(71), 1, + ACTIONS(16608), 1, + anon_sym_SQUOTE, + [328106] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16045), 1, + ACTIONS(16610), 1, anon_sym_RBRACE3, - [321540] = 2, - ACTIONS(71), 1, + [328113] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16047), 1, + ACTIONS(16612), 1, anon_sym_RPAREN, - [321547] = 2, - ACTIONS(71), 1, + [328120] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15277), 1, + ACTIONS(15586), 1, aux_sym__simple_variable_name_token1, - [321554] = 2, - ACTIONS(71), 1, + [328127] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16049), 1, + ACTIONS(16614), 1, anon_sym_RPAREN, - [321561] = 2, - ACTIONS(71), 1, + [328134] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16051), 1, - anon_sym_RPAREN, - [321568] = 2, - ACTIONS(71), 1, + ACTIONS(16616), 1, + anon_sym_RBRACE3, + [328141] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16053), 1, + ACTIONS(16618), 1, sym_word, - [321575] = 2, - ACTIONS(71), 1, + [328148] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16055), 1, + ACTIONS(16620), 1, anon_sym_DOT_DOT, - [321582] = 2, - ACTIONS(71), 1, + [328155] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16057), 1, + ACTIONS(16622), 1, anon_sym_BQUOTE, - [321589] = 2, - ACTIONS(71), 1, + [328162] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16049), 1, - anon_sym_BQUOTE, - [321596] = 2, - ACTIONS(71), 1, + ACTIONS(16624), 1, + anon_sym_RBRACE2, + [328169] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14754), 1, - anon_sym_RBRACE3, - [321603] = 2, - ACTIONS(71), 1, + ACTIONS(16614), 1, + anon_sym_BQUOTE, + [328176] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16059), 1, + ACTIONS(16626), 1, anon_sym_RPAREN, - [321610] = 2, - ACTIONS(71), 1, + [328183] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16061), 1, + ACTIONS(16628), 1, sym_heredoc_start, - [321617] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16063), 1, - anon_sym_BQUOTE, - [321624] = 2, - ACTIONS(71), 1, + [328190] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16051), 1, - anon_sym_BQUOTE, - [321631] = 2, - ACTIONS(71), 1, + ACTIONS(16630), 1, + anon_sym_RPAREN, + [328197] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16065), 1, + ACTIONS(16632), 1, anon_sym_RPAREN, - [321638] = 2, - ACTIONS(71), 1, + [328204] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16067), 1, + ACTIONS(16634), 1, anon_sym_RPAREN, - [321645] = 2, - ACTIONS(71), 1, + [328211] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16069), 1, - anon_sym_RBRACE3, - [321652] = 2, - ACTIONS(71), 1, + ACTIONS(16636), 1, + anon_sym_RBRACE2, + [328218] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16071), 1, - anon_sym_RPAREN, - [321659] = 2, - ACTIONS(71), 1, + ACTIONS(16638), 1, + aux_sym_heredoc_redirect_token1, + [328225] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16073), 1, - sym_heredoc_end, - [321666] = 2, - ACTIONS(71), 1, + ACTIONS(16640), 1, + anon_sym_RBRACE3, + [328232] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16075), 1, - anon_sym_BQUOTE, - [321673] = 2, - ACTIONS(71), 1, + ACTIONS(16642), 1, + anon_sym_RBRACE3, + [328239] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16071), 1, - anon_sym_BQUOTE, - [321680] = 2, - ACTIONS(71), 1, + ACTIONS(16644), 1, + sym_raw_string_content, + [328246] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16077), 1, + ACTIONS(16646), 1, + anon_sym_RPAREN, + [328253] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16648), 1, anon_sym_RBRACE2, - [321687] = 2, - ACTIONS(71), 1, + [328260] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16079), 1, - anon_sym_esac, - [321694] = 2, - ACTIONS(71), 1, + ACTIONS(16650), 1, + anon_sym_RPAREN, + [328267] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14664), 1, - anon_sym_fi, - [321701] = 2, - ACTIONS(71), 1, + ACTIONS(16652), 1, + anon_sym_BQUOTE, + [328274] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16081), 1, - anon_sym_RBRACE2, - [321708] = 2, - ACTIONS(71), 1, + ACTIONS(16654), 1, + anon_sym_RPAREN, + [328281] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, - anon_sym_RBRACE3, - [321715] = 2, - ACTIONS(71), 1, + ACTIONS(16656), 1, + anon_sym_SQUOTE, + [328288] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16083), 1, + ACTIONS(16658), 1, anon_sym_RBRACE3, - [321722] = 2, - ACTIONS(71), 1, + [328295] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16085), 1, + ACTIONS(16660), 1, anon_sym_RPAREN, - [321729] = 2, - ACTIONS(71), 1, + [328302] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16087), 1, - anon_sym_esac, - [321736] = 2, - ACTIONS(71), 1, + ACTIONS(16662), 1, + anon_sym_BQUOTE, + [328309] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16664), 1, + sym_heredoc_start, + [328316] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16666), 1, + anon_sym_BQUOTE, + [328323] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16089), 1, + ACTIONS(16668), 1, sym_heredoc_start, - [321743] = 2, - ACTIONS(71), 1, + [328330] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16091), 1, + ACTIONS(16660), 1, anon_sym_BQUOTE, - [321750] = 2, - ACTIONS(71), 1, + [328337] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16085), 1, + ACTIONS(16670), 1, + anon_sym_RPAREN, + [328344] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16632), 1, anon_sym_BQUOTE, - [321757] = 2, - ACTIONS(71), 1, + [328351] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16093), 1, + ACTIONS(15071), 1, anon_sym_RBRACE3, - [321764] = 2, - ACTIONS(71), 1, + [328358] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16672), 1, + anon_sym_RBRACE2, + [328365] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16095), 1, + ACTIONS(16674), 1, anon_sym_RPAREN, - [321771] = 2, - ACTIONS(71), 1, + [328372] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16097), 1, - anon_sym_esac, - [321778] = 2, - ACTIONS(71), 1, + ACTIONS(16650), 1, + anon_sym_BQUOTE, + [328379] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16099), 1, - sym_word, - [321785] = 2, - ACTIONS(71), 1, + ACTIONS(14931), 1, + anon_sym_fi, + [328386] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16101), 1, - anon_sym_RPAREN, - [321792] = 2, - ACTIONS(71), 1, + ACTIONS(16676), 1, + anon_sym_BQUOTE, + [328393] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16103), 1, - anon_sym_RBRACE3, - [321799] = 2, - ACTIONS(71), 1, + ACTIONS(16678), 1, + anon_sym_SQUOTE, + [328400] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16105), 1, + ACTIONS(16680), 1, anon_sym_RBRACE3, - [321806] = 2, - ACTIONS(71), 1, + [328407] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16107), 1, + ACTIONS(16682), 1, + anon_sym_RBRACK_RBRACK, + [328414] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16684), 1, anon_sym_RPAREN, - [321813] = 2, - ACTIONS(71), 1, + [328421] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16109), 1, + ACTIONS(16686), 1, anon_sym_RPAREN, - [321820] = 2, - ACTIONS(71), 1, + [328428] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16111), 1, + ACTIONS(16688), 1, anon_sym_BQUOTE, - [321827] = 2, - ACTIONS(71), 1, + [328435] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16107), 1, - anon_sym_BQUOTE, - [321834] = 2, - ACTIONS(71), 1, + ACTIONS(16690), 1, + anon_sym_SQUOTE, + [328442] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, + ACTIONS(16692), 1, anon_sym_RBRACE3, - [321841] = 2, - ACTIONS(71), 1, + [328449] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16113), 1, - anon_sym_BQUOTE, - [321848] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16109), 1, - anon_sym_BQUOTE, - [321855] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16115), 1, + ACTIONS(16694), 1, anon_sym_RPAREN, - [321862] = 2, - ACTIONS(3), 1, + [328456] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16117), 1, - aux_sym_heredoc_redirect_token1, - [321869] = 2, - ACTIONS(71), 1, + ACTIONS(16696), 1, + anon_sym_esac, + [328463] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16119), 1, - anon_sym_RBRACE3, - [321876] = 2, - ACTIONS(71), 1, + ACTIONS(16698), 1, + anon_sym_BQUOTE, + [328470] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16694), 1, + anon_sym_BQUOTE, + [328477] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16121), 1, + ACTIONS(16700), 1, anon_sym_RPAREN, - [321883] = 2, - ACTIONS(71), 1, + [328484] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14754), 1, + ACTIONS(15071), 1, anon_sym_RBRACE3, - [321890] = 2, - ACTIONS(71), 1, + [328491] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16123), 1, + ACTIONS(16684), 1, anon_sym_BQUOTE, - [321897] = 2, - ACTIONS(71), 1, + [328498] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16121), 1, - anon_sym_BQUOTE, - [321904] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16125), 1, + ACTIONS(16702), 1, anon_sym_RBRACE2, - [321911] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16127), 1, - anon_sym_esac, - [321918] = 2, - ACTIONS(71), 1, + [328505] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16129), 1, - aux_sym_brace_expression_token1, - [321925] = 2, - ACTIONS(71), 1, + ACTIONS(16704), 1, + anon_sym_RPAREN, + [328512] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16131), 1, + ACTIONS(16634), 1, anon_sym_BQUOTE, - [321932] = 2, - ACTIONS(71), 1, + [328519] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16133), 1, - anon_sym_RBRACE3, - [321939] = 2, - ACTIONS(71), 1, + ACTIONS(16706), 1, + anon_sym_esac, + [328526] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16135), 1, + ACTIONS(16708), 1, anon_sym_RPAREN, - [321946] = 2, - ACTIONS(71), 1, + [328533] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16137), 1, - anon_sym_RBRACE3, - [321953] = 2, - ACTIONS(71), 1, + ACTIONS(16710), 1, + anon_sym_RPAREN, + [328540] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16139), 1, + ACTIONS(16712), 1, anon_sym_RPAREN, - [321960] = 2, - ACTIONS(71), 1, + [328547] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14686), 1, - anon_sym_fi, - [321967] = 2, - ACTIONS(71), 1, + ACTIONS(16714), 1, + anon_sym_SQUOTE, + [328554] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16141), 1, - anon_sym_BQUOTE, - [321974] = 2, - ACTIONS(71), 1, + ACTIONS(16716), 1, + anon_sym_RBRACE2, + [328561] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16139), 1, + ACTIONS(16718), 1, anon_sym_BQUOTE, - [321981] = 2, - ACTIONS(71), 1, + [328568] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16143), 1, - anon_sym_BQUOTE, - [321988] = 2, - ACTIONS(71), 1, + ACTIONS(15001), 1, + anon_sym_fi, + [328575] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16135), 1, + ACTIONS(16720), 1, + anon_sym_RBRACE2, + [328582] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16528), 1, anon_sym_BQUOTE, - [321995] = 2, - ACTIONS(71), 1, + [328589] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16145), 1, + ACTIONS(16722), 1, anon_sym_RPAREN, - [322002] = 2, - ACTIONS(71), 1, + [328596] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16095), 1, - anon_sym_BQUOTE, - [322009] = 2, - ACTIONS(71), 1, + ACTIONS(16724), 1, + anon_sym_SQUOTE, + [328603] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16147), 1, + ACTIONS(16726), 1, + anon_sym_SQUOTE, + [328610] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16728), 1, anon_sym_RBRACE3, - [322016] = 2, - ACTIONS(71), 1, + [328617] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16149), 1, + ACTIONS(16730), 1, anon_sym_RBRACE3, - [322023] = 2, - ACTIONS(71), 1, + [328624] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_RPAREN, - [322030] = 2, - ACTIONS(71), 1, + ACTIONS(16732), 1, + anon_sym_RBRACE3, + [328631] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16153), 1, + ACTIONS(16734), 1, anon_sym_RPAREN, - [322037] = 2, - ACTIONS(71), 1, + [328638] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16155), 1, - anon_sym_BQUOTE, - [322044] = 2, - ACTIONS(71), 1, + ACTIONS(16736), 1, + anon_sym_SQUOTE, + [328645] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16151), 1, - anon_sym_BQUOTE, - [322051] = 2, - ACTIONS(71), 1, + ACTIONS(16738), 1, + anon_sym_RBRACE3, + [328652] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16157), 1, + ACTIONS(16740), 1, anon_sym_RPAREN, - [322058] = 2, - ACTIONS(71), 1, + [328659] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16159), 1, - anon_sym_RPAREN_RPAREN, - [322065] = 2, - ACTIONS(71), 1, + ACTIONS(16742), 1, + anon_sym_RPAREN, + [328666] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16161), 1, + ACTIONS(16744), 1, anon_sym_RBRACE2, - [322072] = 2, - ACTIONS(71), 1, + [328673] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16163), 1, + ACTIONS(16746), 1, + anon_sym_RBRACE2, + [328680] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16748), 1, + anon_sym_SQUOTE, + [328687] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16750), 1, + anon_sym_RBRACE3, + [328694] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16752), 1, + anon_sym_BQUOTE, + [328701] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16754), 1, anon_sym_BQUOTE, - [322079] = 2, - ACTIONS(71), 1, + [328708] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16153), 1, + ACTIONS(16740), 1, anon_sym_BQUOTE, - [322086] = 2, - ACTIONS(71), 1, + [328715] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16165), 1, + ACTIONS(16756), 1, anon_sym_RPAREN, - [322093] = 2, - ACTIONS(71), 1, + [328722] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16167), 1, - anon_sym_fi, - [322100] = 2, - ACTIONS(71), 1, + ACTIONS(16742), 1, + anon_sym_BQUOTE, + [328729] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16169), 1, - anon_sym_RBRACE3, - [322107] = 2, - ACTIONS(71), 1, + ACTIONS(16758), 1, + anon_sym_RPAREN, + [328736] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16760), 1, + anon_sym_RBRACE2, + [328743] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16762), 1, + anon_sym_BQUOTE, + [328750] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16171), 1, + ACTIONS(16764), 1, anon_sym_RPAREN, - [322114] = 2, - ACTIONS(71), 1, + [328757] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16173), 1, + ACTIONS(16766), 1, anon_sym_esac, - [322121] = 2, - ACTIONS(71), 1, + [328764] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16768), 1, + anon_sym_RBRACE2, + [328771] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16175), 1, + ACTIONS(16734), 1, anon_sym_BQUOTE, - [322128] = 2, - ACTIONS(71), 1, + [328778] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16171), 1, + ACTIONS(16770), 1, anon_sym_BQUOTE, - [322135] = 2, - ACTIONS(71), 1, + [328785] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16177), 1, - anon_sym_RBRACE2, - [322142] = 2, - ACTIONS(71), 1, + ACTIONS(16772), 1, + anon_sym_RPAREN, + [328792] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16179), 1, + ACTIONS(16764), 1, anon_sym_BQUOTE, - [322149] = 2, - ACTIONS(71), 1, + [328799] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16181), 1, + ACTIONS(16774), 1, anon_sym_RBRACE2, - [322156] = 2, - ACTIONS(71), 1, + [328806] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16183), 1, - anon_sym_RBRACE2, - [322163] = 2, - ACTIONS(71), 1, + ACTIONS(16776), 1, + anon_sym_RPAREN, + [328813] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16185), 1, + ACTIONS(16778), 1, anon_sym_esac, - [322170] = 2, - ACTIONS(71), 1, + [328820] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16187), 1, - anon_sym_RBRACE3, - [322177] = 2, - ACTIONS(71), 1, + ACTIONS(16780), 1, + anon_sym_SQUOTE, + [328827] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16189), 1, + ACTIONS(16782), 1, anon_sym_RBRACE3, - [322184] = 2, - ACTIONS(71), 1, + [328834] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16191), 1, + ACTIONS(16784), 1, anon_sym_RPAREN, - [322191] = 2, - ACTIONS(71), 1, + [328841] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16193), 1, - anon_sym_RPAREN, - [322198] = 2, - ACTIONS(71), 1, + ACTIONS(16786), 1, + anon_sym_esac, + [328848] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16195), 1, + ACTIONS(16788), 1, anon_sym_BQUOTE, - [322205] = 2, - ACTIONS(71), 1, + [328855] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16191), 1, + ACTIONS(16784), 1, anon_sym_BQUOTE, - [322212] = 2, - ACTIONS(71), 1, + [328862] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16197), 1, - sym_heredoc_end, - [322219] = 2, - ACTIONS(71), 1, + ACTIONS(16790), 1, + anon_sym_RPAREN, + [328869] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16199), 1, + ACTIONS(16792), 1, anon_sym_RPAREN, - [322226] = 2, - ACTIONS(71), 1, + [328876] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16201), 1, - sym_heredoc_end, - [322233] = 2, - ACTIONS(71), 1, + ACTIONS(16794), 1, + anon_sym_RBRACE2, + [328883] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16203), 1, - anon_sym_BQUOTE, - [322240] = 2, - ACTIONS(71), 1, + ACTIONS(16796), 1, + anon_sym_RBRACE2, + [328890] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16199), 1, - anon_sym_BQUOTE, - [322247] = 2, - ACTIONS(71), 1, + ACTIONS(16798), 1, + anon_sym_RBRACE2, + [328897] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16205), 1, + ACTIONS(16800), 1, anon_sym_RPAREN, - [322254] = 2, - ACTIONS(71), 1, + [328904] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, - anon_sym_RBRACE3, - [322261] = 2, - ACTIONS(71), 1, + ACTIONS(16802), 1, + anon_sym_RPAREN, + [328911] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16207), 1, - anon_sym_BQUOTE, - [322268] = 2, - ACTIONS(71), 1, + ACTIONS(16804), 1, + anon_sym_esac, + [328918] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16205), 1, - anon_sym_BQUOTE, - [322275] = 2, - ACTIONS(3), 1, + ACTIONS(16806), 1, + anon_sym_SQUOTE, + [328925] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16209), 1, - aux_sym_heredoc_redirect_token1, - [322282] = 2, - ACTIONS(71), 1, + ACTIONS(16808), 1, + anon_sym_RBRACE3, + [328932] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, + ACTIONS(16810), 1, anon_sym_RBRACE3, - [322289] = 2, - ACTIONS(71), 1, + [328939] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16211), 1, + ACTIONS(16812), 1, anon_sym_RBRACE3, - [322296] = 2, - ACTIONS(71), 1, + [328946] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16213), 1, - anon_sym_RPAREN, - [322303] = 2, - ACTIONS(71), 1, + ACTIONS(16814), 1, + anon_sym_RBRACE3, + [328953] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16215), 1, - sym_word, - [322310] = 2, - ACTIONS(71), 1, + ACTIONS(16816), 1, + anon_sym_RBRACK_RBRACK, + [328960] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16217), 1, - anon_sym_esac, - [322317] = 2, - ACTIONS(71), 1, + ACTIONS(16818), 1, + anon_sym_RPAREN, + [328967] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16219), 1, + ACTIONS(16820), 1, anon_sym_BQUOTE, - [322324] = 2, - ACTIONS(71), 1, + [328974] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16213), 1, + ACTIONS(16822), 1, anon_sym_BQUOTE, - [322331] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16221), 1, - anon_sym_RPAREN, - [322338] = 2, - ACTIONS(71), 1, + [328981] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16223), 1, - sym_heredoc_end, - [322345] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16225), 1, - anon_sym_LT_LT_LT, - [322352] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14758), 1, + ACTIONS(15069), 1, anon_sym_RBRACE3, - [322359] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16227), 1, - anon_sym_RBRACE2, - [322366] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16229), 1, - aux_sym_brace_expression_token1, - [322373] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16231), 1, - ts_builtin_sym_end, - [322380] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16233), 1, - anon_sym_fi, - [322387] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16235), 1, - anon_sym_BQUOTE, - [322394] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16237), 1, - anon_sym_esac, - [322401] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9226), 1, - anon_sym_RBRACK, - [322408] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16193), 1, - anon_sym_BQUOTE, - [322415] = 2, - ACTIONS(71), 1, + [328988] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15261), 1, + ACTIONS(15594), 1, aux_sym__simple_variable_name_token1, - [322422] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16239), 1, - anon_sym_esac, - [322429] = 2, - ACTIONS(71), 1, + [328995] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, + ACTIONS(15069), 1, anon_sym_RBRACE3, - [322436] = 2, - ACTIONS(71), 1, + [329002] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16824), 1, + sym_word, + [329009] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16241), 1, + ACTIONS(16826), 1, sym_word, - [322443] = 2, - ACTIONS(71), 1, + [329016] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16243), 1, + ACTIONS(16828), 1, anon_sym_DOT_DOT, - [322450] = 2, - ACTIONS(71), 1, + [329023] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16245), 1, - anon_sym_RBRACK_RBRACK, - [322457] = 2, - ACTIONS(71), 1, + ACTIONS(16830), 1, + anon_sym_SQUOTE, + [329030] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16247), 1, + ACTIONS(16832), 1, anon_sym_RBRACE3, - [322464] = 2, - ACTIONS(71), 1, + [329037] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16249), 1, + ACTIONS(16834), 1, anon_sym_RPAREN, - [322471] = 2, - ACTIONS(71), 1, + [329044] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16251), 1, + ACTIONS(16836), 1, sym_heredoc_start, - [322478] = 2, - ACTIONS(71), 1, + [329051] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16253), 1, + ACTIONS(16838), 1, anon_sym_RPAREN, - [322485] = 2, - ACTIONS(71), 1, + [329058] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16255), 1, - anon_sym_esac, - [322492] = 2, - ACTIONS(71), 1, + ACTIONS(16840), 1, + anon_sym_SQUOTE, + [329065] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16257), 1, + ACTIONS(16842), 1, anon_sym_RBRACE3, - [322499] = 2, - ACTIONS(71), 1, + [329072] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16259), 1, + ACTIONS(16844), 1, sym_heredoc_start, - [322506] = 2, - ACTIONS(71), 1, + [329079] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16261), 1, - anon_sym_RPAREN, - [322513] = 2, - ACTIONS(71), 1, + ACTIONS(16846), 1, + anon_sym_BQUOTE, + [329086] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16263), 1, - anon_sym_LT_LT_LT, - [322520] = 2, - ACTIONS(71), 1, + ACTIONS(16848), 1, + anon_sym_RBRACE3, + [329093] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16265), 1, - aux_sym_brace_expression_token1, - [322527] = 2, - ACTIONS(71), 1, + ACTIONS(16838), 1, + anon_sym_BQUOTE, + [329100] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16850), 1, + anon_sym_RBRACE3, + [329107] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16267), 1, + ACTIONS(16852), 1, anon_sym_RPAREN, - [322534] = 2, - ACTIONS(71), 1, + [329114] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16269), 1, - anon_sym_RPAREN_RPAREN, - [322541] = 2, - ACTIONS(71), 1, + ACTIONS(16854), 1, + sym_raw_string_content, + [329121] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16271), 1, - anon_sym_BQUOTE, - [322548] = 2, - ACTIONS(71), 1, + ACTIONS(16856), 1, + anon_sym_RPAREN, + [329128] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16858), 1, + anon_sym_SQUOTE, + [329135] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16273), 1, + ACTIONS(16818), 1, anon_sym_BQUOTE, - [322555] = 2, - ACTIONS(71), 1, + [329142] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16275), 1, - anon_sym_in, - [322562] = 2, - ACTIONS(71), 1, + ACTIONS(16860), 1, + anon_sym_RBRACE3, + [329149] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16277), 1, - anon_sym_in, - [322569] = 2, - ACTIONS(71), 1, + ACTIONS(14979), 1, + anon_sym_RBRACE3, + [329156] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16267), 1, + ACTIONS(16862), 1, anon_sym_BQUOTE, - [322576] = 2, - ACTIONS(71), 1, + [329163] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16279), 1, + ACTIONS(16864), 1, anon_sym_RPAREN, - [322583] = 2, - ACTIONS(71), 1, + [329170] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16281), 1, - anon_sym_RPAREN, - [322590] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16253), 1, + ACTIONS(16856), 1, anon_sym_BQUOTE, - [322597] = 2, - ACTIONS(71), 1, + [329177] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16283), 1, + ACTIONS(16866), 1, anon_sym_RBRACE2, - [322604] = 2, - ACTIONS(71), 1, + [329184] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16285), 1, + ACTIONS(16868), 1, anon_sym_RPAREN, - [322611] = 2, - ACTIONS(71), 1, + [329191] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14758), 1, - anon_sym_RBRACE3, - [322618] = 2, - ACTIONS(71), 1, + ACTIONS(16870), 1, + anon_sym_RPAREN, + [329198] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16792), 1, + anon_sym_BQUOTE, + [329205] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16872), 1, + anon_sym_RBRACE2, + [329212] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(9132), 1, + ACTIONS(9399), 1, anon_sym_RBRACK, - [322625] = 2, - ACTIONS(3), 1, + [329219] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16287), 1, - aux_sym_heredoc_redirect_token1, - [322632] = 2, - ACTIONS(3), 1, + ACTIONS(16874), 1, + anon_sym_RBRACK_RBRACK, + [329226] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16289), 1, - aux_sym_heredoc_redirect_token1, - [322639] = 2, - ACTIONS(71), 1, + ACTIONS(15069), 1, + anon_sym_RBRACE3, + [329233] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16291), 1, - anon_sym_RBRACE2, - [322646] = 2, - ACTIONS(71), 1, + ACTIONS(16876), 1, + anon_sym_RPAREN, + [329240] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16293), 1, - ts_builtin_sym_end, - [322653] = 2, - ACTIONS(71), 1, + ACTIONS(9397), 1, + anon_sym_RBRACK, + [329247] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14758), 1, - anon_sym_RBRACE3, - [322660] = 2, - ACTIONS(71), 1, + ACTIONS(16878), 1, + anon_sym_LT_LT_LT, + [329254] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16295), 1, - anon_sym_RBRACE2, - [322667] = 2, - ACTIONS(71), 1, + ACTIONS(16880), 1, + aux_sym_brace_expression_token1, + [329261] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, - anon_sym_RBRACE3, - [322674] = 2, - ACTIONS(3), 1, + ACTIONS(16882), 1, + anon_sym_RPAREN_RPAREN, + [329268] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16297), 1, - aux_sym_heredoc_redirect_token1, - [322681] = 2, - ACTIONS(3), 1, + ACTIONS(16884), 1, + anon_sym_BQUOTE, + [329275] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16299), 1, - aux_sym_heredoc_redirect_token1, - [322688] = 2, - ACTIONS(71), 1, + ACTIONS(9395), 1, + anon_sym_RBRACK, + [329282] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16301), 1, - anon_sym_esac, - [322695] = 2, - ACTIONS(71), 1, + ACTIONS(16886), 1, + anon_sym_SQUOTE, + [329289] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16303), 1, - anon_sym_esac, - [322702] = 2, - ACTIONS(3), 1, + ACTIONS(16888), 1, + anon_sym_RBRACE3, + [329296] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16305), 1, - aux_sym_heredoc_redirect_token1, - [322709] = 2, - ACTIONS(71), 1, + ACTIONS(16890), 1, + anon_sym_in, + [329303] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16307), 1, + ACTIONS(14993), 1, anon_sym_RBRACE3, - [322716] = 2, - ACTIONS(71), 1, + [329310] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16309), 1, + ACTIONS(16892), 1, anon_sym_RPAREN, - [322723] = 2, - ACTIONS(3), 1, + [329317] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16311), 1, - aux_sym_heredoc_redirect_token1, - [322730] = 2, - ACTIONS(71), 1, + ACTIONS(16894), 1, + anon_sym_RBRACE2, + [329324] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, - anon_sym_RBRACE3, - [322737] = 2, - ACTIONS(71), 1, + ACTIONS(16896), 1, + anon_sym_in, + [329331] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16313), 1, + ACTIONS(16898), 1, anon_sym_BQUOTE, - [322744] = 2, - ACTIONS(71), 1, + [329338] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16309), 1, + ACTIONS(16892), 1, anon_sym_BQUOTE, - [322751] = 2, - ACTIONS(71), 1, + [329345] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16315), 1, + ACTIONS(16900), 1, anon_sym_RPAREN, - [322758] = 2, - ACTIONS(71), 1, + [329352] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16317), 1, - anon_sym_RBRACE2, - [322765] = 2, - ACTIONS(71), 1, + ACTIONS(16864), 1, + anon_sym_BQUOTE, + [329359] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(14993), 1, + anon_sym_RBRACE3, + [329366] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16319), 1, + ACTIONS(14993), 1, anon_sym_RBRACE3, - [322772] = 2, - ACTIONS(71), 1, + [329373] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16321), 1, + ACTIONS(16902), 1, anon_sym_RBRACE2, - [322779] = 2, - ACTIONS(71), 1, + [329380] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16323), 1, - anon_sym_RBRACE3, - [322786] = 2, - ACTIONS(71), 1, + ACTIONS(16904), 1, + anon_sym_RPAREN, + [329387] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16325), 1, + ACTIONS(16906), 1, anon_sym_RPAREN, - [322793] = 2, - ACTIONS(71), 1, + [329394] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, - anon_sym_RBRACE3, - [322800] = 2, - ACTIONS(71), 1, + ACTIONS(16908), 1, + anon_sym_esac, + [329401] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14758), 1, - anon_sym_RBRACE3, - [322807] = 2, - ACTIONS(71), 1, + ACTIONS(16910), 1, + anon_sym_RBRACE2, + [329408] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16327), 1, - anon_sym_BQUOTE, - [322814] = 2, - ACTIONS(71), 1, + ACTIONS(15772), 1, + anon_sym_RPAREN, + [329415] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16325), 1, + ACTIONS(16912), 1, anon_sym_BQUOTE, - [322821] = 2, - ACTIONS(71), 1, + [329422] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16329), 1, - anon_sym_RPAREN, - [322828] = 2, - ACTIONS(71), 1, + ACTIONS(16914), 1, + anon_sym_SQUOTE, + [329429] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14735), 1, - anon_sym_RBRACE3, - [322835] = 2, - ACTIONS(71), 1, + ACTIONS(16916), 1, + aux_sym_heredoc_redirect_token1, + [329436] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(15913), 1, - anon_sym_RPAREN, - [322842] = 2, - ACTIONS(71), 1, + ACTIONS(16918), 1, + aux_sym_heredoc_redirect_token1, + [329443] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16331), 1, + ACTIONS(15069), 1, anon_sym_RBRACE3, - [322849] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16333), 1, - anon_sym_RPAREN, - [322856] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(9086), 1, - anon_sym_RBRACK, - [322863] = 2, - ACTIONS(71), 1, + [329450] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16335), 1, - anon_sym_BQUOTE, - [322870] = 2, - ACTIONS(71), 1, + ACTIONS(16920), 1, + anon_sym_RBRACE2, + [329457] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16333), 1, - anon_sym_BQUOTE, - [322877] = 2, - ACTIONS(71), 1, + ACTIONS(16922), 1, + anon_sym_RBRACE3, + [329464] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16337), 1, + ACTIONS(16924), 1, anon_sym_RPAREN, - [322884] = 2, - ACTIONS(71), 1, + [329471] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16339), 1, - anon_sym_RPAREN, - [322891] = 2, - ACTIONS(71), 1, + ACTIONS(16926), 1, + anon_sym_SQUOTE, + [329478] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16341), 1, + ACTIONS(16928), 1, anon_sym_RBRACE3, - [322898] = 2, - ACTIONS(71), 1, + [329485] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16343), 1, - anon_sym_RBRACE2, - [322905] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16345), 1, + ACTIONS(16930), 1, anon_sym_RPAREN, - [322912] = 2, - ACTIONS(71), 1, + [329492] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16347), 1, - anon_sym_esac, - [322919] = 2, - ACTIONS(71), 1, + ACTIONS(16932), 1, + sym_heredoc_end, + [329499] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16349), 1, + ACTIONS(14993), 1, + anon_sym_RBRACE3, + [329506] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16934), 1, anon_sym_BQUOTE, - [322926] = 2, - ACTIONS(71), 1, + [329513] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16345), 1, + ACTIONS(16930), 1, anon_sym_BQUOTE, - [322933] = 2, - ACTIONS(71), 1, + [329520] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16351), 1, + ACTIONS(16936), 1, anon_sym_RPAREN, - [322940] = 2, - ACTIONS(71), 1, + [329527] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(14735), 1, - anon_sym_RBRACE3, - [322947] = 2, + ACTIONS(16938), 1, + aux_sym_heredoc_redirect_token1, + [329534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(16353), 1, + ACTIONS(16940), 1, aux_sym_heredoc_redirect_token1, - [322954] = 2, - ACTIONS(71), 1, + [329541] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(9112), 1, - anon_sym_RBRACK, - [322961] = 2, - ACTIONS(71), 1, + ACTIONS(16942), 1, + anon_sym_RBRACE2, + [329548] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(9088), 1, - anon_sym_RBRACK, - [322968] = 2, - ACTIONS(71), 1, + ACTIONS(16944), 1, + anon_sym_SQUOTE, + [329555] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16355), 1, + ACTIONS(15106), 1, anon_sym_RBRACE3, - [322975] = 2, - ACTIONS(71), 1, + [329562] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16357), 1, - anon_sym_RPAREN, - [322982] = 2, - ACTIONS(71), 1, + ACTIONS(16946), 1, + sym_heredoc_end, + [329569] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16359), 1, - anon_sym_RBRACE2, - [322989] = 2, - ACTIONS(71), 1, + ACTIONS(16948), 1, + aux_sym_heredoc_redirect_token1, + [329576] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16361), 1, - anon_sym_BQUOTE, - [322996] = 2, - ACTIONS(71), 1, + ACTIONS(16950), 1, + anon_sym_RBRACK_RBRACK, + [329583] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16357), 1, + ACTIONS(16952), 1, anon_sym_BQUOTE, - [323003] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16363), 1, - anon_sym_DOT_DOT, - [323010] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16365), 1, - anon_sym_RPAREN, - [323017] = 2, - ACTIONS(71), 1, + [329590] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16367), 1, - anon_sym_LT_LT_LT, - [323024] = 2, - ACTIONS(71), 1, + ACTIONS(16954), 1, + aux_sym_heredoc_redirect_token1, + [329597] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16369), 1, - anon_sym_RBRACE2, - [323031] = 2, - ACTIONS(71), 1, + ACTIONS(16924), 1, + anon_sym_BQUOTE, + [329604] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16371), 1, - aux_sym_brace_expression_token1, - [323038] = 2, - ACTIONS(71), 1, + ACTIONS(16956), 1, + anon_sym_RBRACE3, + [329611] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(9060), 1, - anon_sym_RBRACK, - [323045] = 2, - ACTIONS(71), 1, + ACTIONS(16958), 1, + anon_sym_RBRACK_RBRACK, + [329618] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15289), 1, + ACTIONS(15590), 1, aux_sym__simple_variable_name_token1, - [323052] = 2, - ACTIONS(71), 1, + [329625] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16373), 1, - anon_sym_RBRACE2, - [323059] = 2, - ACTIONS(71), 1, + ACTIONS(15724), 1, + anon_sym_RPAREN, + [329632] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14758), 1, + ACTIONS(15106), 1, anon_sym_RBRACE3, - [323066] = 2, - ACTIONS(71), 1, + [329639] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16375), 1, + ACTIONS(16960), 1, sym_word, - [323073] = 2, - ACTIONS(71), 1, + [329646] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16377), 1, + ACTIONS(16962), 1, anon_sym_DOT_DOT, - [323080] = 2, - ACTIONS(71), 1, + [329653] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16379), 1, - anon_sym_RBRACE3, - [323087] = 2, - ACTIONS(71), 1, + ACTIONS(16964), 1, + anon_sym_SQUOTE, + [329660] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16381), 1, - sym_heredoc_end, - [323094] = 2, - ACTIONS(71), 1, + ACTIONS(16966), 1, + anon_sym_RBRACE3, + [329667] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16383), 1, + ACTIONS(16968), 1, anon_sym_RPAREN, - [323101] = 2, - ACTIONS(71), 1, + [329674] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16385), 1, + ACTIONS(16970), 1, sym_heredoc_start, - [323108] = 2, - ACTIONS(71), 1, + [329681] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16387), 1, - anon_sym_RBRACE3, - [323115] = 2, - ACTIONS(71), 1, + ACTIONS(16972), 1, + anon_sym_RPAREN, + [329688] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, + ACTIONS(15106), 1, anon_sym_RBRACE3, - [323122] = 2, - ACTIONS(71), 1, + [329695] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16389), 1, - anon_sym_esac, - [323129] = 2, - ACTIONS(71), 1, + ACTIONS(16974), 1, + anon_sym_BQUOTE, + [329702] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16391), 1, + ACTIONS(16976), 1, sym_heredoc_start, - [323136] = 2, - ACTIONS(3), 1, + [329709] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16393), 1, - aux_sym_heredoc_redirect_token1, - [323143] = 2, - ACTIONS(71), 1, + ACTIONS(16972), 1, + anon_sym_BQUOTE, + [329716] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15429), 1, + ACTIONS(16978), 1, anon_sym_RPAREN, - [323150] = 2, - ACTIONS(3), 1, + [329723] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16395), 1, - aux_sym_heredoc_redirect_token1, - [323157] = 2, - ACTIONS(71), 1, + ACTIONS(15106), 1, + anon_sym_RBRACE3, + [329730] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16397), 1, + ACTIONS(16980), 1, anon_sym_esac, - [323164] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16399), 1, - anon_sym_RBRACK_RBRACK, - [323171] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16401), 1, - anon_sym_RBRACE3, - [323178] = 2, - ACTIONS(71), 1, + [329737] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16403), 1, - anon_sym_RPAREN, - [323185] = 2, - ACTIONS(71), 1, + ACTIONS(16982), 1, + anon_sym_RBRACE2, + [329744] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16405), 1, + ACTIONS(15634), 1, anon_sym_RPAREN, - [323192] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16407), 1, - anon_sym_BQUOTE, - [323199] = 2, - ACTIONS(71), 1, + [329751] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16403), 1, - anon_sym_BQUOTE, - [323206] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16409), 1, - anon_sym_RPAREN, - [323213] = 2, - ACTIONS(71), 1, + ACTIONS(16984), 1, + anon_sym_SQUOTE, + [329758] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16411), 1, + ACTIONS(16986), 1, anon_sym_RBRACE3, - [323220] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(14558), 1, - anon_sym_fi, - [323227] = 2, - ACTIONS(71), 1, + [329765] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16413), 1, + ACTIONS(16988), 1, anon_sym_RBRACE2, - [323234] = 2, - ACTIONS(71), 1, + [329772] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16990), 1, + anon_sym_SQUOTE, + [329779] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16415), 1, + ACTIONS(16992), 1, + anon_sym_SQUOTE, + [329786] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16994), 1, anon_sym_RPAREN, - [323241] = 2, - ACTIONS(71), 1, + [329793] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16417), 1, + ACTIONS(15106), 1, anon_sym_RBRACE3, - [323248] = 2, - ACTIONS(71), 1, + [329800] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16419), 1, - aux_sym_brace_expression_token1, - [323255] = 2, - ACTIONS(71), 1, + ACTIONS(16996), 1, + anon_sym_RBRACE3, + [329807] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(16998), 1, + anon_sym_SQUOTE, + [329814] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16421), 1, + ACTIONS(17000), 1, anon_sym_RBRACE3, - [323262] = 2, - ACTIONS(71), 1, + [329821] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16423), 1, + ACTIONS(17002), 1, anon_sym_RPAREN, - [323269] = 2, - ACTIONS(71), 1, + [329828] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(17004), 1, + anon_sym_BQUOTE, + [329835] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16425), 1, + ACTIONS(17006), 1, + anon_sym_BQUOTE, + [329842] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(17008), 1, sym_word, - [323276] = 2, - ACTIONS(71), 1, + [329849] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16427), 1, + ACTIONS(17010), 1, anon_sym_DOT_DOT, - [323283] = 2, - ACTIONS(71), 1, + [329856] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16429), 1, + ACTIONS(17012), 1, anon_sym_RPAREN, - [323290] = 2, - ACTIONS(71), 1, + [329863] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16431), 1, + ACTIONS(17014), 1, sym_heredoc_start, - [323297] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16433), 1, - anon_sym_RBRACK_RBRACK, - [323304] = 2, - ACTIONS(71), 1, + [329870] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16435), 1, + ACTIONS(17002), 1, anon_sym_BQUOTE, - [323311] = 2, - ACTIONS(71), 1, + [329877] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16437), 1, + ACTIONS(17016), 1, + anon_sym_RPAREN, + [329884] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(17018), 1, sym_heredoc_start, - [323318] = 2, - ACTIONS(71), 1, + [329891] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16423), 1, + ACTIONS(16994), 1, anon_sym_BQUOTE, - [323325] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16439), 1, - anon_sym_RPAREN, - [323332] = 2, - ACTIONS(71), 1, + [329898] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16441), 1, + ACTIONS(17020), 1, anon_sym_RPAREN, - [323339] = 2, - ACTIONS(71), 1, + [329905] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16443), 1, - anon_sym_RBRACE3, - [323346] = 2, - ACTIONS(71), 1, + ACTIONS(17022), 1, + anon_sym_RBRACE2, + [329912] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16445), 1, + ACTIONS(17024), 1, anon_sym_RPAREN, - [323353] = 2, - ACTIONS(71), 1, + [329919] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(16447), 1, - sym_word, - [323360] = 2, - ACTIONS(71), 1, + ACTIONS(17026), 1, + sym_raw_string_content, + [329926] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16449), 1, - anon_sym_esac, - [323367] = 2, - ACTIONS(71), 1, + ACTIONS(17028), 1, + anon_sym_RBRACE3, + [329933] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16451), 1, + ACTIONS(17030), 1, anon_sym_BQUOTE, - [323374] = 2, - ACTIONS(71), 1, + [329940] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16445), 1, - anon_sym_BQUOTE, - [323381] = 2, - ACTIONS(71), 1, + ACTIONS(17032), 1, + anon_sym_SQUOTE, + [329947] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14735), 1, - anon_sym_RBRACE3, - [323388] = 2, - ACTIONS(71), 1, + ACTIONS(17024), 1, + anon_sym_BQUOTE, + [329954] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, - anon_sym_RBRACE3, - [323395] = 2, - ACTIONS(71), 1, + ACTIONS(17034), 1, + anon_sym_RBRACE2, + [329961] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16453), 1, + ACTIONS(17036), 1, anon_sym_RPAREN, - [323402] = 2, - ACTIONS(71), 1, + [329968] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(14756), 1, + ACTIONS(17038), 1, anon_sym_RBRACE3, - [323409] = 2, - ACTIONS(71), 1, + [329975] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16455), 1, - anon_sym_BQUOTE, - [323416] = 2, - ACTIONS(71), 1, + ACTIONS(17040), 1, + anon_sym_SQUOTE, + [329982] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16415), 1, - anon_sym_BQUOTE, - [323423] = 2, - ACTIONS(71), 1, + ACTIONS(17042), 1, + anon_sym_RBRACE3, + [329989] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16457), 1, + ACTIONS(17044), 1, anon_sym_RPAREN, - [323430] = 2, - ACTIONS(71), 1, + [329996] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16459), 1, - anon_sym_RBRACE2, - [323437] = 2, - ACTIONS(71), 1, + ACTIONS(17046), 1, + anon_sym_esac, + [330003] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16461), 1, + ACTIONS(17048), 1, anon_sym_BQUOTE, - [323444] = 2, - ACTIONS(71), 1, + [330010] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16463), 1, + ACTIONS(17044), 1, anon_sym_BQUOTE, - [323451] = 2, - ACTIONS(71), 1, + [330017] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(17050), 1, + anon_sym_RPAREN, + [330024] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16465), 1, + ACTIONS(17052), 1, anon_sym_DOT_DOT, - [323458] = 2, - ACTIONS(71), 1, + [330031] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16467), 1, + ACTIONS(17054), 1, anon_sym_DOT_DOT, - [323465] = 2, - ACTIONS(71), 1, + [330038] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16469), 1, + ACTIONS(17056), 1, anon_sym_DOT_DOT, - [323472] = 2, - ACTIONS(71), 1, + [330045] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16471), 1, + ACTIONS(17058), 1, anon_sym_DOT_DOT, - [323479] = 2, - ACTIONS(71), 1, + [330052] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16473), 1, + ACTIONS(17060), 1, anon_sym_DOT_DOT, - [323486] = 2, - ACTIONS(71), 1, + [330059] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16475), 1, + ACTIONS(17062), 1, anon_sym_DOT_DOT, - [323493] = 2, - ACTIONS(71), 1, + [330066] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16477), 1, + ACTIONS(17064), 1, anon_sym_DOT_DOT, - [323500] = 2, - ACTIONS(71), 1, + [330073] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16479), 1, + ACTIONS(17066), 1, anon_sym_DOT_DOT, - [323507] = 2, - ACTIONS(71), 1, + [330080] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16481), 1, + ACTIONS(17068), 1, anon_sym_DOT_DOT, - [323514] = 2, - ACTIONS(71), 1, + [330087] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16483), 1, + ACTIONS(17070), 1, anon_sym_DOT_DOT, - [323521] = 2, - ACTIONS(71), 1, + [330094] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16485), 1, + ACTIONS(17072), 1, anon_sym_DOT_DOT, - [323528] = 2, - ACTIONS(71), 1, + [330101] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16487), 1, + ACTIONS(17074), 1, anon_sym_DOT_DOT, - [323535] = 2, - ACTIONS(71), 1, + [330108] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16489), 1, + ACTIONS(17076), 1, anon_sym_DOT_DOT, - [323542] = 2, - ACTIONS(71), 1, + [330115] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16491), 1, + ACTIONS(17078), 1, anon_sym_DOT_DOT, - [323549] = 2, - ACTIONS(71), 1, + [330122] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16493), 1, + ACTIONS(17080), 1, anon_sym_DOT_DOT, - [323556] = 2, - ACTIONS(71), 1, + [330129] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16495), 1, + ACTIONS(17082), 1, anon_sym_DOT_DOT, - [323563] = 2, - ACTIONS(71), 1, + [330136] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16497), 1, + ACTIONS(17084), 1, anon_sym_DOT_DOT, - [323570] = 2, - ACTIONS(71), 1, + [330143] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16499), 1, + ACTIONS(17086), 1, anon_sym_DOT_DOT, - [323577] = 2, - ACTIONS(71), 1, + [330150] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16501), 1, + ACTIONS(17088), 1, anon_sym_DOT_DOT, - [323584] = 2, - ACTIONS(71), 1, + [330157] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16503), 1, + ACTIONS(17090), 1, anon_sym_DOT_DOT, - [323591] = 2, - ACTIONS(71), 1, + [330164] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16505), 1, + ACTIONS(17092), 1, anon_sym_DOT_DOT, - [323598] = 2, - ACTIONS(71), 1, + [330171] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16507), 1, + ACTIONS(17094), 1, anon_sym_DOT_DOT, - [323605] = 2, - ACTIONS(71), 1, + [330178] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16509), 1, + ACTIONS(17096), 1, anon_sym_DOT_DOT, - [323612] = 2, - ACTIONS(71), 1, + [330185] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16511), 1, + ACTIONS(17098), 1, anon_sym_DOT_DOT, - [323619] = 2, - ACTIONS(71), 1, + [330192] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16513), 1, + ACTIONS(17100), 1, anon_sym_DOT_DOT, - [323626] = 2, - ACTIONS(71), 1, + [330199] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16515), 1, + ACTIONS(17102), 1, anon_sym_DOT_DOT, - [323633] = 2, - ACTIONS(71), 1, + [330206] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16517), 1, + ACTIONS(17104), 1, anon_sym_DOT_DOT, - [323640] = 2, - ACTIONS(71), 1, + [330213] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16519), 1, + ACTIONS(17106), 1, anon_sym_DOT_DOT, - [323647] = 2, - ACTIONS(71), 1, + [330220] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16521), 1, + ACTIONS(17108), 1, anon_sym_DOT_DOT, - [323654] = 2, - ACTIONS(71), 1, + [330227] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16523), 1, + ACTIONS(17110), 1, anon_sym_DOT_DOT, - [323661] = 2, - ACTIONS(71), 1, + [330234] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16525), 1, + ACTIONS(17112), 1, anon_sym_DOT_DOT, - [323668] = 2, - ACTIONS(71), 1, + [330241] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16527), 1, + ACTIONS(17114), 1, anon_sym_DOT_DOT, - [323675] = 2, - ACTIONS(71), 1, + [330248] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16529), 1, + ACTIONS(17116), 1, anon_sym_DOT_DOT, - [323682] = 2, - ACTIONS(71), 1, + [330255] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16531), 1, + ACTIONS(17118), 1, anon_sym_DOT_DOT, - [323689] = 2, - ACTIONS(71), 1, + [330262] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16533), 1, + ACTIONS(17120), 1, anon_sym_DOT_DOT, - [323696] = 2, - ACTIONS(71), 1, + [330269] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16535), 1, + ACTIONS(17122), 1, anon_sym_DOT_DOT, - [323703] = 2, - ACTIONS(71), 1, + [330276] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16537), 1, + ACTIONS(17124), 1, anon_sym_DOT_DOT, - [323710] = 2, - ACTIONS(71), 1, + [330283] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16539), 1, + ACTIONS(17126), 1, anon_sym_DOT_DOT, - [323717] = 2, - ACTIONS(71), 1, + [330290] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16541), 1, + ACTIONS(17128), 1, anon_sym_DOT_DOT, - [323724] = 2, - ACTIONS(71), 1, + [330297] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16543), 1, + ACTIONS(17130), 1, anon_sym_DOT_DOT, - [323731] = 2, - ACTIONS(71), 1, + [330304] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16545), 1, + ACTIONS(17132), 1, anon_sym_DOT_DOT, - [323738] = 2, - ACTIONS(71), 1, + [330311] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16547), 1, + ACTIONS(17134), 1, anon_sym_DOT_DOT, - [323745] = 2, - ACTIONS(71), 1, + [330318] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16549), 1, + ACTIONS(17136), 1, anon_sym_DOT_DOT, - [323752] = 2, - ACTIONS(71), 1, + [330325] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16551), 1, + ACTIONS(17138), 1, anon_sym_DOT_DOT, - [323759] = 2, - ACTIONS(71), 1, + [330332] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16553), 1, + ACTIONS(17140), 1, anon_sym_DOT_DOT, - [323766] = 2, - ACTIONS(71), 1, + [330339] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16555), 1, + ACTIONS(17142), 1, anon_sym_DOT_DOT, - [323773] = 2, - ACTIONS(71), 1, + [330346] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16557), 1, + ACTIONS(17144), 1, anon_sym_DOT_DOT, - [323780] = 2, - ACTIONS(71), 1, + [330353] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16559), 1, + ACTIONS(17146), 1, anon_sym_DOT_DOT, - [323787] = 2, - ACTIONS(71), 1, + [330360] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16561), 1, + ACTIONS(17148), 1, anon_sym_DOT_DOT, - [323794] = 2, - ACTIONS(71), 1, + [330367] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16563), 1, + ACTIONS(17150), 1, anon_sym_DOT_DOT, - [323801] = 2, - ACTIONS(71), 1, + [330374] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16565), 1, + ACTIONS(17152), 1, anon_sym_DOT_DOT, - [323808] = 2, - ACTIONS(71), 1, + [330381] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16567), 1, + ACTIONS(17154), 1, anon_sym_DOT_DOT, - [323815] = 2, - ACTIONS(71), 1, + [330388] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16569), 1, + ACTIONS(17156), 1, anon_sym_DOT_DOT, - [323822] = 2, - ACTIONS(71), 1, + [330395] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16571), 1, + ACTIONS(17158), 1, anon_sym_DOT_DOT, - [323829] = 2, - ACTIONS(71), 1, + [330402] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16573), 1, + ACTIONS(17160), 1, anon_sym_DOT_DOT, - [323836] = 2, - ACTIONS(71), 1, + [330409] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16575), 1, + ACTIONS(17162), 1, anon_sym_DOT_DOT, - [323843] = 2, - ACTIONS(71), 1, + [330416] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16577), 1, + ACTIONS(17164), 1, anon_sym_DOT_DOT, - [323850] = 2, - ACTIONS(71), 1, + [330423] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16579), 1, + ACTIONS(17166), 1, anon_sym_DOT_DOT, - [323857] = 2, - ACTIONS(71), 1, + [330430] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16581), 1, + ACTIONS(17168), 1, anon_sym_DOT_DOT, - [323864] = 2, - ACTIONS(71), 1, + [330437] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16583), 1, + ACTIONS(17170), 1, anon_sym_DOT_DOT, - [323871] = 2, - ACTIONS(71), 1, + [330444] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16585), 1, + ACTIONS(17172), 1, aux_sym_brace_expression_token1, - [323878] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16587), 1, - anon_sym_RBRACE2, - [323885] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16589), 1, - anon_sym_in, - [323892] = 2, - ACTIONS(71), 1, + [330451] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16439), 1, + ACTIONS(17174), 1, anon_sym_BQUOTE, - [323899] = 2, - ACTIONS(71), 1, - sym_comment, - ACTIONS(16591), 1, - aux_sym_brace_expression_token1, - [323906] = 2, - ACTIONS(71), 1, + [330458] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16593), 1, + ACTIONS(15106), 1, anon_sym_RBRACE3, - [323913] = 2, - ACTIONS(71), 1, + [330465] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16595), 1, - anon_sym_RPAREN, - [323920] = 2, - ACTIONS(71), 1, + ACTIONS(17176), 1, + anon_sym_RBRACE2, + [330472] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16597), 1, + ACTIONS(17178), 1, anon_sym_LT_LT_LT, - [323927] = 2, - ACTIONS(71), 1, + [330479] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16599), 1, + ACTIONS(17180), 1, aux_sym_brace_expression_token1, - [323934] = 2, - ACTIONS(71), 1, + [330486] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16601), 1, - aux_sym_brace_expression_token1, - [323941] = 2, - ACTIONS(71), 1, + ACTIONS(15021), 1, + anon_sym_fi, + [330493] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(15529), 1, + ACTIONS(17182), 1, anon_sym_RPAREN, - [323948] = 2, - ACTIONS(71), 1, + [330500] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16603), 1, + ACTIONS(17184), 1, aux_sym_brace_expression_token1, - [323955] = 2, - ACTIONS(71), 1, + [330507] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(17186), 1, + anon_sym_BQUOTE, + [330514] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(17036), 1, + anon_sym_BQUOTE, + [330521] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16605), 1, + ACTIONS(17188), 1, aux_sym_brace_expression_token1, - [323962] = 2, - ACTIONS(71), 1, + [330528] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16607), 1, + ACTIONS(17190), 1, aux_sym_brace_expression_token1, - [323969] = 2, - ACTIONS(71), 1, + [330535] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16609), 1, + ACTIONS(17192), 1, aux_sym_brace_expression_token1, - [323976] = 2, - ACTIONS(71), 1, + [330542] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16611), 1, + ACTIONS(17194), 1, aux_sym_brace_expression_token1, - [323983] = 2, - ACTIONS(71), 1, + [330549] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16613), 1, + ACTIONS(17196), 1, aux_sym_brace_expression_token1, - [323990] = 2, - ACTIONS(71), 1, + [330556] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16615), 1, + ACTIONS(17198), 1, aux_sym_brace_expression_token1, - [323997] = 2, - ACTIONS(71), 1, + [330563] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16617), 1, + ACTIONS(17200), 1, aux_sym_brace_expression_token1, - [324004] = 2, - ACTIONS(71), 1, + [330570] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16619), 1, + ACTIONS(17202), 1, aux_sym_brace_expression_token1, - [324011] = 2, - ACTIONS(71), 1, + [330577] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16621), 1, + ACTIONS(17204), 1, aux_sym_brace_expression_token1, - [324018] = 2, - ACTIONS(71), 1, + [330584] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16623), 1, + ACTIONS(17206), 1, aux_sym_brace_expression_token1, - [324025] = 2, - ACTIONS(71), 1, + [330591] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16625), 1, + ACTIONS(17208), 1, aux_sym_brace_expression_token1, - [324032] = 2, - ACTIONS(71), 1, + [330598] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16627), 1, + ACTIONS(17210), 1, aux_sym_brace_expression_token1, - [324039] = 2, - ACTIONS(71), 1, + [330605] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16629), 1, + ACTIONS(17212), 1, aux_sym_brace_expression_token1, - [324046] = 2, - ACTIONS(71), 1, + [330612] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16631), 1, + ACTIONS(17214), 1, aux_sym_brace_expression_token1, - [324053] = 2, - ACTIONS(71), 1, + [330619] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16633), 1, + ACTIONS(17216), 1, aux_sym_brace_expression_token1, - [324060] = 2, - ACTIONS(71), 1, + [330626] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16635), 1, + ACTIONS(17218), 1, aux_sym_brace_expression_token1, - [324067] = 2, - ACTIONS(71), 1, + [330633] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16637), 1, + ACTIONS(17220), 1, aux_sym_brace_expression_token1, - [324074] = 2, - ACTIONS(71), 1, + [330640] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16639), 1, + ACTIONS(17222), 1, aux_sym_brace_expression_token1, - [324081] = 2, - ACTIONS(71), 1, + [330647] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16641), 1, + ACTIONS(17224), 1, aux_sym_brace_expression_token1, - [324088] = 2, - ACTIONS(71), 1, + [330654] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16643), 1, + ACTIONS(17226), 1, aux_sym_brace_expression_token1, - [324095] = 2, - ACTIONS(71), 1, + [330661] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16645), 1, + ACTIONS(17228), 1, aux_sym_brace_expression_token1, - [324102] = 2, - ACTIONS(71), 1, + [330668] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16647), 1, + ACTIONS(17230), 1, aux_sym_brace_expression_token1, - [324109] = 2, - ACTIONS(71), 1, + [330675] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16649), 1, + ACTIONS(17232), 1, aux_sym_brace_expression_token1, - [324116] = 2, - ACTIONS(71), 1, + [330682] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16651), 1, + ACTIONS(17234), 1, aux_sym_brace_expression_token1, - [324123] = 2, - ACTIONS(71), 1, + [330689] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16653), 1, + ACTIONS(17236), 1, aux_sym_brace_expression_token1, - [324130] = 2, - ACTIONS(71), 1, + [330696] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16655), 1, + ACTIONS(17238), 1, aux_sym_brace_expression_token1, - [324137] = 2, - ACTIONS(71), 1, + [330703] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16657), 1, + ACTIONS(17240), 1, aux_sym_brace_expression_token1, - [324144] = 2, - ACTIONS(71), 1, + [330710] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16659), 1, + ACTIONS(17242), 1, aux_sym_brace_expression_token1, - [324151] = 2, - ACTIONS(71), 1, + [330717] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16661), 1, + ACTIONS(17244), 1, aux_sym_brace_expression_token1, - [324158] = 2, - ACTIONS(71), 1, + [330724] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16663), 1, + ACTIONS(17246), 1, aux_sym_brace_expression_token1, - [324165] = 2, - ACTIONS(71), 1, + [330731] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16665), 1, + ACTIONS(17248), 1, aux_sym_brace_expression_token1, - [324172] = 2, - ACTIONS(71), 1, + [330738] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16667), 1, + ACTIONS(17250), 1, aux_sym_brace_expression_token1, - [324179] = 2, - ACTIONS(71), 1, + [330745] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16669), 1, + ACTIONS(17252), 1, aux_sym_brace_expression_token1, - [324186] = 2, - ACTIONS(71), 1, + [330752] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16671), 1, + ACTIONS(17254), 1, aux_sym_brace_expression_token1, - [324193] = 2, - ACTIONS(71), 1, + [330759] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16673), 1, + ACTIONS(17256), 1, aux_sym_brace_expression_token1, - [324200] = 2, - ACTIONS(71), 1, + [330766] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16675), 1, + ACTIONS(17258), 1, aux_sym_brace_expression_token1, - [324207] = 2, - ACTIONS(71), 1, + [330773] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16677), 1, + ACTIONS(17260), 1, aux_sym_brace_expression_token1, - [324214] = 2, - ACTIONS(71), 1, + [330780] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16679), 1, + ACTIONS(17262), 1, aux_sym_brace_expression_token1, - [324221] = 2, - ACTIONS(71), 1, + [330787] = 2, + ACTIONS(73), 1, + sym_comment, + ACTIONS(17264), 1, + anon_sym_RBRACE3, + [330794] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16681), 1, + ACTIONS(17266), 1, aux_sym_brace_expression_token1, - [324228] = 2, - ACTIONS(71), 1, + [330801] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16683), 1, + ACTIONS(17268), 1, aux_sym_brace_expression_token1, - [324235] = 2, - ACTIONS(71), 1, + [330808] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16685), 1, + ACTIONS(17270), 1, aux_sym_brace_expression_token1, - [324242] = 2, - ACTIONS(71), 1, + [330815] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16687), 1, + ACTIONS(17272), 1, aux_sym_brace_expression_token1, - [324249] = 2, - ACTIONS(71), 1, + [330822] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16689), 1, + ACTIONS(17274), 1, aux_sym_brace_expression_token1, - [324256] = 2, - ACTIONS(71), 1, + [330829] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16691), 1, + ACTIONS(17276), 1, aux_sym_brace_expression_token1, - [324263] = 2, - ACTIONS(71), 1, + [330836] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16693), 1, + ACTIONS(17278), 1, aux_sym_brace_expression_token1, - [324270] = 2, - ACTIONS(71), 1, + [330843] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16695), 1, + ACTIONS(17280), 1, aux_sym_brace_expression_token1, - [324277] = 2, - ACTIONS(71), 1, + [330850] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16697), 1, + ACTIONS(17282), 1, aux_sym_brace_expression_token1, - [324284] = 2, - ACTIONS(71), 1, + [330857] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16699), 1, + ACTIONS(17284), 1, aux_sym_brace_expression_token1, - [324291] = 2, - ACTIONS(71), 1, + [330864] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16701), 1, + ACTIONS(17286), 1, aux_sym_brace_expression_token1, - [324298] = 2, - ACTIONS(71), 1, + [330871] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16703), 1, + ACTIONS(17288), 1, aux_sym_brace_expression_token1, - [324305] = 2, - ACTIONS(71), 1, + [330878] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16705), 1, + ACTIONS(17290), 1, aux_sym_brace_expression_token1, - [324312] = 2, - ACTIONS(71), 1, + [330885] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16707), 1, + ACTIONS(17292), 1, aux_sym_brace_expression_token1, - [324319] = 2, - ACTIONS(71), 1, + [330892] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16709), 1, + ACTIONS(17294), 1, aux_sym_brace_expression_token1, - [324326] = 2, - ACTIONS(71), 1, + [330899] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16711), 1, + ACTIONS(17296), 1, aux_sym_brace_expression_token1, - [324333] = 2, - ACTIONS(71), 1, + [330906] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16713), 1, + ACTIONS(17298), 1, aux_sym_brace_expression_token1, - [324340] = 2, - ACTIONS(71), 1, + [330913] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16715), 1, + ACTIONS(17300), 1, aux_sym_brace_expression_token1, - [324347] = 2, - ACTIONS(71), 1, + [330920] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16717), 1, + ACTIONS(17302), 1, aux_sym_brace_expression_token1, - [324354] = 2, - ACTIONS(71), 1, + [330927] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16719), 1, + ACTIONS(17304), 1, aux_sym_brace_expression_token1, - [324361] = 2, - ACTIONS(71), 1, + [330934] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16721), 1, + ACTIONS(17306), 1, aux_sym_brace_expression_token1, - [324368] = 2, - ACTIONS(71), 1, + [330941] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16723), 1, + ACTIONS(17308), 1, aux_sym_brace_expression_token1, - [324375] = 2, - ACTIONS(71), 1, + [330948] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16725), 1, + ACTIONS(17310), 1, aux_sym_brace_expression_token1, - [324382] = 2, - ACTIONS(71), 1, + [330955] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16727), 1, - anon_sym_RPAREN_RPAREN, - [324389] = 2, - ACTIONS(3), 1, + ACTIONS(15774), 1, + anon_sym_RPAREN, + [330962] = 2, + ACTIONS(73), 1, sym_comment, - ACTIONS(16729), 1, - aux_sym_heredoc_redirect_token1, + ACTIONS(16562), 1, + anon_sym_RPAREN, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(528)] = 0, - [SMALL_STATE(529)] = 120, - [SMALL_STATE(530)] = 240, - [SMALL_STATE(531)] = 359, - [SMALL_STATE(532)] = 478, - [SMALL_STATE(533)] = 592, - [SMALL_STATE(534)] = 710, - [SMALL_STATE(535)] = 828, - [SMALL_STATE(536)] = 944, - [SMALL_STATE(537)] = 1058, - [SMALL_STATE(538)] = 1136, - [SMALL_STATE(539)] = 1214, - [SMALL_STATE(540)] = 1332, - [SMALL_STATE(541)] = 1450, - [SMALL_STATE(542)] = 1559, - [SMALL_STATE(543)] = 1668, - [SMALL_STATE(544)] = 1781, - [SMALL_STATE(545)] = 1890, - [SMALL_STATE(546)] = 2005, - [SMALL_STATE(547)] = 2120, - [SMALL_STATE(548)] = 2233, - [SMALL_STATE(549)] = 2310, - [SMALL_STATE(550)] = 2387, - [SMALL_STATE(551)] = 2464, - [SMALL_STATE(552)] = 2541, - [SMALL_STATE(553)] = 2658, - [SMALL_STATE(554)] = 2775, - [SMALL_STATE(555)] = 2890, - [SMALL_STATE(556)] = 2966, - [SMALL_STATE(557)] = 3080, - [SMALL_STATE(558)] = 3188, - [SMALL_STATE(559)] = 3264, - [SMALL_STATE(560)] = 3340, - [SMALL_STATE(561)] = 3416, - [SMALL_STATE(562)] = 3528, - [SMALL_STATE(563)] = 3636, - [SMALL_STATE(564)] = 3748, - [SMALL_STATE(565)] = 3860, - [SMALL_STATE(566)] = 3936, - [SMALL_STATE(567)] = 4044, - [SMALL_STATE(568)] = 4158, - [SMALL_STATE(569)] = 4234, - [SMALL_STATE(570)] = 4346, - [SMALL_STATE(571)] = 4453, - [SMALL_STATE(572)] = 4562, - [SMALL_STATE(573)] = 4671, - [SMALL_STATE(574)] = 4778, - [SMALL_STATE(575)] = 4885, - [SMALL_STATE(576)] = 4992, - [SMALL_STATE(577)] = 5067, - [SMALL_STATE(578)] = 5174, - [SMALL_STATE(579)] = 5249, - [SMALL_STATE(580)] = 5324, - [SMALL_STATE(581)] = 5399, - [SMALL_STATE(582)] = 5474, - [SMALL_STATE(583)] = 5549, - [SMALL_STATE(584)] = 5620, - [SMALL_STATE(585)] = 5691, - [SMALL_STATE(586)] = 5792, - [SMALL_STATE(587)] = 5899, - [SMALL_STATE(588)] = 6010, - [SMALL_STATE(589)] = 6123, - [SMALL_STATE(590)] = 6234, - [SMALL_STATE(591)] = 6308, - [SMALL_STATE(592)] = 6382, - [SMALL_STATE(593)] = 6452, - [SMALL_STATE(594)] = 6522, - [SMALL_STATE(595)] = 6596, - [SMALL_STATE(596)] = 6670, - [SMALL_STATE(597)] = 6770, - [SMALL_STATE(598)] = 6870, - [SMALL_STATE(599)] = 6940, - [SMALL_STATE(600)] = 7014, - [SMALL_STATE(601)] = 7116, - [SMALL_STATE(602)] = 7222, - [SMALL_STATE(603)] = 7322, - [SMALL_STATE(604)] = 7428, - [SMALL_STATE(605)] = 7530, - [SMALL_STATE(606)] = 7594, - [SMALL_STATE(607)] = 7700, - [SMALL_STATE(608)] = 7802, - [SMALL_STATE(609)] = 7906, - [SMALL_STATE(610)] = 7980, - [SMALL_STATE(611)] = 8050, - [SMALL_STATE(612)] = 8164, - [SMALL_STATE(613)] = 8268, - [SMALL_STATE(614)] = 8382, - [SMALL_STATE(615)] = 8482, - [SMALL_STATE(616)] = 8581, - [SMALL_STATE(617)] = 8682, - [SMALL_STATE(618)] = 8797, - [SMALL_STATE(619)] = 8928, - [SMALL_STATE(620)] = 9027, - [SMALL_STATE(621)] = 9126, - [SMALL_STATE(622)] = 9257, - [SMALL_STATE(623)] = 9356, - [SMALL_STATE(624)] = 9455, - [SMALL_STATE(625)] = 9522, - [SMALL_STATE(626)] = 9621, - [SMALL_STATE(627)] = 9690, - [SMALL_STATE(628)] = 9759, - [SMALL_STATE(629)] = 9890, - [SMALL_STATE(630)] = 9989, - [SMALL_STATE(631)] = 10056, - [SMALL_STATE(632)] = 10123, - [SMALL_STATE(633)] = 10222, - [SMALL_STATE(634)] = 10321, - [SMALL_STATE(635)] = 10436, - [SMALL_STATE(636)] = 10505, - [SMALL_STATE(637)] = 10578, - [SMALL_STATE(638)] = 10651, - [SMALL_STATE(639)] = 10724, - [SMALL_STATE(640)] = 10797, - [SMALL_STATE(641)] = 10866, - [SMALL_STATE(642)] = 10939, - [SMALL_STATE(643)] = 11012, - [SMALL_STATE(644)] = 11111, - [SMALL_STATE(645)] = 11180, - [SMALL_STATE(646)] = 11253, - [SMALL_STATE(647)] = 11326, - [SMALL_STATE(648)] = 11399, - [SMALL_STATE(649)] = 11472, - [SMALL_STATE(650)] = 11603, - [SMALL_STATE(651)] = 11734, - [SMALL_STATE(652)] = 11803, - [SMALL_STATE(653)] = 11904, - [SMALL_STATE(654)] = 11971, - [SMALL_STATE(655)] = 12102, - [SMALL_STATE(656)] = 12233, - [SMALL_STATE(657)] = 12334, - [SMALL_STATE(658)] = 12465, - [SMALL_STATE(659)] = 12537, - [SMALL_STATE(660)] = 12635, - [SMALL_STATE(661)] = 12733, - [SMALL_STATE(662)] = 12831, - [SMALL_STATE(663)] = 12903, - [SMALL_STATE(664)] = 12975, - [SMALL_STATE(665)] = 13103, - [SMALL_STATE(666)] = 13201, - [SMALL_STATE(667)] = 13299, - [SMALL_STATE(668)] = 13397, - [SMALL_STATE(669)] = 13497, - [SMALL_STATE(670)] = 13565, - [SMALL_STATE(671)] = 13633, - [SMALL_STATE(672)] = 13733, - [SMALL_STATE(673)] = 13831, - [SMALL_STATE(674)] = 13929, - [SMALL_STATE(675)] = 14027, - [SMALL_STATE(676)] = 14125, - [SMALL_STATE(677)] = 14223, - [SMALL_STATE(678)] = 14351, - [SMALL_STATE(679)] = 14451, - [SMALL_STATE(680)] = 14579, - [SMALL_STATE(681)] = 14651, - [SMALL_STATE(682)] = 14723, - [SMALL_STATE(683)] = 14795, - [SMALL_STATE(684)] = 14867, - [SMALL_STATE(685)] = 14939, - [SMALL_STATE(686)] = 15011, - [SMALL_STATE(687)] = 15109, - [SMALL_STATE(688)] = 15177, - [SMALL_STATE(689)] = 15275, - [SMALL_STATE(690)] = 15347, - [SMALL_STATE(691)] = 15419, - [SMALL_STATE(692)] = 15491, - [SMALL_STATE(693)] = 15563, - [SMALL_STATE(694)] = 15691, - [SMALL_STATE(695)] = 15763, - [SMALL_STATE(696)] = 15835, - [SMALL_STATE(697)] = 15903, - [SMALL_STATE(698)] = 16003, - [SMALL_STATE(699)] = 16071, - [SMALL_STATE(700)] = 16199, - [SMALL_STATE(701)] = 16267, - [SMALL_STATE(702)] = 16365, - [SMALL_STATE(703)] = 16493, - [SMALL_STATE(704)] = 16593, - [SMALL_STATE(705)] = 16721, - [SMALL_STATE(706)] = 16821, - [SMALL_STATE(707)] = 16929, - [SMALL_STATE(708)] = 17039, - [SMALL_STATE(709)] = 17147, - [SMALL_STATE(710)] = 17219, - [SMALL_STATE(711)] = 17290, - [SMALL_STATE(712)] = 17415, - [SMALL_STATE(713)] = 17540, - [SMALL_STATE(714)] = 17611, - [SMALL_STATE(715)] = 17682, - [SMALL_STATE(716)] = 17753, - [SMALL_STATE(717)] = 17878, - [SMALL_STATE(718)] = 17949, - [SMALL_STATE(719)] = 18046, - [SMALL_STATE(720)] = 18161, - [SMALL_STATE(721)] = 18256, - [SMALL_STATE(722)] = 18327, - [SMALL_STATE(723)] = 18398, - [SMALL_STATE(724)] = 18513, - [SMALL_STATE(725)] = 18608, - [SMALL_STATE(726)] = 18723, - [SMALL_STATE(727)] = 18794, - [SMALL_STATE(728)] = 18865, - [SMALL_STATE(729)] = 18936, - [SMALL_STATE(730)] = 19007, - [SMALL_STATE(731)] = 19132, - [SMALL_STATE(732)] = 19241, - [SMALL_STATE(733)] = 19312, - [SMALL_STATE(734)] = 19383, - [SMALL_STATE(735)] = 19480, - [SMALL_STATE(736)] = 19577, - [SMALL_STATE(737)] = 19692, - [SMALL_STATE(738)] = 19807, - [SMALL_STATE(739)] = 19922, - [SMALL_STATE(740)] = 20037, - [SMALL_STATE(741)] = 20134, - [SMALL_STATE(742)] = 20205, - [SMALL_STATE(743)] = 20276, - [SMALL_STATE(744)] = 20373, - [SMALL_STATE(745)] = 20470, - [SMALL_STATE(746)] = 20595, - [SMALL_STATE(747)] = 20692, - [SMALL_STATE(748)] = 20803, - [SMALL_STATE(749)] = 20900, - [SMALL_STATE(750)] = 20999, - [SMALL_STATE(751)] = 21096, - [SMALL_STATE(752)] = 21167, - [SMALL_STATE(753)] = 21264, - [SMALL_STATE(754)] = 21363, - [SMALL_STATE(755)] = 21460, - [SMALL_STATE(756)] = 21569, - [SMALL_STATE(757)] = 21640, - [SMALL_STATE(758)] = 21755, - [SMALL_STATE(759)] = 21854, - [SMALL_STATE(760)] = 21969, - [SMALL_STATE(761)] = 22094, - [SMALL_STATE(762)] = 22191, - [SMALL_STATE(763)] = 22288, - [SMALL_STATE(764)] = 22391, - [SMALL_STATE(765)] = 22516, - [SMALL_STATE(766)] = 22619, - [SMALL_STATE(767)] = 22716, - [SMALL_STATE(768)] = 22813, - [SMALL_STATE(769)] = 22910, - [SMALL_STATE(770)] = 23007, - [SMALL_STATE(771)] = 23110, - [SMALL_STATE(772)] = 23181, - [SMALL_STATE(773)] = 23252, - [SMALL_STATE(774)] = 23323, - [SMALL_STATE(775)] = 23438, - [SMALL_STATE(776)] = 23505, - [SMALL_STATE(777)] = 23572, - [SMALL_STATE(778)] = 23697, - [SMALL_STATE(779)] = 23793, - [SMALL_STATE(780)] = 23889, - [SMALL_STATE(781)] = 23959, - [SMALL_STATE(782)] = 24029, - [SMALL_STATE(783)] = 24099, - [SMALL_STATE(784)] = 24203, - [SMALL_STATE(785)] = 24299, - [SMALL_STATE(786)] = 24369, - [SMALL_STATE(787)] = 24439, - [SMALL_STATE(788)] = 24535, - [SMALL_STATE(789)] = 24629, - [SMALL_STATE(790)] = 24725, - [SMALL_STATE(791)] = 24821, - [SMALL_STATE(792)] = 24917, - [SMALL_STATE(793)] = 24987, - [SMALL_STATE(794)] = 25057, - [SMALL_STATE(795)] = 25151, - [SMALL_STATE(796)] = 25213, - [SMALL_STATE(797)] = 25307, - [SMALL_STATE(798)] = 25401, - [SMALL_STATE(799)] = 25497, - [SMALL_STATE(800)] = 25559, - [SMALL_STATE(801)] = 25655, - [SMALL_STATE(802)] = 25715, - [SMALL_STATE(803)] = 25785, - [SMALL_STATE(804)] = 25889, - [SMALL_STATE(805)] = 25993, - [SMALL_STATE(806)] = 26053, - [SMALL_STATE(807)] = 26148, - [SMALL_STATE(808)] = 26245, - [SMALL_STATE(809)] = 26324, - [SMALL_STATE(810)] = 26395, - [SMALL_STATE(811)] = 26468, - [SMALL_STATE(812)] = 26561, - [SMALL_STATE(813)] = 26626, - [SMALL_STATE(814)] = 26691, - [SMALL_STATE(815)] = 26756, - [SMALL_STATE(816)] = 26821, - [SMALL_STATE(817)] = 26888, - [SMALL_STATE(818)] = 26949, - [SMALL_STATE(819)] = 27014, - [SMALL_STATE(820)] = 27093, - [SMALL_STATE(821)] = 27158, - [SMALL_STATE(822)] = 27219, - [SMALL_STATE(823)] = 27284, - [SMALL_STATE(824)] = 27349, - [SMALL_STATE(825)] = 27414, - [SMALL_STATE(826)] = 27507, - [SMALL_STATE(827)] = 27572, - [SMALL_STATE(828)] = 27667, - [SMALL_STATE(829)] = 27726, - [SMALL_STATE(830)] = 27821, - [SMALL_STATE(831)] = 27917, - [SMALL_STATE(832)] = 28013, - [SMALL_STATE(833)] = 28077, - [SMALL_STATE(834)] = 28135, - [SMALL_STATE(835)] = 28229, - [SMALL_STATE(836)] = 28323, - [SMALL_STATE(837)] = 28381, - [SMALL_STATE(838)] = 28449, - [SMALL_STATE(839)] = 28507, - [SMALL_STATE(840)] = 28565, - [SMALL_STATE(841)] = 28623, - [SMALL_STATE(842)] = 28691, - [SMALL_STATE(843)] = 28749, - [SMALL_STATE(844)] = 28807, - [SMALL_STATE(845)] = 28901, - [SMALL_STATE(846)] = 28969, - [SMALL_STATE(847)] = 29047, - [SMALL_STATE(848)] = 29115, - [SMALL_STATE(849)] = 29173, - [SMALL_STATE(850)] = 29231, - [SMALL_STATE(851)] = 29295, - [SMALL_STATE(852)] = 29359, - [SMALL_STATE(853)] = 29423, - [SMALL_STATE(854)] = 29481, - [SMALL_STATE(855)] = 29539, - [SMALL_STATE(856)] = 29603, - [SMALL_STATE(857)] = 29667, - [SMALL_STATE(858)] = 29731, - [SMALL_STATE(859)] = 29795, - [SMALL_STATE(860)] = 29859, - [SMALL_STATE(861)] = 29917, - [SMALL_STATE(862)] = 29989, - [SMALL_STATE(863)] = 30047, - [SMALL_STATE(864)] = 30105, - [SMALL_STATE(865)] = 30163, - [SMALL_STATE(866)] = 30221, - [SMALL_STATE(867)] = 30285, - [SMALL_STATE(868)] = 30349, - [SMALL_STATE(869)] = 30413, - [SMALL_STATE(870)] = 30471, - [SMALL_STATE(871)] = 30529, - [SMALL_STATE(872)] = 30587, - [SMALL_STATE(873)] = 30653, - [SMALL_STATE(874)] = 30717, - [SMALL_STATE(875)] = 30787, - [SMALL_STATE(876)] = 30855, - [SMALL_STATE(877)] = 30923, - [SMALL_STATE(878)] = 31019, - [SMALL_STATE(879)] = 31083, - [SMALL_STATE(880)] = 31147, - [SMALL_STATE(881)] = 31225, - [SMALL_STATE(882)] = 31289, - [SMALL_STATE(883)] = 31353, - [SMALL_STATE(884)] = 31449, - [SMALL_STATE(885)] = 31513, - [SMALL_STATE(886)] = 31609, - [SMALL_STATE(887)] = 31673, - [SMALL_STATE(888)] = 31769, - [SMALL_STATE(889)] = 31865, - [SMALL_STATE(890)] = 31933, - [SMALL_STATE(891)] = 32001, - [SMALL_STATE(892)] = 32065, - [SMALL_STATE(893)] = 32129, - [SMALL_STATE(894)] = 32193, - [SMALL_STATE(895)] = 32257, - [SMALL_STATE(896)] = 32321, - [SMALL_STATE(897)] = 32384, - [SMALL_STATE(898)] = 32441, - [SMALL_STATE(899)] = 32504, - [SMALL_STATE(900)] = 32561, - [SMALL_STATE(901)] = 32618, - [SMALL_STATE(902)] = 32681, - [SMALL_STATE(903)] = 32738, - [SMALL_STATE(904)] = 32795, - [SMALL_STATE(905)] = 32852, - [SMALL_STATE(906)] = 32909, - [SMALL_STATE(907)] = 32966, - [SMALL_STATE(908)] = 33023, - [SMALL_STATE(909)] = 33080, - [SMALL_STATE(910)] = 33137, - [SMALL_STATE(911)] = 33200, - [SMALL_STATE(912)] = 33257, - [SMALL_STATE(913)] = 33320, - [SMALL_STATE(914)] = 33391, - [SMALL_STATE(915)] = 33454, - [SMALL_STATE(916)] = 33511, - [SMALL_STATE(917)] = 33568, - [SMALL_STATE(918)] = 33631, - [SMALL_STATE(919)] = 33694, - [SMALL_STATE(920)] = 33757, - [SMALL_STATE(921)] = 33814, - [SMALL_STATE(922)] = 33871, - [SMALL_STATE(923)] = 33938, - [SMALL_STATE(924)] = 34005, - [SMALL_STATE(925)] = 34062, - [SMALL_STATE(926)] = 34119, - [SMALL_STATE(927)] = 34176, - [SMALL_STATE(928)] = 34233, - [SMALL_STATE(929)] = 34290, - [SMALL_STATE(930)] = 34347, - [SMALL_STATE(931)] = 34404, - [SMALL_STATE(932)] = 34471, - [SMALL_STATE(933)] = 34538, - [SMALL_STATE(934)] = 34595, - [SMALL_STATE(935)] = 34652, - [SMALL_STATE(936)] = 34709, - [SMALL_STATE(937)] = 34776, - [SMALL_STATE(938)] = 34843, - [SMALL_STATE(939)] = 34900, - [SMALL_STATE(940)] = 34957, - [SMALL_STATE(941)] = 35014, - [SMALL_STATE(942)] = 35071, - [SMALL_STATE(943)] = 35128, - [SMALL_STATE(944)] = 35185, - [SMALL_STATE(945)] = 35242, - [SMALL_STATE(946)] = 35299, - [SMALL_STATE(947)] = 35366, - [SMALL_STATE(948)] = 35433, - [SMALL_STATE(949)] = 35498, - [SMALL_STATE(950)] = 35595, - [SMALL_STATE(951)] = 35706, - [SMALL_STATE(952)] = 35775, - [SMALL_STATE(953)] = 35852, - [SMALL_STATE(954)] = 35949, - [SMALL_STATE(955)] = 36012, - [SMALL_STATE(956)] = 36089, - [SMALL_STATE(957)] = 36146, - [SMALL_STATE(958)] = 36243, - [SMALL_STATE(959)] = 36338, - [SMALL_STATE(960)] = 36433, - [SMALL_STATE(961)] = 36528, - [SMALL_STATE(962)] = 36623, - [SMALL_STATE(963)] = 36716, - [SMALL_STATE(964)] = 36809, - [SMALL_STATE(965)] = 36902, - [SMALL_STATE(966)] = 36997, - [SMALL_STATE(967)] = 37060, - [SMALL_STATE(968)] = 37123, - [SMALL_STATE(969)] = 37190, - [SMALL_STATE(970)] = 37257, - [SMALL_STATE(971)] = 37320, - [SMALL_STATE(972)] = 37383, - [SMALL_STATE(973)] = 37494, - [SMALL_STATE(974)] = 37557, - [SMALL_STATE(975)] = 37652, - [SMALL_STATE(976)] = 37747, - [SMALL_STATE(977)] = 37842, - [SMALL_STATE(978)] = 37953, - [SMALL_STATE(979)] = 38014, - [SMALL_STATE(980)] = 38077, - [SMALL_STATE(981)] = 38140, - [SMALL_STATE(982)] = 38203, - [SMALL_STATE(983)] = 38268, - [SMALL_STATE(984)] = 38345, - [SMALL_STATE(985)] = 38456, - [SMALL_STATE(986)] = 38519, - [SMALL_STATE(987)] = 38590, - [SMALL_STATE(988)] = 38653, - [SMALL_STATE(989)] = 38716, - [SMALL_STATE(990)] = 38785, - [SMALL_STATE(991)] = 38848, - [SMALL_STATE(992)] = 38911, - [SMALL_STATE(993)] = 39022, - [SMALL_STATE(994)] = 39085, - [SMALL_STATE(995)] = 39148, - [SMALL_STATE(996)] = 39215, - [SMALL_STATE(997)] = 39282, - [SMALL_STATE(998)] = 39343, - [SMALL_STATE(999)] = 39410, - [SMALL_STATE(1000)] = 39477, - [SMALL_STATE(1001)] = 39534, - [SMALL_STATE(1002)] = 39645, - [SMALL_STATE(1003)] = 39708, - [SMALL_STATE(1004)] = 39785, - [SMALL_STATE(1005)] = 39896, - [SMALL_STATE(1006)] = 39953, - [SMALL_STATE(1007)] = 40010, - [SMALL_STATE(1008)] = 40103, - [SMALL_STATE(1009)] = 40196, - [SMALL_STATE(1010)] = 40307, - [SMALL_STATE(1011)] = 40369, - [SMALL_STATE(1012)] = 40431, - [SMALL_STATE(1013)] = 40487, - [SMALL_STATE(1014)] = 40543, - [SMALL_STATE(1015)] = 40599, - [SMALL_STATE(1016)] = 40655, - [SMALL_STATE(1017)] = 40711, - [SMALL_STATE(1018)] = 40767, - [SMALL_STATE(1019)] = 40823, - [SMALL_STATE(1020)] = 40889, - [SMALL_STATE(1021)] = 40955, - [SMALL_STATE(1022)] = 41011, - [SMALL_STATE(1023)] = 41067, - [SMALL_STATE(1024)] = 41123, - [SMALL_STATE(1025)] = 41185, - [SMALL_STATE(1026)] = 41261, - [SMALL_STATE(1027)] = 41317, - [SMALL_STATE(1028)] = 41373, - [SMALL_STATE(1029)] = 41435, - [SMALL_STATE(1030)] = 41497, - [SMALL_STATE(1031)] = 41563, - [SMALL_STATE(1032)] = 41629, - [SMALL_STATE(1033)] = 41703, - [SMALL_STATE(1034)] = 41759, - [SMALL_STATE(1035)] = 41833, - [SMALL_STATE(1036)] = 41909, - [SMALL_STATE(1037)] = 41983, - [SMALL_STATE(1038)] = 42045, - [SMALL_STATE(1039)] = 42107, - [SMALL_STATE(1040)] = 42169, - [SMALL_STATE(1041)] = 42231, - [SMALL_STATE(1042)] = 42297, - [SMALL_STATE(1043)] = 42363, - [SMALL_STATE(1044)] = 42457, - [SMALL_STATE(1045)] = 42551, - [SMALL_STATE(1046)] = 42613, - [SMALL_STATE(1047)] = 42675, - [SMALL_STATE(1048)] = 42745, - [SMALL_STATE(1049)] = 42807, - [SMALL_STATE(1050)] = 42869, - [SMALL_STATE(1051)] = 42931, - [SMALL_STATE(1052)] = 42987, - [SMALL_STATE(1053)] = 43049, - [SMALL_STATE(1054)] = 43111, - [SMALL_STATE(1055)] = 43173, - [SMALL_STATE(1056)] = 43229, - [SMALL_STATE(1057)] = 43285, - [SMALL_STATE(1058)] = 43341, - [SMALL_STATE(1059)] = 43397, - [SMALL_STATE(1060)] = 43459, - [SMALL_STATE(1061)] = 43521, - [SMALL_STATE(1062)] = 43577, - [SMALL_STATE(1063)] = 43639, - [SMALL_STATE(1064)] = 43695, - [SMALL_STATE(1065)] = 43757, - [SMALL_STATE(1066)] = 43823, - [SMALL_STATE(1067)] = 43889, - [SMALL_STATE(1068)] = 43951, - [SMALL_STATE(1069)] = 44045, - [SMALL_STATE(1070)] = 44107, - [SMALL_STATE(1071)] = 44201, - [SMALL_STATE(1072)] = 44263, - [SMALL_STATE(1073)] = 44357, - [SMALL_STATE(1074)] = 44413, - [SMALL_STATE(1075)] = 44507, - [SMALL_STATE(1076)] = 44569, - [SMALL_STATE(1077)] = 44663, - [SMALL_STATE(1078)] = 44725, - [SMALL_STATE(1079)] = 44787, - [SMALL_STATE(1080)] = 44849, - [SMALL_STATE(1081)] = 44911, - [SMALL_STATE(1082)] = 44973, - [SMALL_STATE(1083)] = 45035, - [SMALL_STATE(1084)] = 45091, - [SMALL_STATE(1085)] = 45153, - [SMALL_STATE(1086)] = 45215, - [SMALL_STATE(1087)] = 45271, - [SMALL_STATE(1088)] = 45327, - [SMALL_STATE(1089)] = 45387, - [SMALL_STATE(1090)] = 45443, - [SMALL_STATE(1091)] = 45499, - [SMALL_STATE(1092)] = 45555, - [SMALL_STATE(1093)] = 45611, - [SMALL_STATE(1094)] = 45671, - [SMALL_STATE(1095)] = 45733, - [SMALL_STATE(1096)] = 45789, - [SMALL_STATE(1097)] = 45845, - [SMALL_STATE(1098)] = 45905, - [SMALL_STATE(1099)] = 45961, - [SMALL_STATE(1100)] = 46017, - [SMALL_STATE(1101)] = 46073, - [SMALL_STATE(1102)] = 46129, - [SMALL_STATE(1103)] = 46185, - [SMALL_STATE(1104)] = 46247, - [SMALL_STATE(1105)] = 46309, - [SMALL_STATE(1106)] = 46365, - [SMALL_STATE(1107)] = 46421, - [SMALL_STATE(1108)] = 46477, - [SMALL_STATE(1109)] = 46533, - [SMALL_STATE(1110)] = 46589, - [SMALL_STATE(1111)] = 46645, - [SMALL_STATE(1112)] = 46705, - [SMALL_STATE(1113)] = 46767, - [SMALL_STATE(1114)] = 46823, - [SMALL_STATE(1115)] = 46879, - [SMALL_STATE(1116)] = 46935, - [SMALL_STATE(1117)] = 46991, - [SMALL_STATE(1118)] = 47047, - [SMALL_STATE(1119)] = 47121, - [SMALL_STATE(1120)] = 47187, - [SMALL_STATE(1121)] = 47253, - [SMALL_STATE(1122)] = 47309, - [SMALL_STATE(1123)] = 47365, - [SMALL_STATE(1124)] = 47431, - [SMALL_STATE(1125)] = 47497, - [SMALL_STATE(1126)] = 47563, - [SMALL_STATE(1127)] = 47629, - [SMALL_STATE(1128)] = 47689, - [SMALL_STATE(1129)] = 47745, - [SMALL_STATE(1130)] = 47801, - [SMALL_STATE(1131)] = 47867, - [SMALL_STATE(1132)] = 47933, - [SMALL_STATE(1133)] = 48001, - [SMALL_STATE(1134)] = 48057, - [SMALL_STATE(1135)] = 48119, - [SMALL_STATE(1136)] = 48181, - [SMALL_STATE(1137)] = 48241, - [SMALL_STATE(1138)] = 48297, - [SMALL_STATE(1139)] = 48359, - [SMALL_STATE(1140)] = 48415, - [SMALL_STATE(1141)] = 48471, - [SMALL_STATE(1142)] = 48533, - [SMALL_STATE(1143)] = 48597, - [SMALL_STATE(1144)] = 48659, - [SMALL_STATE(1145)] = 48721, - [SMALL_STATE(1146)] = 48783, - [SMALL_STATE(1147)] = 48845, - [SMALL_STATE(1148)] = 48907, - [SMALL_STATE(1149)] = 48977, - [SMALL_STATE(1150)] = 49039, - [SMALL_STATE(1151)] = 49107, - [SMALL_STATE(1152)] = 49169, - [SMALL_STATE(1153)] = 49231, - [SMALL_STATE(1154)] = 49287, - [SMALL_STATE(1155)] = 49349, - [SMALL_STATE(1156)] = 49405, - [SMALL_STATE(1157)] = 49461, - [SMALL_STATE(1158)] = 49523, - [SMALL_STATE(1159)] = 49579, - [SMALL_STATE(1160)] = 49671, - [SMALL_STATE(1161)] = 49763, - [SMALL_STATE(1162)] = 49823, - [SMALL_STATE(1163)] = 49887, - [SMALL_STATE(1164)] = 49943, - [SMALL_STATE(1165)] = 50004, - [SMALL_STATE(1166)] = 50059, - [SMALL_STATE(1167)] = 50114, - [SMALL_STATE(1168)] = 50169, - [SMALL_STATE(1169)] = 50224, - [SMALL_STATE(1170)] = 50279, - [SMALL_STATE(1171)] = 50334, - [SMALL_STATE(1172)] = 50389, - [SMALL_STATE(1173)] = 50444, - [SMALL_STATE(1174)] = 50499, - [SMALL_STATE(1175)] = 50554, - [SMALL_STATE(1176)] = 50609, - [SMALL_STATE(1177)] = 50670, - [SMALL_STATE(1178)] = 50731, - [SMALL_STATE(1179)] = 50792, - [SMALL_STATE(1180)] = 50851, - [SMALL_STATE(1181)] = 50906, - [SMALL_STATE(1182)] = 50961, - [SMALL_STATE(1183)] = 51016, - [SMALL_STATE(1184)] = 51077, - [SMALL_STATE(1185)] = 51136, - [SMALL_STATE(1186)] = 51191, - [SMALL_STATE(1187)] = 51252, - [SMALL_STATE(1188)] = 51313, - [SMALL_STATE(1189)] = 51374, - [SMALL_STATE(1190)] = 51435, - [SMALL_STATE(1191)] = 51496, - [SMALL_STATE(1192)] = 51557, - [SMALL_STATE(1193)] = 51618, - [SMALL_STATE(1194)] = 51679, - [SMALL_STATE(1195)] = 51734, - [SMALL_STATE(1196)] = 51789, - [SMALL_STATE(1197)] = 51850, - [SMALL_STATE(1198)] = 51911, - [SMALL_STATE(1199)] = 51966, - [SMALL_STATE(1200)] = 52021, - [SMALL_STATE(1201)] = 52076, - [SMALL_STATE(1202)] = 52131, - [SMALL_STATE(1203)] = 52186, - [SMALL_STATE(1204)] = 52241, - [SMALL_STATE(1205)] = 52302, - [SMALL_STATE(1206)] = 52363, - [SMALL_STATE(1207)] = 52418, - [SMALL_STATE(1208)] = 52511, - [SMALL_STATE(1209)] = 52566, - [SMALL_STATE(1210)] = 52659, - [SMALL_STATE(1211)] = 52714, - [SMALL_STATE(1212)] = 52775, - [SMALL_STATE(1213)] = 52830, - [SMALL_STATE(1214)] = 52889, - [SMALL_STATE(1215)] = 52944, - [SMALL_STATE(1216)] = 52999, - [SMALL_STATE(1217)] = 53054, - [SMALL_STATE(1218)] = 53109, - [SMALL_STATE(1219)] = 53164, - [SMALL_STATE(1220)] = 53223, - [SMALL_STATE(1221)] = 53278, - [SMALL_STATE(1222)] = 53333, - [SMALL_STATE(1223)] = 53388, - [SMALL_STATE(1224)] = 53443, - [SMALL_STATE(1225)] = 53498, - [SMALL_STATE(1226)] = 53553, - [SMALL_STATE(1227)] = 53620, - [SMALL_STATE(1228)] = 53675, - [SMALL_STATE(1229)] = 53730, - [SMALL_STATE(1230)] = 53789, - [SMALL_STATE(1231)] = 53844, - [SMALL_STATE(1232)] = 53899, - [SMALL_STATE(1233)] = 53960, - [SMALL_STATE(1234)] = 54015, - [SMALL_STATE(1235)] = 54070, - [SMALL_STATE(1236)] = 54131, - [SMALL_STATE(1237)] = 54186, - [SMALL_STATE(1238)] = 54241, - [SMALL_STATE(1239)] = 54296, - [SMALL_STATE(1240)] = 54357, - [SMALL_STATE(1241)] = 54412, - [SMALL_STATE(1242)] = 54473, - [SMALL_STATE(1243)] = 54528, - [SMALL_STATE(1244)] = 54583, - [SMALL_STATE(1245)] = 54638, - [SMALL_STATE(1246)] = 54693, - [SMALL_STATE(1247)] = 54754, - [SMALL_STATE(1248)] = 54819, - [SMALL_STATE(1249)] = 54880, - [SMALL_STATE(1250)] = 54941, - [SMALL_STATE(1251)] = 55006, - [SMALL_STATE(1252)] = 55061, - [SMALL_STATE(1253)] = 55122, - [SMALL_STATE(1254)] = 55177, - [SMALL_STATE(1255)] = 55238, - [SMALL_STATE(1256)] = 55293, - [SMALL_STATE(1257)] = 55348, - [SMALL_STATE(1258)] = 55407, - [SMALL_STATE(1259)] = 55462, - [SMALL_STATE(1260)] = 55517, - [SMALL_STATE(1261)] = 55572, - [SMALL_STATE(1262)] = 55631, - [SMALL_STATE(1263)] = 55692, - [SMALL_STATE(1264)] = 55753, - [SMALL_STATE(1265)] = 55814, - [SMALL_STATE(1266)] = 55869, - [SMALL_STATE(1267)] = 55924, - [SMALL_STATE(1268)] = 55979, - [SMALL_STATE(1269)] = 56034, - [SMALL_STATE(1270)] = 56089, - [SMALL_STATE(1271)] = 56144, - [SMALL_STATE(1272)] = 56205, - [SMALL_STATE(1273)] = 56266, - [SMALL_STATE(1274)] = 56321, - [SMALL_STATE(1275)] = 56376, - [SMALL_STATE(1276)] = 56437, - [SMALL_STATE(1277)] = 56498, - [SMALL_STATE(1278)] = 56553, - [SMALL_STATE(1279)] = 56614, - [SMALL_STATE(1280)] = 56675, - [SMALL_STATE(1281)] = 56736, - [SMALL_STATE(1282)] = 56797, - [SMALL_STATE(1283)] = 56858, - [SMALL_STATE(1284)] = 56919, - [SMALL_STATE(1285)] = 56974, - [SMALL_STATE(1286)] = 57029, - [SMALL_STATE(1287)] = 57090, - [SMALL_STATE(1288)] = 57151, - [SMALL_STATE(1289)] = 57210, - [SMALL_STATE(1290)] = 57265, - [SMALL_STATE(1291)] = 57320, - [SMALL_STATE(1292)] = 57375, - [SMALL_STATE(1293)] = 57430, - [SMALL_STATE(1294)] = 57485, - [SMALL_STATE(1295)] = 57540, - [SMALL_STATE(1296)] = 57595, - [SMALL_STATE(1297)] = 57650, - [SMALL_STATE(1298)] = 57705, - [SMALL_STATE(1299)] = 57760, - [SMALL_STATE(1300)] = 57819, - [SMALL_STATE(1301)] = 57874, - [SMALL_STATE(1302)] = 57935, - [SMALL_STATE(1303)] = 57990, - [SMALL_STATE(1304)] = 58045, - [SMALL_STATE(1305)] = 58106, - [SMALL_STATE(1306)] = 58161, - [SMALL_STATE(1307)] = 58222, - [SMALL_STATE(1308)] = 58280, - [SMALL_STATE(1309)] = 58340, - [SMALL_STATE(1310)] = 58400, - [SMALL_STATE(1311)] = 58460, - [SMALL_STATE(1312)] = 58514, - [SMALL_STATE(1313)] = 58568, - [SMALL_STATE(1314)] = 58622, - [SMALL_STATE(1315)] = 58680, - [SMALL_STATE(1316)] = 58734, - [SMALL_STATE(1317)] = 58794, - [SMALL_STATE(1318)] = 58848, - [SMALL_STATE(1319)] = 58912, - [SMALL_STATE(1320)] = 58976, - [SMALL_STATE(1321)] = 59030, - [SMALL_STATE(1322)] = 59084, - [SMALL_STATE(1323)] = 59144, - [SMALL_STATE(1324)] = 59202, - [SMALL_STATE(1325)] = 59256, - [SMALL_STATE(1326)] = 59310, - [SMALL_STATE(1327)] = 59370, - [SMALL_STATE(1328)] = 59430, - [SMALL_STATE(1329)] = 59490, - [SMALL_STATE(1330)] = 59550, - [SMALL_STATE(1331)] = 59610, - [SMALL_STATE(1332)] = 59664, - [SMALL_STATE(1333)] = 59718, - [SMALL_STATE(1334)] = 59772, - [SMALL_STATE(1335)] = 59826, - [SMALL_STATE(1336)] = 59886, - [SMALL_STATE(1337)] = 59946, - [SMALL_STATE(1338)] = 60006, - [SMALL_STATE(1339)] = 60066, - [SMALL_STATE(1340)] = 60124, - [SMALL_STATE(1341)] = 60184, - [SMALL_STATE(1342)] = 60238, - [SMALL_STATE(1343)] = 60292, - [SMALL_STATE(1344)] = 60350, - [SMALL_STATE(1345)] = 60410, - [SMALL_STATE(1346)] = 60470, - [SMALL_STATE(1347)] = 60530, - [SMALL_STATE(1348)] = 60584, - [SMALL_STATE(1349)] = 60638, - [SMALL_STATE(1350)] = 60692, - [SMALL_STATE(1351)] = 60746, - [SMALL_STATE(1352)] = 60800, - [SMALL_STATE(1353)] = 60860, - [SMALL_STATE(1354)] = 60950, - [SMALL_STATE(1355)] = 61040, - [SMALL_STATE(1356)] = 61094, - [SMALL_STATE(1357)] = 61148, - [SMALL_STATE(1358)] = 61238, - [SMALL_STATE(1359)] = 61292, - [SMALL_STATE(1360)] = 61346, - [SMALL_STATE(1361)] = 61400, - [SMALL_STATE(1362)] = 61454, - [SMALL_STATE(1363)] = 61514, - [SMALL_STATE(1364)] = 61568, - [SMALL_STATE(1365)] = 61622, - [SMALL_STATE(1366)] = 61682, - [SMALL_STATE(1367)] = 61736, - [SMALL_STATE(1368)] = 61790, - [SMALL_STATE(1369)] = 61844, - [SMALL_STATE(1370)] = 61902, - [SMALL_STATE(1371)] = 61960, - [SMALL_STATE(1372)] = 62014, - [SMALL_STATE(1373)] = 62072, - [SMALL_STATE(1374)] = 62130, - [SMALL_STATE(1375)] = 62190, - [SMALL_STATE(1376)] = 62244, - [SMALL_STATE(1377)] = 62298, - [SMALL_STATE(1378)] = 62352, - [SMALL_STATE(1379)] = 62406, - [SMALL_STATE(1380)] = 62460, - [SMALL_STATE(1381)] = 62514, - [SMALL_STATE(1382)] = 62572, - [SMALL_STATE(1383)] = 62626, - [SMALL_STATE(1384)] = 62680, - [SMALL_STATE(1385)] = 62738, - [SMALL_STATE(1386)] = 62792, - [SMALL_STATE(1387)] = 62846, - [SMALL_STATE(1388)] = 62906, - [SMALL_STATE(1389)] = 62966, - [SMALL_STATE(1390)] = 63020, - [SMALL_STATE(1391)] = 63074, - [SMALL_STATE(1392)] = 63128, - [SMALL_STATE(1393)] = 63186, - [SMALL_STATE(1394)] = 63240, - [SMALL_STATE(1395)] = 63294, - [SMALL_STATE(1396)] = 63348, - [SMALL_STATE(1397)] = 63402, - [SMALL_STATE(1398)] = 63462, - [SMALL_STATE(1399)] = 63516, - [SMALL_STATE(1400)] = 63576, - [SMALL_STATE(1401)] = 63630, - [SMALL_STATE(1402)] = 63684, - [SMALL_STATE(1403)] = 63738, - [SMALL_STATE(1404)] = 63792, - [SMALL_STATE(1405)] = 63852, - [SMALL_STATE(1406)] = 63912, - [SMALL_STATE(1407)] = 63972, - [SMALL_STATE(1408)] = 64032, - [SMALL_STATE(1409)] = 64090, - [SMALL_STATE(1410)] = 64150, - [SMALL_STATE(1411)] = 64208, - [SMALL_STATE(1412)] = 64262, - [SMALL_STATE(1413)] = 64316, - [SMALL_STATE(1414)] = 64374, - [SMALL_STATE(1415)] = 64434, - [SMALL_STATE(1416)] = 64494, - [SMALL_STATE(1417)] = 64548, - [SMALL_STATE(1418)] = 64602, - [SMALL_STATE(1419)] = 64660, - [SMALL_STATE(1420)] = 64720, - [SMALL_STATE(1421)] = 64780, - [SMALL_STATE(1422)] = 64840, - [SMALL_STATE(1423)] = 64900, - [SMALL_STATE(1424)] = 64954, - [SMALL_STATE(1425)] = 65020, - [SMALL_STATE(1426)] = 65074, - [SMALL_STATE(1427)] = 65134, - [SMALL_STATE(1428)] = 65188, - [SMALL_STATE(1429)] = 65242, - [SMALL_STATE(1430)] = 65296, - [SMALL_STATE(1431)] = 65356, - [SMALL_STATE(1432)] = 65416, - [SMALL_STATE(1433)] = 65470, - [SMALL_STATE(1434)] = 65530, - [SMALL_STATE(1435)] = 65590, - [SMALL_STATE(1436)] = 65650, - [SMALL_STATE(1437)] = 65710, - [SMALL_STATE(1438)] = 65770, - [SMALL_STATE(1439)] = 65830, - [SMALL_STATE(1440)] = 65890, - [SMALL_STATE(1441)] = 65950, - [SMALL_STATE(1442)] = 66010, - [SMALL_STATE(1443)] = 66070, - [SMALL_STATE(1444)] = 66130, - [SMALL_STATE(1445)] = 66184, - [SMALL_STATE(1446)] = 66244, - [SMALL_STATE(1447)] = 66298, - [SMALL_STATE(1448)] = 66358, - [SMALL_STATE(1449)] = 66418, - [SMALL_STATE(1450)] = 66478, - [SMALL_STATE(1451)] = 66538, - [SMALL_STATE(1452)] = 66592, - [SMALL_STATE(1453)] = 66646, - [SMALL_STATE(1454)] = 66704, - [SMALL_STATE(1455)] = 66764, - [SMALL_STATE(1456)] = 66822, - [SMALL_STATE(1457)] = 66876, - [SMALL_STATE(1458)] = 66934, - [SMALL_STATE(1459)] = 66994, - [SMALL_STATE(1460)] = 67048, - [SMALL_STATE(1461)] = 67108, - [SMALL_STATE(1462)] = 67168, - [SMALL_STATE(1463)] = 67222, - [SMALL_STATE(1464)] = 67276, - [SMALL_STATE(1465)] = 67330, - [SMALL_STATE(1466)] = 67384, - [SMALL_STATE(1467)] = 67438, - [SMALL_STATE(1468)] = 67492, - [SMALL_STATE(1469)] = 67546, - [SMALL_STATE(1470)] = 67600, - [SMALL_STATE(1471)] = 67654, - [SMALL_STATE(1472)] = 67708, - [SMALL_STATE(1473)] = 67766, - [SMALL_STATE(1474)] = 67820, - [SMALL_STATE(1475)] = 67874, - [SMALL_STATE(1476)] = 67928, - [SMALL_STATE(1477)] = 67988, - [SMALL_STATE(1478)] = 68042, - [SMALL_STATE(1479)] = 68096, - [SMALL_STATE(1480)] = 68156, - [SMALL_STATE(1481)] = 68210, - [SMALL_STATE(1482)] = 68263, - [SMALL_STATE(1483)] = 68316, - [SMALL_STATE(1484)] = 68369, - [SMALL_STATE(1485)] = 68422, - [SMALL_STATE(1486)] = 68475, - [SMALL_STATE(1487)] = 68578, - [SMALL_STATE(1488)] = 68631, - [SMALL_STATE(1489)] = 68684, - [SMALL_STATE(1490)] = 68737, - [SMALL_STATE(1491)] = 68802, - [SMALL_STATE(1492)] = 68859, - [SMALL_STATE(1493)] = 68912, - [SMALL_STATE(1494)] = 68965, - [SMALL_STATE(1495)] = 69018, - [SMALL_STATE(1496)] = 69071, - [SMALL_STATE(1497)] = 69124, - [SMALL_STATE(1498)] = 69177, - [SMALL_STATE(1499)] = 69230, - [SMALL_STATE(1500)] = 69283, - [SMALL_STATE(1501)] = 69336, - [SMALL_STATE(1502)] = 69389, - [SMALL_STATE(1503)] = 69442, - [SMALL_STATE(1504)] = 69531, - [SMALL_STATE(1505)] = 69584, - [SMALL_STATE(1506)] = 69637, - [SMALL_STATE(1507)] = 69690, - [SMALL_STATE(1508)] = 69749, - [SMALL_STATE(1509)] = 69802, - [SMALL_STATE(1510)] = 69855, - [SMALL_STATE(1511)] = 69908, - [SMALL_STATE(1512)] = 69961, - [SMALL_STATE(1513)] = 70050, - [SMALL_STATE(1514)] = 70103, - [SMALL_STATE(1515)] = 70162, - [SMALL_STATE(1516)] = 70215, - [SMALL_STATE(1517)] = 70274, - [SMALL_STATE(1518)] = 70327, - [SMALL_STATE(1519)] = 70380, - [SMALL_STATE(1520)] = 70433, - [SMALL_STATE(1521)] = 70486, - [SMALL_STATE(1522)] = 70545, - [SMALL_STATE(1523)] = 70602, - [SMALL_STATE(1524)] = 70659, - [SMALL_STATE(1525)] = 70718, - [SMALL_STATE(1526)] = 70771, - [SMALL_STATE(1527)] = 70824, - [SMALL_STATE(1528)] = 70877, - [SMALL_STATE(1529)] = 70930, - [SMALL_STATE(1530)] = 70983, - [SMALL_STATE(1531)] = 71036, - [SMALL_STATE(1532)] = 71089, - [SMALL_STATE(1533)] = 71146, - [SMALL_STATE(1534)] = 71199, - [SMALL_STATE(1535)] = 71252, - [SMALL_STATE(1536)] = 71305, - [SMALL_STATE(1537)] = 71358, - [SMALL_STATE(1538)] = 71411, - [SMALL_STATE(1539)] = 71514, - [SMALL_STATE(1540)] = 71571, - [SMALL_STATE(1541)] = 71624, - [SMALL_STATE(1542)] = 71677, - [SMALL_STATE(1543)] = 71734, - [SMALL_STATE(1544)] = 71787, - [SMALL_STATE(1545)] = 71846, - [SMALL_STATE(1546)] = 71899, - [SMALL_STATE(1547)] = 71952, - [SMALL_STATE(1548)] = 72021, - [SMALL_STATE(1549)] = 72078, - [SMALL_STATE(1550)] = 72131, - [SMALL_STATE(1551)] = 72200, - [SMALL_STATE(1552)] = 72253, - [SMALL_STATE(1553)] = 72306, - [SMALL_STATE(1554)] = 72359, - [SMALL_STATE(1555)] = 72418, - [SMALL_STATE(1556)] = 72471, - [SMALL_STATE(1557)] = 72532, - [SMALL_STATE(1558)] = 72585, - [SMALL_STATE(1559)] = 72644, - [SMALL_STATE(1560)] = 72703, - [SMALL_STATE(1561)] = 72762, - [SMALL_STATE(1562)] = 72815, - [SMALL_STATE(1563)] = 72868, - [SMALL_STATE(1564)] = 72921, - [SMALL_STATE(1565)] = 72974, - [SMALL_STATE(1566)] = 73027, - [SMALL_STATE(1567)] = 73080, - [SMALL_STATE(1568)] = 73133, - [SMALL_STATE(1569)] = 73186, - [SMALL_STATE(1570)] = 73245, - [SMALL_STATE(1571)] = 73298, - [SMALL_STATE(1572)] = 73351, - [SMALL_STATE(1573)] = 73404, - [SMALL_STATE(1574)] = 73457, - [SMALL_STATE(1575)] = 73516, - [SMALL_STATE(1576)] = 73569, - [SMALL_STATE(1577)] = 73622, - [SMALL_STATE(1578)] = 73675, - [SMALL_STATE(1579)] = 73734, - [SMALL_STATE(1580)] = 73787, - [SMALL_STATE(1581)] = 73840, - [SMALL_STATE(1582)] = 73897, - [SMALL_STATE(1583)] = 73950, - [SMALL_STATE(1584)] = 74003, - [SMALL_STATE(1585)] = 74056, - [SMALL_STATE(1586)] = 74109, - [SMALL_STATE(1587)] = 74162, - [SMALL_STATE(1588)] = 74221, - [SMALL_STATE(1589)] = 74324, - [SMALL_STATE(1590)] = 74377, - [SMALL_STATE(1591)] = 74430, - [SMALL_STATE(1592)] = 74483, - [SMALL_STATE(1593)] = 74542, - [SMALL_STATE(1594)] = 74601, - [SMALL_STATE(1595)] = 74654, - [SMALL_STATE(1596)] = 74713, - [SMALL_STATE(1597)] = 74772, - [SMALL_STATE(1598)] = 74831, - [SMALL_STATE(1599)] = 74884, - [SMALL_STATE(1600)] = 74937, - [SMALL_STATE(1601)] = 74994, - [SMALL_STATE(1602)] = 75047, - [SMALL_STATE(1603)] = 75106, - [SMALL_STATE(1604)] = 75159, - [SMALL_STATE(1605)] = 75262, - [SMALL_STATE(1606)] = 75315, - [SMALL_STATE(1607)] = 75368, - [SMALL_STATE(1608)] = 75433, - [SMALL_STATE(1609)] = 75486, - [SMALL_STATE(1610)] = 75539, - [SMALL_STATE(1611)] = 75598, - [SMALL_STATE(1612)] = 75657, - [SMALL_STATE(1613)] = 75716, - [SMALL_STATE(1614)] = 75775, - [SMALL_STATE(1615)] = 75832, - [SMALL_STATE(1616)] = 75891, - [SMALL_STATE(1617)] = 75944, - [SMALL_STATE(1618)] = 76001, - [SMALL_STATE(1619)] = 76054, - [SMALL_STATE(1620)] = 76107, - [SMALL_STATE(1621)] = 76160, - [SMALL_STATE(1622)] = 76213, - [SMALL_STATE(1623)] = 76270, - [SMALL_STATE(1624)] = 76323, - [SMALL_STATE(1625)] = 76376, - [SMALL_STATE(1626)] = 76435, - [SMALL_STATE(1627)] = 76488, - [SMALL_STATE(1628)] = 76541, - [SMALL_STATE(1629)] = 76594, - [SMALL_STATE(1630)] = 76647, - [SMALL_STATE(1631)] = 76700, - [SMALL_STATE(1632)] = 76753, - [SMALL_STATE(1633)] = 76806, - [SMALL_STATE(1634)] = 76859, - [SMALL_STATE(1635)] = 76912, - [SMALL_STATE(1636)] = 77015, - [SMALL_STATE(1637)] = 77068, - [SMALL_STATE(1638)] = 77121, - [SMALL_STATE(1639)] = 77174, - [SMALL_STATE(1640)] = 77227, - [SMALL_STATE(1641)] = 77280, - [SMALL_STATE(1642)] = 77333, - [SMALL_STATE(1643)] = 77386, - [SMALL_STATE(1644)] = 77439, - [SMALL_STATE(1645)] = 77492, - [SMALL_STATE(1646)] = 77551, - [SMALL_STATE(1647)] = 77610, - [SMALL_STATE(1648)] = 77663, - [SMALL_STATE(1649)] = 77722, - [SMALL_STATE(1650)] = 77781, - [SMALL_STATE(1651)] = 77834, - [SMALL_STATE(1652)] = 77893, - [SMALL_STATE(1653)] = 77952, - [SMALL_STATE(1654)] = 78011, - [SMALL_STATE(1655)] = 78070, - [SMALL_STATE(1656)] = 78123, - [SMALL_STATE(1657)] = 78182, - [SMALL_STATE(1658)] = 78235, - [SMALL_STATE(1659)] = 78288, - [SMALL_STATE(1660)] = 78341, - [SMALL_STATE(1661)] = 78394, - [SMALL_STATE(1662)] = 78451, - [SMALL_STATE(1663)] = 78510, - [SMALL_STATE(1664)] = 78569, - [SMALL_STATE(1665)] = 78628, - [SMALL_STATE(1666)] = 78687, - [SMALL_STATE(1667)] = 78746, - [SMALL_STATE(1668)] = 78805, - [SMALL_STATE(1669)] = 78858, - [SMALL_STATE(1670)] = 78915, - [SMALL_STATE(1671)] = 78968, - [SMALL_STATE(1672)] = 79021, - [SMALL_STATE(1673)] = 79124, - [SMALL_STATE(1674)] = 79183, - [SMALL_STATE(1675)] = 79236, - [SMALL_STATE(1676)] = 79289, - [SMALL_STATE(1677)] = 79342, - [SMALL_STATE(1678)] = 79401, - [SMALL_STATE(1679)] = 79454, - [SMALL_STATE(1680)] = 79513, - [SMALL_STATE(1681)] = 79572, - [SMALL_STATE(1682)] = 79625, - [SMALL_STATE(1683)] = 79678, - [SMALL_STATE(1684)] = 79731, - [SMALL_STATE(1685)] = 79784, - [SMALL_STATE(1686)] = 79837, - [SMALL_STATE(1687)] = 79890, - [SMALL_STATE(1688)] = 79943, - [SMALL_STATE(1689)] = 79996, - [SMALL_STATE(1690)] = 80055, - [SMALL_STATE(1691)] = 80108, - [SMALL_STATE(1692)] = 80161, - [SMALL_STATE(1693)] = 80214, - [SMALL_STATE(1694)] = 80273, - [SMALL_STATE(1695)] = 80334, - [SMALL_STATE(1696)] = 80393, - [SMALL_STATE(1697)] = 80446, - [SMALL_STATE(1698)] = 80499, - [SMALL_STATE(1699)] = 80552, - [SMALL_STATE(1700)] = 80605, - [SMALL_STATE(1701)] = 80658, - [SMALL_STATE(1702)] = 80711, - [SMALL_STATE(1703)] = 80814, - [SMALL_STATE(1704)] = 80867, - [SMALL_STATE(1705)] = 80920, - [SMALL_STATE(1706)] = 80973, - [SMALL_STATE(1707)] = 81026, - [SMALL_STATE(1708)] = 81085, - [SMALL_STATE(1709)] = 81152, - [SMALL_STATE(1710)] = 81211, - [SMALL_STATE(1711)] = 81270, - [SMALL_STATE(1712)] = 81335, - [SMALL_STATE(1713)] = 81394, - [SMALL_STATE(1714)] = 81453, - [SMALL_STATE(1715)] = 81512, - [SMALL_STATE(1716)] = 81571, - [SMALL_STATE(1717)] = 81624, - [SMALL_STATE(1718)] = 81677, - [SMALL_STATE(1719)] = 81738, - [SMALL_STATE(1720)] = 81795, - [SMALL_STATE(1721)] = 81848, - [SMALL_STATE(1722)] = 81901, - [SMALL_STATE(1723)] = 81954, - [SMALL_STATE(1724)] = 82007, - [SMALL_STATE(1725)] = 82060, - [SMALL_STATE(1726)] = 82113, - [SMALL_STATE(1727)] = 82165, - [SMALL_STATE(1728)] = 82223, - [SMALL_STATE(1729)] = 82281, - [SMALL_STATE(1730)] = 82337, - [SMALL_STATE(1731)] = 82395, - [SMALL_STATE(1732)] = 82447, - [SMALL_STATE(1733)] = 82499, - [SMALL_STATE(1734)] = 82551, - [SMALL_STATE(1735)] = 82603, - [SMALL_STATE(1736)] = 82655, - [SMALL_STATE(1737)] = 82707, - [SMALL_STATE(1738)] = 82759, - [SMALL_STATE(1739)] = 82811, - [SMALL_STATE(1740)] = 82869, - [SMALL_STATE(1741)] = 82921, - [SMALL_STATE(1742)] = 82979, - [SMALL_STATE(1743)] = 83031, - [SMALL_STATE(1744)] = 83089, - [SMALL_STATE(1745)] = 83141, - [SMALL_STATE(1746)] = 83193, - [SMALL_STATE(1747)] = 83245, - [SMALL_STATE(1748)] = 83297, - [SMALL_STATE(1749)] = 83353, - [SMALL_STATE(1750)] = 83405, - [SMALL_STATE(1751)] = 83457, - [SMALL_STATE(1752)] = 83509, - [SMALL_STATE(1753)] = 83561, - [SMALL_STATE(1754)] = 83613, - [SMALL_STATE(1755)] = 83665, - [SMALL_STATE(1756)] = 83723, - [SMALL_STATE(1757)] = 83775, - [SMALL_STATE(1758)] = 83827, - [SMALL_STATE(1759)] = 83879, - [SMALL_STATE(1760)] = 83931, - [SMALL_STATE(1761)] = 83983, - [SMALL_STATE(1762)] = 84035, - [SMALL_STATE(1763)] = 84087, - [SMALL_STATE(1764)] = 84139, - [SMALL_STATE(1765)] = 84191, - [SMALL_STATE(1766)] = 84243, - [SMALL_STATE(1767)] = 84295, - [SMALL_STATE(1768)] = 84347, - [SMALL_STATE(1769)] = 84399, - [SMALL_STATE(1770)] = 84451, - [SMALL_STATE(1771)] = 84503, - [SMALL_STATE(1772)] = 84555, - [SMALL_STATE(1773)] = 84607, - [SMALL_STATE(1774)] = 84707, - [SMALL_STATE(1775)] = 84807, - [SMALL_STATE(1776)] = 84863, - [SMALL_STATE(1777)] = 84919, - [SMALL_STATE(1778)] = 84975, - [SMALL_STATE(1779)] = 85027, - [SMALL_STATE(1780)] = 85085, - [SMALL_STATE(1781)] = 85143, - [SMALL_STATE(1782)] = 85243, - [SMALL_STATE(1783)] = 85343, - [SMALL_STATE(1784)] = 85443, - [SMALL_STATE(1785)] = 85499, - [SMALL_STATE(1786)] = 85555, - [SMALL_STATE(1787)] = 85611, - [SMALL_STATE(1788)] = 85667, - [SMALL_STATE(1789)] = 85719, - [SMALL_STATE(1790)] = 85819, - [SMALL_STATE(1791)] = 85875, - [SMALL_STATE(1792)] = 85945, - [SMALL_STATE(1793)] = 86001, - [SMALL_STATE(1794)] = 86053, - [SMALL_STATE(1795)] = 86109, - [SMALL_STATE(1796)] = 86165, - [SMALL_STATE(1797)] = 86221, - [SMALL_STATE(1798)] = 86273, - [SMALL_STATE(1799)] = 86325, - [SMALL_STATE(1800)] = 86377, - [SMALL_STATE(1801)] = 86429, - [SMALL_STATE(1802)] = 86485, - [SMALL_STATE(1803)] = 86537, - [SMALL_STATE(1804)] = 86589, - [SMALL_STATE(1805)] = 86641, - [SMALL_STATE(1806)] = 86693, - [SMALL_STATE(1807)] = 86793, - [SMALL_STATE(1808)] = 86853, - [SMALL_STATE(1809)] = 86913, - [SMALL_STATE(1810)] = 86969, - [SMALL_STATE(1811)] = 87025, - [SMALL_STATE(1812)] = 87077, - [SMALL_STATE(1813)] = 87129, - [SMALL_STATE(1814)] = 87181, - [SMALL_STATE(1815)] = 87233, - [SMALL_STATE(1816)] = 87285, - [SMALL_STATE(1817)] = 87337, - [SMALL_STATE(1818)] = 87389, - [SMALL_STATE(1819)] = 87441, - [SMALL_STATE(1820)] = 87493, - [SMALL_STATE(1821)] = 87549, - [SMALL_STATE(1822)] = 87601, - [SMALL_STATE(1823)] = 87653, - [SMALL_STATE(1824)] = 87705, - [SMALL_STATE(1825)] = 87757, - [SMALL_STATE(1826)] = 87809, - [SMALL_STATE(1827)] = 87861, - [SMALL_STATE(1828)] = 87913, - [SMALL_STATE(1829)] = 87965, - [SMALL_STATE(1830)] = 88017, - [SMALL_STATE(1831)] = 88069, - [SMALL_STATE(1832)] = 88121, - [SMALL_STATE(1833)] = 88173, - [SMALL_STATE(1834)] = 88225, - [SMALL_STATE(1835)] = 88277, - [SMALL_STATE(1836)] = 88335, - [SMALL_STATE(1837)] = 88393, - [SMALL_STATE(1838)] = 88445, - [SMALL_STATE(1839)] = 88503, - [SMALL_STATE(1840)] = 88555, - [SMALL_STATE(1841)] = 88607, - [SMALL_STATE(1842)] = 88659, - [SMALL_STATE(1843)] = 88711, - [SMALL_STATE(1844)] = 88763, - [SMALL_STATE(1845)] = 88815, - [SMALL_STATE(1846)] = 88915, - [SMALL_STATE(1847)] = 89015, - [SMALL_STATE(1848)] = 89073, - [SMALL_STATE(1849)] = 89131, - [SMALL_STATE(1850)] = 89189, - [SMALL_STATE(1851)] = 89289, - [SMALL_STATE(1852)] = 89345, - [SMALL_STATE(1853)] = 89445, - [SMALL_STATE(1854)] = 89501, - [SMALL_STATE(1855)] = 89559, - [SMALL_STATE(1856)] = 89617, - [SMALL_STATE(1857)] = 89717, - [SMALL_STATE(1858)] = 89775, - [SMALL_STATE(1859)] = 89833, - [SMALL_STATE(1860)] = 89891, - [SMALL_STATE(1861)] = 89949, - [SMALL_STATE(1862)] = 90007, - [SMALL_STATE(1863)] = 90065, - [SMALL_STATE(1864)] = 90165, - [SMALL_STATE(1865)] = 90223, - [SMALL_STATE(1866)] = 90281, - [SMALL_STATE(1867)] = 90339, - [SMALL_STATE(1868)] = 90439, - [SMALL_STATE(1869)] = 90539, - [SMALL_STATE(1870)] = 90595, - [SMALL_STATE(1871)] = 90695, - [SMALL_STATE(1872)] = 90747, - [SMALL_STATE(1873)] = 90847, - [SMALL_STATE(1874)] = 90947, - [SMALL_STATE(1875)] = 91003, - [SMALL_STATE(1876)] = 91061, - [SMALL_STATE(1877)] = 91113, - [SMALL_STATE(1878)] = 91169, - [SMALL_STATE(1879)] = 91221, - [SMALL_STATE(1880)] = 91273, - [SMALL_STATE(1881)] = 91325, - [SMALL_STATE(1882)] = 91377, - [SMALL_STATE(1883)] = 91429, - [SMALL_STATE(1884)] = 91481, - [SMALL_STATE(1885)] = 91533, - [SMALL_STATE(1886)] = 91585, - [SMALL_STATE(1887)] = 91637, - [SMALL_STATE(1888)] = 91689, - [SMALL_STATE(1889)] = 91741, - [SMALL_STATE(1890)] = 91793, - [SMALL_STATE(1891)] = 91893, - [SMALL_STATE(1892)] = 91983, - [SMALL_STATE(1893)] = 92039, - [SMALL_STATE(1894)] = 92095, - [SMALL_STATE(1895)] = 92147, - [SMALL_STATE(1896)] = 92203, - [SMALL_STATE(1897)] = 92271, - [SMALL_STATE(1898)] = 92323, - [SMALL_STATE(1899)] = 92375, - [SMALL_STATE(1900)] = 92427, - [SMALL_STATE(1901)] = 92479, - [SMALL_STATE(1902)] = 92531, - [SMALL_STATE(1903)] = 92587, - [SMALL_STATE(1904)] = 92639, - [SMALL_STATE(1905)] = 92691, - [SMALL_STATE(1906)] = 92743, - [SMALL_STATE(1907)] = 92795, - [SMALL_STATE(1908)] = 92847, - [SMALL_STATE(1909)] = 92899, - [SMALL_STATE(1910)] = 92951, - [SMALL_STATE(1911)] = 93003, - [SMALL_STATE(1912)] = 93059, - [SMALL_STATE(1913)] = 93111, - [SMALL_STATE(1914)] = 93211, - [SMALL_STATE(1915)] = 93269, - [SMALL_STATE(1916)] = 93327, - [SMALL_STATE(1917)] = 93391, - [SMALL_STATE(1918)] = 93449, - [SMALL_STATE(1919)] = 93505, - [SMALL_STATE(1920)] = 93563, - [SMALL_STATE(1921)] = 93621, - [SMALL_STATE(1922)] = 93679, - [SMALL_STATE(1923)] = 93737, - [SMALL_STATE(1924)] = 93795, - [SMALL_STATE(1925)] = 93851, - [SMALL_STATE(1926)] = 93907, - [SMALL_STATE(1927)] = 93965, - [SMALL_STATE(1928)] = 94023, - [SMALL_STATE(1929)] = 94081, - [SMALL_STATE(1930)] = 94133, - [SMALL_STATE(1931)] = 94194, - [SMALL_STATE(1932)] = 94291, - [SMALL_STATE(1933)] = 94352, - [SMALL_STATE(1934)] = 94449, - [SMALL_STATE(1935)] = 94546, - [SMALL_STATE(1936)] = 94643, - [SMALL_STATE(1937)] = 94740, - [SMALL_STATE(1938)] = 94837, - [SMALL_STATE(1939)] = 94888, - [SMALL_STATE(1940)] = 94985, - [SMALL_STATE(1941)] = 95082, - [SMALL_STATE(1942)] = 95179, - [SMALL_STATE(1943)] = 95230, - [SMALL_STATE(1944)] = 95281, - [SMALL_STATE(1945)] = 95332, - [SMALL_STATE(1946)] = 95387, - [SMALL_STATE(1947)] = 95438, - [SMALL_STATE(1948)] = 95489, - [SMALL_STATE(1949)] = 95540, - [SMALL_STATE(1950)] = 95591, - [SMALL_STATE(1951)] = 95688, - [SMALL_STATE(1952)] = 95739, - [SMALL_STATE(1953)] = 95790, - [SMALL_STATE(1954)] = 95841, - [SMALL_STATE(1955)] = 95938, - [SMALL_STATE(1956)] = 96035, - [SMALL_STATE(1957)] = 96086, - [SMALL_STATE(1958)] = 96137, - [SMALL_STATE(1959)] = 96188, - [SMALL_STATE(1960)] = 96285, - [SMALL_STATE(1961)] = 96336, - [SMALL_STATE(1962)] = 96433, - [SMALL_STATE(1963)] = 96530, - [SMALL_STATE(1964)] = 96581, - [SMALL_STATE(1965)] = 96678, - [SMALL_STATE(1966)] = 96775, - [SMALL_STATE(1967)] = 96872, - [SMALL_STATE(1968)] = 96969, - [SMALL_STATE(1969)] = 97066, - [SMALL_STATE(1970)] = 97163, - [SMALL_STATE(1971)] = 97260, - [SMALL_STATE(1972)] = 97357, - [SMALL_STATE(1973)] = 97408, - [SMALL_STATE(1974)] = 97463, - [SMALL_STATE(1975)] = 97514, - [SMALL_STATE(1976)] = 97565, - [SMALL_STATE(1977)] = 97616, - [SMALL_STATE(1978)] = 97667, - [SMALL_STATE(1979)] = 97764, - [SMALL_STATE(1980)] = 97815, - [SMALL_STATE(1981)] = 97866, - [SMALL_STATE(1982)] = 97917, - [SMALL_STATE(1983)] = 97968, - [SMALL_STATE(1984)] = 98019, - [SMALL_STATE(1985)] = 98070, - [SMALL_STATE(1986)] = 98121, - [SMALL_STATE(1987)] = 98172, - [SMALL_STATE(1988)] = 98223, - [SMALL_STATE(1989)] = 98320, - [SMALL_STATE(1990)] = 98371, - [SMALL_STATE(1991)] = 98468, - [SMALL_STATE(1992)] = 98523, - [SMALL_STATE(1993)] = 98574, - [SMALL_STATE(1994)] = 98625, - [SMALL_STATE(1995)] = 98676, - [SMALL_STATE(1996)] = 98727, - [SMALL_STATE(1997)] = 98778, - [SMALL_STATE(1998)] = 98829, - [SMALL_STATE(1999)] = 98884, - [SMALL_STATE(2000)] = 98935, - [SMALL_STATE(2001)] = 98986, - [SMALL_STATE(2002)] = 99037, - [SMALL_STATE(2003)] = 99088, - [SMALL_STATE(2004)] = 99139, - [SMALL_STATE(2005)] = 99190, - [SMALL_STATE(2006)] = 99241, - [SMALL_STATE(2007)] = 99296, - [SMALL_STATE(2008)] = 99351, - [SMALL_STATE(2009)] = 99406, - [SMALL_STATE(2010)] = 99503, - [SMALL_STATE(2011)] = 99600, - [SMALL_STATE(2012)] = 99697, - [SMALL_STATE(2013)] = 99758, - [SMALL_STATE(2014)] = 99813, - [SMALL_STATE(2015)] = 99868, - [SMALL_STATE(2016)] = 99919, - [SMALL_STATE(2017)] = 100016, - [SMALL_STATE(2018)] = 100113, - [SMALL_STATE(2019)] = 100210, - [SMALL_STATE(2020)] = 100307, - [SMALL_STATE(2021)] = 100404, - [SMALL_STATE(2022)] = 100501, - [SMALL_STATE(2023)] = 100598, - [SMALL_STATE(2024)] = 100695, - [SMALL_STATE(2025)] = 100792, - [SMALL_STATE(2026)] = 100889, - [SMALL_STATE(2027)] = 100986, - [SMALL_STATE(2028)] = 101083, - [SMALL_STATE(2029)] = 101180, - [SMALL_STATE(2030)] = 101277, - [SMALL_STATE(2031)] = 101374, - [SMALL_STATE(2032)] = 101471, - [SMALL_STATE(2033)] = 101528, - [SMALL_STATE(2034)] = 101585, - [SMALL_STATE(2035)] = 101636, - [SMALL_STATE(2036)] = 101687, - [SMALL_STATE(2037)] = 101744, - [SMALL_STATE(2038)] = 101795, - [SMALL_STATE(2039)] = 101892, - [SMALL_STATE(2040)] = 101989, - [SMALL_STATE(2041)] = 102050, - [SMALL_STATE(2042)] = 102101, - [SMALL_STATE(2043)] = 102152, - [SMALL_STATE(2044)] = 102213, - [SMALL_STATE(2045)] = 102270, - [SMALL_STATE(2046)] = 102331, - [SMALL_STATE(2047)] = 102382, - [SMALL_STATE(2048)] = 102443, - [SMALL_STATE(2049)] = 102504, - [SMALL_STATE(2050)] = 102565, - [SMALL_STATE(2051)] = 102626, - [SMALL_STATE(2052)] = 102687, - [SMALL_STATE(2053)] = 102748, - [SMALL_STATE(2054)] = 102809, - [SMALL_STATE(2055)] = 102870, - [SMALL_STATE(2056)] = 102931, - [SMALL_STATE(2057)] = 102992, - [SMALL_STATE(2058)] = 103053, - [SMALL_STATE(2059)] = 103104, - [SMALL_STATE(2060)] = 103165, - [SMALL_STATE(2061)] = 103226, - [SMALL_STATE(2062)] = 103287, - [SMALL_STATE(2063)] = 103348, - [SMALL_STATE(2064)] = 103409, - [SMALL_STATE(2065)] = 103470, - [SMALL_STATE(2066)] = 103531, - [SMALL_STATE(2067)] = 103592, - [SMALL_STATE(2068)] = 103653, - [SMALL_STATE(2069)] = 103714, - [SMALL_STATE(2070)] = 103775, - [SMALL_STATE(2071)] = 103836, - [SMALL_STATE(2072)] = 103897, - [SMALL_STATE(2073)] = 103958, - [SMALL_STATE(2074)] = 104019, - [SMALL_STATE(2075)] = 104080, - [SMALL_STATE(2076)] = 104141, - [SMALL_STATE(2077)] = 104202, - [SMALL_STATE(2078)] = 104263, - [SMALL_STATE(2079)] = 104324, - [SMALL_STATE(2080)] = 104385, - [SMALL_STATE(2081)] = 104446, - [SMALL_STATE(2082)] = 104507, - [SMALL_STATE(2083)] = 104568, - [SMALL_STATE(2084)] = 104629, - [SMALL_STATE(2085)] = 104690, - [SMALL_STATE(2086)] = 104751, - [SMALL_STATE(2087)] = 104812, - [SMALL_STATE(2088)] = 104873, - [SMALL_STATE(2089)] = 104934, - [SMALL_STATE(2090)] = 104995, - [SMALL_STATE(2091)] = 105056, - [SMALL_STATE(2092)] = 105117, - [SMALL_STATE(2093)] = 105178, - [SMALL_STATE(2094)] = 105239, - [SMALL_STATE(2095)] = 105300, - [SMALL_STATE(2096)] = 105361, - [SMALL_STATE(2097)] = 105422, - [SMALL_STATE(2098)] = 105483, - [SMALL_STATE(2099)] = 105544, - [SMALL_STATE(2100)] = 105605, - [SMALL_STATE(2101)] = 105666, - [SMALL_STATE(2102)] = 105727, - [SMALL_STATE(2103)] = 105788, - [SMALL_STATE(2104)] = 105849, - [SMALL_STATE(2105)] = 105910, - [SMALL_STATE(2106)] = 105971, - [SMALL_STATE(2107)] = 106032, - [SMALL_STATE(2108)] = 106093, - [SMALL_STATE(2109)] = 106154, - [SMALL_STATE(2110)] = 106215, - [SMALL_STATE(2111)] = 106276, - [SMALL_STATE(2112)] = 106337, - [SMALL_STATE(2113)] = 106398, - [SMALL_STATE(2114)] = 106459, - [SMALL_STATE(2115)] = 106520, - [SMALL_STATE(2116)] = 106581, - [SMALL_STATE(2117)] = 106642, - [SMALL_STATE(2118)] = 106703, - [SMALL_STATE(2119)] = 106764, - [SMALL_STATE(2120)] = 106825, - [SMALL_STATE(2121)] = 106886, - [SMALL_STATE(2122)] = 106947, - [SMALL_STATE(2123)] = 107008, - [SMALL_STATE(2124)] = 107065, - [SMALL_STATE(2125)] = 107116, - [SMALL_STATE(2126)] = 107215, - [SMALL_STATE(2127)] = 107312, - [SMALL_STATE(2128)] = 107409, - [SMALL_STATE(2129)] = 107466, - [SMALL_STATE(2130)] = 107523, - [SMALL_STATE(2131)] = 107620, - [SMALL_STATE(2132)] = 107717, - [SMALL_STATE(2133)] = 107814, - [SMALL_STATE(2134)] = 107911, - [SMALL_STATE(2135)] = 108008, - [SMALL_STATE(2136)] = 108107, - [SMALL_STATE(2137)] = 108204, - [SMALL_STATE(2138)] = 108301, - [SMALL_STATE(2139)] = 108398, - [SMALL_STATE(2140)] = 108495, - [SMALL_STATE(2141)] = 108592, - [SMALL_STATE(2142)] = 108689, - [SMALL_STATE(2143)] = 108786, - [SMALL_STATE(2144)] = 108885, - [SMALL_STATE(2145)] = 108982, - [SMALL_STATE(2146)] = 109079, - [SMALL_STATE(2147)] = 109176, - [SMALL_STATE(2148)] = 109227, - [SMALL_STATE(2149)] = 109324, - [SMALL_STATE(2150)] = 109423, - [SMALL_STATE(2151)] = 109520, - [SMALL_STATE(2152)] = 109617, - [SMALL_STATE(2153)] = 109714, - [SMALL_STATE(2154)] = 109811, - [SMALL_STATE(2155)] = 109910, - [SMALL_STATE(2156)] = 110007, - [SMALL_STATE(2157)] = 110104, - [SMALL_STATE(2158)] = 110201, - [SMALL_STATE(2159)] = 110256, - [SMALL_STATE(2160)] = 110311, - [SMALL_STATE(2161)] = 110362, - [SMALL_STATE(2162)] = 110413, - [SMALL_STATE(2163)] = 110510, - [SMALL_STATE(2164)] = 110607, - [SMALL_STATE(2165)] = 110658, - [SMALL_STATE(2166)] = 110755, - [SMALL_STATE(2167)] = 110852, - [SMALL_STATE(2168)] = 110949, - [SMALL_STATE(2169)] = 111046, - [SMALL_STATE(2170)] = 111143, - [SMALL_STATE(2171)] = 111240, - [SMALL_STATE(2172)] = 111295, - [SMALL_STATE(2173)] = 111354, - [SMALL_STATE(2174)] = 111451, - [SMALL_STATE(2175)] = 111548, - [SMALL_STATE(2176)] = 111607, - [SMALL_STATE(2177)] = 111704, - [SMALL_STATE(2178)] = 111801, - [SMALL_STATE(2179)] = 111898, - [SMALL_STATE(2180)] = 111995, - [SMALL_STATE(2181)] = 112092, - [SMALL_STATE(2182)] = 112189, - [SMALL_STATE(2183)] = 112286, - [SMALL_STATE(2184)] = 112383, - [SMALL_STATE(2185)] = 112480, - [SMALL_STATE(2186)] = 112577, - [SMALL_STATE(2187)] = 112674, - [SMALL_STATE(2188)] = 112771, - [SMALL_STATE(2189)] = 112868, - [SMALL_STATE(2190)] = 112965, - [SMALL_STATE(2191)] = 113016, - [SMALL_STATE(2192)] = 113113, - [SMALL_STATE(2193)] = 113164, - [SMALL_STATE(2194)] = 113215, - [SMALL_STATE(2195)] = 113266, - [SMALL_STATE(2196)] = 113317, - [SMALL_STATE(2197)] = 113368, - [SMALL_STATE(2198)] = 113419, - [SMALL_STATE(2199)] = 113470, - [SMALL_STATE(2200)] = 113525, - [SMALL_STATE(2201)] = 113580, - [SMALL_STATE(2202)] = 113631, - [SMALL_STATE(2203)] = 113728, - [SMALL_STATE(2204)] = 113787, - [SMALL_STATE(2205)] = 113846, - [SMALL_STATE(2206)] = 113901, - [SMALL_STATE(2207)] = 113952, - [SMALL_STATE(2208)] = 114007, - [SMALL_STATE(2209)] = 114058, - [SMALL_STATE(2210)] = 114109, - [SMALL_STATE(2211)] = 114206, - [SMALL_STATE(2212)] = 114303, - [SMALL_STATE(2213)] = 114400, - [SMALL_STATE(2214)] = 114497, - [SMALL_STATE(2215)] = 114548, - [SMALL_STATE(2216)] = 114647, - [SMALL_STATE(2217)] = 114698, - [SMALL_STATE(2218)] = 114795, - [SMALL_STATE(2219)] = 114892, - [SMALL_STATE(2220)] = 114989, - [SMALL_STATE(2221)] = 115086, - [SMALL_STATE(2222)] = 115183, - [SMALL_STATE(2223)] = 115280, - [SMALL_STATE(2224)] = 115377, - [SMALL_STATE(2225)] = 115474, - [SMALL_STATE(2226)] = 115571, - [SMALL_STATE(2227)] = 115668, - [SMALL_STATE(2228)] = 115765, - [SMALL_STATE(2229)] = 115862, - [SMALL_STATE(2230)] = 115917, - [SMALL_STATE(2231)] = 116014, - [SMALL_STATE(2232)] = 116071, - [SMALL_STATE(2233)] = 116168, - [SMALL_STATE(2234)] = 116219, - [SMALL_STATE(2235)] = 116274, - [SMALL_STATE(2236)] = 116371, - [SMALL_STATE(2237)] = 116428, - [SMALL_STATE(2238)] = 116525, - [SMALL_STATE(2239)] = 116576, - [SMALL_STATE(2240)] = 116631, - [SMALL_STATE(2241)] = 116728, - [SMALL_STATE(2242)] = 116783, - [SMALL_STATE(2243)] = 116880, - [SMALL_STATE(2244)] = 116977, - [SMALL_STATE(2245)] = 117074, - [SMALL_STATE(2246)] = 117135, - [SMALL_STATE(2247)] = 117196, - [SMALL_STATE(2248)] = 117247, - [SMALL_STATE(2249)] = 117298, - [SMALL_STATE(2250)] = 117349, - [SMALL_STATE(2251)] = 117404, - [SMALL_STATE(2252)] = 117455, - [SMALL_STATE(2253)] = 117506, - [SMALL_STATE(2254)] = 117557, - [SMALL_STATE(2255)] = 117608, - [SMALL_STATE(2256)] = 117705, - [SMALL_STATE(2257)] = 117802, - [SMALL_STATE(2258)] = 117853, - [SMALL_STATE(2259)] = 117950, - [SMALL_STATE(2260)] = 118047, - [SMALL_STATE(2261)] = 118144, - [SMALL_STATE(2262)] = 118241, - [SMALL_STATE(2263)] = 118338, - [SMALL_STATE(2264)] = 118435, - [SMALL_STATE(2265)] = 118486, - [SMALL_STATE(2266)] = 118537, - [SMALL_STATE(2267)] = 118592, - [SMALL_STATE(2268)] = 118643, - [SMALL_STATE(2269)] = 118693, - [SMALL_STATE(2270)] = 118743, - [SMALL_STATE(2271)] = 118793, - [SMALL_STATE(2272)] = 118843, - [SMALL_STATE(2273)] = 118893, - [SMALL_STATE(2274)] = 118943, - [SMALL_STATE(2275)] = 118993, - [SMALL_STATE(2276)] = 119043, - [SMALL_STATE(2277)] = 119093, - [SMALL_STATE(2278)] = 119147, - [SMALL_STATE(2279)] = 119197, - [SMALL_STATE(2280)] = 119251, - [SMALL_STATE(2281)] = 119301, - [SMALL_STATE(2282)] = 119357, - [SMALL_STATE(2283)] = 119413, - [SMALL_STATE(2284)] = 119467, - [SMALL_STATE(2285)] = 119517, - [SMALL_STATE(2286)] = 119567, - [SMALL_STATE(2287)] = 119621, - [SMALL_STATE(2288)] = 119675, - [SMALL_STATE(2289)] = 119725, - [SMALL_STATE(2290)] = 119779, - [SMALL_STATE(2291)] = 119833, - [SMALL_STATE(2292)] = 119883, - [SMALL_STATE(2293)] = 119941, - [SMALL_STATE(2294)] = 119999, - [SMALL_STATE(2295)] = 120049, - [SMALL_STATE(2296)] = 120103, - [SMALL_STATE(2297)] = 120157, - [SMALL_STATE(2298)] = 120211, - [SMALL_STATE(2299)] = 120267, - [SMALL_STATE(2300)] = 120323, - [SMALL_STATE(2301)] = 120379, - [SMALL_STATE(2302)] = 120433, - [SMALL_STATE(2303)] = 120487, - [SMALL_STATE(2304)] = 120543, - [SMALL_STATE(2305)] = 120599, - [SMALL_STATE(2306)] = 120655, - [SMALL_STATE(2307)] = 120709, - [SMALL_STATE(2308)] = 120763, - [SMALL_STATE(2309)] = 120813, - [SMALL_STATE(2310)] = 120863, - [SMALL_STATE(2311)] = 120913, - [SMALL_STATE(2312)] = 120963, - [SMALL_STATE(2313)] = 121013, - [SMALL_STATE(2314)] = 121063, - [SMALL_STATE(2315)] = 121113, - [SMALL_STATE(2316)] = 121163, - [SMALL_STATE(2317)] = 121213, - [SMALL_STATE(2318)] = 121263, - [SMALL_STATE(2319)] = 121313, - [SMALL_STATE(2320)] = 121367, - [SMALL_STATE(2321)] = 121421, - [SMALL_STATE(2322)] = 121475, - [SMALL_STATE(2323)] = 121525, - [SMALL_STATE(2324)] = 121581, - [SMALL_STATE(2325)] = 121637, - [SMALL_STATE(2326)] = 121693, - [SMALL_STATE(2327)] = 121749, - [SMALL_STATE(2328)] = 121799, - [SMALL_STATE(2329)] = 121855, - [SMALL_STATE(2330)] = 121911, - [SMALL_STATE(2331)] = 121967, - [SMALL_STATE(2332)] = 122023, - [SMALL_STATE(2333)] = 122079, - [SMALL_STATE(2334)] = 122135, - [SMALL_STATE(2335)] = 122191, - [SMALL_STATE(2336)] = 122247, - [SMALL_STATE(2337)] = 122297, - [SMALL_STATE(2338)] = 122347, - [SMALL_STATE(2339)] = 122403, - [SMALL_STATE(2340)] = 122459, - [SMALL_STATE(2341)] = 122509, - [SMALL_STATE(2342)] = 122559, - [SMALL_STATE(2343)] = 122609, - [SMALL_STATE(2344)] = 122659, - [SMALL_STATE(2345)] = 122709, - [SMALL_STATE(2346)] = 122763, - [SMALL_STATE(2347)] = 122816, - [SMALL_STATE(2348)] = 122911, - [SMALL_STATE(2349)] = 122966, - [SMALL_STATE(2350)] = 123015, - [SMALL_STATE(2351)] = 123068, - [SMALL_STATE(2352)] = 123117, - [SMALL_STATE(2353)] = 123166, - [SMALL_STATE(2354)] = 123215, - [SMALL_STATE(2355)] = 123310, - [SMALL_STATE(2356)] = 123405, - [SMALL_STATE(2357)] = 123458, - [SMALL_STATE(2358)] = 123511, - [SMALL_STATE(2359)] = 123560, - [SMALL_STATE(2360)] = 123655, - [SMALL_STATE(2361)] = 123710, - [SMALL_STATE(2362)] = 123765, - [SMALL_STATE(2363)] = 123818, - [SMALL_STATE(2364)] = 123871, - [SMALL_STATE(2365)] = 123966, - [SMALL_STATE(2366)] = 124015, - [SMALL_STATE(2367)] = 124068, - [SMALL_STATE(2368)] = 124117, - [SMALL_STATE(2369)] = 124170, - [SMALL_STATE(2370)] = 124225, - [SMALL_STATE(2371)] = 124278, - [SMALL_STATE(2372)] = 124331, - [SMALL_STATE(2373)] = 124386, - [SMALL_STATE(2374)] = 124439, - [SMALL_STATE(2375)] = 124534, - [SMALL_STATE(2376)] = 124589, - [SMALL_STATE(2377)] = 124638, - [SMALL_STATE(2378)] = 124687, - [SMALL_STATE(2379)] = 124742, - [SMALL_STATE(2380)] = 124797, - [SMALL_STATE(2381)] = 124852, - [SMALL_STATE(2382)] = 124905, - [SMALL_STATE(2383)] = 124954, - [SMALL_STATE(2384)] = 125007, - [SMALL_STATE(2385)] = 125060, - [SMALL_STATE(2386)] = 125109, - [SMALL_STATE(2387)] = 125204, - [SMALL_STATE(2388)] = 125299, - [SMALL_STATE(2389)] = 125354, - [SMALL_STATE(2390)] = 125403, - [SMALL_STATE(2391)] = 125458, - [SMALL_STATE(2392)] = 125511, - [SMALL_STATE(2393)] = 125560, - [SMALL_STATE(2394)] = 125613, - [SMALL_STATE(2395)] = 125666, - [SMALL_STATE(2396)] = 125719, - [SMALL_STATE(2397)] = 125772, - [SMALL_STATE(2398)] = 125821, - [SMALL_STATE(2399)] = 125874, - [SMALL_STATE(2400)] = 125923, - [SMALL_STATE(2401)] = 125976, - [SMALL_STATE(2402)] = 126025, - [SMALL_STATE(2403)] = 126074, - [SMALL_STATE(2404)] = 126123, - [SMALL_STATE(2405)] = 126176, - [SMALL_STATE(2406)] = 126229, - [SMALL_STATE(2407)] = 126324, - [SMALL_STATE(2408)] = 126419, - [SMALL_STATE(2409)] = 126474, - [SMALL_STATE(2410)] = 126529, - [SMALL_STATE(2411)] = 126582, - [SMALL_STATE(2412)] = 126631, - [SMALL_STATE(2413)] = 126726, - [SMALL_STATE(2414)] = 126781, - [SMALL_STATE(2415)] = 126836, - [SMALL_STATE(2416)] = 126885, - [SMALL_STATE(2417)] = 126980, - [SMALL_STATE(2418)] = 127035, - [SMALL_STATE(2419)] = 127090, - [SMALL_STATE(2420)] = 127143, - [SMALL_STATE(2421)] = 127196, - [SMALL_STATE(2422)] = 127245, - [SMALL_STATE(2423)] = 127298, - [SMALL_STATE(2424)] = 127351, - [SMALL_STATE(2425)] = 127404, - [SMALL_STATE(2426)] = 127457, - [SMALL_STATE(2427)] = 127552, - [SMALL_STATE(2428)] = 127607, - [SMALL_STATE(2429)] = 127702, - [SMALL_STATE(2430)] = 127797, - [SMALL_STATE(2431)] = 127846, - [SMALL_STATE(2432)] = 127895, - [SMALL_STATE(2433)] = 127948, - [SMALL_STATE(2434)] = 127997, - [SMALL_STATE(2435)] = 128046, - [SMALL_STATE(2436)] = 128099, - [SMALL_STATE(2437)] = 128148, - [SMALL_STATE(2438)] = 128243, - [SMALL_STATE(2439)] = 128292, - [SMALL_STATE(2440)] = 128341, - [SMALL_STATE(2441)] = 128390, - [SMALL_STATE(2442)] = 128443, - [SMALL_STATE(2443)] = 128492, - [SMALL_STATE(2444)] = 128540, - [SMALL_STATE(2445)] = 128588, - [SMALL_STATE(2446)] = 128636, - [SMALL_STATE(2447)] = 128684, - [SMALL_STATE(2448)] = 128732, - [SMALL_STATE(2449)] = 128780, - [SMALL_STATE(2450)] = 128828, - [SMALL_STATE(2451)] = 128876, - [SMALL_STATE(2452)] = 128924, - [SMALL_STATE(2453)] = 128972, - [SMALL_STATE(2454)] = 129020, - [SMALL_STATE(2455)] = 129074, - [SMALL_STATE(2456)] = 129128, - [SMALL_STATE(2457)] = 129182, - [SMALL_STATE(2458)] = 129230, - [SMALL_STATE(2459)] = 129282, - [SMALL_STATE(2460)] = 129336, - [SMALL_STATE(2461)] = 129388, - [SMALL_STATE(2462)] = 129436, - [SMALL_STATE(2463)] = 129492, - [SMALL_STATE(2464)] = 129548, - [SMALL_STATE(2465)] = 129596, - [SMALL_STATE(2466)] = 129648, - [SMALL_STATE(2467)] = 129696, - [SMALL_STATE(2468)] = 129748, - [SMALL_STATE(2469)] = 129796, - [SMALL_STATE(2470)] = 129844, - [SMALL_STATE(2471)] = 129900, - [SMALL_STATE(2472)] = 129956, - [SMALL_STATE(2473)] = 130004, - [SMALL_STATE(2474)] = 130052, - [SMALL_STATE(2475)] = 130100, - [SMALL_STATE(2476)] = 130148, - [SMALL_STATE(2477)] = 130202, - [SMALL_STATE(2478)] = 130256, - [SMALL_STATE(2479)] = 130310, - [SMALL_STATE(2480)] = 130358, - [SMALL_STATE(2481)] = 130412, - [SMALL_STATE(2482)] = 130464, - [SMALL_STATE(2483)] = 130516, - [SMALL_STATE(2484)] = 130572, - [SMALL_STATE(2485)] = 130628, - [SMALL_STATE(2486)] = 130682, - [SMALL_STATE(2487)] = 130736, - [SMALL_STATE(2488)] = 130788, - [SMALL_STATE(2489)] = 130844, - [SMALL_STATE(2490)] = 130900, - [SMALL_STATE(2491)] = 130956, - [SMALL_STATE(2492)] = 131012, - [SMALL_STATE(2493)] = 131064, - [SMALL_STATE(2494)] = 131112, - [SMALL_STATE(2495)] = 131160, - [SMALL_STATE(2496)] = 131208, - [SMALL_STATE(2497)] = 131256, - [SMALL_STATE(2498)] = 131304, - [SMALL_STATE(2499)] = 131356, - [SMALL_STATE(2500)] = 131410, - [SMALL_STATE(2501)] = 131464, - [SMALL_STATE(2502)] = 131518, - [SMALL_STATE(2503)] = 131572, - [SMALL_STATE(2504)] = 131624, - [SMALL_STATE(2505)] = 131676, - [SMALL_STATE(2506)] = 131724, - [SMALL_STATE(2507)] = 131772, - [SMALL_STATE(2508)] = 131826, - [SMALL_STATE(2509)] = 131880, - [SMALL_STATE(2510)] = 131932, - [SMALL_STATE(2511)] = 131986, - [SMALL_STATE(2512)] = 132040, - [SMALL_STATE(2513)] = 132094, - [SMALL_STATE(2514)] = 132148, - [SMALL_STATE(2515)] = 132200, - [SMALL_STATE(2516)] = 132254, - [SMALL_STATE(2517)] = 132308, - [SMALL_STATE(2518)] = 132360, - [SMALL_STATE(2519)] = 132412, - [SMALL_STATE(2520)] = 132460, - [SMALL_STATE(2521)] = 132508, - [SMALL_STATE(2522)] = 132556, - [SMALL_STATE(2523)] = 132604, - [SMALL_STATE(2524)] = 132652, - [SMALL_STATE(2525)] = 132704, - [SMALL_STATE(2526)] = 132752, - [SMALL_STATE(2527)] = 132800, - [SMALL_STATE(2528)] = 132848, - [SMALL_STATE(2529)] = 132902, - [SMALL_STATE(2530)] = 132950, - [SMALL_STATE(2531)] = 133002, - [SMALL_STATE(2532)] = 133054, - [SMALL_STATE(2533)] = 133106, - [SMALL_STATE(2534)] = 133154, - [SMALL_STATE(2535)] = 133206, - [SMALL_STATE(2536)] = 133254, - [SMALL_STATE(2537)] = 133302, - [SMALL_STATE(2538)] = 133350, - [SMALL_STATE(2539)] = 133398, - [SMALL_STATE(2540)] = 133446, - [SMALL_STATE(2541)] = 133498, - [SMALL_STATE(2542)] = 133546, - [SMALL_STATE(2543)] = 133594, - [SMALL_STATE(2544)] = 133642, - [SMALL_STATE(2545)] = 133690, - [SMALL_STATE(2546)] = 133738, - [SMALL_STATE(2547)] = 133792, - [SMALL_STATE(2548)] = 133842, - [SMALL_STATE(2549)] = 133894, - [SMALL_STATE(2550)] = 133942, - [SMALL_STATE(2551)] = 133996, - [SMALL_STATE(2552)] = 134044, - [SMALL_STATE(2553)] = 134096, - [SMALL_STATE(2554)] = 134144, - [SMALL_STATE(2555)] = 134196, - [SMALL_STATE(2556)] = 134244, - [SMALL_STATE(2557)] = 134296, - [SMALL_STATE(2558)] = 134344, - [SMALL_STATE(2559)] = 134392, - [SMALL_STATE(2560)] = 134440, - [SMALL_STATE(2561)] = 134492, - [SMALL_STATE(2562)] = 134540, - [SMALL_STATE(2563)] = 134588, - [SMALL_STATE(2564)] = 134636, - [SMALL_STATE(2565)] = 134692, - [SMALL_STATE(2566)] = 134744, - [SMALL_STATE(2567)] = 134792, - [SMALL_STATE(2568)] = 134844, - [SMALL_STATE(2569)] = 134896, - [SMALL_STATE(2570)] = 134948, - [SMALL_STATE(2571)] = 134996, - [SMALL_STATE(2572)] = 135044, - [SMALL_STATE(2573)] = 135096, - [SMALL_STATE(2574)] = 135144, - [SMALL_STATE(2575)] = 135192, - [SMALL_STATE(2576)] = 135240, - [SMALL_STATE(2577)] = 135296, - [SMALL_STATE(2578)] = 135344, - [SMALL_STATE(2579)] = 135392, - [SMALL_STATE(2580)] = 135440, - [SMALL_STATE(2581)] = 135488, - [SMALL_STATE(2582)] = 135536, - [SMALL_STATE(2583)] = 135584, - [SMALL_STATE(2584)] = 135635, - [SMALL_STATE(2585)] = 135682, - [SMALL_STATE(2586)] = 135737, - [SMALL_STATE(2587)] = 135784, - [SMALL_STATE(2588)] = 135839, - [SMALL_STATE(2589)] = 135886, - [SMALL_STATE(2590)] = 135935, - [SMALL_STATE(2591)] = 135982, - [SMALL_STATE(2592)] = 136039, - [SMALL_STATE(2593)] = 136096, - [SMALL_STATE(2594)] = 136147, - [SMALL_STATE(2595)] = 136194, - [SMALL_STATE(2596)] = 136241, - [SMALL_STATE(2597)] = 136288, - [SMALL_STATE(2598)] = 136341, - [SMALL_STATE(2599)] = 136388, - [SMALL_STATE(2600)] = 136435, - [SMALL_STATE(2601)] = 136482, - [SMALL_STATE(2602)] = 136529, - [SMALL_STATE(2603)] = 136576, - [SMALL_STATE(2604)] = 136623, - [SMALL_STATE(2605)] = 136670, - [SMALL_STATE(2606)] = 136717, - [SMALL_STATE(2607)] = 136764, - [SMALL_STATE(2608)] = 136815, - [SMALL_STATE(2609)] = 136862, - [SMALL_STATE(2610)] = 136909, - [SMALL_STATE(2611)] = 136962, - [SMALL_STATE(2612)] = 137013, - [SMALL_STATE(2613)] = 137060, - [SMALL_STATE(2614)] = 137107, - [SMALL_STATE(2615)] = 137154, - [SMALL_STATE(2616)] = 137201, - [SMALL_STATE(2617)] = 137248, - [SMALL_STATE(2618)] = 137295, - [SMALL_STATE(2619)] = 137342, - [SMALL_STATE(2620)] = 137389, - [SMALL_STATE(2621)] = 137436, - [SMALL_STATE(2622)] = 137483, - [SMALL_STATE(2623)] = 137534, - [SMALL_STATE(2624)] = 137585, - [SMALL_STATE(2625)] = 137632, - [SMALL_STATE(2626)] = 137679, - [SMALL_STATE(2627)] = 137726, - [SMALL_STATE(2628)] = 137773, - [SMALL_STATE(2629)] = 137820, - [SMALL_STATE(2630)] = 137871, - [SMALL_STATE(2631)] = 137922, - [SMALL_STATE(2632)] = 137973, - [SMALL_STATE(2633)] = 138020, - [SMALL_STATE(2634)] = 138071, - [SMALL_STATE(2635)] = 138118, - [SMALL_STATE(2636)] = 138165, - [SMALL_STATE(2637)] = 138212, - [SMALL_STATE(2638)] = 138265, - [SMALL_STATE(2639)] = 138318, - [SMALL_STATE(2640)] = 138365, - [SMALL_STATE(2641)] = 138412, - [SMALL_STATE(2642)] = 138459, - [SMALL_STATE(2643)] = 138506, - [SMALL_STATE(2644)] = 138553, - [SMALL_STATE(2645)] = 138604, - [SMALL_STATE(2646)] = 138651, - [SMALL_STATE(2647)] = 138698, - [SMALL_STATE(2648)] = 138745, - [SMALL_STATE(2649)] = 138792, - [SMALL_STATE(2650)] = 138839, - [SMALL_STATE(2651)] = 138886, - [SMALL_STATE(2652)] = 138935, - [SMALL_STATE(2653)] = 138982, - [SMALL_STATE(2654)] = 139029, - [SMALL_STATE(2655)] = 139076, - [SMALL_STATE(2656)] = 139123, - [SMALL_STATE(2657)] = 139170, - [SMALL_STATE(2658)] = 139217, - [SMALL_STATE(2659)] = 139264, - [SMALL_STATE(2660)] = 139311, - [SMALL_STATE(2661)] = 139358, - [SMALL_STATE(2662)] = 139405, - [SMALL_STATE(2663)] = 139456, - [SMALL_STATE(2664)] = 139507, - [SMALL_STATE(2665)] = 139558, - [SMALL_STATE(2666)] = 139605, - [SMALL_STATE(2667)] = 139652, - [SMALL_STATE(2668)] = 139701, - [SMALL_STATE(2669)] = 139748, - [SMALL_STATE(2670)] = 139795, - [SMALL_STATE(2671)] = 139842, - [SMALL_STATE(2672)] = 139893, - [SMALL_STATE(2673)] = 139940, - [SMALL_STATE(2674)] = 139987, - [SMALL_STATE(2675)] = 140034, - [SMALL_STATE(2676)] = 140081, - [SMALL_STATE(2677)] = 140128, - [SMALL_STATE(2678)] = 140175, - [SMALL_STATE(2679)] = 140222, - [SMALL_STATE(2680)] = 140269, - [SMALL_STATE(2681)] = 140316, - [SMALL_STATE(2682)] = 140363, - [SMALL_STATE(2683)] = 140410, - [SMALL_STATE(2684)] = 140461, - [SMALL_STATE(2685)] = 140508, - [SMALL_STATE(2686)] = 140557, - [SMALL_STATE(2687)] = 140604, - [SMALL_STATE(2688)] = 140651, - [SMALL_STATE(2689)] = 140698, - [SMALL_STATE(2690)] = 140745, - [SMALL_STATE(2691)] = 140792, - [SMALL_STATE(2692)] = 140839, - [SMALL_STATE(2693)] = 140886, - [SMALL_STATE(2694)] = 140933, - [SMALL_STATE(2695)] = 140980, - [SMALL_STATE(2696)] = 141027, - [SMALL_STATE(2697)] = 141074, - [SMALL_STATE(2698)] = 141125, - [SMALL_STATE(2699)] = 141172, - [SMALL_STATE(2700)] = 141223, - [SMALL_STATE(2701)] = 141270, - [SMALL_STATE(2702)] = 141317, - [SMALL_STATE(2703)] = 141368, - [SMALL_STATE(2704)] = 141417, - [SMALL_STATE(2705)] = 141464, - [SMALL_STATE(2706)] = 141515, - [SMALL_STATE(2707)] = 141562, - [SMALL_STATE(2708)] = 141609, - [SMALL_STATE(2709)] = 141656, - [SMALL_STATE(2710)] = 141703, - [SMALL_STATE(2711)] = 141750, - [SMALL_STATE(2712)] = 141797, - [SMALL_STATE(2713)] = 141848, - [SMALL_STATE(2714)] = 141895, - [SMALL_STATE(2715)] = 141942, - [SMALL_STATE(2716)] = 141989, - [SMALL_STATE(2717)] = 142036, - [SMALL_STATE(2718)] = 142083, - [SMALL_STATE(2719)] = 142130, - [SMALL_STATE(2720)] = 142177, - [SMALL_STATE(2721)] = 142224, - [SMALL_STATE(2722)] = 142271, - [SMALL_STATE(2723)] = 142318, - [SMALL_STATE(2724)] = 142365, - [SMALL_STATE(2725)] = 142412, - [SMALL_STATE(2726)] = 142459, - [SMALL_STATE(2727)] = 142506, - [SMALL_STATE(2728)] = 142553, - [SMALL_STATE(2729)] = 142604, - [SMALL_STATE(2730)] = 142651, - [SMALL_STATE(2731)] = 142698, - [SMALL_STATE(2732)] = 142745, - [SMALL_STATE(2733)] = 142796, - [SMALL_STATE(2734)] = 142845, - [SMALL_STATE(2735)] = 142894, - [SMALL_STATE(2736)] = 142941, - [SMALL_STATE(2737)] = 142988, - [SMALL_STATE(2738)] = 143060, - [SMALL_STATE(2739)] = 143142, - [SMALL_STATE(2740)] = 143188, - [SMALL_STATE(2741)] = 143270, - [SMALL_STATE(2742)] = 143316, - [SMALL_STATE(2743)] = 143362, - [SMALL_STATE(2744)] = 143430, - [SMALL_STATE(2745)] = 143476, - [SMALL_STATE(2746)] = 143558, - [SMALL_STATE(2747)] = 143604, - [SMALL_STATE(2748)] = 143650, - [SMALL_STATE(2749)] = 143696, - [SMALL_STATE(2750)] = 143742, - [SMALL_STATE(2751)] = 143824, - [SMALL_STATE(2752)] = 143870, - [SMALL_STATE(2753)] = 143932, - [SMALL_STATE(2754)] = 143982, - [SMALL_STATE(2755)] = 144064, - [SMALL_STATE(2756)] = 144110, - [SMALL_STATE(2757)] = 144156, - [SMALL_STATE(2758)] = 144238, - [SMALL_STATE(2759)] = 144320, - [SMALL_STATE(2760)] = 144386, - [SMALL_STATE(2761)] = 144468, - [SMALL_STATE(2762)] = 144524, - [SMALL_STATE(2763)] = 144574, - [SMALL_STATE(2764)] = 144656, - [SMALL_STATE(2765)] = 144738, - [SMALL_STATE(2766)] = 144784, - [SMALL_STATE(2767)] = 144830, - [SMALL_STATE(2768)] = 144890, - [SMALL_STATE(2769)] = 144946, - [SMALL_STATE(2770)] = 145000, - [SMALL_STATE(2771)] = 145082, - [SMALL_STATE(2772)] = 145134, - [SMALL_STATE(2773)] = 145184, - [SMALL_STATE(2774)] = 145232, - [SMALL_STATE(2775)] = 145314, - [SMALL_STATE(2776)] = 145360, - [SMALL_STATE(2777)] = 145406, - [SMALL_STATE(2778)] = 145488, - [SMALL_STATE(2779)] = 145570, - [SMALL_STATE(2780)] = 145652, - [SMALL_STATE(2781)] = 145698, - [SMALL_STATE(2782)] = 145748, - [SMALL_STATE(2783)] = 145830, - [SMALL_STATE(2784)] = 145912, - [SMALL_STATE(2785)] = 145958, - [SMALL_STATE(2786)] = 146040, - [SMALL_STATE(2787)] = 146122, - [SMALL_STATE(2788)] = 146196, - [SMALL_STATE(2789)] = 146242, - [SMALL_STATE(2790)] = 146288, - [SMALL_STATE(2791)] = 146370, - [SMALL_STATE(2792)] = 146424, - [SMALL_STATE(2793)] = 146470, - [SMALL_STATE(2794)] = 146552, - [SMALL_STATE(2795)] = 146598, - [SMALL_STATE(2796)] = 146680, - [SMALL_STATE(2797)] = 146726, - [SMALL_STATE(2798)] = 146772, - [SMALL_STATE(2799)] = 146818, - [SMALL_STATE(2800)] = 146864, - [SMALL_STATE(2801)] = 146910, - [SMALL_STATE(2802)] = 146992, - [SMALL_STATE(2803)] = 147046, - [SMALL_STATE(2804)] = 147092, - [SMALL_STATE(2805)] = 147174, - [SMALL_STATE(2806)] = 147256, - [SMALL_STATE(2807)] = 147338, - [SMALL_STATE(2808)] = 147384, - [SMALL_STATE(2809)] = 147442, - [SMALL_STATE(2810)] = 147498, - [SMALL_STATE(2811)] = 147580, - [SMALL_STATE(2812)] = 147626, - [SMALL_STATE(2813)] = 147674, - [SMALL_STATE(2814)] = 147730, - [SMALL_STATE(2815)] = 147812, - [SMALL_STATE(2816)] = 147868, - [SMALL_STATE(2817)] = 147950, - [SMALL_STATE(2818)] = 148032, - [SMALL_STATE(2819)] = 148082, - [SMALL_STATE(2820)] = 148130, - [SMALL_STATE(2821)] = 148194, - [SMALL_STATE(2822)] = 148276, - [SMALL_STATE(2823)] = 148350, - [SMALL_STATE(2824)] = 148396, - [SMALL_STATE(2825)] = 148478, - [SMALL_STATE(2826)] = 148524, - [SMALL_STATE(2827)] = 148606, - [SMALL_STATE(2828)] = 148652, - [SMALL_STATE(2829)] = 148698, - [SMALL_STATE(2830)] = 148780, - [SMALL_STATE(2831)] = 148862, - [SMALL_STATE(2832)] = 148944, - [SMALL_STATE(2833)] = 148990, - [SMALL_STATE(2834)] = 149036, - [SMALL_STATE(2835)] = 149082, - [SMALL_STATE(2836)] = 149128, - [SMALL_STATE(2837)] = 149204, - [SMALL_STATE(2838)] = 149250, - [SMALL_STATE(2839)] = 149296, - [SMALL_STATE(2840)] = 149378, - [SMALL_STATE(2841)] = 149460, - [SMALL_STATE(2842)] = 149506, - [SMALL_STATE(2843)] = 149552, - [SMALL_STATE(2844)] = 149598, - [SMALL_STATE(2845)] = 149646, - [SMALL_STATE(2846)] = 149692, - [SMALL_STATE(2847)] = 149774, - [SMALL_STATE(2848)] = 149820, - [SMALL_STATE(2849)] = 149866, - [SMALL_STATE(2850)] = 149930, - [SMALL_STATE(2851)] = 150012, - [SMALL_STATE(2852)] = 150068, - [SMALL_STATE(2853)] = 150118, - [SMALL_STATE(2854)] = 150200, - [SMALL_STATE(2855)] = 150248, - [SMALL_STATE(2856)] = 150330, - [SMALL_STATE(2857)] = 150376, - [SMALL_STATE(2858)] = 150422, - [SMALL_STATE(2859)] = 150472, - [SMALL_STATE(2860)] = 150518, - [SMALL_STATE(2861)] = 150564, - [SMALL_STATE(2862)] = 150610, - [SMALL_STATE(2863)] = 150656, - [SMALL_STATE(2864)] = 150702, - [SMALL_STATE(2865)] = 150748, - [SMALL_STATE(2866)] = 150794, - [SMALL_STATE(2867)] = 150876, - [SMALL_STATE(2868)] = 150932, - [SMALL_STATE(2869)] = 150988, - [SMALL_STATE(2870)] = 151034, - [SMALL_STATE(2871)] = 151116, - [SMALL_STATE(2872)] = 151172, - [SMALL_STATE(2873)] = 151254, - [SMALL_STATE(2874)] = 151336, - [SMALL_STATE(2875)] = 151382, - [SMALL_STATE(2876)] = 151464, - [SMALL_STATE(2877)] = 151546, - [SMALL_STATE(2878)] = 151608, - [SMALL_STATE(2879)] = 151690, - [SMALL_STATE(2880)] = 151736, - [SMALL_STATE(2881)] = 151806, - [SMALL_STATE(2882)] = 151888, - [SMALL_STATE(2883)] = 151956, - [SMALL_STATE(2884)] = 152038, - [SMALL_STATE(2885)] = 152084, - [SMALL_STATE(2886)] = 152142, - [SMALL_STATE(2887)] = 152224, - [SMALL_STATE(2888)] = 152270, - [SMALL_STATE(2889)] = 152316, - [SMALL_STATE(2890)] = 152366, - [SMALL_STATE(2891)] = 152412, - [SMALL_STATE(2892)] = 152462, - [SMALL_STATE(2893)] = 152508, - [SMALL_STATE(2894)] = 152554, - [SMALL_STATE(2895)] = 152600, - [SMALL_STATE(2896)] = 152682, - [SMALL_STATE(2897)] = 152736, - [SMALL_STATE(2898)] = 152818, - [SMALL_STATE(2899)] = 152864, - [SMALL_STATE(2900)] = 152916, - [SMALL_STATE(2901)] = 152998, - [SMALL_STATE(2902)] = 153054, - [SMALL_STATE(2903)] = 153104, - [SMALL_STATE(2904)] = 153160, - [SMALL_STATE(2905)] = 153206, - [SMALL_STATE(2906)] = 153288, - [SMALL_STATE(2907)] = 153344, - [SMALL_STATE(2908)] = 153390, - [SMALL_STATE(2909)] = 153462, - [SMALL_STATE(2910)] = 153544, - [SMALL_STATE(2911)] = 153590, - [SMALL_STATE(2912)] = 153672, - [SMALL_STATE(2913)] = 153748, - [SMALL_STATE(2914)] = 153794, - [SMALL_STATE(2915)] = 153840, - [SMALL_STATE(2916)] = 153886, - [SMALL_STATE(2917)] = 153936, - [SMALL_STATE(2918)] = 153986, - [SMALL_STATE(2919)] = 154032, - [SMALL_STATE(2920)] = 154114, - [SMALL_STATE(2921)] = 154164, - [SMALL_STATE(2922)] = 154246, - [SMALL_STATE(2923)] = 154296, - [SMALL_STATE(2924)] = 154342, - [SMALL_STATE(2925)] = 154420, - [SMALL_STATE(2926)] = 154502, - [SMALL_STATE(2927)] = 154548, - [SMALL_STATE(2928)] = 154630, - [SMALL_STATE(2929)] = 154676, - [SMALL_STATE(2930)] = 154726, - [SMALL_STATE(2931)] = 154796, - [SMALL_STATE(2932)] = 154878, - [SMALL_STATE(2933)] = 154960, - [SMALL_STATE(2934)] = 155010, - [SMALL_STATE(2935)] = 155056, - [SMALL_STATE(2936)] = 155102, - [SMALL_STATE(2937)] = 155184, - [SMALL_STATE(2938)] = 155250, - [SMALL_STATE(2939)] = 155298, - [SMALL_STATE(2940)] = 155344, - [SMALL_STATE(2941)] = 155426, - [SMALL_STATE(2942)] = 155472, - [SMALL_STATE(2943)] = 155537, - [SMALL_STATE(2944)] = 155592, - [SMALL_STATE(2945)] = 155681, - [SMALL_STATE(2946)] = 155736, - [SMALL_STATE(2947)] = 155825, - [SMALL_STATE(2948)] = 155880, - [SMALL_STATE(2949)] = 155949, - [SMALL_STATE(2950)] = 156004, - [SMALL_STATE(2951)] = 156061, - [SMALL_STATE(2952)] = 156134, - [SMALL_STATE(2953)] = 156179, - [SMALL_STATE(2954)] = 156246, - [SMALL_STATE(2955)] = 156301, - [SMALL_STATE(2956)] = 156358, - [SMALL_STATE(2957)] = 156423, - [SMALL_STATE(2958)] = 156486, - [SMALL_STATE(2959)] = 156565, - [SMALL_STATE(2960)] = 156610, - [SMALL_STATE(2961)] = 156689, - [SMALL_STATE(2962)] = 156768, - [SMALL_STATE(2963)] = 156829, - [SMALL_STATE(2964)] = 156886, - [SMALL_STATE(2965)] = 156965, - [SMALL_STATE(2966)] = 157020, - [SMALL_STATE(2967)] = 157075, - [SMALL_STATE(2968)] = 157120, - [SMALL_STATE(2969)] = 157199, - [SMALL_STATE(2970)] = 157272, - [SMALL_STATE(2971)] = 157361, - [SMALL_STATE(2972)] = 157408, - [SMALL_STATE(2973)] = 157497, - [SMALL_STATE(2974)] = 157586, - [SMALL_STATE(2975)] = 157675, - [SMALL_STATE(2976)] = 157732, - [SMALL_STATE(2977)] = 157777, - [SMALL_STATE(2978)] = 157830, - [SMALL_STATE(2979)] = 157881, - [SMALL_STATE(2980)] = 157934, - [SMALL_STATE(2981)] = 158013, - [SMALL_STATE(2982)] = 158092, - [SMALL_STATE(2983)] = 158171, - [SMALL_STATE(2984)] = 158250, - [SMALL_STATE(2985)] = 158301, - [SMALL_STATE(2986)] = 158346, - [SMALL_STATE(2987)] = 158421, - [SMALL_STATE(2988)] = 158466, - [SMALL_STATE(2989)] = 158545, - [SMALL_STATE(2990)] = 158594, - [SMALL_STATE(2991)] = 158665, - [SMALL_STATE(2992)] = 158754, - [SMALL_STATE(2993)] = 158843, - [SMALL_STATE(2994)] = 158932, - [SMALL_STATE(2995)] = 159021, - [SMALL_STATE(2996)] = 159076, - [SMALL_STATE(2997)] = 159121, - [SMALL_STATE(2998)] = 159200, - [SMALL_STATE(2999)] = 159245, - [SMALL_STATE(3000)] = 159324, - [SMALL_STATE(3001)] = 159403, - [SMALL_STATE(3002)] = 159480, - [SMALL_STATE(3003)] = 159529, - [SMALL_STATE(3004)] = 159608, - [SMALL_STATE(3005)] = 159657, - [SMALL_STATE(3006)] = 159720, - [SMALL_STATE(3007)] = 159765, - [SMALL_STATE(3008)] = 159844, - [SMALL_STATE(3009)] = 159923, - [SMALL_STATE(3010)] = 159978, - [SMALL_STATE(3011)] = 160033, - [SMALL_STATE(3012)] = 160078, - [SMALL_STATE(3013)] = 160123, - [SMALL_STATE(3014)] = 160212, - [SMALL_STATE(3015)] = 160291, - [SMALL_STATE(3016)] = 160370, - [SMALL_STATE(3017)] = 160421, - [SMALL_STATE(3018)] = 160472, - [SMALL_STATE(3019)] = 160551, - [SMALL_STATE(3020)] = 160596, - [SMALL_STATE(3021)] = 160641, - [SMALL_STATE(3022)] = 160720, - [SMALL_STATE(3023)] = 160765, - [SMALL_STATE(3024)] = 160816, - [SMALL_STATE(3025)] = 160861, - [SMALL_STATE(3026)] = 160932, - [SMALL_STATE(3027)] = 160987, - [SMALL_STATE(3028)] = 161042, - [SMALL_STATE(3029)] = 161087, - [SMALL_STATE(3030)] = 161166, - [SMALL_STATE(3031)] = 161243, - [SMALL_STATE(3032)] = 161290, - [SMALL_STATE(3033)] = 161337, - [SMALL_STATE(3034)] = 161384, - [SMALL_STATE(3035)] = 161463, - [SMALL_STATE(3036)] = 161512, - [SMALL_STATE(3037)] = 161591, - [SMALL_STATE(3038)] = 161670, - [SMALL_STATE(3039)] = 161749, - [SMALL_STATE(3040)] = 161828, - [SMALL_STATE(3041)] = 161883, - [SMALL_STATE(3042)] = 161958, - [SMALL_STATE(3043)] = 162003, - [SMALL_STATE(3044)] = 162048, - [SMALL_STATE(3045)] = 162093, - [SMALL_STATE(3046)] = 162170, - [SMALL_STATE(3047)] = 162241, - [SMALL_STATE(3048)] = 162286, - [SMALL_STATE(3049)] = 162355, - [SMALL_STATE(3050)] = 162422, - [SMALL_STATE(3051)] = 162487, - [SMALL_STATE(3052)] = 162550, - [SMALL_STATE(3053)] = 162611, - [SMALL_STATE(3054)] = 162668, - [SMALL_STATE(3055)] = 162721, - [SMALL_STATE(3056)] = 162810, - [SMALL_STATE(3057)] = 162861, - [SMALL_STATE(3058)] = 162910, - [SMALL_STATE(3059)] = 162959, - [SMALL_STATE(3060)] = 163014, - [SMALL_STATE(3061)] = 163061, - [SMALL_STATE(3062)] = 163108, - [SMALL_STATE(3063)] = 163197, - [SMALL_STATE(3064)] = 163276, - [SMALL_STATE(3065)] = 163355, - [SMALL_STATE(3066)] = 163434, - [SMALL_STATE(3067)] = 163483, - [SMALL_STATE(3068)] = 163562, - [SMALL_STATE(3069)] = 163607, - [SMALL_STATE(3070)] = 163676, - [SMALL_STATE(3071)] = 163723, - [SMALL_STATE(3072)] = 163770, - [SMALL_STATE(3073)] = 163837, - [SMALL_STATE(3074)] = 163882, - [SMALL_STATE(3075)] = 163937, - [SMALL_STATE(3076)] = 164012, - [SMALL_STATE(3077)] = 164059, - [SMALL_STATE(3078)] = 164138, - [SMALL_STATE(3079)] = 164217, - [SMALL_STATE(3080)] = 164294, - [SMALL_STATE(3081)] = 164365, - [SMALL_STATE(3082)] = 164434, - [SMALL_STATE(3083)] = 164501, - [SMALL_STATE(3084)] = 164566, - [SMALL_STATE(3085)] = 164629, - [SMALL_STATE(3086)] = 164694, - [SMALL_STATE(3087)] = 164755, - [SMALL_STATE(3088)] = 164800, - [SMALL_STATE(3089)] = 164857, - [SMALL_STATE(3090)] = 164910, - [SMALL_STATE(3091)] = 164961, - [SMALL_STATE(3092)] = 165010, - [SMALL_STATE(3093)] = 165059, - [SMALL_STATE(3094)] = 165122, - [SMALL_STATE(3095)] = 165183, - [SMALL_STATE(3096)] = 165242, - [SMALL_STATE(3097)] = 165297, - [SMALL_STATE(3098)] = 165344, - [SMALL_STATE(3099)] = 165391, - [SMALL_STATE(3100)] = 165448, - [SMALL_STATE(3101)] = 165495, - [SMALL_STATE(3102)] = 165542, - [SMALL_STATE(3103)] = 165599, - [SMALL_STATE(3104)] = 165646, - [SMALL_STATE(3105)] = 165691, - [SMALL_STATE(3106)] = 165764, - [SMALL_STATE(3107)] = 165819, - [SMALL_STATE(3108)] = 165872, - [SMALL_STATE(3109)] = 165923, - [SMALL_STATE(3110)] = 165972, - [SMALL_STATE(3111)] = 166021, - [SMALL_STATE(3112)] = 166078, - [SMALL_STATE(3113)] = 166133, - [SMALL_STATE(3114)] = 166212, - [SMALL_STATE(3115)] = 166301, - [SMALL_STATE(3116)] = 166348, - [SMALL_STATE(3117)] = 166403, - [SMALL_STATE(3118)] = 166448, - [SMALL_STATE(3119)] = 166493, - [SMALL_STATE(3120)] = 166582, - [SMALL_STATE(3121)] = 166637, - [SMALL_STATE(3122)] = 166682, - [SMALL_STATE(3123)] = 166737, - [SMALL_STATE(3124)] = 166794, - [SMALL_STATE(3125)] = 166873, - [SMALL_STATE(3126)] = 166918, - [SMALL_STATE(3127)] = 166973, - [SMALL_STATE(3128)] = 167028, - [SMALL_STATE(3129)] = 167083, - [SMALL_STATE(3130)] = 167158, - [SMALL_STATE(3131)] = 167235, - [SMALL_STATE(3132)] = 167306, - [SMALL_STATE(3133)] = 167375, - [SMALL_STATE(3134)] = 167442, - [SMALL_STATE(3135)] = 167493, - [SMALL_STATE(3136)] = 167538, - [SMALL_STATE(3137)] = 167601, - [SMALL_STATE(3138)] = 167662, - [SMALL_STATE(3139)] = 167719, - [SMALL_STATE(3140)] = 167774, - [SMALL_STATE(3141)] = 167827, - [SMALL_STATE(3142)] = 167878, - [SMALL_STATE(3143)] = 167923, - [SMALL_STATE(3144)] = 167972, - [SMALL_STATE(3145)] = 168045, - [SMALL_STATE(3146)] = 168094, - [SMALL_STATE(3147)] = 168145, - [SMALL_STATE(3148)] = 168194, - [SMALL_STATE(3149)] = 168267, - [SMALL_STATE(3150)] = 168318, - [SMALL_STATE(3151)] = 168363, - [SMALL_STATE(3152)] = 168418, - [SMALL_STATE(3153)] = 168493, - [SMALL_STATE(3154)] = 168572, - [SMALL_STATE(3155)] = 168649, - [SMALL_STATE(3156)] = 168720, - [SMALL_STATE(3157)] = 168765, - [SMALL_STATE(3158)] = 168834, - [SMALL_STATE(3159)] = 168901, - [SMALL_STATE(3160)] = 168966, - [SMALL_STATE(3161)] = 169029, - [SMALL_STATE(3162)] = 169090, - [SMALL_STATE(3163)] = 169179, - [SMALL_STATE(3164)] = 169258, - [SMALL_STATE(3165)] = 169303, - [SMALL_STATE(3166)] = 169347, - [SMALL_STATE(3167)] = 169391, - [SMALL_STATE(3168)] = 169435, - [SMALL_STATE(3169)] = 169511, - [SMALL_STATE(3170)] = 169555, - [SMALL_STATE(3171)] = 169605, - [SMALL_STATE(3172)] = 169681, - [SMALL_STATE(3173)] = 169735, - [SMALL_STATE(3174)] = 169779, - [SMALL_STATE(3175)] = 169823, - [SMALL_STATE(3176)] = 169867, - [SMALL_STATE(3177)] = 169943, - [SMALL_STATE(3178)] = 169987, - [SMALL_STATE(3179)] = 170039, - [SMALL_STATE(3180)] = 170083, - [SMALL_STATE(3181)] = 170127, - [SMALL_STATE(3182)] = 170171, - [SMALL_STATE(3183)] = 170225, - [SMALL_STATE(3184)] = 170301, - [SMALL_STATE(3185)] = 170365, - [SMALL_STATE(3186)] = 170409, - [SMALL_STATE(3187)] = 170485, - [SMALL_STATE(3188)] = 170533, - [SMALL_STATE(3189)] = 170619, - [SMALL_STATE(3190)] = 170705, - [SMALL_STATE(3191)] = 170791, - [SMALL_STATE(3192)] = 170877, - [SMALL_STATE(3193)] = 170963, - [SMALL_STATE(3194)] = 171049, - [SMALL_STATE(3195)] = 171125, - [SMALL_STATE(3196)] = 171189, - [SMALL_STATE(3197)] = 171233, - [SMALL_STATE(3198)] = 171295, - [SMALL_STATE(3199)] = 171339, - [SMALL_STATE(3200)] = 171415, - [SMALL_STATE(3201)] = 171491, - [SMALL_STATE(3202)] = 171535, - [SMALL_STATE(3203)] = 171585, - [SMALL_STATE(3204)] = 171629, - [SMALL_STATE(3205)] = 171673, - [SMALL_STATE(3206)] = 171727, - [SMALL_STATE(3207)] = 171803, - [SMALL_STATE(3208)] = 171847, - [SMALL_STATE(3209)] = 171901, - [SMALL_STATE(3210)] = 171977, - [SMALL_STATE(3211)] = 172021, - [SMALL_STATE(3212)] = 172097, - [SMALL_STATE(3213)] = 172163, - [SMALL_STATE(3214)] = 172239, - [SMALL_STATE(3215)] = 172283, - [SMALL_STATE(3216)] = 172327, - [SMALL_STATE(3217)] = 172403, - [SMALL_STATE(3218)] = 172447, - [SMALL_STATE(3219)] = 172523, - [SMALL_STATE(3220)] = 172567, - [SMALL_STATE(3221)] = 172611, - [SMALL_STATE(3222)] = 172687, - [SMALL_STATE(3223)] = 172763, - [SMALL_STATE(3224)] = 172839, - [SMALL_STATE(3225)] = 172915, - [SMALL_STATE(3226)] = 172959, - [SMALL_STATE(3227)] = 173035, - [SMALL_STATE(3228)] = 173111, - [SMALL_STATE(3229)] = 173155, - [SMALL_STATE(3230)] = 173231, - [SMALL_STATE(3231)] = 173275, - [SMALL_STATE(3232)] = 173319, - [SMALL_STATE(3233)] = 173395, - [SMALL_STATE(3234)] = 173439, - [SMALL_STATE(3235)] = 173483, - [SMALL_STATE(3236)] = 173559, - [SMALL_STATE(3237)] = 173603, - [SMALL_STATE(3238)] = 173679, - [SMALL_STATE(3239)] = 173723, - [SMALL_STATE(3240)] = 173809, - [SMALL_STATE(3241)] = 173885, - [SMALL_STATE(3242)] = 173955, - [SMALL_STATE(3243)] = 173999, - [SMALL_STATE(3244)] = 174043, - [SMALL_STATE(3245)] = 174119, - [SMALL_STATE(3246)] = 174163, - [SMALL_STATE(3247)] = 174207, - [SMALL_STATE(3248)] = 174251, - [SMALL_STATE(3249)] = 174327, - [SMALL_STATE(3250)] = 174403, - [SMALL_STATE(3251)] = 174479, - [SMALL_STATE(3252)] = 174533, - [SMALL_STATE(3253)] = 174579, - [SMALL_STATE(3254)] = 174655, - [SMALL_STATE(3255)] = 174709, - [SMALL_STATE(3256)] = 174785, - [SMALL_STATE(3257)] = 174829, - [SMALL_STATE(3258)] = 174883, - [SMALL_STATE(3259)] = 174959, - [SMALL_STATE(3260)] = 175003, - [SMALL_STATE(3261)] = 175047, - [SMALL_STATE(3262)] = 175123, - [SMALL_STATE(3263)] = 175177, - [SMALL_STATE(3264)] = 175221, - [SMALL_STATE(3265)] = 175297, - [SMALL_STATE(3266)] = 175345, - [SMALL_STATE(3267)] = 175389, - [SMALL_STATE(3268)] = 175465, - [SMALL_STATE(3269)] = 175541, - [SMALL_STATE(3270)] = 175617, - [SMALL_STATE(3271)] = 175661, - [SMALL_STATE(3272)] = 175737, - [SMALL_STATE(3273)] = 175797, - [SMALL_STATE(3274)] = 175873, - [SMALL_STATE(3275)] = 175917, - [SMALL_STATE(3276)] = 175993, - [SMALL_STATE(3277)] = 176037, - [SMALL_STATE(3278)] = 176081, - [SMALL_STATE(3279)] = 176167, - [SMALL_STATE(3280)] = 176211, - [SMALL_STATE(3281)] = 176255, - [SMALL_STATE(3282)] = 176299, - [SMALL_STATE(3283)] = 176343, - [SMALL_STATE(3284)] = 176387, - [SMALL_STATE(3285)] = 176441, - [SMALL_STATE(3286)] = 176517, - [SMALL_STATE(3287)] = 176575, - [SMALL_STATE(3288)] = 176629, - [SMALL_STATE(3289)] = 176673, - [SMALL_STATE(3290)] = 176717, - [SMALL_STATE(3291)] = 176793, - [SMALL_STATE(3292)] = 176837, - [SMALL_STATE(3293)] = 176883, - [SMALL_STATE(3294)] = 176927, - [SMALL_STATE(3295)] = 177003, - [SMALL_STATE(3296)] = 177057, - [SMALL_STATE(3297)] = 177101, - [SMALL_STATE(3298)] = 177147, - [SMALL_STATE(3299)] = 177191, - [SMALL_STATE(3300)] = 177245, - [SMALL_STATE(3301)] = 177321, - [SMALL_STATE(3302)] = 177365, - [SMALL_STATE(3303)] = 177441, - [SMALL_STATE(3304)] = 177517, - [SMALL_STATE(3305)] = 177561, - [SMALL_STATE(3306)] = 177605, - [SMALL_STATE(3307)] = 177681, - [SMALL_STATE(3308)] = 177745, - [SMALL_STATE(3309)] = 177789, - [SMALL_STATE(3310)] = 177833, - [SMALL_STATE(3311)] = 177887, - [SMALL_STATE(3312)] = 177931, - [SMALL_STATE(3313)] = 177975, - [SMALL_STATE(3314)] = 178029, - [SMALL_STATE(3315)] = 178105, - [SMALL_STATE(3316)] = 178177, - [SMALL_STATE(3317)] = 178253, - [SMALL_STATE(3318)] = 178327, - [SMALL_STATE(3319)] = 178395, - [SMALL_STATE(3320)] = 178461, - [SMALL_STATE(3321)] = 178525, - [SMALL_STATE(3322)] = 178597, - [SMALL_STATE(3323)] = 178659, - [SMALL_STATE(3324)] = 178719, - [SMALL_STATE(3325)] = 178777, - [SMALL_STATE(3326)] = 178831, - [SMALL_STATE(3327)] = 178883, - [SMALL_STATE(3328)] = 178933, - [SMALL_STATE(3329)] = 178981, - [SMALL_STATE(3330)] = 179027, - [SMALL_STATE(3331)] = 179103, - [SMALL_STATE(3332)] = 179179, - [SMALL_STATE(3333)] = 179265, - [SMALL_STATE(3334)] = 179351, - [SMALL_STATE(3335)] = 179395, - [SMALL_STATE(3336)] = 179439, - [SMALL_STATE(3337)] = 179483, - [SMALL_STATE(3338)] = 179551, - [SMALL_STATE(3339)] = 179617, - [SMALL_STATE(3340)] = 179681, - [SMALL_STATE(3341)] = 179745, - [SMALL_STATE(3342)] = 179807, - [SMALL_STATE(3343)] = 179861, - [SMALL_STATE(3344)] = 179921, - [SMALL_STATE(3345)] = 180007, - [SMALL_STATE(3346)] = 180065, - [SMALL_STATE(3347)] = 180119, - [SMALL_STATE(3348)] = 180171, - [SMALL_STATE(3349)] = 180221, - [SMALL_STATE(3350)] = 180269, - [SMALL_STATE(3351)] = 180317, - [SMALL_STATE(3352)] = 180393, - [SMALL_STATE(3353)] = 180479, - [SMALL_STATE(3354)] = 180533, - [SMALL_STATE(3355)] = 180577, - [SMALL_STATE(3356)] = 180621, - [SMALL_STATE(3357)] = 180665, - [SMALL_STATE(3358)] = 180751, - [SMALL_STATE(3359)] = 180821, - [SMALL_STATE(3360)] = 180897, - [SMALL_STATE(3361)] = 180983, - [SMALL_STATE(3362)] = 181053, - [SMALL_STATE(3363)] = 181123, - [SMALL_STATE(3364)] = 181177, - [SMALL_STATE(3365)] = 181225, - [SMALL_STATE(3366)] = 181287, - [SMALL_STATE(3367)] = 181331, - [SMALL_STATE(3368)] = 181375, - [SMALL_STATE(3369)] = 181419, - [SMALL_STATE(3370)] = 181495, - [SMALL_STATE(3371)] = 181539, - [SMALL_STATE(3372)] = 181583, - [SMALL_STATE(3373)] = 181627, - [SMALL_STATE(3374)] = 181703, - [SMALL_STATE(3375)] = 181747, - [SMALL_STATE(3376)] = 181791, - [SMALL_STATE(3377)] = 181835, - [SMALL_STATE(3378)] = 181921, - [SMALL_STATE(3379)] = 181965, - [SMALL_STATE(3380)] = 182009, - [SMALL_STATE(3381)] = 182085, - [SMALL_STATE(3382)] = 182139, - [SMALL_STATE(3383)] = 182193, - [SMALL_STATE(3384)] = 182237, - [SMALL_STATE(3385)] = 182283, - [SMALL_STATE(3386)] = 182337, - [SMALL_STATE(3387)] = 182381, - [SMALL_STATE(3388)] = 182435, - [SMALL_STATE(3389)] = 182509, - [SMALL_STATE(3390)] = 182585, - [SMALL_STATE(3391)] = 182655, - [SMALL_STATE(3392)] = 182723, - [SMALL_STATE(3393)] = 182789, - [SMALL_STATE(3394)] = 182853, - [SMALL_STATE(3395)] = 182915, - [SMALL_STATE(3396)] = 182975, - [SMALL_STATE(3397)] = 183031, - [SMALL_STATE(3398)] = 183083, - [SMALL_STATE(3399)] = 183133, - [SMALL_STATE(3400)] = 183181, - [SMALL_STATE(3401)] = 183229, - [SMALL_STATE(3402)] = 183301, - [SMALL_STATE(3403)] = 183387, - [SMALL_STATE(3404)] = 183473, - [SMALL_STATE(3405)] = 183547, - [SMALL_STATE(3406)] = 183623, - [SMALL_STATE(3407)] = 183699, - [SMALL_STATE(3408)] = 183743, - [SMALL_STATE(3409)] = 183819, - [SMALL_STATE(3410)] = 183863, - [SMALL_STATE(3411)] = 183907, - [SMALL_STATE(3412)] = 183951, - [SMALL_STATE(3413)] = 184027, - [SMALL_STATE(3414)] = 184103, - [SMALL_STATE(3415)] = 184171, - [SMALL_STATE(3416)] = 184231, - [SMALL_STATE(3417)] = 184275, - [SMALL_STATE(3418)] = 184319, - [SMALL_STATE(3419)] = 184395, - [SMALL_STATE(3420)] = 184471, - [SMALL_STATE(3421)] = 184547, - [SMALL_STATE(3422)] = 184591, - [SMALL_STATE(3423)] = 184635, - [SMALL_STATE(3424)] = 184679, - [SMALL_STATE(3425)] = 184755, - [SMALL_STATE(3426)] = 184823, - [SMALL_STATE(3427)] = 184899, - [SMALL_STATE(3428)] = 184943, - [SMALL_STATE(3429)] = 185019, - [SMALL_STATE(3430)] = 185063, - [SMALL_STATE(3431)] = 185107, - [SMALL_STATE(3432)] = 185151, - [SMALL_STATE(3433)] = 185209, - [SMALL_STATE(3434)] = 185285, - [SMALL_STATE(3435)] = 185329, - [SMALL_STATE(3436)] = 185395, - [SMALL_STATE(3437)] = 185471, - [SMALL_STATE(3438)] = 185547, - [SMALL_STATE(3439)] = 185591, - [SMALL_STATE(3440)] = 185667, - [SMALL_STATE(3441)] = 185753, - [SMALL_STATE(3442)] = 185839, - [SMALL_STATE(3443)] = 185883, - [SMALL_STATE(3444)] = 185969, - [SMALL_STATE(3445)] = 186045, - [SMALL_STATE(3446)] = 186097, - [SMALL_STATE(3447)] = 186183, - [SMALL_STATE(3448)] = 186259, - [SMALL_STATE(3449)] = 186315, - [SMALL_STATE(3450)] = 186369, - [SMALL_STATE(3451)] = 186423, - [SMALL_STATE(3452)] = 186509, - [SMALL_STATE(3453)] = 186595, - [SMALL_STATE(3454)] = 186641, - [SMALL_STATE(3455)] = 186685, - [SMALL_STATE(3456)] = 186771, - [SMALL_STATE(3457)] = 186850, - [SMALL_STATE(3458)] = 186897, - [SMALL_STATE(3459)] = 186950, - [SMALL_STATE(3460)] = 186999, - [SMALL_STATE(3461)] = 187046, - [SMALL_STATE(3462)] = 187093, - [SMALL_STATE(3463)] = 187142, - [SMALL_STATE(3464)] = 187229, - [SMALL_STATE(3465)] = 187276, - [SMALL_STATE(3466)] = 187323, - [SMALL_STATE(3467)] = 187370, - [SMALL_STATE(3468)] = 187417, - [SMALL_STATE(3469)] = 187500, - [SMALL_STATE(3470)] = 187587, - [SMALL_STATE(3471)] = 187634, - [SMALL_STATE(3472)] = 187681, - [SMALL_STATE(3473)] = 187728, - [SMALL_STATE(3474)] = 187775, - [SMALL_STATE(3475)] = 187862, - [SMALL_STATE(3476)] = 187909, - [SMALL_STATE(3477)] = 187956, - [SMALL_STATE(3478)] = 188003, - [SMALL_STATE(3479)] = 188056, - [SMALL_STATE(3480)] = 188135, - [SMALL_STATE(3481)] = 188188, - [SMALL_STATE(3482)] = 188241, - [SMALL_STATE(3483)] = 188294, - [SMALL_STATE(3484)] = 188347, - [SMALL_STATE(3485)] = 188426, - [SMALL_STATE(3486)] = 188505, - [SMALL_STATE(3487)] = 188584, - [SMALL_STATE(3488)] = 188626, - [SMALL_STATE(3489)] = 188668, - [SMALL_STATE(3490)] = 188710, - [SMALL_STATE(3491)] = 188792, - [SMALL_STATE(3492)] = 188834, - [SMALL_STATE(3493)] = 188916, - [SMALL_STATE(3494)] = 188998, - [SMALL_STATE(3495)] = 189080, - [SMALL_STATE(3496)] = 189122, - [SMALL_STATE(3497)] = 189164, - [SMALL_STATE(3498)] = 189206, - [SMALL_STATE(3499)] = 189248, - [SMALL_STATE(3500)] = 189330, - [SMALL_STATE(3501)] = 189412, - [SMALL_STATE(3502)] = 189494, - [SMALL_STATE(3503)] = 189576, - [SMALL_STATE(3504)] = 189658, - [SMALL_STATE(3505)] = 189700, - [SMALL_STATE(3506)] = 189742, - [SMALL_STATE(3507)] = 189824, - [SMALL_STATE(3508)] = 189866, - [SMALL_STATE(3509)] = 189908, - [SMALL_STATE(3510)] = 189950, - [SMALL_STATE(3511)] = 190032, - [SMALL_STATE(3512)] = 190114, - [SMALL_STATE(3513)] = 190196, - [SMALL_STATE(3514)] = 190238, - [SMALL_STATE(3515)] = 190320, - [SMALL_STATE(3516)] = 190402, - [SMALL_STATE(3517)] = 190484, - [SMALL_STATE(3518)] = 190566, - [SMALL_STATE(3519)] = 190608, - [SMALL_STATE(3520)] = 190690, - [SMALL_STATE(3521)] = 190772, - [SMALL_STATE(3522)] = 190854, - [SMALL_STATE(3523)] = 190936, - [SMALL_STATE(3524)] = 190978, - [SMALL_STATE(3525)] = 191020, - [SMALL_STATE(3526)] = 191102, - [SMALL_STATE(3527)] = 191184, - [SMALL_STATE(3528)] = 191260, - [SMALL_STATE(3529)] = 191302, - [SMALL_STATE(3530)] = 191344, - [SMALL_STATE(3531)] = 191386, - [SMALL_STATE(3532)] = 191431, - [SMALL_STATE(3533)] = 191476, - [SMALL_STATE(3534)] = 191521, - [SMALL_STATE(3535)] = 191566, - [SMALL_STATE(3536)] = 191611, - [SMALL_STATE(3537)] = 191684, - [SMALL_STATE(3538)] = 191735, - [SMALL_STATE(3539)] = 191786, - [SMALL_STATE(3540)] = 191837, - [SMALL_STATE(3541)] = 191882, - [SMALL_STATE(3542)] = 191933, - [SMALL_STATE(3543)] = 191978, - [SMALL_STATE(3544)] = 192051, - [SMALL_STATE(3545)] = 192124, - [SMALL_STATE(3546)] = 192197, - [SMALL_STATE(3547)] = 192237, - [SMALL_STATE(3548)] = 192277, - [SMALL_STATE(3549)] = 192353, - [SMALL_STATE(3550)] = 192429, - [SMALL_STATE(3551)] = 192505, - [SMALL_STATE(3552)] = 192581, - [SMALL_STATE(3553)] = 192621, - [SMALL_STATE(3554)] = 192697, - [SMALL_STATE(3555)] = 192737, - [SMALL_STATE(3556)] = 192813, - [SMALL_STATE(3557)] = 192889, - [SMALL_STATE(3558)] = 192965, - [SMALL_STATE(3559)] = 193015, - [SMALL_STATE(3560)] = 193055, - [SMALL_STATE(3561)] = 193131, - [SMALL_STATE(3562)] = 193207, - [SMALL_STATE(3563)] = 193283, - [SMALL_STATE(3564)] = 193359, - [SMALL_STATE(3565)] = 193435, - [SMALL_STATE(3566)] = 193511, - [SMALL_STATE(3567)] = 193587, - [SMALL_STATE(3568)] = 193663, - [SMALL_STATE(3569)] = 193739, - [SMALL_STATE(3570)] = 193815, - [SMALL_STATE(3571)] = 193865, - [SMALL_STATE(3572)] = 193941, - [SMALL_STATE(3573)] = 194017, - [SMALL_STATE(3574)] = 194093, - [SMALL_STATE(3575)] = 194169, - [SMALL_STATE(3576)] = 194245, - [SMALL_STATE(3577)] = 194295, - [SMALL_STATE(3578)] = 194371, - [SMALL_STATE(3579)] = 194447, - [SMALL_STATE(3580)] = 194487, - [SMALL_STATE(3581)] = 194537, - [SMALL_STATE(3582)] = 194587, - [SMALL_STATE(3583)] = 194663, - [SMALL_STATE(3584)] = 194703, - [SMALL_STATE(3585)] = 194779, - [SMALL_STATE(3586)] = 194855, - [SMALL_STATE(3587)] = 194931, - [SMALL_STATE(3588)] = 195007, - [SMALL_STATE(3589)] = 195057, - [SMALL_STATE(3590)] = 195107, - [SMALL_STATE(3591)] = 195183, - [SMALL_STATE(3592)] = 195223, - [SMALL_STATE(3593)] = 195263, - [SMALL_STATE(3594)] = 195339, - [SMALL_STATE(3595)] = 195415, - [SMALL_STATE(3596)] = 195491, - [SMALL_STATE(3597)] = 195541, - [SMALL_STATE(3598)] = 195617, - [SMALL_STATE(3599)] = 195693, - [SMALL_STATE(3600)] = 195769, - [SMALL_STATE(3601)] = 195819, - [SMALL_STATE(3602)] = 195895, - [SMALL_STATE(3603)] = 195971, - [SMALL_STATE(3604)] = 196047, - [SMALL_STATE(3605)] = 196097, - [SMALL_STATE(3606)] = 196173, - [SMALL_STATE(3607)] = 196249, - [SMALL_STATE(3608)] = 196325, - [SMALL_STATE(3609)] = 196401, - [SMALL_STATE(3610)] = 196477, - [SMALL_STATE(3611)] = 196527, - [SMALL_STATE(3612)] = 196603, - [SMALL_STATE(3613)] = 196653, - [SMALL_STATE(3614)] = 196729, - [SMALL_STATE(3615)] = 196802, - [SMALL_STATE(3616)] = 196875, - [SMALL_STATE(3617)] = 196946, - [SMALL_STATE(3618)] = 197021, - [SMALL_STATE(3619)] = 197094, - [SMALL_STATE(3620)] = 197167, - [SMALL_STATE(3621)] = 197238, - [SMALL_STATE(3622)] = 197311, - [SMALL_STATE(3623)] = 197360, - [SMALL_STATE(3624)] = 197435, - [SMALL_STATE(3625)] = 197508, - [SMALL_STATE(3626)] = 197579, - [SMALL_STATE(3627)] = 197652, - [SMALL_STATE(3628)] = 197725, - [SMALL_STATE(3629)] = 197798, - [SMALL_STATE(3630)] = 197871, - [SMALL_STATE(3631)] = 197944, - [SMALL_STATE(3632)] = 198017, - [SMALL_STATE(3633)] = 198066, - [SMALL_STATE(3634)] = 198137, - [SMALL_STATE(3635)] = 198186, - [SMALL_STATE(3636)] = 198259, - [SMALL_STATE(3637)] = 198332, - [SMALL_STATE(3638)] = 198405, - [SMALL_STATE(3639)] = 198478, - [SMALL_STATE(3640)] = 198551, - [SMALL_STATE(3641)] = 198624, - [SMALL_STATE(3642)] = 198697, - [SMALL_STATE(3643)] = 198768, - [SMALL_STATE(3644)] = 198841, - [SMALL_STATE(3645)] = 198912, - [SMALL_STATE(3646)] = 198985, - [SMALL_STATE(3647)] = 199060, - [SMALL_STATE(3648)] = 199131, - [SMALL_STATE(3649)] = 199204, - [SMALL_STATE(3650)] = 199277, - [SMALL_STATE(3651)] = 199348, - [SMALL_STATE(3652)] = 199421, - [SMALL_STATE(3653)] = 199494, - [SMALL_STATE(3654)] = 199567, - [SMALL_STATE(3655)] = 199640, - [SMALL_STATE(3656)] = 199713, - [SMALL_STATE(3657)] = 199784, - [SMALL_STATE(3658)] = 199857, - [SMALL_STATE(3659)] = 199930, - [SMALL_STATE(3660)] = 200003, - [SMALL_STATE(3661)] = 200076, - [SMALL_STATE(3662)] = 200149, - [SMALL_STATE(3663)] = 200220, - [SMALL_STATE(3664)] = 200293, - [SMALL_STATE(3665)] = 200366, - [SMALL_STATE(3666)] = 200439, - [SMALL_STATE(3667)] = 200514, - [SMALL_STATE(3668)] = 200587, - [SMALL_STATE(3669)] = 200662, - [SMALL_STATE(3670)] = 200735, - [SMALL_STATE(3671)] = 200808, - [SMALL_STATE(3672)] = 200881, - [SMALL_STATE(3673)] = 200954, - [SMALL_STATE(3674)] = 201027, - [SMALL_STATE(3675)] = 201100, - [SMALL_STATE(3676)] = 201149, - [SMALL_STATE(3677)] = 201222, - [SMALL_STATE(3678)] = 201295, - [SMALL_STATE(3679)] = 201366, - [SMALL_STATE(3680)] = 201437, - [SMALL_STATE(3681)] = 201510, - [SMALL_STATE(3682)] = 201583, - [SMALL_STATE(3683)] = 201656, - [SMALL_STATE(3684)] = 201729, - [SMALL_STATE(3685)] = 201802, - [SMALL_STATE(3686)] = 201875, - [SMALL_STATE(3687)] = 201948, - [SMALL_STATE(3688)] = 202019, - [SMALL_STATE(3689)] = 202094, - [SMALL_STATE(3690)] = 202167, - [SMALL_STATE(3691)] = 202240, - [SMALL_STATE(3692)] = 202313, - [SMALL_STATE(3693)] = 202386, - [SMALL_STATE(3694)] = 202459, - [SMALL_STATE(3695)] = 202532, - [SMALL_STATE(3696)] = 202605, - [SMALL_STATE(3697)] = 202680, - [SMALL_STATE(3698)] = 202753, - [SMALL_STATE(3699)] = 202821, - [SMALL_STATE(3700)] = 202889, - [SMALL_STATE(3701)] = 202957, - [SMALL_STATE(3702)] = 203025, - [SMALL_STATE(3703)] = 203093, - [SMALL_STATE(3704)] = 203161, - [SMALL_STATE(3705)] = 203229, - [SMALL_STATE(3706)] = 203301, - [SMALL_STATE(3707)] = 203369, - [SMALL_STATE(3708)] = 203437, - [SMALL_STATE(3709)] = 203511, - [SMALL_STATE(3710)] = 203585, - [SMALL_STATE(3711)] = 203659, - [SMALL_STATE(3712)] = 203733, - [SMALL_STATE(3713)] = 203807, - [SMALL_STATE(3714)] = 203881, - [SMALL_STATE(3715)] = 203955, - [SMALL_STATE(3716)] = 204023, - [SMALL_STATE(3717)] = 204097, - [SMALL_STATE(3718)] = 204171, - [SMALL_STATE(3719)] = 204245, - [SMALL_STATE(3720)] = 204313, - [SMALL_STATE(3721)] = 204381, - [SMALL_STATE(3722)] = 204455, - [SMALL_STATE(3723)] = 204529, - [SMALL_STATE(3724)] = 204603, - [SMALL_STATE(3725)] = 204671, - [SMALL_STATE(3726)] = 204739, - [SMALL_STATE(3727)] = 204813, - [SMALL_STATE(3728)] = 204881, - [SMALL_STATE(3729)] = 204955, - [SMALL_STATE(3730)] = 205023, - [SMALL_STATE(3731)] = 205091, - [SMALL_STATE(3732)] = 205159, - [SMALL_STATE(3733)] = 205227, - [SMALL_STATE(3734)] = 205295, - [SMALL_STATE(3735)] = 205363, - [SMALL_STATE(3736)] = 205431, - [SMALL_STATE(3737)] = 205499, - [SMALL_STATE(3738)] = 205567, - [SMALL_STATE(3739)] = 205635, - [SMALL_STATE(3740)] = 205703, - [SMALL_STATE(3741)] = 205771, - [SMALL_STATE(3742)] = 205839, - [SMALL_STATE(3743)] = 205907, - [SMALL_STATE(3744)] = 205981, - [SMALL_STATE(3745)] = 206049, - [SMALL_STATE(3746)] = 206117, - [SMALL_STATE(3747)] = 206191, - [SMALL_STATE(3748)] = 206259, - [SMALL_STATE(3749)] = 206333, - [SMALL_STATE(3750)] = 206401, - [SMALL_STATE(3751)] = 206469, - [SMALL_STATE(3752)] = 206543, - [SMALL_STATE(3753)] = 206611, - [SMALL_STATE(3754)] = 206685, - [SMALL_STATE(3755)] = 206759, - [SMALL_STATE(3756)] = 206833, - [SMALL_STATE(3757)] = 206907, - [SMALL_STATE(3758)] = 206975, - [SMALL_STATE(3759)] = 207043, - [SMALL_STATE(3760)] = 207117, - [SMALL_STATE(3761)] = 207185, - [SMALL_STATE(3762)] = 207253, - [SMALL_STATE(3763)] = 207321, - [SMALL_STATE(3764)] = 207389, - [SMALL_STATE(3765)] = 207463, - [SMALL_STATE(3766)] = 207531, - [SMALL_STATE(3767)] = 207599, - [SMALL_STATE(3768)] = 207667, - [SMALL_STATE(3769)] = 207735, - [SMALL_STATE(3770)] = 207803, - [SMALL_STATE(3771)] = 207871, - [SMALL_STATE(3772)] = 207945, - [SMALL_STATE(3773)] = 208019, - [SMALL_STATE(3774)] = 208093, - [SMALL_STATE(3775)] = 208161, - [SMALL_STATE(3776)] = 208235, - [SMALL_STATE(3777)] = 208303, - [SMALL_STATE(3778)] = 208371, - [SMALL_STATE(3779)] = 208439, - [SMALL_STATE(3780)] = 208507, - [SMALL_STATE(3781)] = 208575, - [SMALL_STATE(3782)] = 208649, - [SMALL_STATE(3783)] = 208717, - [SMALL_STATE(3784)] = 208785, - [SMALL_STATE(3785)] = 208853, - [SMALL_STATE(3786)] = 208921, - [SMALL_STATE(3787)] = 208989, - [SMALL_STATE(3788)] = 209063, - [SMALL_STATE(3789)] = 209137, - [SMALL_STATE(3790)] = 209211, - [SMALL_STATE(3791)] = 209279, - [SMALL_STATE(3792)] = 209347, - [SMALL_STATE(3793)] = 209415, - [SMALL_STATE(3794)] = 209483, - [SMALL_STATE(3795)] = 209555, - [SMALL_STATE(3796)] = 209627, - [SMALL_STATE(3797)] = 209695, - [SMALL_STATE(3798)] = 209763, - [SMALL_STATE(3799)] = 209837, - [SMALL_STATE(3800)] = 209911, - [SMALL_STATE(3801)] = 209985, - [SMALL_STATE(3802)] = 210059, - [SMALL_STATE(3803)] = 210133, - [SMALL_STATE(3804)] = 210207, - [SMALL_STATE(3805)] = 210281, - [SMALL_STATE(3806)] = 210355, - [SMALL_STATE(3807)] = 210429, - [SMALL_STATE(3808)] = 210503, - [SMALL_STATE(3809)] = 210577, - [SMALL_STATE(3810)] = 210651, - [SMALL_STATE(3811)] = 210725, - [SMALL_STATE(3812)] = 210793, - [SMALL_STATE(3813)] = 210861, - [SMALL_STATE(3814)] = 210929, - [SMALL_STATE(3815)] = 210997, - [SMALL_STATE(3816)] = 211065, - [SMALL_STATE(3817)] = 211133, - [SMALL_STATE(3818)] = 211201, - [SMALL_STATE(3819)] = 211269, - [SMALL_STATE(3820)] = 211337, - [SMALL_STATE(3821)] = 211405, - [SMALL_STATE(3822)] = 211473, - [SMALL_STATE(3823)] = 211541, - [SMALL_STATE(3824)] = 211609, - [SMALL_STATE(3825)] = 211677, - [SMALL_STATE(3826)] = 211745, - [SMALL_STATE(3827)] = 211813, - [SMALL_STATE(3828)] = 211881, - [SMALL_STATE(3829)] = 211949, - [SMALL_STATE(3830)] = 212017, - [SMALL_STATE(3831)] = 212085, - [SMALL_STATE(3832)] = 212153, - [SMALL_STATE(3833)] = 212221, - [SMALL_STATE(3834)] = 212289, - [SMALL_STATE(3835)] = 212357, - [SMALL_STATE(3836)] = 212425, - [SMALL_STATE(3837)] = 212493, - [SMALL_STATE(3838)] = 212561, - [SMALL_STATE(3839)] = 212629, - [SMALL_STATE(3840)] = 212697, - [SMALL_STATE(3841)] = 212765, - [SMALL_STATE(3842)] = 212837, - [SMALL_STATE(3843)] = 212909, - [SMALL_STATE(3844)] = 212977, - [SMALL_STATE(3845)] = 213045, - [SMALL_STATE(3846)] = 213113, - [SMALL_STATE(3847)] = 213181, - [SMALL_STATE(3848)] = 213249, - [SMALL_STATE(3849)] = 213317, - [SMALL_STATE(3850)] = 213385, - [SMALL_STATE(3851)] = 213453, - [SMALL_STATE(3852)] = 213521, - [SMALL_STATE(3853)] = 213589, - [SMALL_STATE(3854)] = 213657, - [SMALL_STATE(3855)] = 213725, - [SMALL_STATE(3856)] = 213793, - [SMALL_STATE(3857)] = 213861, - [SMALL_STATE(3858)] = 213929, - [SMALL_STATE(3859)] = 213997, - [SMALL_STATE(3860)] = 214065, - [SMALL_STATE(3861)] = 214133, - [SMALL_STATE(3862)] = 214201, - [SMALL_STATE(3863)] = 214269, - [SMALL_STATE(3864)] = 214337, - [SMALL_STATE(3865)] = 214409, - [SMALL_STATE(3866)] = 214481, - [SMALL_STATE(3867)] = 214549, - [SMALL_STATE(3868)] = 214617, - [SMALL_STATE(3869)] = 214685, - [SMALL_STATE(3870)] = 214753, - [SMALL_STATE(3871)] = 214821, - [SMALL_STATE(3872)] = 214889, - [SMALL_STATE(3873)] = 214957, - [SMALL_STATE(3874)] = 215025, - [SMALL_STATE(3875)] = 215093, - [SMALL_STATE(3876)] = 215161, - [SMALL_STATE(3877)] = 215233, - [SMALL_STATE(3878)] = 215305, - [SMALL_STATE(3879)] = 215373, - [SMALL_STATE(3880)] = 215441, - [SMALL_STATE(3881)] = 215509, - [SMALL_STATE(3882)] = 215577, - [SMALL_STATE(3883)] = 215645, - [SMALL_STATE(3884)] = 215713, - [SMALL_STATE(3885)] = 215781, - [SMALL_STATE(3886)] = 215849, - [SMALL_STATE(3887)] = 215921, - [SMALL_STATE(3888)] = 215993, - [SMALL_STATE(3889)] = 216067, - [SMALL_STATE(3890)] = 216135, - [SMALL_STATE(3891)] = 216207, - [SMALL_STATE(3892)] = 216279, - [SMALL_STATE(3893)] = 216347, - [SMALL_STATE(3894)] = 216415, - [SMALL_STATE(3895)] = 216483, - [SMALL_STATE(3896)] = 216555, - [SMALL_STATE(3897)] = 216627, - [SMALL_STATE(3898)] = 216695, - [SMALL_STATE(3899)] = 216767, - [SMALL_STATE(3900)] = 216839, - [SMALL_STATE(3901)] = 216907, - [SMALL_STATE(3902)] = 216979, - [SMALL_STATE(3903)] = 217051, - [SMALL_STATE(3904)] = 217119, - [SMALL_STATE(3905)] = 217191, - [SMALL_STATE(3906)] = 217263, - [SMALL_STATE(3907)] = 217331, - [SMALL_STATE(3908)] = 217399, - [SMALL_STATE(3909)] = 217467, - [SMALL_STATE(3910)] = 217539, - [SMALL_STATE(3911)] = 217611, - [SMALL_STATE(3912)] = 217679, - [SMALL_STATE(3913)] = 217751, - [SMALL_STATE(3914)] = 217819, - [SMALL_STATE(3915)] = 217891, - [SMALL_STATE(3916)] = 217959, - [SMALL_STATE(3917)] = 218031, - [SMALL_STATE(3918)] = 218103, - [SMALL_STATE(3919)] = 218171, - [SMALL_STATE(3920)] = 218243, - [SMALL_STATE(3921)] = 218315, - [SMALL_STATE(3922)] = 218383, - [SMALL_STATE(3923)] = 218455, - [SMALL_STATE(3924)] = 218527, - [SMALL_STATE(3925)] = 218595, - [SMALL_STATE(3926)] = 218667, - [SMALL_STATE(3927)] = 218735, - [SMALL_STATE(3928)] = 218807, - [SMALL_STATE(3929)] = 218875, - [SMALL_STATE(3930)] = 218947, - [SMALL_STATE(3931)] = 219015, - [SMALL_STATE(3932)] = 219087, - [SMALL_STATE(3933)] = 219155, - [SMALL_STATE(3934)] = 219227, - [SMALL_STATE(3935)] = 219299, - [SMALL_STATE(3936)] = 219367, - [SMALL_STATE(3937)] = 219439, - [SMALL_STATE(3938)] = 219511, - [SMALL_STATE(3939)] = 219579, - [SMALL_STATE(3940)] = 219651, - [SMALL_STATE(3941)] = 219719, - [SMALL_STATE(3942)] = 219791, - [SMALL_STATE(3943)] = 219863, - [SMALL_STATE(3944)] = 219931, - [SMALL_STATE(3945)] = 220003, - [SMALL_STATE(3946)] = 220075, - [SMALL_STATE(3947)] = 220143, - [SMALL_STATE(3948)] = 220211, - [SMALL_STATE(3949)] = 220279, - [SMALL_STATE(3950)] = 220347, - [SMALL_STATE(3951)] = 220415, - [SMALL_STATE(3952)] = 220483, - [SMALL_STATE(3953)] = 220551, - [SMALL_STATE(3954)] = 220619, - [SMALL_STATE(3955)] = 220687, - [SMALL_STATE(3956)] = 220755, - [SMALL_STATE(3957)] = 220823, - [SMALL_STATE(3958)] = 220891, - [SMALL_STATE(3959)] = 220959, - [SMALL_STATE(3960)] = 221027, - [SMALL_STATE(3961)] = 221095, - [SMALL_STATE(3962)] = 221163, - [SMALL_STATE(3963)] = 221231, - [SMALL_STATE(3964)] = 221299, - [SMALL_STATE(3965)] = 221367, - [SMALL_STATE(3966)] = 221435, - [SMALL_STATE(3967)] = 221503, - [SMALL_STATE(3968)] = 221571, - [SMALL_STATE(3969)] = 221639, - [SMALL_STATE(3970)] = 221707, - [SMALL_STATE(3971)] = 221775, - [SMALL_STATE(3972)] = 221843, - [SMALL_STATE(3973)] = 221911, - [SMALL_STATE(3974)] = 221979, - [SMALL_STATE(3975)] = 222047, - [SMALL_STATE(3976)] = 222115, - [SMALL_STATE(3977)] = 222183, - [SMALL_STATE(3978)] = 222251, - [SMALL_STATE(3979)] = 222319, - [SMALL_STATE(3980)] = 222387, - [SMALL_STATE(3981)] = 222455, - [SMALL_STATE(3982)] = 222523, - [SMALL_STATE(3983)] = 222591, - [SMALL_STATE(3984)] = 222659, - [SMALL_STATE(3985)] = 222727, - [SMALL_STATE(3986)] = 222795, - [SMALL_STATE(3987)] = 222863, - [SMALL_STATE(3988)] = 222931, - [SMALL_STATE(3989)] = 222999, - [SMALL_STATE(3990)] = 223067, - [SMALL_STATE(3991)] = 223135, - [SMALL_STATE(3992)] = 223209, - [SMALL_STATE(3993)] = 223283, - [SMALL_STATE(3994)] = 223351, - [SMALL_STATE(3995)] = 223425, - [SMALL_STATE(3996)] = 223499, - [SMALL_STATE(3997)] = 223567, - [SMALL_STATE(3998)] = 223635, - [SMALL_STATE(3999)] = 223707, - [SMALL_STATE(4000)] = 223779, - [SMALL_STATE(4001)] = 223851, - [SMALL_STATE(4002)] = 223923, - [SMALL_STATE(4003)] = 223995, - [SMALL_STATE(4004)] = 224067, - [SMALL_STATE(4005)] = 224135, - [SMALL_STATE(4006)] = 224207, - [SMALL_STATE(4007)] = 224279, - [SMALL_STATE(4008)] = 224347, - [SMALL_STATE(4009)] = 224421, - [SMALL_STATE(4010)] = 224495, - [SMALL_STATE(4011)] = 224569, - [SMALL_STATE(4012)] = 224643, - [SMALL_STATE(4013)] = 224711, - [SMALL_STATE(4014)] = 224779, - [SMALL_STATE(4015)] = 224847, - [SMALL_STATE(4016)] = 224919, - [SMALL_STATE(4017)] = 224991, - [SMALL_STATE(4018)] = 225063, - [SMALL_STATE(4019)] = 225135, - [SMALL_STATE(4020)] = 225207, - [SMALL_STATE(4021)] = 225279, - [SMALL_STATE(4022)] = 225351, - [SMALL_STATE(4023)] = 225423, - [SMALL_STATE(4024)] = 225491, - [SMALL_STATE(4025)] = 225565, - [SMALL_STATE(4026)] = 225639, - [SMALL_STATE(4027)] = 225707, - [SMALL_STATE(4028)] = 225779, - [SMALL_STATE(4029)] = 225851, - [SMALL_STATE(4030)] = 225923, - [SMALL_STATE(4031)] = 225995, - [SMALL_STATE(4032)] = 226069, - [SMALL_STATE(4033)] = 226143, - [SMALL_STATE(4034)] = 226211, - [SMALL_STATE(4035)] = 226279, - [SMALL_STATE(4036)] = 226351, - [SMALL_STATE(4037)] = 226423, - [SMALL_STATE(4038)] = 226495, - [SMALL_STATE(4039)] = 226567, - [SMALL_STATE(4040)] = 226641, - [SMALL_STATE(4041)] = 226715, - [SMALL_STATE(4042)] = 226789, - [SMALL_STATE(4043)] = 226863, - [SMALL_STATE(4044)] = 226937, - [SMALL_STATE(4045)] = 227011, - [SMALL_STATE(4046)] = 227079, - [SMALL_STATE(4047)] = 227153, - [SMALL_STATE(4048)] = 227227, - [SMALL_STATE(4049)] = 227295, - [SMALL_STATE(4050)] = 227369, - [SMALL_STATE(4051)] = 227443, - [SMALL_STATE(4052)] = 227517, - [SMALL_STATE(4053)] = 227591, - [SMALL_STATE(4054)] = 227665, - [SMALL_STATE(4055)] = 227739, - [SMALL_STATE(4056)] = 227813, - [SMALL_STATE(4057)] = 227887, - [SMALL_STATE(4058)] = 227961, - [SMALL_STATE(4059)] = 228035, - [SMALL_STATE(4060)] = 228109, - [SMALL_STATE(4061)] = 228183, - [SMALL_STATE(4062)] = 228257, - [SMALL_STATE(4063)] = 228331, - [SMALL_STATE(4064)] = 228405, - [SMALL_STATE(4065)] = 228473, - [SMALL_STATE(4066)] = 228547, - [SMALL_STATE(4067)] = 228621, - [SMALL_STATE(4068)] = 228695, - [SMALL_STATE(4069)] = 228763, - [SMALL_STATE(4070)] = 228837, - [SMALL_STATE(4071)] = 228911, - [SMALL_STATE(4072)] = 228985, - [SMALL_STATE(4073)] = 229059, - [SMALL_STATE(4074)] = 229133, - [SMALL_STATE(4075)] = 229207, - [SMALL_STATE(4076)] = 229281, - [SMALL_STATE(4077)] = 229355, - [SMALL_STATE(4078)] = 229429, - [SMALL_STATE(4079)] = 229503, - [SMALL_STATE(4080)] = 229577, - [SMALL_STATE(4081)] = 229651, - [SMALL_STATE(4082)] = 229719, - [SMALL_STATE(4083)] = 229787, - [SMALL_STATE(4084)] = 229861, - [SMALL_STATE(4085)] = 229935, - [SMALL_STATE(4086)] = 230003, - [SMALL_STATE(4087)] = 230077, - [SMALL_STATE(4088)] = 230151, - [SMALL_STATE(4089)] = 230225, - [SMALL_STATE(4090)] = 230299, - [SMALL_STATE(4091)] = 230373, - [SMALL_STATE(4092)] = 230447, - [SMALL_STATE(4093)] = 230521, - [SMALL_STATE(4094)] = 230595, - [SMALL_STATE(4095)] = 230669, - [SMALL_STATE(4096)] = 230743, - [SMALL_STATE(4097)] = 230817, - [SMALL_STATE(4098)] = 230891, - [SMALL_STATE(4099)] = 230959, - [SMALL_STATE(4100)] = 231033, - [SMALL_STATE(4101)] = 231107, - [SMALL_STATE(4102)] = 231175, - [SMALL_STATE(4103)] = 231249, - [SMALL_STATE(4104)] = 231323, - [SMALL_STATE(4105)] = 231391, - [SMALL_STATE(4106)] = 231465, - [SMALL_STATE(4107)] = 231539, - [SMALL_STATE(4108)] = 231613, - [SMALL_STATE(4109)] = 231687, - [SMALL_STATE(4110)] = 231761, - [SMALL_STATE(4111)] = 231835, - [SMALL_STATE(4112)] = 231903, - [SMALL_STATE(4113)] = 231977, - [SMALL_STATE(4114)] = 232051, - [SMALL_STATE(4115)] = 232125, - [SMALL_STATE(4116)] = 232199, - [SMALL_STATE(4117)] = 232267, - [SMALL_STATE(4118)] = 232341, - [SMALL_STATE(4119)] = 232415, - [SMALL_STATE(4120)] = 232483, - [SMALL_STATE(4121)] = 232557, - [SMALL_STATE(4122)] = 232631, - [SMALL_STATE(4123)] = 232705, - [SMALL_STATE(4124)] = 232779, - [SMALL_STATE(4125)] = 232853, - [SMALL_STATE(4126)] = 232927, - [SMALL_STATE(4127)] = 233001, - [SMALL_STATE(4128)] = 233075, - [SMALL_STATE(4129)] = 233149, - [SMALL_STATE(4130)] = 233223, - [SMALL_STATE(4131)] = 233297, - [SMALL_STATE(4132)] = 233371, - [SMALL_STATE(4133)] = 233445, - [SMALL_STATE(4134)] = 233519, - [SMALL_STATE(4135)] = 233587, - [SMALL_STATE(4136)] = 233659, - [SMALL_STATE(4137)] = 233733, - [SMALL_STATE(4138)] = 233807, - [SMALL_STATE(4139)] = 233875, - [SMALL_STATE(4140)] = 233949, - [SMALL_STATE(4141)] = 234023, - [SMALL_STATE(4142)] = 234097, - [SMALL_STATE(4143)] = 234171, - [SMALL_STATE(4144)] = 234243, - [SMALL_STATE(4145)] = 234317, - [SMALL_STATE(4146)] = 234391, - [SMALL_STATE(4147)] = 234465, - [SMALL_STATE(4148)] = 234539, - [SMALL_STATE(4149)] = 234613, - [SMALL_STATE(4150)] = 234687, - [SMALL_STATE(4151)] = 234761, - [SMALL_STATE(4152)] = 234835, - [SMALL_STATE(4153)] = 234903, - [SMALL_STATE(4154)] = 234977, - [SMALL_STATE(4155)] = 235051, - [SMALL_STATE(4156)] = 235119, - [SMALL_STATE(4157)] = 235193, - [SMALL_STATE(4158)] = 235267, - [SMALL_STATE(4159)] = 235341, - [SMALL_STATE(4160)] = 235415, - [SMALL_STATE(4161)] = 235489, - [SMALL_STATE(4162)] = 235563, - [SMALL_STATE(4163)] = 235637, - [SMALL_STATE(4164)] = 235711, - [SMALL_STATE(4165)] = 235785, - [SMALL_STATE(4166)] = 235859, - [SMALL_STATE(4167)] = 235933, - [SMALL_STATE(4168)] = 236007, - [SMALL_STATE(4169)] = 236075, - [SMALL_STATE(4170)] = 236149, - [SMALL_STATE(4171)] = 236223, - [SMALL_STATE(4172)] = 236291, - [SMALL_STATE(4173)] = 236365, - [SMALL_STATE(4174)] = 236439, - [SMALL_STATE(4175)] = 236513, - [SMALL_STATE(4176)] = 236587, - [SMALL_STATE(4177)] = 236661, - [SMALL_STATE(4178)] = 236735, - [SMALL_STATE(4179)] = 236809, - [SMALL_STATE(4180)] = 236883, - [SMALL_STATE(4181)] = 236957, - [SMALL_STATE(4182)] = 237031, - [SMALL_STATE(4183)] = 237105, - [SMALL_STATE(4184)] = 237179, - [SMALL_STATE(4185)] = 237247, - [SMALL_STATE(4186)] = 237315, - [SMALL_STATE(4187)] = 237383, - [SMALL_STATE(4188)] = 237451, - [SMALL_STATE(4189)] = 237519, - [SMALL_STATE(4190)] = 237591, - [SMALL_STATE(4191)] = 237665, - [SMALL_STATE(4192)] = 237739, - [SMALL_STATE(4193)] = 237813, - [SMALL_STATE(4194)] = 237881, - [SMALL_STATE(4195)] = 237949, - [SMALL_STATE(4196)] = 238017, - [SMALL_STATE(4197)] = 238091, - [SMALL_STATE(4198)] = 238165, - [SMALL_STATE(4199)] = 238233, - [SMALL_STATE(4200)] = 238307, - [SMALL_STATE(4201)] = 238375, - [SMALL_STATE(4202)] = 238443, - [SMALL_STATE(4203)] = 238517, - [SMALL_STATE(4204)] = 238585, - [SMALL_STATE(4205)] = 238653, - [SMALL_STATE(4206)] = 238725, - [SMALL_STATE(4207)] = 238793, - [SMALL_STATE(4208)] = 238861, - [SMALL_STATE(4209)] = 238929, - [SMALL_STATE(4210)] = 238997, - [SMALL_STATE(4211)] = 239065, - [SMALL_STATE(4212)] = 239133, - [SMALL_STATE(4213)] = 239205, - [SMALL_STATE(4214)] = 239273, - [SMALL_STATE(4215)] = 239341, - [SMALL_STATE(4216)] = 239413, - [SMALL_STATE(4217)] = 239460, - [SMALL_STATE(4218)] = 239517, - [SMALL_STATE(4219)] = 239592, - [SMALL_STATE(4220)] = 239649, - [SMALL_STATE(4221)] = 239692, - [SMALL_STATE(4222)] = 239735, - [SMALL_STATE(4223)] = 239778, - [SMALL_STATE(4224)] = 239853, - [SMALL_STATE(4225)] = 239898, - [SMALL_STATE(4226)] = 239945, - [SMALL_STATE(4227)] = 240020, - [SMALL_STATE(4228)] = 240095, - [SMALL_STATE(4229)] = 240160, - [SMALL_STATE(4230)] = 240202, - [SMALL_STATE(4231)] = 240244, - [SMALL_STATE(4232)] = 240300, - [SMALL_STATE(4233)] = 240342, - [SMALL_STATE(4234)] = 240384, - [SMALL_STATE(4235)] = 240426, - [SMALL_STATE(4236)] = 240470, - [SMALL_STATE(4237)] = 240542, - [SMALL_STATE(4238)] = 240584, - [SMALL_STATE(4239)] = 240626, - [SMALL_STATE(4240)] = 240668, - [SMALL_STATE(4241)] = 240710, - [SMALL_STATE(4242)] = 240752, - [SMALL_STATE(4243)] = 240794, - [SMALL_STATE(4244)] = 240836, - [SMALL_STATE(4245)] = 240878, - [SMALL_STATE(4246)] = 240920, - [SMALL_STATE(4247)] = 240962, - [SMALL_STATE(4248)] = 241004, - [SMALL_STATE(4249)] = 241046, - [SMALL_STATE(4250)] = 241118, - [SMALL_STATE(4251)] = 241164, - [SMALL_STATE(4252)] = 241206, - [SMALL_STATE(4253)] = 241262, - [SMALL_STATE(4254)] = 241304, - [SMALL_STATE(4255)] = 241350, - [SMALL_STATE(4256)] = 241392, - [SMALL_STATE(4257)] = 241434, - [SMALL_STATE(4258)] = 241476, - [SMALL_STATE(4259)] = 241518, - [SMALL_STATE(4260)] = 241560, - [SMALL_STATE(4261)] = 241632, - [SMALL_STATE(4262)] = 241671, - [SMALL_STATE(4263)] = 241706, - [SMALL_STATE(4264)] = 241749, - [SMALL_STATE(4265)] = 241784, - [SMALL_STATE(4266)] = 241829, - [SMALL_STATE(4267)] = 241874, - [SMALL_STATE(4268)] = 241915, - [SMALL_STATE(4269)] = 241956, - [SMALL_STATE(4270)] = 241991, - [SMALL_STATE(4271)] = 242026, - [SMALL_STATE(4272)] = 242067, - [SMALL_STATE(4273)] = 242106, - [SMALL_STATE(4274)] = 242141, - [SMALL_STATE(4275)] = 242178, - [SMALL_STATE(4276)] = 242219, - [SMALL_STATE(4277)] = 242260, - [SMALL_STATE(4278)] = 242295, - [SMALL_STATE(4279)] = 242332, - [SMALL_STATE(4280)] = 242367, - [SMALL_STATE(4281)] = 242402, - [SMALL_STATE(4282)] = 242437, - [SMALL_STATE(4283)] = 242472, - [SMALL_STATE(4284)] = 242513, - [SMALL_STATE(4285)] = 242554, - [SMALL_STATE(4286)] = 242595, - [SMALL_STATE(4287)] = 242636, - [SMALL_STATE(4288)] = 242677, - [SMALL_STATE(4289)] = 242712, - [SMALL_STATE(4290)] = 242749, - [SMALL_STATE(4291)] = 242786, - [SMALL_STATE(4292)] = 242821, - [SMALL_STATE(4293)] = 242860, - [SMALL_STATE(4294)] = 242905, - [SMALL_STATE(4295)] = 242946, - [SMALL_STATE(4296)] = 242987, - [SMALL_STATE(4297)] = 243030, - [SMALL_STATE(4298)] = 243065, - [SMALL_STATE(4299)] = 243100, - [SMALL_STATE(4300)] = 243135, - [SMALL_STATE(4301)] = 243170, - [SMALL_STATE(4302)] = 243205, - [SMALL_STATE(4303)] = 243240, - [SMALL_STATE(4304)] = 243275, - [SMALL_STATE(4305)] = 243310, - [SMALL_STATE(4306)] = 243345, - [SMALL_STATE(4307)] = 243386, - [SMALL_STATE(4308)] = 243427, - [SMALL_STATE(4309)] = 243468, - [SMALL_STATE(4310)] = 243513, - [SMALL_STATE(4311)] = 243548, - [SMALL_STATE(4312)] = 243603, - [SMALL_STATE(4313)] = 243644, - [SMALL_STATE(4314)] = 243683, - [SMALL_STATE(4315)] = 243718, - [SMALL_STATE(4316)] = 243753, - [SMALL_STATE(4317)] = 243788, - [SMALL_STATE(4318)] = 243827, - [SMALL_STATE(4319)] = 243862, - [SMALL_STATE(4320)] = 243897, - [SMALL_STATE(4321)] = 243938, - [SMALL_STATE(4322)] = 243977, - [SMALL_STATE(4323)] = 244012, - [SMALL_STATE(4324)] = 244053, - [SMALL_STATE(4325)] = 244088, - [SMALL_STATE(4326)] = 244123, - [SMALL_STATE(4327)] = 244164, - [SMALL_STATE(4328)] = 244205, - [SMALL_STATE(4329)] = 244246, - [SMALL_STATE(4330)] = 244281, - [SMALL_STATE(4331)] = 244316, - [SMALL_STATE(4332)] = 244357, - [SMALL_STATE(4333)] = 244392, - [SMALL_STATE(4334)] = 244433, - [SMALL_STATE(4335)] = 244468, - [SMALL_STATE(4336)] = 244513, - [SMALL_STATE(4337)] = 244554, - [SMALL_STATE(4338)] = 244593, - [SMALL_STATE(4339)] = 244628, - [SMALL_STATE(4340)] = 244669, - [SMALL_STATE(4341)] = 244708, - [SMALL_STATE(4342)] = 244743, - [SMALL_STATE(4343)] = 244784, - [SMALL_STATE(4344)] = 244825, - [SMALL_STATE(4345)] = 244866, - [SMALL_STATE(4346)] = 244901, - [SMALL_STATE(4347)] = 244942, - [SMALL_STATE(4348)] = 244977, - [SMALL_STATE(4349)] = 245018, - [SMALL_STATE(4350)] = 245053, - [SMALL_STATE(4351)] = 245104, - [SMALL_STATE(4352)] = 245139, - [SMALL_STATE(4353)] = 245174, - [SMALL_STATE(4354)] = 245209, - [SMALL_STATE(4355)] = 245250, - [SMALL_STATE(4356)] = 245291, - [SMALL_STATE(4357)] = 245332, - [SMALL_STATE(4358)] = 245373, - [SMALL_STATE(4359)] = 245414, - [SMALL_STATE(4360)] = 245449, - [SMALL_STATE(4361)] = 245484, - [SMALL_STATE(4362)] = 245523, - [SMALL_STATE(4363)] = 245562, - [SMALL_STATE(4364)] = 245597, - [SMALL_STATE(4365)] = 245636, - [SMALL_STATE(4366)] = 245671, - [SMALL_STATE(4367)] = 245706, - [SMALL_STATE(4368)] = 245741, - [SMALL_STATE(4369)] = 245776, - [SMALL_STATE(4370)] = 245817, - [SMALL_STATE(4371)] = 245852, - [SMALL_STATE(4372)] = 245893, - [SMALL_STATE(4373)] = 245934, - [SMALL_STATE(4374)] = 245973, - [SMALL_STATE(4375)] = 246024, - [SMALL_STATE(4376)] = 246079, - [SMALL_STATE(4377)] = 246114, - [SMALL_STATE(4378)] = 246149, - [SMALL_STATE(4379)] = 246188, - [SMALL_STATE(4380)] = 246223, - [SMALL_STATE(4381)] = 246278, - [SMALL_STATE(4382)] = 246315, - [SMALL_STATE(4383)] = 246350, - [SMALL_STATE(4384)] = 246385, - [SMALL_STATE(4385)] = 246420, - [SMALL_STATE(4386)] = 246455, - [SMALL_STATE(4387)] = 246490, - [SMALL_STATE(4388)] = 246525, - [SMALL_STATE(4389)] = 246560, - [SMALL_STATE(4390)] = 246605, - [SMALL_STATE(4391)] = 246660, - [SMALL_STATE(4392)] = 246695, - [SMALL_STATE(4393)] = 246730, - [SMALL_STATE(4394)] = 246765, - [SMALL_STATE(4395)] = 246800, - [SMALL_STATE(4396)] = 246839, - [SMALL_STATE(4397)] = 246894, - [SMALL_STATE(4398)] = 246929, - [SMALL_STATE(4399)] = 246984, - [SMALL_STATE(4400)] = 247019, - [SMALL_STATE(4401)] = 247054, - [SMALL_STATE(4402)] = 247089, - [SMALL_STATE(4403)] = 247124, - [SMALL_STATE(4404)] = 247159, - [SMALL_STATE(4405)] = 247202, - [SMALL_STATE(4406)] = 247237, - [SMALL_STATE(4407)] = 247272, - [SMALL_STATE(4408)] = 247317, - [SMALL_STATE(4409)] = 247352, - [SMALL_STATE(4410)] = 247387, - [SMALL_STATE(4411)] = 247422, - [SMALL_STATE(4412)] = 247457, - [SMALL_STATE(4413)] = 247496, - [SMALL_STATE(4414)] = 247537, - [SMALL_STATE(4415)] = 247578, - [SMALL_STATE(4416)] = 247616, - [SMALL_STATE(4417)] = 247650, - [SMALL_STATE(4418)] = 247690, - [SMALL_STATE(4419)] = 247730, - [SMALL_STATE(4420)] = 247764, - [SMALL_STATE(4421)] = 247798, - [SMALL_STATE(4422)] = 247832, - [SMALL_STATE(4423)] = 247870, - [SMALL_STATE(4424)] = 247904, - [SMALL_STATE(4425)] = 247938, - [SMALL_STATE(4426)] = 247972, - [SMALL_STATE(4427)] = 248012, - [SMALL_STATE(4428)] = 248052, - [SMALL_STATE(4429)] = 248086, - [SMALL_STATE(4430)] = 248124, - [SMALL_STATE(4431)] = 248168, - [SMALL_STATE(4432)] = 248212, - [SMALL_STATE(4433)] = 248264, - [SMALL_STATE(4434)] = 248302, - [SMALL_STATE(4435)] = 248346, - [SMALL_STATE(4436)] = 248384, - [SMALL_STATE(4437)] = 248420, - [SMALL_STATE(4438)] = 248460, - [SMALL_STATE(4439)] = 248494, - [SMALL_STATE(4440)] = 248528, - [SMALL_STATE(4441)] = 248566, - [SMALL_STATE(4442)] = 248606, - [SMALL_STATE(4443)] = 248646, - [SMALL_STATE(4444)] = 248684, - [SMALL_STATE(4445)] = 248718, - [SMALL_STATE(4446)] = 248752, - [SMALL_STATE(4447)] = 248786, - [SMALL_STATE(4448)] = 248830, - [SMALL_STATE(4449)] = 248864, - [SMALL_STATE(4450)] = 248898, - [SMALL_STATE(4451)] = 248932, - [SMALL_STATE(4452)] = 248966, - [SMALL_STATE(4453)] = 249010, - [SMALL_STATE(4454)] = 249044, - [SMALL_STATE(4455)] = 249078, - [SMALL_STATE(4456)] = 249112, - [SMALL_STATE(4457)] = 249146, - [SMALL_STATE(4458)] = 249186, - [SMALL_STATE(4459)] = 249226, - [SMALL_STATE(4460)] = 249266, - [SMALL_STATE(4461)] = 249304, - [SMALL_STATE(4462)] = 249344, - [SMALL_STATE(4463)] = 249384, - [SMALL_STATE(4464)] = 249424, - [SMALL_STATE(4465)] = 249458, - [SMALL_STATE(4466)] = 249498, - [SMALL_STATE(4467)] = 249538, - [SMALL_STATE(4468)] = 249572, - [SMALL_STATE(4469)] = 249614, - [SMALL_STATE(4470)] = 249654, - [SMALL_STATE(4471)] = 249688, - [SMALL_STATE(4472)] = 249722, - [SMALL_STATE(4473)] = 249756, - [SMALL_STATE(4474)] = 249796, - [SMALL_STATE(4475)] = 249830, - [SMALL_STATE(4476)] = 249870, - [SMALL_STATE(4477)] = 249904, - [SMALL_STATE(4478)] = 249938, - [SMALL_STATE(4479)] = 249972, - [SMALL_STATE(4480)] = 250012, - [SMALL_STATE(4481)] = 250046, - [SMALL_STATE(4482)] = 250080, - [SMALL_STATE(4483)] = 250114, - [SMALL_STATE(4484)] = 250148, - [SMALL_STATE(4485)] = 250188, - [SMALL_STATE(4486)] = 250228, - [SMALL_STATE(4487)] = 250262, - [SMALL_STATE(4488)] = 250296, - [SMALL_STATE(4489)] = 250330, - [SMALL_STATE(4490)] = 250370, - [SMALL_STATE(4491)] = 250410, - [SMALL_STATE(4492)] = 250444, - [SMALL_STATE(4493)] = 250494, - [SMALL_STATE(4494)] = 250528, - [SMALL_STATE(4495)] = 250568, - [SMALL_STATE(4496)] = 250612, - [SMALL_STATE(4497)] = 250646, - [SMALL_STATE(4498)] = 250686, - [SMALL_STATE(4499)] = 250726, - [SMALL_STATE(4500)] = 250766, - [SMALL_STATE(4501)] = 250806, - [SMALL_STATE(4502)] = 250846, - [SMALL_STATE(4503)] = 250898, - [SMALL_STATE(4504)] = 250936, - [SMALL_STATE(4505)] = 250980, - [SMALL_STATE(4506)] = 251018, - [SMALL_STATE(4507)] = 251052, - [SMALL_STATE(4508)] = 251086, - [SMALL_STATE(4509)] = 251120, - [SMALL_STATE(4510)] = 251164, - [SMALL_STATE(4511)] = 251198, - [SMALL_STATE(4512)] = 251232, - [SMALL_STATE(4513)] = 251282, - [SMALL_STATE(4514)] = 251316, - [SMALL_STATE(4515)] = 251360, - [SMALL_STATE(4516)] = 251394, - [SMALL_STATE(4517)] = 251428, - [SMALL_STATE(4518)] = 251462, - [SMALL_STATE(4519)] = 251496, - [SMALL_STATE(4520)] = 251530, - [SMALL_STATE(4521)] = 251568, - [SMALL_STATE(4522)] = 251602, - [SMALL_STATE(4523)] = 251636, - [SMALL_STATE(4524)] = 251670, - [SMALL_STATE(4525)] = 251710, - [SMALL_STATE(4526)] = 251748, - [SMALL_STATE(4527)] = 251788, - [SMALL_STATE(4528)] = 251826, - [SMALL_STATE(4529)] = 251860, - [SMALL_STATE(4530)] = 251900, - [SMALL_STATE(4531)] = 251940, - [SMALL_STATE(4532)] = 251978, - [SMALL_STATE(4533)] = 252018, - [SMALL_STATE(4534)] = 252058, - [SMALL_STATE(4535)] = 252092, - [SMALL_STATE(4536)] = 252126, - [SMALL_STATE(4537)] = 252164, - [SMALL_STATE(4538)] = 252204, - [SMALL_STATE(4539)] = 252242, - [SMALL_STATE(4540)] = 252282, - [SMALL_STATE(4541)] = 252326, - [SMALL_STATE(4542)] = 252370, - [SMALL_STATE(4543)] = 252404, - [SMALL_STATE(4544)] = 252444, - [SMALL_STATE(4545)] = 252478, - [SMALL_STATE(4546)] = 252512, - [SMALL_STATE(4547)] = 252564, - [SMALL_STATE(4548)] = 252602, - [SMALL_STATE(4549)] = 252636, - [SMALL_STATE(4550)] = 252674, - [SMALL_STATE(4551)] = 252714, - [SMALL_STATE(4552)] = 252748, - [SMALL_STATE(4553)] = 252788, - [SMALL_STATE(4554)] = 252822, - [SMALL_STATE(4555)] = 252856, - [SMALL_STATE(4556)] = 252890, - [SMALL_STATE(4557)] = 252930, - [SMALL_STATE(4558)] = 252982, - [SMALL_STATE(4559)] = 253016, - [SMALL_STATE(4560)] = 253050, - [SMALL_STATE(4561)] = 253084, - [SMALL_STATE(4562)] = 253118, - [SMALL_STATE(4563)] = 253158, - [SMALL_STATE(4564)] = 253192, - [SMALL_STATE(4565)] = 253226, - [SMALL_STATE(4566)] = 253260, - [SMALL_STATE(4567)] = 253294, - [SMALL_STATE(4568)] = 253328, - [SMALL_STATE(4569)] = 253362, - [SMALL_STATE(4570)] = 253402, - [SMALL_STATE(4571)] = 253442, - [SMALL_STATE(4572)] = 253482, - [SMALL_STATE(4573)] = 253522, - [SMALL_STATE(4574)] = 253562, - [SMALL_STATE(4575)] = 253602, - [SMALL_STATE(4576)] = 253642, - [SMALL_STATE(4577)] = 253682, - [SMALL_STATE(4578)] = 253722, - [SMALL_STATE(4579)] = 253762, - [SMALL_STATE(4580)] = 253802, - [SMALL_STATE(4581)] = 253842, - [SMALL_STATE(4582)] = 253882, - [SMALL_STATE(4583)] = 253922, - [SMALL_STATE(4584)] = 253962, - [SMALL_STATE(4585)] = 254002, - [SMALL_STATE(4586)] = 254036, - [SMALL_STATE(4587)] = 254076, - [SMALL_STATE(4588)] = 254110, - [SMALL_STATE(4589)] = 254144, - [SMALL_STATE(4590)] = 254178, - [SMALL_STATE(4591)] = 254212, - [SMALL_STATE(4592)] = 254246, - [SMALL_STATE(4593)] = 254280, - [SMALL_STATE(4594)] = 254320, - [SMALL_STATE(4595)] = 254354, - [SMALL_STATE(4596)] = 254394, - [SMALL_STATE(4597)] = 254434, - [SMALL_STATE(4598)] = 254474, - [SMALL_STATE(4599)] = 254514, - [SMALL_STATE(4600)] = 254554, - [SMALL_STATE(4601)] = 254594, - [SMALL_STATE(4602)] = 254634, - [SMALL_STATE(4603)] = 254674, - [SMALL_STATE(4604)] = 254714, - [SMALL_STATE(4605)] = 254754, - [SMALL_STATE(4606)] = 254794, - [SMALL_STATE(4607)] = 254828, - [SMALL_STATE(4608)] = 254867, - [SMALL_STATE(4609)] = 254926, - [SMALL_STATE(4610)] = 254991, - [SMALL_STATE(4611)] = 255034, - [SMALL_STATE(4612)] = 255093, - [SMALL_STATE(4613)] = 255126, - [SMALL_STATE(4614)] = 255159, - [SMALL_STATE(4615)] = 255192, - [SMALL_STATE(4616)] = 255251, - [SMALL_STATE(4617)] = 255284, - [SMALL_STATE(4618)] = 255349, - [SMALL_STATE(4619)] = 255382, - [SMALL_STATE(4620)] = 255421, - [SMALL_STATE(4621)] = 255460, - [SMALL_STATE(4622)] = 255519, - [SMALL_STATE(4623)] = 255552, - [SMALL_STATE(4624)] = 255617, - [SMALL_STATE(4625)] = 255676, - [SMALL_STATE(4626)] = 255709, - [SMALL_STATE(4627)] = 255752, - [SMALL_STATE(4628)] = 255795, - [SMALL_STATE(4629)] = 255854, - [SMALL_STATE(4630)] = 255887, - [SMALL_STATE(4631)] = 255920, - [SMALL_STATE(4632)] = 255953, - [SMALL_STATE(4633)] = 256012, - [SMALL_STATE(4634)] = 256071, - [SMALL_STATE(4635)] = 256114, - [SMALL_STATE(4636)] = 256163, - [SMALL_STATE(4637)] = 256196, - [SMALL_STATE(4638)] = 256255, - [SMALL_STATE(4639)] = 256314, - [SMALL_STATE(4640)] = 256347, - [SMALL_STATE(4641)] = 256380, - [SMALL_STATE(4642)] = 256439, - [SMALL_STATE(4643)] = 256476, - [SMALL_STATE(4644)] = 256509, - [SMALL_STATE(4645)] = 256542, - [SMALL_STATE(4646)] = 256579, - [SMALL_STATE(4647)] = 256638, - [SMALL_STATE(4648)] = 256677, - [SMALL_STATE(4649)] = 256716, - [SMALL_STATE(4650)] = 256755, - [SMALL_STATE(4651)] = 256794, - [SMALL_STATE(4652)] = 256833, - [SMALL_STATE(4653)] = 256892, - [SMALL_STATE(4654)] = 256951, - [SMALL_STATE(4655)] = 257010, - [SMALL_STATE(4656)] = 257069, - [SMALL_STATE(4657)] = 257118, - [SMALL_STATE(4658)] = 257151, - [SMALL_STATE(4659)] = 257216, - [SMALL_STATE(4660)] = 257249, - [SMALL_STATE(4661)] = 257308, - [SMALL_STATE(4662)] = 257347, - [SMALL_STATE(4663)] = 257380, - [SMALL_STATE(4664)] = 257419, - [SMALL_STATE(4665)] = 257456, - [SMALL_STATE(4666)] = 257495, - [SMALL_STATE(4667)] = 257534, - [SMALL_STATE(4668)] = 257593, - [SMALL_STATE(4669)] = 257626, - [SMALL_STATE(4670)] = 257669, - [SMALL_STATE(4671)] = 257712, - [SMALL_STATE(4672)] = 257771, - [SMALL_STATE(4673)] = 257810, - [SMALL_STATE(4674)] = 257843, - [SMALL_STATE(4675)] = 257882, - [SMALL_STATE(4676)] = 257941, - [SMALL_STATE(4677)] = 257988, - [SMALL_STATE(4678)] = 258031, - [SMALL_STATE(4679)] = 258068, - [SMALL_STATE(4680)] = 258101, - [SMALL_STATE(4681)] = 258136, - [SMALL_STATE(4682)] = 258173, - [SMALL_STATE(4683)] = 258216, - [SMALL_STATE(4684)] = 258259, - [SMALL_STATE(4685)] = 258318, - [SMALL_STATE(4686)] = 258361, - [SMALL_STATE(4687)] = 258420, - [SMALL_STATE(4688)] = 258485, - [SMALL_STATE(4689)] = 258544, - [SMALL_STATE(4690)] = 258577, - [SMALL_STATE(4691)] = 258636, - [SMALL_STATE(4692)] = 258695, - [SMALL_STATE(4693)] = 258744, - [SMALL_STATE(4694)] = 258777, - [SMALL_STATE(4695)] = 258816, - [SMALL_STATE(4696)] = 258849, - [SMALL_STATE(4697)] = 258908, - [SMALL_STATE(4698)] = 258967, - [SMALL_STATE(4699)] = 259006, - [SMALL_STATE(4700)] = 259065, - [SMALL_STATE(4701)] = 259124, - [SMALL_STATE(4702)] = 259163, - [SMALL_STATE(4703)] = 259196, - [SMALL_STATE(4704)] = 259229, - [SMALL_STATE(4705)] = 259262, - [SMALL_STATE(4706)] = 259295, - [SMALL_STATE(4707)] = 259332, - [SMALL_STATE(4708)] = 259391, - [SMALL_STATE(4709)] = 259424, - [SMALL_STATE(4710)] = 259457, - [SMALL_STATE(4711)] = 259490, - [SMALL_STATE(4712)] = 259523, - [SMALL_STATE(4713)] = 259582, - [SMALL_STATE(4714)] = 259615, - [SMALL_STATE(4715)] = 259652, - [SMALL_STATE(4716)] = 259685, - [SMALL_STATE(4717)] = 259728, - [SMALL_STATE(4718)] = 259775, - [SMALL_STATE(4719)] = 259808, - [SMALL_STATE(4720)] = 259867, - [SMALL_STATE(4721)] = 259904, - [SMALL_STATE(4722)] = 259937, - [SMALL_STATE(4723)] = 259970, - [SMALL_STATE(4724)] = 260003, - [SMALL_STATE(4725)] = 260036, - [SMALL_STATE(4726)] = 260073, - [SMALL_STATE(4727)] = 260106, - [SMALL_STATE(4728)] = 260139, - [SMALL_STATE(4729)] = 260172, - [SMALL_STATE(4730)] = 260207, - [SMALL_STATE(4731)] = 260266, - [SMALL_STATE(4732)] = 260299, - [SMALL_STATE(4733)] = 260332, - [SMALL_STATE(4734)] = 260375, - [SMALL_STATE(4735)] = 260418, - [SMALL_STATE(4736)] = 260455, - [SMALL_STATE(4737)] = 260520, - [SMALL_STATE(4738)] = 260585, - [SMALL_STATE(4739)] = 260622, - [SMALL_STATE(4740)] = 260681, - [SMALL_STATE(4741)] = 260716, - [SMALL_STATE(4742)] = 260759, - [SMALL_STATE(4743)] = 260792, - [SMALL_STATE(4744)] = 260825, - [SMALL_STATE(4745)] = 260858, - [SMALL_STATE(4746)] = 260917, - [SMALL_STATE(4747)] = 260976, - [SMALL_STATE(4748)] = 261035, - [SMALL_STATE(4749)] = 261078, - [SMALL_STATE(4750)] = 261111, - [SMALL_STATE(4751)] = 261144, - [SMALL_STATE(4752)] = 261177, - [SMALL_STATE(4753)] = 261236, - [SMALL_STATE(4754)] = 261295, - [SMALL_STATE(4755)] = 261354, - [SMALL_STATE(4756)] = 261387, - [SMALL_STATE(4757)] = 261420, - [SMALL_STATE(4758)] = 261479, - [SMALL_STATE(4759)] = 261512, - [SMALL_STATE(4760)] = 261545, - [SMALL_STATE(4761)] = 261604, - [SMALL_STATE(4762)] = 261663, - [SMALL_STATE(4763)] = 261722, - [SMALL_STATE(4764)] = 261755, - [SMALL_STATE(4765)] = 261814, - [SMALL_STATE(4766)] = 261847, - [SMALL_STATE(4767)] = 261880, - [SMALL_STATE(4768)] = 261923, - [SMALL_STATE(4769)] = 261962, - [SMALL_STATE(4770)] = 261995, - [SMALL_STATE(4771)] = 262054, - [SMALL_STATE(4772)] = 262087, - [SMALL_STATE(4773)] = 262120, - [SMALL_STATE(4774)] = 262153, - [SMALL_STATE(4775)] = 262212, - [SMALL_STATE(4776)] = 262271, - [SMALL_STATE(4777)] = 262308, - [SMALL_STATE(4778)] = 262347, - [SMALL_STATE(4779)] = 262406, - [SMALL_STATE(4780)] = 262465, - [SMALL_STATE(4781)] = 262524, - [SMALL_STATE(4782)] = 262573, - [SMALL_STATE(4783)] = 262632, - [SMALL_STATE(4784)] = 262665, - [SMALL_STATE(4785)] = 262724, - [SMALL_STATE(4786)] = 262789, - [SMALL_STATE(4787)] = 262822, - [SMALL_STATE(4788)] = 262881, - [SMALL_STATE(4789)] = 262914, - [SMALL_STATE(4790)] = 262963, - [SMALL_STATE(4791)] = 262996, - [SMALL_STATE(4792)] = 263055, - [SMALL_STATE(4793)] = 263088, - [SMALL_STATE(4794)] = 263121, - [SMALL_STATE(4795)] = 263154, - [SMALL_STATE(4796)] = 263213, - [SMALL_STATE(4797)] = 263246, - [SMALL_STATE(4798)] = 263285, - [SMALL_STATE(4799)] = 263324, - [SMALL_STATE(4800)] = 263363, - [SMALL_STATE(4801)] = 263402, - [SMALL_STATE(4802)] = 263441, - [SMALL_STATE(4803)] = 263480, - [SMALL_STATE(4804)] = 263519, - [SMALL_STATE(4805)] = 263558, - [SMALL_STATE(4806)] = 263591, - [SMALL_STATE(4807)] = 263650, - [SMALL_STATE(4808)] = 263693, - [SMALL_STATE(4809)] = 263726, - [SMALL_STATE(4810)] = 263785, - [SMALL_STATE(4811)] = 263844, - [SMALL_STATE(4812)] = 263903, - [SMALL_STATE(4813)] = 263952, - [SMALL_STATE(4814)] = 264017, - [SMALL_STATE(4815)] = 264076, - [SMALL_STATE(4816)] = 264109, - [SMALL_STATE(4817)] = 264148, - [SMALL_STATE(4818)] = 264207, - [SMALL_STATE(4819)] = 264240, - [SMALL_STATE(4820)] = 264279, - [SMALL_STATE(4821)] = 264338, - [SMALL_STATE(4822)] = 264397, - [SMALL_STATE(4823)] = 264430, - [SMALL_STATE(4824)] = 264463, - [SMALL_STATE(4825)] = 264496, - [SMALL_STATE(4826)] = 264555, - [SMALL_STATE(4827)] = 264588, - [SMALL_STATE(4828)] = 264621, - [SMALL_STATE(4829)] = 264680, - [SMALL_STATE(4830)] = 264719, - [SMALL_STATE(4831)] = 264758, - [SMALL_STATE(4832)] = 264797, - [SMALL_STATE(4833)] = 264836, - [SMALL_STATE(4834)] = 264875, - [SMALL_STATE(4835)] = 264914, - [SMALL_STATE(4836)] = 264953, - [SMALL_STATE(4837)] = 264992, - [SMALL_STATE(4838)] = 265031, - [SMALL_STATE(4839)] = 265070, - [SMALL_STATE(4840)] = 265129, - [SMALL_STATE(4841)] = 265162, - [SMALL_STATE(4842)] = 265195, - [SMALL_STATE(4843)] = 265228, - [SMALL_STATE(4844)] = 265287, - [SMALL_STATE(4845)] = 265346, - [SMALL_STATE(4846)] = 265405, - [SMALL_STATE(4847)] = 265464, - [SMALL_STATE(4848)] = 265503, - [SMALL_STATE(4849)] = 265542, - [SMALL_STATE(4850)] = 265581, - [SMALL_STATE(4851)] = 265620, - [SMALL_STATE(4852)] = 265659, - [SMALL_STATE(4853)] = 265698, - [SMALL_STATE(4854)] = 265737, - [SMALL_STATE(4855)] = 265776, - [SMALL_STATE(4856)] = 265835, - [SMALL_STATE(4857)] = 265894, - [SMALL_STATE(4858)] = 265953, - [SMALL_STATE(4859)] = 266012, - [SMALL_STATE(4860)] = 266071, - [SMALL_STATE(4861)] = 266130, - [SMALL_STATE(4862)] = 266189, - [SMALL_STATE(4863)] = 266248, - [SMALL_STATE(4864)] = 266281, - [SMALL_STATE(4865)] = 266313, - [SMALL_STATE(4866)] = 266345, - [SMALL_STATE(4867)] = 266377, - [SMALL_STATE(4868)] = 266409, - [SMALL_STATE(4869)] = 266441, - [SMALL_STATE(4870)] = 266473, - [SMALL_STATE(4871)] = 266505, - [SMALL_STATE(4872)] = 266537, - [SMALL_STATE(4873)] = 266569, - [SMALL_STATE(4874)] = 266601, - [SMALL_STATE(4875)] = 266633, - [SMALL_STATE(4876)] = 266665, - [SMALL_STATE(4877)] = 266697, - [SMALL_STATE(4878)] = 266729, - [SMALL_STATE(4879)] = 266761, - [SMALL_STATE(4880)] = 266793, - [SMALL_STATE(4881)] = 266825, - [SMALL_STATE(4882)] = 266887, - [SMALL_STATE(4883)] = 266919, - [SMALL_STATE(4884)] = 266951, - [SMALL_STATE(4885)] = 266983, - [SMALL_STATE(4886)] = 267015, - [SMALL_STATE(4887)] = 267047, - [SMALL_STATE(4888)] = 267079, - [SMALL_STATE(4889)] = 267111, - [SMALL_STATE(4890)] = 267143, - [SMALL_STATE(4891)] = 267175, - [SMALL_STATE(4892)] = 267237, - [SMALL_STATE(4893)] = 267269, - [SMALL_STATE(4894)] = 267301, - [SMALL_STATE(4895)] = 267333, - [SMALL_STATE(4896)] = 267365, - [SMALL_STATE(4897)] = 267397, - [SMALL_STATE(4898)] = 267429, - [SMALL_STATE(4899)] = 267461, - [SMALL_STATE(4900)] = 267493, - [SMALL_STATE(4901)] = 267525, - [SMALL_STATE(4902)] = 267557, - [SMALL_STATE(4903)] = 267589, - [SMALL_STATE(4904)] = 267621, - [SMALL_STATE(4905)] = 267653, - [SMALL_STATE(4906)] = 267685, - [SMALL_STATE(4907)] = 267717, - [SMALL_STATE(4908)] = 267749, - [SMALL_STATE(4909)] = 267781, - [SMALL_STATE(4910)] = 267813, - [SMALL_STATE(4911)] = 267845, - [SMALL_STATE(4912)] = 267877, - [SMALL_STATE(4913)] = 267909, - [SMALL_STATE(4914)] = 267941, - [SMALL_STATE(4915)] = 267973, - [SMALL_STATE(4916)] = 268005, - [SMALL_STATE(4917)] = 268037, - [SMALL_STATE(4918)] = 268069, - [SMALL_STATE(4919)] = 268101, - [SMALL_STATE(4920)] = 268133, - [SMALL_STATE(4921)] = 268169, - [SMALL_STATE(4922)] = 268201, - [SMALL_STATE(4923)] = 268233, - [SMALL_STATE(4924)] = 268271, - [SMALL_STATE(4925)] = 268309, - [SMALL_STATE(4926)] = 268341, - [SMALL_STATE(4927)] = 268373, - [SMALL_STATE(4928)] = 268419, - [SMALL_STATE(4929)] = 268451, - [SMALL_STATE(4930)] = 268483, - [SMALL_STATE(4931)] = 268515, - [SMALL_STATE(4932)] = 268547, - [SMALL_STATE(4933)] = 268579, - [SMALL_STATE(4934)] = 268611, - [SMALL_STATE(4935)] = 268643, - [SMALL_STATE(4936)] = 268675, - [SMALL_STATE(4937)] = 268707, - [SMALL_STATE(4938)] = 268739, - [SMALL_STATE(4939)] = 268771, - [SMALL_STATE(4940)] = 268803, - [SMALL_STATE(4941)] = 268865, - [SMALL_STATE(4942)] = 268897, - [SMALL_STATE(4943)] = 268929, - [SMALL_STATE(4944)] = 268961, - [SMALL_STATE(4945)] = 268993, - [SMALL_STATE(4946)] = 269039, - [SMALL_STATE(4947)] = 269071, - [SMALL_STATE(4948)] = 269103, - [SMALL_STATE(4949)] = 269135, - [SMALL_STATE(4950)] = 269167, - [SMALL_STATE(4951)] = 269199, - [SMALL_STATE(4952)] = 269231, - [SMALL_STATE(4953)] = 269263, - [SMALL_STATE(4954)] = 269295, - [SMALL_STATE(4955)] = 269327, - [SMALL_STATE(4956)] = 269359, - [SMALL_STATE(4957)] = 269401, - [SMALL_STATE(4958)] = 269433, - [SMALL_STATE(4959)] = 269465, - [SMALL_STATE(4960)] = 269527, - [SMALL_STATE(4961)] = 269559, - [SMALL_STATE(4962)] = 269591, - [SMALL_STATE(4963)] = 269623, - [SMALL_STATE(4964)] = 269655, - [SMALL_STATE(4965)] = 269701, - [SMALL_STATE(4966)] = 269763, - [SMALL_STATE(4967)] = 269795, - [SMALL_STATE(4968)] = 269827, - [SMALL_STATE(4969)] = 269859, - [SMALL_STATE(4970)] = 269891, - [SMALL_STATE(4971)] = 269923, - [SMALL_STATE(4972)] = 269969, - [SMALL_STATE(4973)] = 270001, - [SMALL_STATE(4974)] = 270033, - [SMALL_STATE(4975)] = 270065, - [SMALL_STATE(4976)] = 270097, - [SMALL_STATE(4977)] = 270129, - [SMALL_STATE(4978)] = 270161, - [SMALL_STATE(4979)] = 270207, - [SMALL_STATE(4980)] = 270239, - [SMALL_STATE(4981)] = 270271, - [SMALL_STATE(4982)] = 270303, - [SMALL_STATE(4983)] = 270335, - [SMALL_STATE(4984)] = 270367, - [SMALL_STATE(4985)] = 270399, - [SMALL_STATE(4986)] = 270431, - [SMALL_STATE(4987)] = 270463, - [SMALL_STATE(4988)] = 270495, - [SMALL_STATE(4989)] = 270527, - [SMALL_STATE(4990)] = 270589, - [SMALL_STATE(4991)] = 270625, - [SMALL_STATE(4992)] = 270657, - [SMALL_STATE(4993)] = 270719, - [SMALL_STATE(4994)] = 270781, - [SMALL_STATE(4995)] = 270843, - [SMALL_STATE(4996)] = 270879, - [SMALL_STATE(4997)] = 270911, - [SMALL_STATE(4998)] = 270943, - [SMALL_STATE(4999)] = 270975, - [SMALL_STATE(5000)] = 271011, - [SMALL_STATE(5001)] = 271043, - [SMALL_STATE(5002)] = 271075, - [SMALL_STATE(5003)] = 271107, - [SMALL_STATE(5004)] = 271139, - [SMALL_STATE(5005)] = 271177, - [SMALL_STATE(5006)] = 271215, - [SMALL_STATE(5007)] = 271253, - [SMALL_STATE(5008)] = 271291, - [SMALL_STATE(5009)] = 271329, - [SMALL_STATE(5010)] = 271367, - [SMALL_STATE(5011)] = 271405, - [SMALL_STATE(5012)] = 271443, - [SMALL_STATE(5013)] = 271475, - [SMALL_STATE(5014)] = 271507, - [SMALL_STATE(5015)] = 271539, - [SMALL_STATE(5016)] = 271571, - [SMALL_STATE(5017)] = 271613, - [SMALL_STATE(5018)] = 271645, - [SMALL_STATE(5019)] = 271677, - [SMALL_STATE(5020)] = 271719, - [SMALL_STATE(5021)] = 271751, - [SMALL_STATE(5022)] = 271787, - [SMALL_STATE(5023)] = 271819, - [SMALL_STATE(5024)] = 271865, - [SMALL_STATE(5025)] = 271899, - [SMALL_STATE(5026)] = 271931, - [SMALL_STATE(5027)] = 271963, - [SMALL_STATE(5028)] = 272005, - [SMALL_STATE(5029)] = 272037, - [SMALL_STATE(5030)] = 272069, - [SMALL_STATE(5031)] = 272101, - [SMALL_STATE(5032)] = 272137, - [SMALL_STATE(5033)] = 272179, - [SMALL_STATE(5034)] = 272211, - [SMALL_STATE(5035)] = 272242, - [SMALL_STATE(5036)] = 272273, - [SMALL_STATE(5037)] = 272304, - [SMALL_STATE(5038)] = 272349, - [SMALL_STATE(5039)] = 272380, - [SMALL_STATE(5040)] = 272417, - [SMALL_STATE(5041)] = 272448, - [SMALL_STATE(5042)] = 272485, - [SMALL_STATE(5043)] = 272516, - [SMALL_STATE(5044)] = 272547, - [SMALL_STATE(5045)] = 272578, - [SMALL_STATE(5046)] = 272609, - [SMALL_STATE(5047)] = 272640, - [SMALL_STATE(5048)] = 272671, - [SMALL_STATE(5049)] = 272702, - [SMALL_STATE(5050)] = 272733, - [SMALL_STATE(5051)] = 272770, - [SMALL_STATE(5052)] = 272801, - [SMALL_STATE(5053)] = 272832, - [SMALL_STATE(5054)] = 272863, - [SMALL_STATE(5055)] = 272894, - [SMALL_STATE(5056)] = 272925, - [SMALL_STATE(5057)] = 272956, - [SMALL_STATE(5058)] = 272987, - [SMALL_STATE(5059)] = 273018, - [SMALL_STATE(5060)] = 273049, - [SMALL_STATE(5061)] = 273080, - [SMALL_STATE(5062)] = 273111, - [SMALL_STATE(5063)] = 273142, - [SMALL_STATE(5064)] = 273173, - [SMALL_STATE(5065)] = 273204, - [SMALL_STATE(5066)] = 273235, - [SMALL_STATE(5067)] = 273266, - [SMALL_STATE(5068)] = 273297, - [SMALL_STATE(5069)] = 273342, - [SMALL_STATE(5070)] = 273387, - [SMALL_STATE(5071)] = 273418, - [SMALL_STATE(5072)] = 273463, - [SMALL_STATE(5073)] = 273494, - [SMALL_STATE(5074)] = 273525, - [SMALL_STATE(5075)] = 273556, - [SMALL_STATE(5076)] = 273591, - [SMALL_STATE(5077)] = 273622, - [SMALL_STATE(5078)] = 273657, - [SMALL_STATE(5079)] = 273692, - [SMALL_STATE(5080)] = 273727, - [SMALL_STATE(5081)] = 273774, - [SMALL_STATE(5082)] = 273805, - [SMALL_STATE(5083)] = 273842, - [SMALL_STATE(5084)] = 273879, - [SMALL_STATE(5085)] = 273910, - [SMALL_STATE(5086)] = 273947, - [SMALL_STATE(5087)] = 273982, - [SMALL_STATE(5088)] = 274017, - [SMALL_STATE(5089)] = 274048, - [SMALL_STATE(5090)] = 274079, - [SMALL_STATE(5091)] = 274110, - [SMALL_STATE(5092)] = 274147, - [SMALL_STATE(5093)] = 274184, - [SMALL_STATE(5094)] = 274231, - [SMALL_STATE(5095)] = 274276, - [SMALL_STATE(5096)] = 274307, - [SMALL_STATE(5097)] = 274342, - [SMALL_STATE(5098)] = 274373, - [SMALL_STATE(5099)] = 274412, - [SMALL_STATE(5100)] = 274443, - [SMALL_STATE(5101)] = 274480, - [SMALL_STATE(5102)] = 274511, - [SMALL_STATE(5103)] = 274542, - [SMALL_STATE(5104)] = 274573, - [SMALL_STATE(5105)] = 274604, - [SMALL_STATE(5106)] = 274635, - [SMALL_STATE(5107)] = 274680, - [SMALL_STATE(5108)] = 274711, - [SMALL_STATE(5109)] = 274746, - [SMALL_STATE(5110)] = 274783, - [SMALL_STATE(5111)] = 274814, - [SMALL_STATE(5112)] = 274845, - [SMALL_STATE(5113)] = 274876, - [SMALL_STATE(5114)] = 274907, - [SMALL_STATE(5115)] = 274938, - [SMALL_STATE(5116)] = 274973, - [SMALL_STATE(5117)] = 275004, - [SMALL_STATE(5118)] = 275039, - [SMALL_STATE(5119)] = 275070, - [SMALL_STATE(5120)] = 275105, - [SMALL_STATE(5121)] = 275136, - [SMALL_STATE(5122)] = 275172, - [SMALL_STATE(5123)] = 275204, - [SMALL_STATE(5124)] = 275234, - [SMALL_STATE(5125)] = 275268, - [SMALL_STATE(5126)] = 275324, - [SMALL_STATE(5127)] = 275354, - [SMALL_STATE(5128)] = 275386, - [SMALL_STATE(5129)] = 275418, - [SMALL_STATE(5130)] = 275474, - [SMALL_STATE(5131)] = 275508, - [SMALL_STATE(5132)] = 275540, - [SMALL_STATE(5133)] = 275574, - [SMALL_STATE(5134)] = 275624, - [SMALL_STATE(5135)] = 275664, - [SMALL_STATE(5136)] = 275698, - [SMALL_STATE(5137)] = 275730, - [SMALL_STATE(5138)] = 275762, - [SMALL_STATE(5139)] = 275794, - [SMALL_STATE(5140)] = 275830, - [SMALL_STATE(5141)] = 275886, - [SMALL_STATE(5142)] = 275942, - [SMALL_STATE(5143)] = 275976, - [SMALL_STATE(5144)] = 276032, - [SMALL_STATE(5145)] = 276064, - [SMALL_STATE(5146)] = 276094, - [SMALL_STATE(5147)] = 276128, - [SMALL_STATE(5148)] = 276168, - [SMALL_STATE(5149)] = 276200, - [SMALL_STATE(5150)] = 276236, - [SMALL_STATE(5151)] = 276268, - [SMALL_STATE(5152)] = 276304, - [SMALL_STATE(5153)] = 276346, - [SMALL_STATE(5154)] = 276382, - [SMALL_STATE(5155)] = 276438, - [SMALL_STATE(5156)] = 276470, - [SMALL_STATE(5157)] = 276506, - [SMALL_STATE(5158)] = 276542, - [SMALL_STATE(5159)] = 276572, - [SMALL_STATE(5160)] = 276628, - [SMALL_STATE(5161)] = 276684, - [SMALL_STATE(5162)] = 276740, - [SMALL_STATE(5163)] = 276796, - [SMALL_STATE(5164)] = 276852, - [SMALL_STATE(5165)] = 276882, - [SMALL_STATE(5166)] = 276916, - [SMALL_STATE(5167)] = 276972, - [SMALL_STATE(5168)] = 277028, - [SMALL_STATE(5169)] = 277084, - [SMALL_STATE(5170)] = 277140, - [SMALL_STATE(5171)] = 277174, - [SMALL_STATE(5172)] = 277216, - [SMALL_STATE(5173)] = 277246, - [SMALL_STATE(5174)] = 277302, - [SMALL_STATE(5175)] = 277358, - [SMALL_STATE(5176)] = 277414, - [SMALL_STATE(5177)] = 277470, - [SMALL_STATE(5178)] = 277500, - [SMALL_STATE(5179)] = 277530, - [SMALL_STATE(5180)] = 277586, - [SMALL_STATE(5181)] = 277642, - [SMALL_STATE(5182)] = 277698, - [SMALL_STATE(5183)] = 277732, - [SMALL_STATE(5184)] = 277788, - [SMALL_STATE(5185)] = 277842, - [SMALL_STATE(5186)] = 277882, - [SMALL_STATE(5187)] = 277914, - [SMALL_STATE(5188)] = 277948, - [SMALL_STATE(5189)] = 278004, - [SMALL_STATE(5190)] = 278060, - [SMALL_STATE(5191)] = 278090, - [SMALL_STATE(5192)] = 278146, - [SMALL_STATE(5193)] = 278202, - [SMALL_STATE(5194)] = 278232, - [SMALL_STATE(5195)] = 278264, - [SMALL_STATE(5196)] = 278320, - [SMALL_STATE(5197)] = 278350, - [SMALL_STATE(5198)] = 278380, - [SMALL_STATE(5199)] = 278412, - [SMALL_STATE(5200)] = 278480, - [SMALL_STATE(5201)] = 278512, - [SMALL_STATE(5202)] = 278546, - [SMALL_STATE(5203)] = 278576, - [SMALL_STATE(5204)] = 278608, - [SMALL_STATE(5205)] = 278638, - [SMALL_STATE(5206)] = 278694, - [SMALL_STATE(5207)] = 278750, - [SMALL_STATE(5208)] = 278780, - [SMALL_STATE(5209)] = 278836, - [SMALL_STATE(5210)] = 278866, - [SMALL_STATE(5211)] = 278908, - [SMALL_STATE(5212)] = 278942, - [SMALL_STATE(5213)] = 278974, - [SMALL_STATE(5214)] = 279008, - [SMALL_STATE(5215)] = 279038, - [SMALL_STATE(5216)] = 279068, - [SMALL_STATE(5217)] = 279100, - [SMALL_STATE(5218)] = 279142, - [SMALL_STATE(5219)] = 279198, - [SMALL_STATE(5220)] = 279260, - [SMALL_STATE(5221)] = 279302, - [SMALL_STATE(5222)] = 279358, - [SMALL_STATE(5223)] = 279420, - [SMALL_STATE(5224)] = 279476, - [SMALL_STATE(5225)] = 279506, - [SMALL_STATE(5226)] = 279538, - [SMALL_STATE(5227)] = 279574, - [SMALL_STATE(5228)] = 279606, - [SMALL_STATE(5229)] = 279638, - [SMALL_STATE(5230)] = 279680, - [SMALL_STATE(5231)] = 279716, - [SMALL_STATE(5232)] = 279748, - [SMALL_STATE(5233)] = 279784, - [SMALL_STATE(5234)] = 279820, - [SMALL_STATE(5235)] = 279856, - [SMALL_STATE(5236)] = 279912, - [SMALL_STATE(5237)] = 279948, - [SMALL_STATE(5238)] = 279984, - [SMALL_STATE(5239)] = 280020, - [SMALL_STATE(5240)] = 280056, - [SMALL_STATE(5241)] = 280092, - [SMALL_STATE(5242)] = 280128, - [SMALL_STATE(5243)] = 280164, - [SMALL_STATE(5244)] = 280196, - [SMALL_STATE(5245)] = 280252, - [SMALL_STATE(5246)] = 280308, - [SMALL_STATE(5247)] = 280344, - [SMALL_STATE(5248)] = 280376, - [SMALL_STATE(5249)] = 280432, - [SMALL_STATE(5250)] = 280466, - [SMALL_STATE(5251)] = 280522, - [SMALL_STATE(5252)] = 280551, - [SMALL_STATE(5253)] = 280580, - [SMALL_STATE(5254)] = 280609, - [SMALL_STATE(5255)] = 280638, - [SMALL_STATE(5256)] = 280679, - [SMALL_STATE(5257)] = 280712, - [SMALL_STATE(5258)] = 280745, - [SMALL_STATE(5259)] = 280778, - [SMALL_STATE(5260)] = 280811, - [SMALL_STATE(5261)] = 280840, - [SMALL_STATE(5262)] = 280873, - [SMALL_STATE(5263)] = 280906, - [SMALL_STATE(5264)] = 280939, - [SMALL_STATE(5265)] = 280972, - [SMALL_STATE(5266)] = 281019, - [SMALL_STATE(5267)] = 281048, - [SMALL_STATE(5268)] = 281077, - [SMALL_STATE(5269)] = 281110, - [SMALL_STATE(5270)] = 281143, - [SMALL_STATE(5271)] = 281176, - [SMALL_STATE(5272)] = 281205, - [SMALL_STATE(5273)] = 281234, - [SMALL_STATE(5274)] = 281263, - [SMALL_STATE(5275)] = 281292, - [SMALL_STATE(5276)] = 281321, - [SMALL_STATE(5277)] = 281350, - [SMALL_STATE(5278)] = 281379, - [SMALL_STATE(5279)] = 281408, - [SMALL_STATE(5280)] = 281451, - [SMALL_STATE(5281)] = 281484, - [SMALL_STATE(5282)] = 281513, - [SMALL_STATE(5283)] = 281542, - [SMALL_STATE(5284)] = 281571, - [SMALL_STATE(5285)] = 281618, - [SMALL_STATE(5286)] = 281665, - [SMALL_STATE(5287)] = 281700, - [SMALL_STATE(5288)] = 281729, - [SMALL_STATE(5289)] = 281776, - [SMALL_STATE(5290)] = 281805, - [SMALL_STATE(5291)] = 281834, - [SMALL_STATE(5292)] = 281863, - [SMALL_STATE(5293)] = 281892, - [SMALL_STATE(5294)] = 281921, - [SMALL_STATE(5295)] = 281950, - [SMALL_STATE(5296)] = 281991, - [SMALL_STATE(5297)] = 282020, - [SMALL_STATE(5298)] = 282059, - [SMALL_STATE(5299)] = 282098, - [SMALL_STATE(5300)] = 282131, - [SMALL_STATE(5301)] = 282162, - [SMALL_STATE(5302)] = 282201, - [SMALL_STATE(5303)] = 282240, - [SMALL_STATE(5304)] = 282279, - [SMALL_STATE(5305)] = 282320, - [SMALL_STATE(5306)] = 282367, - [SMALL_STATE(5307)] = 282400, - [SMALL_STATE(5308)] = 282429, - [SMALL_STATE(5309)] = 282458, - [SMALL_STATE(5310)] = 282491, - [SMALL_STATE(5311)] = 282520, - [SMALL_STATE(5312)] = 282549, - [SMALL_STATE(5313)] = 282578, - [SMALL_STATE(5314)] = 282607, - [SMALL_STATE(5315)] = 282636, - [SMALL_STATE(5316)] = 282665, - [SMALL_STATE(5317)] = 282694, - [SMALL_STATE(5318)] = 282723, - [SMALL_STATE(5319)] = 282764, - [SMALL_STATE(5320)] = 282793, - [SMALL_STATE(5321)] = 282822, - [SMALL_STATE(5322)] = 282869, - [SMALL_STATE(5323)] = 282904, - [SMALL_STATE(5324)] = 282939, - [SMALL_STATE(5325)] = 282972, - [SMALL_STATE(5326)] = 283019, - [SMALL_STATE(5327)] = 283048, - [SMALL_STATE(5328)] = 283077, - [SMALL_STATE(5329)] = 283110, - [SMALL_STATE(5330)] = 283143, - [SMALL_STATE(5331)] = 283172, - [SMALL_STATE(5332)] = 283201, - [SMALL_STATE(5333)] = 283230, - [SMALL_STATE(5334)] = 283259, - [SMALL_STATE(5335)] = 283288, - [SMALL_STATE(5336)] = 283321, - [SMALL_STATE(5337)] = 283350, - [SMALL_STATE(5338)] = 283385, - [SMALL_STATE(5339)] = 283414, - [SMALL_STATE(5340)] = 283447, - [SMALL_STATE(5341)] = 283480, - [SMALL_STATE(5342)] = 283509, - [SMALL_STATE(5343)] = 283538, - [SMALL_STATE(5344)] = 283585, - [SMALL_STATE(5345)] = 283614, - [SMALL_STATE(5346)] = 283643, - [SMALL_STATE(5347)] = 283672, - [SMALL_STATE(5348)] = 283701, - [SMALL_STATE(5349)] = 283730, - [SMALL_STATE(5350)] = 283759, - [SMALL_STATE(5351)] = 283818, - [SMALL_STATE(5352)] = 283847, - [SMALL_STATE(5353)] = 283876, - [SMALL_STATE(5354)] = 283911, - [SMALL_STATE(5355)] = 283946, - [SMALL_STATE(5356)] = 283979, - [SMALL_STATE(5357)] = 284012, - [SMALL_STATE(5358)] = 284045, - [SMALL_STATE(5359)] = 284078, - [SMALL_STATE(5360)] = 284111, - [SMALL_STATE(5361)] = 284140, - [SMALL_STATE(5362)] = 284169, - [SMALL_STATE(5363)] = 284198, - [SMALL_STATE(5364)] = 284227, - [SMALL_STATE(5365)] = 284256, - [SMALL_STATE(5366)] = 284285, - [SMALL_STATE(5367)] = 284314, - [SMALL_STATE(5368)] = 284343, - [SMALL_STATE(5369)] = 284372, - [SMALL_STATE(5370)] = 284415, - [SMALL_STATE(5371)] = 284444, - [SMALL_STATE(5372)] = 284473, - [SMALL_STATE(5373)] = 284502, - [SMALL_STATE(5374)] = 284531, - [SMALL_STATE(5375)] = 284560, - [SMALL_STATE(5376)] = 284593, - [SMALL_STATE(5377)] = 284626, - [SMALL_STATE(5378)] = 284661, - [SMALL_STATE(5379)] = 284690, - [SMALL_STATE(5380)] = 284719, - [SMALL_STATE(5381)] = 284752, - [SMALL_STATE(5382)] = 284787, - [SMALL_STATE(5383)] = 284822, - [SMALL_STATE(5384)] = 284851, - [SMALL_STATE(5385)] = 284884, - [SMALL_STATE(5386)] = 284913, - [SMALL_STATE(5387)] = 284942, - [SMALL_STATE(5388)] = 284971, - [SMALL_STATE(5389)] = 285000, - [SMALL_STATE(5390)] = 285029, - [SMALL_STATE(5391)] = 285058, - [SMALL_STATE(5392)] = 285093, - [SMALL_STATE(5393)] = 285128, - [SMALL_STATE(5394)] = 285163, - [SMALL_STATE(5395)] = 285198, - [SMALL_STATE(5396)] = 285233, - [SMALL_STATE(5397)] = 285268, - [SMALL_STATE(5398)] = 285303, - [SMALL_STATE(5399)] = 285338, - [SMALL_STATE(5400)] = 285367, - [SMALL_STATE(5401)] = 285396, - [SMALL_STATE(5402)] = 285429, - [SMALL_STATE(5403)] = 285458, - [SMALL_STATE(5404)] = 285493, - [SMALL_STATE(5405)] = 285521, - [SMALL_STATE(5406)] = 285549, - [SMALL_STATE(5407)] = 285583, - [SMALL_STATE(5408)] = 285615, - [SMALL_STATE(5409)] = 285647, - [SMALL_STATE(5410)] = 285687, - [SMALL_STATE(5411)] = 285717, - [SMALL_STATE(5412)] = 285745, - [SMALL_STATE(5413)] = 285773, - [SMALL_STATE(5414)] = 285801, - [SMALL_STATE(5415)] = 285829, - [SMALL_STATE(5416)] = 285857, - [SMALL_STATE(5417)] = 285885, - [SMALL_STATE(5418)] = 285917, - [SMALL_STATE(5419)] = 285945, - [SMALL_STATE(5420)] = 286001, - [SMALL_STATE(5421)] = 286029, - [SMALL_STATE(5422)] = 286061, - [SMALL_STATE(5423)] = 286089, - [SMALL_STATE(5424)] = 286121, - [SMALL_STATE(5425)] = 286153, - [SMALL_STATE(5426)] = 286185, - [SMALL_STATE(5427)] = 286213, - [SMALL_STATE(5428)] = 286241, - [SMALL_STATE(5429)] = 286273, - [SMALL_STATE(5430)] = 286335, - [SMALL_STATE(5431)] = 286363, - [SMALL_STATE(5432)] = 286395, - [SMALL_STATE(5433)] = 286423, - [SMALL_STATE(5434)] = 286451, - [SMALL_STATE(5435)] = 286479, - [SMALL_STATE(5436)] = 286511, - [SMALL_STATE(5437)] = 286539, - [SMALL_STATE(5438)] = 286567, - [SMALL_STATE(5439)] = 286595, - [SMALL_STATE(5440)] = 286639, - [SMALL_STATE(5441)] = 286667, - [SMALL_STATE(5442)] = 286695, - [SMALL_STATE(5443)] = 286723, - [SMALL_STATE(5444)] = 286755, - [SMALL_STATE(5445)] = 286783, - [SMALL_STATE(5446)] = 286811, - [SMALL_STATE(5447)] = 286851, - [SMALL_STATE(5448)] = 286879, - [SMALL_STATE(5449)] = 286907, - [SMALL_STATE(5450)] = 286935, - [SMALL_STATE(5451)] = 286963, - [SMALL_STATE(5452)] = 286991, - [SMALL_STATE(5453)] = 287019, - [SMALL_STATE(5454)] = 287051, - [SMALL_STATE(5455)] = 287079, - [SMALL_STATE(5456)] = 287107, - [SMALL_STATE(5457)] = 287135, - [SMALL_STATE(5458)] = 287163, - [SMALL_STATE(5459)] = 287191, - [SMALL_STATE(5460)] = 287223, - [SMALL_STATE(5461)] = 287251, - [SMALL_STATE(5462)] = 287279, - [SMALL_STATE(5463)] = 287307, - [SMALL_STATE(5464)] = 287335, - [SMALL_STATE(5465)] = 287363, - [SMALL_STATE(5466)] = 287395, - [SMALL_STATE(5467)] = 287423, - [SMALL_STATE(5468)] = 287451, - [SMALL_STATE(5469)] = 287479, - [SMALL_STATE(5470)] = 287535, - [SMALL_STATE(5471)] = 287563, - [SMALL_STATE(5472)] = 287591, - [SMALL_STATE(5473)] = 287619, - [SMALL_STATE(5474)] = 287661, - [SMALL_STATE(5475)] = 287693, - [SMALL_STATE(5476)] = 287727, - [SMALL_STATE(5477)] = 287761, - [SMALL_STATE(5478)] = 287793, - [SMALL_STATE(5479)] = 287837, - [SMALL_STATE(5480)] = 287865, - [SMALL_STATE(5481)] = 287893, - [SMALL_STATE(5482)] = 287925, - [SMALL_STATE(5483)] = 287957, - [SMALL_STATE(5484)] = 287985, - [SMALL_STATE(5485)] = 288013, - [SMALL_STATE(5486)] = 288041, - [SMALL_STATE(5487)] = 288069, - [SMALL_STATE(5488)] = 288097, - [SMALL_STATE(5489)] = 288137, - [SMALL_STATE(5490)] = 288165, - [SMALL_STATE(5491)] = 288193, - [SMALL_STATE(5492)] = 288221, - [SMALL_STATE(5493)] = 288249, - [SMALL_STATE(5494)] = 288277, - [SMALL_STATE(5495)] = 288319, - [SMALL_STATE(5496)] = 288347, - [SMALL_STATE(5497)] = 288379, - [SMALL_STATE(5498)] = 288411, - [SMALL_STATE(5499)] = 288443, - [SMALL_STATE(5500)] = 288470, - [SMALL_STATE(5501)] = 288507, - [SMALL_STATE(5502)] = 288534, - [SMALL_STATE(5503)] = 288573, - [SMALL_STATE(5504)] = 288612, - [SMALL_STATE(5505)] = 288639, - [SMALL_STATE(5506)] = 288670, - [SMALL_STATE(5507)] = 288697, - [SMALL_STATE(5508)] = 288736, - [SMALL_STATE(5509)] = 288775, - [SMALL_STATE(5510)] = 288814, - [SMALL_STATE(5511)] = 288841, - [SMALL_STATE(5512)] = 288868, - [SMALL_STATE(5513)] = 288895, - [SMALL_STATE(5514)] = 288922, - [SMALL_STATE(5515)] = 288949, - [SMALL_STATE(5516)] = 288976, - [SMALL_STATE(5517)] = 289011, - [SMALL_STATE(5518)] = 289046, - [SMALL_STATE(5519)] = 289077, - [SMALL_STATE(5520)] = 289108, - [SMALL_STATE(5521)] = 289135, - [SMALL_STATE(5522)] = 289162, - [SMALL_STATE(5523)] = 289189, - [SMALL_STATE(5524)] = 289222, - [SMALL_STATE(5525)] = 289261, - [SMALL_STATE(5526)] = 289288, - [SMALL_STATE(5527)] = 289315, - [SMALL_STATE(5528)] = 289354, - [SMALL_STATE(5529)] = 289393, - [SMALL_STATE(5530)] = 289420, - [SMALL_STATE(5531)] = 289447, - [SMALL_STATE(5532)] = 289474, - [SMALL_STATE(5533)] = 289501, - [SMALL_STATE(5534)] = 289532, - [SMALL_STATE(5535)] = 289563, - [SMALL_STATE(5536)] = 289594, - [SMALL_STATE(5537)] = 289621, - [SMALL_STATE(5538)] = 289648, - [SMALL_STATE(5539)] = 289675, - [SMALL_STATE(5540)] = 289702, - [SMALL_STATE(5541)] = 289729, - [SMALL_STATE(5542)] = 289756, - [SMALL_STATE(5543)] = 289787, - [SMALL_STATE(5544)] = 289814, - [SMALL_STATE(5545)] = 289853, - [SMALL_STATE(5546)] = 289890, - [SMALL_STATE(5547)] = 289929, - [SMALL_STATE(5548)] = 289955, - [SMALL_STATE(5549)] = 289981, - [SMALL_STATE(5550)] = 290007, - [SMALL_STATE(5551)] = 290033, - [SMALL_STATE(5552)] = 290065, - [SMALL_STATE(5553)] = 290097, - [SMALL_STATE(5554)] = 290123, - [SMALL_STATE(5555)] = 290149, - [SMALL_STATE(5556)] = 290175, - [SMALL_STATE(5557)] = 290201, - [SMALL_STATE(5558)] = 290239, - [SMALL_STATE(5559)] = 290277, - [SMALL_STATE(5560)] = 290303, - [SMALL_STATE(5561)] = 290329, - [SMALL_STATE(5562)] = 290355, - [SMALL_STATE(5563)] = 290387, - [SMALL_STATE(5564)] = 290419, - [SMALL_STATE(5565)] = 290455, - [SMALL_STATE(5566)] = 290481, - [SMALL_STATE(5567)] = 290513, - [SMALL_STATE(5568)] = 290551, - [SMALL_STATE(5569)] = 290577, - [SMALL_STATE(5570)] = 290609, - [SMALL_STATE(5571)] = 290641, - [SMALL_STATE(5572)] = 290667, - [SMALL_STATE(5573)] = 290693, - [SMALL_STATE(5574)] = 290725, - [SMALL_STATE(5575)] = 290751, - [SMALL_STATE(5576)] = 290777, - [SMALL_STATE(5577)] = 290803, - [SMALL_STATE(5578)] = 290829, - [SMALL_STATE(5579)] = 290867, - [SMALL_STATE(5580)] = 290893, - [SMALL_STATE(5581)] = 290919, - [SMALL_STATE(5582)] = 290945, - [SMALL_STATE(5583)] = 290971, - [SMALL_STATE(5584)] = 291003, - [SMALL_STATE(5585)] = 291029, - [SMALL_STATE(5586)] = 291055, - [SMALL_STATE(5587)] = 291093, - [SMALL_STATE(5588)] = 291119, - [SMALL_STATE(5589)] = 291145, - [SMALL_STATE(5590)] = 291177, - [SMALL_STATE(5591)] = 291203, - [SMALL_STATE(5592)] = 291235, - [SMALL_STATE(5593)] = 291261, - [SMALL_STATE(5594)] = 291299, - [SMALL_STATE(5595)] = 291337, - [SMALL_STATE(5596)] = 291363, - [SMALL_STATE(5597)] = 291395, - [SMALL_STATE(5598)] = 291421, - [SMALL_STATE(5599)] = 291453, - [SMALL_STATE(5600)] = 291479, - [SMALL_STATE(5601)] = 291505, - [SMALL_STATE(5602)] = 291531, - [SMALL_STATE(5603)] = 291557, - [SMALL_STATE(5604)] = 291583, - [SMALL_STATE(5605)] = 291609, - [SMALL_STATE(5606)] = 291635, - [SMALL_STATE(5607)] = 291673, - [SMALL_STATE(5608)] = 291699, - [SMALL_STATE(5609)] = 291725, - [SMALL_STATE(5610)] = 291757, - [SMALL_STATE(5611)] = 291783, - [SMALL_STATE(5612)] = 291809, - [SMALL_STATE(5613)] = 291835, - [SMALL_STATE(5614)] = 291873, - [SMALL_STATE(5615)] = 291899, - [SMALL_STATE(5616)] = 291925, - [SMALL_STATE(5617)] = 291951, - [SMALL_STATE(5618)] = 291980, - [SMALL_STATE(5619)] = 292005, - [SMALL_STATE(5620)] = 292030, - [SMALL_STATE(5621)] = 292055, - [SMALL_STATE(5622)] = 292080, - [SMALL_STATE(5623)] = 292105, - [SMALL_STATE(5624)] = 292130, - [SMALL_STATE(5625)] = 292155, - [SMALL_STATE(5626)] = 292180, - [SMALL_STATE(5627)] = 292205, - [SMALL_STATE(5628)] = 292230, - [SMALL_STATE(5629)] = 292255, - [SMALL_STATE(5630)] = 292280, - [SMALL_STATE(5631)] = 292305, - [SMALL_STATE(5632)] = 292334, - [SMALL_STATE(5633)] = 292359, - [SMALL_STATE(5634)] = 292384, - [SMALL_STATE(5635)] = 292409, - [SMALL_STATE(5636)] = 292434, - [SMALL_STATE(5637)] = 292459, - [SMALL_STATE(5638)] = 292484, - [SMALL_STATE(5639)] = 292513, - [SMALL_STATE(5640)] = 292538, - [SMALL_STATE(5641)] = 292563, - [SMALL_STATE(5642)] = 292588, - [SMALL_STATE(5643)] = 292613, - [SMALL_STATE(5644)] = 292638, - [SMALL_STATE(5645)] = 292663, - [SMALL_STATE(5646)] = 292688, - [SMALL_STATE(5647)] = 292713, - [SMALL_STATE(5648)] = 292738, - [SMALL_STATE(5649)] = 292763, - [SMALL_STATE(5650)] = 292788, - [SMALL_STATE(5651)] = 292813, - [SMALL_STATE(5652)] = 292838, - [SMALL_STATE(5653)] = 292863, - [SMALL_STATE(5654)] = 292892, - [SMALL_STATE(5655)] = 292917, - [SMALL_STATE(5656)] = 292942, - [SMALL_STATE(5657)] = 292967, - [SMALL_STATE(5658)] = 292992, - [SMALL_STATE(5659)] = 293017, - [SMALL_STATE(5660)] = 293042, - [SMALL_STATE(5661)] = 293067, - [SMALL_STATE(5662)] = 293092, - [SMALL_STATE(5663)] = 293117, - [SMALL_STATE(5664)] = 293142, - [SMALL_STATE(5665)] = 293167, - [SMALL_STATE(5666)] = 293192, - [SMALL_STATE(5667)] = 293217, - [SMALL_STATE(5668)] = 293242, - [SMALL_STATE(5669)] = 293267, - [SMALL_STATE(5670)] = 293292, - [SMALL_STATE(5671)] = 293321, - [SMALL_STATE(5672)] = 293346, - [SMALL_STATE(5673)] = 293371, - [SMALL_STATE(5674)] = 293396, - [SMALL_STATE(5675)] = 293421, - [SMALL_STATE(5676)] = 293446, - [SMALL_STATE(5677)] = 293471, - [SMALL_STATE(5678)] = 293496, - [SMALL_STATE(5679)] = 293521, - [SMALL_STATE(5680)] = 293546, - [SMALL_STATE(5681)] = 293571, - [SMALL_STATE(5682)] = 293596, - [SMALL_STATE(5683)] = 293621, - [SMALL_STATE(5684)] = 293646, - [SMALL_STATE(5685)] = 293671, - [SMALL_STATE(5686)] = 293696, - [SMALL_STATE(5687)] = 293721, - [SMALL_STATE(5688)] = 293746, - [SMALL_STATE(5689)] = 293771, - [SMALL_STATE(5690)] = 293796, - [SMALL_STATE(5691)] = 293821, - [SMALL_STATE(5692)] = 293846, - [SMALL_STATE(5693)] = 293871, - [SMALL_STATE(5694)] = 293896, - [SMALL_STATE(5695)] = 293921, - [SMALL_STATE(5696)] = 293946, - [SMALL_STATE(5697)] = 293971, - [SMALL_STATE(5698)] = 294009, - [SMALL_STATE(5699)] = 294041, - [SMALL_STATE(5700)] = 294065, - [SMALL_STATE(5701)] = 294097, - [SMALL_STATE(5702)] = 294133, - [SMALL_STATE(5703)] = 294174, - [SMALL_STATE(5704)] = 294215, - [SMALL_STATE(5705)] = 294238, - [SMALL_STATE(5706)] = 294279, - [SMALL_STATE(5707)] = 294320, - [SMALL_STATE(5708)] = 294361, - [SMALL_STATE(5709)] = 294402, - [SMALL_STATE(5710)] = 294425, - [SMALL_STATE(5711)] = 294466, - [SMALL_STATE(5712)] = 294507, - [SMALL_STATE(5713)] = 294548, - [SMALL_STATE(5714)] = 294571, - [SMALL_STATE(5715)] = 294612, - [SMALL_STATE(5716)] = 294653, - [SMALL_STATE(5717)] = 294694, - [SMALL_STATE(5718)] = 294735, - [SMALL_STATE(5719)] = 294776, - [SMALL_STATE(5720)] = 294817, - [SMALL_STATE(5721)] = 294858, - [SMALL_STATE(5722)] = 294899, - [SMALL_STATE(5723)] = 294940, - [SMALL_STATE(5724)] = 294981, - [SMALL_STATE(5725)] = 295022, - [SMALL_STATE(5726)] = 295063, - [SMALL_STATE(5727)] = 295104, - [SMALL_STATE(5728)] = 295145, - [SMALL_STATE(5729)] = 295186, - [SMALL_STATE(5730)] = 295227, - [SMALL_STATE(5731)] = 295268, - [SMALL_STATE(5732)] = 295309, - [SMALL_STATE(5733)] = 295350, - [SMALL_STATE(5734)] = 295391, - [SMALL_STATE(5735)] = 295432, - [SMALL_STATE(5736)] = 295473, - [SMALL_STATE(5737)] = 295514, - [SMALL_STATE(5738)] = 295555, - [SMALL_STATE(5739)] = 295596, - [SMALL_STATE(5740)] = 295637, - [SMALL_STATE(5741)] = 295678, - [SMALL_STATE(5742)] = 295719, - [SMALL_STATE(5743)] = 295760, - [SMALL_STATE(5744)] = 295801, - [SMALL_STATE(5745)] = 295842, - [SMALL_STATE(5746)] = 295883, - [SMALL_STATE(5747)] = 295924, - [SMALL_STATE(5748)] = 295965, - [SMALL_STATE(5749)] = 296006, - [SMALL_STATE(5750)] = 296047, - [SMALL_STATE(5751)] = 296088, - [SMALL_STATE(5752)] = 296129, - [SMALL_STATE(5753)] = 296170, - [SMALL_STATE(5754)] = 296211, - [SMALL_STATE(5755)] = 296252, - [SMALL_STATE(5756)] = 296293, - [SMALL_STATE(5757)] = 296334, - [SMALL_STATE(5758)] = 296375, - [SMALL_STATE(5759)] = 296416, - [SMALL_STATE(5760)] = 296457, - [SMALL_STATE(5761)] = 296498, - [SMALL_STATE(5762)] = 296539, - [SMALL_STATE(5763)] = 296580, - [SMALL_STATE(5764)] = 296621, - [SMALL_STATE(5765)] = 296662, - [SMALL_STATE(5766)] = 296703, - [SMALL_STATE(5767)] = 296744, - [SMALL_STATE(5768)] = 296785, - [SMALL_STATE(5769)] = 296826, - [SMALL_STATE(5770)] = 296867, - [SMALL_STATE(5771)] = 296908, - [SMALL_STATE(5772)] = 296949, - [SMALL_STATE(5773)] = 296990, - [SMALL_STATE(5774)] = 297031, - [SMALL_STATE(5775)] = 297072, - [SMALL_STATE(5776)] = 297113, - [SMALL_STATE(5777)] = 297154, - [SMALL_STATE(5778)] = 297195, - [SMALL_STATE(5779)] = 297236, - [SMALL_STATE(5780)] = 297277, - [SMALL_STATE(5781)] = 297318, - [SMALL_STATE(5782)] = 297359, - [SMALL_STATE(5783)] = 297400, - [SMALL_STATE(5784)] = 297441, - [SMALL_STATE(5785)] = 297482, - [SMALL_STATE(5786)] = 297523, - [SMALL_STATE(5787)] = 297564, - [SMALL_STATE(5788)] = 297605, - [SMALL_STATE(5789)] = 297646, - [SMALL_STATE(5790)] = 297687, - [SMALL_STATE(5791)] = 297728, - [SMALL_STATE(5792)] = 297769, - [SMALL_STATE(5793)] = 297810, - [SMALL_STATE(5794)] = 297851, - [SMALL_STATE(5795)] = 297892, - [SMALL_STATE(5796)] = 297933, - [SMALL_STATE(5797)] = 297974, - [SMALL_STATE(5798)] = 298015, - [SMALL_STATE(5799)] = 298056, - [SMALL_STATE(5800)] = 298097, - [SMALL_STATE(5801)] = 298138, - [SMALL_STATE(5802)] = 298179, - [SMALL_STATE(5803)] = 298220, - [SMALL_STATE(5804)] = 298261, - [SMALL_STATE(5805)] = 298302, - [SMALL_STATE(5806)] = 298343, - [SMALL_STATE(5807)] = 298384, - [SMALL_STATE(5808)] = 298425, - [SMALL_STATE(5809)] = 298466, - [SMALL_STATE(5810)] = 298507, - [SMALL_STATE(5811)] = 298548, - [SMALL_STATE(5812)] = 298589, - [SMALL_STATE(5813)] = 298630, - [SMALL_STATE(5814)] = 298671, - [SMALL_STATE(5815)] = 298712, - [SMALL_STATE(5816)] = 298753, - [SMALL_STATE(5817)] = 298794, - [SMALL_STATE(5818)] = 298835, - [SMALL_STATE(5819)] = 298876, - [SMALL_STATE(5820)] = 298917, - [SMALL_STATE(5821)] = 298958, - [SMALL_STATE(5822)] = 298999, - [SMALL_STATE(5823)] = 299040, - [SMALL_STATE(5824)] = 299081, - [SMALL_STATE(5825)] = 299122, - [SMALL_STATE(5826)] = 299163, - [SMALL_STATE(5827)] = 299204, - [SMALL_STATE(5828)] = 299245, - [SMALL_STATE(5829)] = 299286, - [SMALL_STATE(5830)] = 299327, - [SMALL_STATE(5831)] = 299368, - [SMALL_STATE(5832)] = 299409, - [SMALL_STATE(5833)] = 299450, - [SMALL_STATE(5834)] = 299491, - [SMALL_STATE(5835)] = 299532, - [SMALL_STATE(5836)] = 299573, - [SMALL_STATE(5837)] = 299596, - [SMALL_STATE(5838)] = 299637, - [SMALL_STATE(5839)] = 299678, - [SMALL_STATE(5840)] = 299719, - [SMALL_STATE(5841)] = 299760, - [SMALL_STATE(5842)] = 299801, - [SMALL_STATE(5843)] = 299842, - [SMALL_STATE(5844)] = 299883, - [SMALL_STATE(5845)] = 299924, - [SMALL_STATE(5846)] = 299965, - [SMALL_STATE(5847)] = 300006, - [SMALL_STATE(5848)] = 300047, - [SMALL_STATE(5849)] = 300088, - [SMALL_STATE(5850)] = 300129, - [SMALL_STATE(5851)] = 300170, - [SMALL_STATE(5852)] = 300211, - [SMALL_STATE(5853)] = 300252, - [SMALL_STATE(5854)] = 300293, - [SMALL_STATE(5855)] = 300334, - [SMALL_STATE(5856)] = 300375, - [SMALL_STATE(5857)] = 300416, - [SMALL_STATE(5858)] = 300457, - [SMALL_STATE(5859)] = 300498, - [SMALL_STATE(5860)] = 300539, - [SMALL_STATE(5861)] = 300580, - [SMALL_STATE(5862)] = 300621, - [SMALL_STATE(5863)] = 300662, - [SMALL_STATE(5864)] = 300703, - [SMALL_STATE(5865)] = 300744, - [SMALL_STATE(5866)] = 300772, - [SMALL_STATE(5867)] = 300800, - [SMALL_STATE(5868)] = 300828, - [SMALL_STATE(5869)] = 300856, - [SMALL_STATE(5870)] = 300884, - [SMALL_STATE(5871)] = 300912, - [SMALL_STATE(5872)] = 300940, - [SMALL_STATE(5873)] = 300968, - [SMALL_STATE(5874)] = 300996, - [SMALL_STATE(5875)] = 301024, - [SMALL_STATE(5876)] = 301052, - [SMALL_STATE(5877)] = 301080, - [SMALL_STATE(5878)] = 301108, - [SMALL_STATE(5879)] = 301136, - [SMALL_STATE(5880)] = 301164, - [SMALL_STATE(5881)] = 301192, - [SMALL_STATE(5882)] = 301220, - [SMALL_STATE(5883)] = 301248, - [SMALL_STATE(5884)] = 301276, - [SMALL_STATE(5885)] = 301304, - [SMALL_STATE(5886)] = 301332, - [SMALL_STATE(5887)] = 301360, - [SMALL_STATE(5888)] = 301388, - [SMALL_STATE(5889)] = 301416, - [SMALL_STATE(5890)] = 301444, - [SMALL_STATE(5891)] = 301472, - [SMALL_STATE(5892)] = 301500, - [SMALL_STATE(5893)] = 301528, - [SMALL_STATE(5894)] = 301556, - [SMALL_STATE(5895)] = 301584, - [SMALL_STATE(5896)] = 301612, - [SMALL_STATE(5897)] = 301640, - [SMALL_STATE(5898)] = 301668, - [SMALL_STATE(5899)] = 301696, - [SMALL_STATE(5900)] = 301724, - [SMALL_STATE(5901)] = 301752, - [SMALL_STATE(5902)] = 301780, - [SMALL_STATE(5903)] = 301808, - [SMALL_STATE(5904)] = 301836, - [SMALL_STATE(5905)] = 301864, - [SMALL_STATE(5906)] = 301892, - [SMALL_STATE(5907)] = 301920, - [SMALL_STATE(5908)] = 301948, - [SMALL_STATE(5909)] = 301976, - [SMALL_STATE(5910)] = 302004, - [SMALL_STATE(5911)] = 302032, - [SMALL_STATE(5912)] = 302060, - [SMALL_STATE(5913)] = 302088, - [SMALL_STATE(5914)] = 302116, - [SMALL_STATE(5915)] = 302144, - [SMALL_STATE(5916)] = 302172, - [SMALL_STATE(5917)] = 302200, - [SMALL_STATE(5918)] = 302228, - [SMALL_STATE(5919)] = 302256, - [SMALL_STATE(5920)] = 302284, - [SMALL_STATE(5921)] = 302312, - [SMALL_STATE(5922)] = 302340, - [SMALL_STATE(5923)] = 302368, - [SMALL_STATE(5924)] = 302396, - [SMALL_STATE(5925)] = 302424, - [SMALL_STATE(5926)] = 302452, - [SMALL_STATE(5927)] = 302480, - [SMALL_STATE(5928)] = 302508, - [SMALL_STATE(5929)] = 302536, - [SMALL_STATE(5930)] = 302564, - [SMALL_STATE(5931)] = 302592, - [SMALL_STATE(5932)] = 302620, - [SMALL_STATE(5933)] = 302648, - [SMALL_STATE(5934)] = 302676, - [SMALL_STATE(5935)] = 302704, - [SMALL_STATE(5936)] = 302732, - [SMALL_STATE(5937)] = 302760, - [SMALL_STATE(5938)] = 302788, - [SMALL_STATE(5939)] = 302816, - [SMALL_STATE(5940)] = 302844, - [SMALL_STATE(5941)] = 302872, - [SMALL_STATE(5942)] = 302900, - [SMALL_STATE(5943)] = 302928, - [SMALL_STATE(5944)] = 302956, - [SMALL_STATE(5945)] = 302984, - [SMALL_STATE(5946)] = 303012, - [SMALL_STATE(5947)] = 303040, - [SMALL_STATE(5948)] = 303068, - [SMALL_STATE(5949)] = 303096, - [SMALL_STATE(5950)] = 303124, - [SMALL_STATE(5951)] = 303152, - [SMALL_STATE(5952)] = 303180, - [SMALL_STATE(5953)] = 303208, - [SMALL_STATE(5954)] = 303236, - [SMALL_STATE(5955)] = 303264, - [SMALL_STATE(5956)] = 303292, - [SMALL_STATE(5957)] = 303320, - [SMALL_STATE(5958)] = 303348, - [SMALL_STATE(5959)] = 303376, - [SMALL_STATE(5960)] = 303404, - [SMALL_STATE(5961)] = 303432, - [SMALL_STATE(5962)] = 303460, - [SMALL_STATE(5963)] = 303488, - [SMALL_STATE(5964)] = 303516, - [SMALL_STATE(5965)] = 303544, - [SMALL_STATE(5966)] = 303572, - [SMALL_STATE(5967)] = 303600, - [SMALL_STATE(5968)] = 303628, - [SMALL_STATE(5969)] = 303656, - [SMALL_STATE(5970)] = 303684, - [SMALL_STATE(5971)] = 303712, - [SMALL_STATE(5972)] = 303740, - [SMALL_STATE(5973)] = 303768, - [SMALL_STATE(5974)] = 303796, - [SMALL_STATE(5975)] = 303824, - [SMALL_STATE(5976)] = 303852, - [SMALL_STATE(5977)] = 303880, - [SMALL_STATE(5978)] = 303908, - [SMALL_STATE(5979)] = 303936, - [SMALL_STATE(5980)] = 303964, - [SMALL_STATE(5981)] = 303992, - [SMALL_STATE(5982)] = 304020, - [SMALL_STATE(5983)] = 304048, - [SMALL_STATE(5984)] = 304076, - [SMALL_STATE(5985)] = 304104, - [SMALL_STATE(5986)] = 304132, - [SMALL_STATE(5987)] = 304160, - [SMALL_STATE(5988)] = 304188, - [SMALL_STATE(5989)] = 304216, - [SMALL_STATE(5990)] = 304244, - [SMALL_STATE(5991)] = 304272, - [SMALL_STATE(5992)] = 304300, - [SMALL_STATE(5993)] = 304328, - [SMALL_STATE(5994)] = 304356, - [SMALL_STATE(5995)] = 304384, - [SMALL_STATE(5996)] = 304412, - [SMALL_STATE(5997)] = 304440, - [SMALL_STATE(5998)] = 304468, - [SMALL_STATE(5999)] = 304496, - [SMALL_STATE(6000)] = 304524, - [SMALL_STATE(6001)] = 304552, - [SMALL_STATE(6002)] = 304580, - [SMALL_STATE(6003)] = 304608, - [SMALL_STATE(6004)] = 304636, - [SMALL_STATE(6005)] = 304664, - [SMALL_STATE(6006)] = 304692, - [SMALL_STATE(6007)] = 304720, - [SMALL_STATE(6008)] = 304748, - [SMALL_STATE(6009)] = 304776, - [SMALL_STATE(6010)] = 304804, - [SMALL_STATE(6011)] = 304832, - [SMALL_STATE(6012)] = 304860, - [SMALL_STATE(6013)] = 304888, - [SMALL_STATE(6014)] = 304916, - [SMALL_STATE(6015)] = 304944, - [SMALL_STATE(6016)] = 304972, - [SMALL_STATE(6017)] = 305000, - [SMALL_STATE(6018)] = 305028, - [SMALL_STATE(6019)] = 305056, - [SMALL_STATE(6020)] = 305084, - [SMALL_STATE(6021)] = 305112, - [SMALL_STATE(6022)] = 305140, - [SMALL_STATE(6023)] = 305168, - [SMALL_STATE(6024)] = 305196, - [SMALL_STATE(6025)] = 305224, - [SMALL_STATE(6026)] = 305252, - [SMALL_STATE(6027)] = 305280, - [SMALL_STATE(6028)] = 305308, - [SMALL_STATE(6029)] = 305336, - [SMALL_STATE(6030)] = 305364, - [SMALL_STATE(6031)] = 305392, - [SMALL_STATE(6032)] = 305420, - [SMALL_STATE(6033)] = 305448, - [SMALL_STATE(6034)] = 305476, - [SMALL_STATE(6035)] = 305504, - [SMALL_STATE(6036)] = 305532, - [SMALL_STATE(6037)] = 305560, - [SMALL_STATE(6038)] = 305588, - [SMALL_STATE(6039)] = 305616, - [SMALL_STATE(6040)] = 305644, - [SMALL_STATE(6041)] = 305672, - [SMALL_STATE(6042)] = 305700, - [SMALL_STATE(6043)] = 305728, - [SMALL_STATE(6044)] = 305756, - [SMALL_STATE(6045)] = 305784, - [SMALL_STATE(6046)] = 305812, - [SMALL_STATE(6047)] = 305840, - [SMALL_STATE(6048)] = 305868, - [SMALL_STATE(6049)] = 305896, - [SMALL_STATE(6050)] = 305924, - [SMALL_STATE(6051)] = 305952, - [SMALL_STATE(6052)] = 305980, - [SMALL_STATE(6053)] = 306008, - [SMALL_STATE(6054)] = 306036, - [SMALL_STATE(6055)] = 306064, - [SMALL_STATE(6056)] = 306092, - [SMALL_STATE(6057)] = 306120, - [SMALL_STATE(6058)] = 306148, - [SMALL_STATE(6059)] = 306176, - [SMALL_STATE(6060)] = 306204, - [SMALL_STATE(6061)] = 306232, - [SMALL_STATE(6062)] = 306260, - [SMALL_STATE(6063)] = 306288, - [SMALL_STATE(6064)] = 306316, - [SMALL_STATE(6065)] = 306344, - [SMALL_STATE(6066)] = 306372, - [SMALL_STATE(6067)] = 306400, - [SMALL_STATE(6068)] = 306428, - [SMALL_STATE(6069)] = 306456, - [SMALL_STATE(6070)] = 306484, - [SMALL_STATE(6071)] = 306512, - [SMALL_STATE(6072)] = 306540, - [SMALL_STATE(6073)] = 306568, - [SMALL_STATE(6074)] = 306596, - [SMALL_STATE(6075)] = 306624, - [SMALL_STATE(6076)] = 306652, - [SMALL_STATE(6077)] = 306680, - [SMALL_STATE(6078)] = 306708, - [SMALL_STATE(6079)] = 306736, - [SMALL_STATE(6080)] = 306764, - [SMALL_STATE(6081)] = 306792, - [SMALL_STATE(6082)] = 306820, - [SMALL_STATE(6083)] = 306848, - [SMALL_STATE(6084)] = 306876, - [SMALL_STATE(6085)] = 306904, - [SMALL_STATE(6086)] = 306932, - [SMALL_STATE(6087)] = 306960, - [SMALL_STATE(6088)] = 306988, - [SMALL_STATE(6089)] = 307017, - [SMALL_STATE(6090)] = 307038, - [SMALL_STATE(6091)] = 307067, - [SMALL_STATE(6092)] = 307096, - [SMALL_STATE(6093)] = 307125, - [SMALL_STATE(6094)] = 307154, - [SMALL_STATE(6095)] = 307183, - [SMALL_STATE(6096)] = 307212, - [SMALL_STATE(6097)] = 307233, - [SMALL_STATE(6098)] = 307262, - [SMALL_STATE(6099)] = 307287, - [SMALL_STATE(6100)] = 307313, - [SMALL_STATE(6101)] = 307335, - [SMALL_STATE(6102)] = 307361, - [SMALL_STATE(6103)] = 307383, - [SMALL_STATE(6104)] = 307405, - [SMALL_STATE(6105)] = 307431, - [SMALL_STATE(6106)] = 307457, - [SMALL_STATE(6107)] = 307483, - [SMALL_STATE(6108)] = 307505, - [SMALL_STATE(6109)] = 307527, - [SMALL_STATE(6110)] = 307549, - [SMALL_STATE(6111)] = 307575, - [SMALL_STATE(6112)] = 307597, - [SMALL_STATE(6113)] = 307623, - [SMALL_STATE(6114)] = 307649, - [SMALL_STATE(6115)] = 307675, - [SMALL_STATE(6116)] = 307697, - [SMALL_STATE(6117)] = 307719, - [SMALL_STATE(6118)] = 307750, - [SMALL_STATE(6119)] = 307773, - [SMALL_STATE(6120)] = 307796, - [SMALL_STATE(6121)] = 307819, - [SMALL_STATE(6122)] = 307842, - [SMALL_STATE(6123)] = 307873, - [SMALL_STATE(6124)] = 307892, - [SMALL_STATE(6125)] = 307915, - [SMALL_STATE(6126)] = 307938, - [SMALL_STATE(6127)] = 307957, - [SMALL_STATE(6128)] = 307980, - [SMALL_STATE(6129)] = 308003, - [SMALL_STATE(6130)] = 308026, - [SMALL_STATE(6131)] = 308049, - [SMALL_STATE(6132)] = 308072, - [SMALL_STATE(6133)] = 308095, - [SMALL_STATE(6134)] = 308118, - [SMALL_STATE(6135)] = 308141, - [SMALL_STATE(6136)] = 308164, - [SMALL_STATE(6137)] = 308187, - [SMALL_STATE(6138)] = 308210, - [SMALL_STATE(6139)] = 308233, - [SMALL_STATE(6140)] = 308252, - [SMALL_STATE(6141)] = 308275, - [SMALL_STATE(6142)] = 308298, - [SMALL_STATE(6143)] = 308321, - [SMALL_STATE(6144)] = 308344, - [SMALL_STATE(6145)] = 308367, - [SMALL_STATE(6146)] = 308390, - [SMALL_STATE(6147)] = 308421, - [SMALL_STATE(6148)] = 308440, - [SMALL_STATE(6149)] = 308463, - [SMALL_STATE(6150)] = 308482, - [SMALL_STATE(6151)] = 308505, - [SMALL_STATE(6152)] = 308528, - [SMALL_STATE(6153)] = 308547, - [SMALL_STATE(6154)] = 308566, - [SMALL_STATE(6155)] = 308585, - [SMALL_STATE(6156)] = 308604, - [SMALL_STATE(6157)] = 308623, - [SMALL_STATE(6158)] = 308642, - [SMALL_STATE(6159)] = 308661, - [SMALL_STATE(6160)] = 308689, - [SMALL_STATE(6161)] = 308717, - [SMALL_STATE(6162)] = 308745, - [SMALL_STATE(6163)] = 308761, - [SMALL_STATE(6164)] = 308789, - [SMALL_STATE(6165)] = 308817, - [SMALL_STATE(6166)] = 308845, - [SMALL_STATE(6167)] = 308873, - [SMALL_STATE(6168)] = 308901, - [SMALL_STATE(6169)] = 308929, - [SMALL_STATE(6170)] = 308957, - [SMALL_STATE(6171)] = 308985, - [SMALL_STATE(6172)] = 309013, - [SMALL_STATE(6173)] = 309041, - [SMALL_STATE(6174)] = 309069, - [SMALL_STATE(6175)] = 309097, - [SMALL_STATE(6176)] = 309125, - [SMALL_STATE(6177)] = 309141, - [SMALL_STATE(6178)] = 309169, - [SMALL_STATE(6179)] = 309197, - [SMALL_STATE(6180)] = 309225, - [SMALL_STATE(6181)] = 309241, - [SMALL_STATE(6182)] = 309269, - [SMALL_STATE(6183)] = 309297, - [SMALL_STATE(6184)] = 309325, - [SMALL_STATE(6185)] = 309353, - [SMALL_STATE(6186)] = 309381, - [SMALL_STATE(6187)] = 309409, - [SMALL_STATE(6188)] = 309432, - [SMALL_STATE(6189)] = 309463, - [SMALL_STATE(6190)] = 309489, - [SMALL_STATE(6191)] = 309513, - [SMALL_STATE(6192)] = 309535, - [SMALL_STATE(6193)] = 309559, - [SMALL_STATE(6194)] = 309583, - [SMALL_STATE(6195)] = 309607, - [SMALL_STATE(6196)] = 309629, - [SMALL_STATE(6197)] = 309653, - [SMALL_STATE(6198)] = 309679, - [SMALL_STATE(6199)] = 309703, - [SMALL_STATE(6200)] = 309727, - [SMALL_STATE(6201)] = 309751, - [SMALL_STATE(6202)] = 309773, - [SMALL_STATE(6203)] = 309797, - [SMALL_STATE(6204)] = 309823, - [SMALL_STATE(6205)] = 309847, - [SMALL_STATE(6206)] = 309862, - [SMALL_STATE(6207)] = 309875, - [SMALL_STATE(6208)] = 309890, - [SMALL_STATE(6209)] = 309911, - [SMALL_STATE(6210)] = 309924, - [SMALL_STATE(6211)] = 309937, - [SMALL_STATE(6212)] = 309950, - [SMALL_STATE(6213)] = 309965, - [SMALL_STATE(6214)] = 309986, - [SMALL_STATE(6215)] = 310003, - [SMALL_STATE(6216)] = 310016, - [SMALL_STATE(6217)] = 310031, - [SMALL_STATE(6218)] = 310046, - [SMALL_STATE(6219)] = 310063, - [SMALL_STATE(6220)] = 310078, - [SMALL_STATE(6221)] = 310099, - [SMALL_STATE(6222)] = 310114, - [SMALL_STATE(6223)] = 310127, - [SMALL_STATE(6224)] = 310142, - [SMALL_STATE(6225)] = 310157, - [SMALL_STATE(6226)] = 310172, - [SMALL_STATE(6227)] = 310193, - [SMALL_STATE(6228)] = 310208, - [SMALL_STATE(6229)] = 310223, - [SMALL_STATE(6230)] = 310238, - [SMALL_STATE(6231)] = 310253, - [SMALL_STATE(6232)] = 310268, - [SMALL_STATE(6233)] = 310283, - [SMALL_STATE(6234)] = 310298, - [SMALL_STATE(6235)] = 310311, - [SMALL_STATE(6236)] = 310326, - [SMALL_STATE(6237)] = 310341, - [SMALL_STATE(6238)] = 310356, - [SMALL_STATE(6239)] = 310371, - [SMALL_STATE(6240)] = 310386, - [SMALL_STATE(6241)] = 310401, - [SMALL_STATE(6242)] = 310420, - [SMALL_STATE(6243)] = 310435, - [SMALL_STATE(6244)] = 310450, - [SMALL_STATE(6245)] = 310465, - [SMALL_STATE(6246)] = 310478, - [SMALL_STATE(6247)] = 310493, - [SMALL_STATE(6248)] = 310506, - [SMALL_STATE(6249)] = 310526, - [SMALL_STATE(6250)] = 310546, - [SMALL_STATE(6251)] = 310566, - [SMALL_STATE(6252)] = 310580, - [SMALL_STATE(6253)] = 310600, - [SMALL_STATE(6254)] = 310620, - [SMALL_STATE(6255)] = 310640, - [SMALL_STATE(6256)] = 310660, - [SMALL_STATE(6257)] = 310680, - [SMALL_STATE(6258)] = 310700, - [SMALL_STATE(6259)] = 310714, - [SMALL_STATE(6260)] = 310734, - [SMALL_STATE(6261)] = 310754, - [SMALL_STATE(6262)] = 310768, - [SMALL_STATE(6263)] = 310788, - [SMALL_STATE(6264)] = 310808, - [SMALL_STATE(6265)] = 310828, - [SMALL_STATE(6266)] = 310848, - [SMALL_STATE(6267)] = 310868, - [SMALL_STATE(6268)] = 310888, - [SMALL_STATE(6269)] = 310908, - [SMALL_STATE(6270)] = 310928, - [SMALL_STATE(6271)] = 310948, - [SMALL_STATE(6272)] = 310968, - [SMALL_STATE(6273)] = 310988, - [SMALL_STATE(6274)] = 311002, - [SMALL_STATE(6275)] = 311022, - [SMALL_STATE(6276)] = 311042, - [SMALL_STATE(6277)] = 311062, - [SMALL_STATE(6278)] = 311082, - [SMALL_STATE(6279)] = 311102, - [SMALL_STATE(6280)] = 311122, - [SMALL_STATE(6281)] = 311142, - [SMALL_STATE(6282)] = 311156, - [SMALL_STATE(6283)] = 311176, - [SMALL_STATE(6284)] = 311196, - [SMALL_STATE(6285)] = 311210, - [SMALL_STATE(6286)] = 311230, - [SMALL_STATE(6287)] = 311250, - [SMALL_STATE(6288)] = 311264, - [SMALL_STATE(6289)] = 311284, - [SMALL_STATE(6290)] = 311304, - [SMALL_STATE(6291)] = 311318, - [SMALL_STATE(6292)] = 311338, - [SMALL_STATE(6293)] = 311358, - [SMALL_STATE(6294)] = 311378, - [SMALL_STATE(6295)] = 311392, - [SMALL_STATE(6296)] = 311406, - [SMALL_STATE(6297)] = 311426, - [SMALL_STATE(6298)] = 311446, - [SMALL_STATE(6299)] = 311466, - [SMALL_STATE(6300)] = 311486, - [SMALL_STATE(6301)] = 311500, - [SMALL_STATE(6302)] = 311520, - [SMALL_STATE(6303)] = 311540, - [SMALL_STATE(6304)] = 311554, - [SMALL_STATE(6305)] = 311574, - [SMALL_STATE(6306)] = 311594, - [SMALL_STATE(6307)] = 311614, - [SMALL_STATE(6308)] = 311634, - [SMALL_STATE(6309)] = 311654, - [SMALL_STATE(6310)] = 311668, - [SMALL_STATE(6311)] = 311688, - [SMALL_STATE(6312)] = 311708, - [SMALL_STATE(6313)] = 311728, - [SMALL_STATE(6314)] = 311748, - [SMALL_STATE(6315)] = 311768, - [SMALL_STATE(6316)] = 311788, - [SMALL_STATE(6317)] = 311808, - [SMALL_STATE(6318)] = 311828, - [SMALL_STATE(6319)] = 311848, - [SMALL_STATE(6320)] = 311868, - [SMALL_STATE(6321)] = 311888, - [SMALL_STATE(6322)] = 311908, - [SMALL_STATE(6323)] = 311922, - [SMALL_STATE(6324)] = 311942, - [SMALL_STATE(6325)] = 311962, - [SMALL_STATE(6326)] = 311982, - [SMALL_STATE(6327)] = 312002, - [SMALL_STATE(6328)] = 312022, - [SMALL_STATE(6329)] = 312042, - [SMALL_STATE(6330)] = 312062, - [SMALL_STATE(6331)] = 312082, - [SMALL_STATE(6332)] = 312102, - [SMALL_STATE(6333)] = 312122, - [SMALL_STATE(6334)] = 312142, - [SMALL_STATE(6335)] = 312162, - [SMALL_STATE(6336)] = 312182, - [SMALL_STATE(6337)] = 312202, - [SMALL_STATE(6338)] = 312218, - [SMALL_STATE(6339)] = 312232, - [SMALL_STATE(6340)] = 312252, - [SMALL_STATE(6341)] = 312272, - [SMALL_STATE(6342)] = 312292, - [SMALL_STATE(6343)] = 312312, - [SMALL_STATE(6344)] = 312332, - [SMALL_STATE(6345)] = 312352, - [SMALL_STATE(6346)] = 312372, - [SMALL_STATE(6347)] = 312392, - [SMALL_STATE(6348)] = 312406, - [SMALL_STATE(6349)] = 312426, - [SMALL_STATE(6350)] = 312446, - [SMALL_STATE(6351)] = 312466, - [SMALL_STATE(6352)] = 312486, - [SMALL_STATE(6353)] = 312500, - [SMALL_STATE(6354)] = 312520, - [SMALL_STATE(6355)] = 312534, - [SMALL_STATE(6356)] = 312554, - [SMALL_STATE(6357)] = 312574, - [SMALL_STATE(6358)] = 312594, - [SMALL_STATE(6359)] = 312614, - [SMALL_STATE(6360)] = 312634, - [SMALL_STATE(6361)] = 312648, - [SMALL_STATE(6362)] = 312662, - [SMALL_STATE(6363)] = 312682, - [SMALL_STATE(6364)] = 312702, - [SMALL_STATE(6365)] = 312722, - [SMALL_STATE(6366)] = 312736, - [SMALL_STATE(6367)] = 312756, - [SMALL_STATE(6368)] = 312776, - [SMALL_STATE(6369)] = 312793, - [SMALL_STATE(6370)] = 312808, - [SMALL_STATE(6371)] = 312827, - [SMALL_STATE(6372)] = 312840, - [SMALL_STATE(6373)] = 312859, - [SMALL_STATE(6374)] = 312874, - [SMALL_STATE(6375)] = 312889, - [SMALL_STATE(6376)] = 312906, - [SMALL_STATE(6377)] = 312923, - [SMALL_STATE(6378)] = 312940, - [SMALL_STATE(6379)] = 312959, - [SMALL_STATE(6380)] = 312978, - [SMALL_STATE(6381)] = 312993, - [SMALL_STATE(6382)] = 313006, - [SMALL_STATE(6383)] = 313025, - [SMALL_STATE(6384)] = 313040, - [SMALL_STATE(6385)] = 313059, - [SMALL_STATE(6386)] = 313076, - [SMALL_STATE(6387)] = 313091, - [SMALL_STATE(6388)] = 313108, - [SMALL_STATE(6389)] = 313125, - [SMALL_STATE(6390)] = 313144, - [SMALL_STATE(6391)] = 313159, - [SMALL_STATE(6392)] = 313178, - [SMALL_STATE(6393)] = 313195, - [SMALL_STATE(6394)] = 313212, - [SMALL_STATE(6395)] = 313229, - [SMALL_STATE(6396)] = 313248, - [SMALL_STATE(6397)] = 313265, - [SMALL_STATE(6398)] = 313280, - [SMALL_STATE(6399)] = 313297, - [SMALL_STATE(6400)] = 313308, - [SMALL_STATE(6401)] = 313323, - [SMALL_STATE(6402)] = 313338, - [SMALL_STATE(6403)] = 313355, - [SMALL_STATE(6404)] = 313372, - [SMALL_STATE(6405)] = 313389, - [SMALL_STATE(6406)] = 313404, - [SMALL_STATE(6407)] = 313421, - [SMALL_STATE(6408)] = 313438, - [SMALL_STATE(6409)] = 313457, - [SMALL_STATE(6410)] = 313474, - [SMALL_STATE(6411)] = 313493, - [SMALL_STATE(6412)] = 313508, - [SMALL_STATE(6413)] = 313527, - [SMALL_STATE(6414)] = 313546, - [SMALL_STATE(6415)] = 313561, - [SMALL_STATE(6416)] = 313578, - [SMALL_STATE(6417)] = 313597, - [SMALL_STATE(6418)] = 313614, - [SMALL_STATE(6419)] = 313631, - [SMALL_STATE(6420)] = 313648, - [SMALL_STATE(6421)] = 313663, - [SMALL_STATE(6422)] = 313678, - [SMALL_STATE(6423)] = 313693, - [SMALL_STATE(6424)] = 313710, - [SMALL_STATE(6425)] = 313723, - [SMALL_STATE(6426)] = 313738, - [SMALL_STATE(6427)] = 313749, - [SMALL_STATE(6428)] = 313768, - [SMALL_STATE(6429)] = 313783, - [SMALL_STATE(6430)] = 313802, - [SMALL_STATE(6431)] = 313819, - [SMALL_STATE(6432)] = 313834, - [SMALL_STATE(6433)] = 313849, - [SMALL_STATE(6434)] = 313866, - [SMALL_STATE(6435)] = 313885, - [SMALL_STATE(6436)] = 313904, - [SMALL_STATE(6437)] = 313915, - [SMALL_STATE(6438)] = 313934, - [SMALL_STATE(6439)] = 313953, - [SMALL_STATE(6440)] = 313972, - [SMALL_STATE(6441)] = 313991, - [SMALL_STATE(6442)] = 314010, - [SMALL_STATE(6443)] = 314027, - [SMALL_STATE(6444)] = 314046, - [SMALL_STATE(6445)] = 314061, - [SMALL_STATE(6446)] = 314080, - [SMALL_STATE(6447)] = 314097, - [SMALL_STATE(6448)] = 314116, - [SMALL_STATE(6449)] = 314135, - [SMALL_STATE(6450)] = 314154, - [SMALL_STATE(6451)] = 314171, - [SMALL_STATE(6452)] = 314190, - [SMALL_STATE(6453)] = 314203, - [SMALL_STATE(6454)] = 314218, - [SMALL_STATE(6455)] = 314237, - [SMALL_STATE(6456)] = 314256, - [SMALL_STATE(6457)] = 314273, - [SMALL_STATE(6458)] = 314288, - [SMALL_STATE(6459)] = 314305, - [SMALL_STATE(6460)] = 314324, - [SMALL_STATE(6461)] = 314339, - [SMALL_STATE(6462)] = 314358, - [SMALL_STATE(6463)] = 314375, - [SMALL_STATE(6464)] = 314392, - [SMALL_STATE(6465)] = 314411, - [SMALL_STATE(6466)] = 314426, - [SMALL_STATE(6467)] = 314443, - [SMALL_STATE(6468)] = 314460, - [SMALL_STATE(6469)] = 314475, - [SMALL_STATE(6470)] = 314492, - [SMALL_STATE(6471)] = 314509, - [SMALL_STATE(6472)] = 314528, - [SMALL_STATE(6473)] = 314547, - [SMALL_STATE(6474)] = 314564, - [SMALL_STATE(6475)] = 314581, - [SMALL_STATE(6476)] = 314596, - [SMALL_STATE(6477)] = 314613, - [SMALL_STATE(6478)] = 314632, - [SMALL_STATE(6479)] = 314645, - [SMALL_STATE(6480)] = 314664, - [SMALL_STATE(6481)] = 314674, - [SMALL_STATE(6482)] = 314690, - [SMALL_STATE(6483)] = 314700, - [SMALL_STATE(6484)] = 314710, - [SMALL_STATE(6485)] = 314720, - [SMALL_STATE(6486)] = 314734, - [SMALL_STATE(6487)] = 314748, - [SMALL_STATE(6488)] = 314758, - [SMALL_STATE(6489)] = 314774, - [SMALL_STATE(6490)] = 314784, - [SMALL_STATE(6491)] = 314794, - [SMALL_STATE(6492)] = 314804, - [SMALL_STATE(6493)] = 314814, - [SMALL_STATE(6494)] = 314824, - [SMALL_STATE(6495)] = 314840, - [SMALL_STATE(6496)] = 314850, - [SMALL_STATE(6497)] = 314866, - [SMALL_STATE(6498)] = 314882, - [SMALL_STATE(6499)] = 314892, - [SMALL_STATE(6500)] = 314908, - [SMALL_STATE(6501)] = 314918, - [SMALL_STATE(6502)] = 314928, - [SMALL_STATE(6503)] = 314942, - [SMALL_STATE(6504)] = 314954, - [SMALL_STATE(6505)] = 314964, - [SMALL_STATE(6506)] = 314974, - [SMALL_STATE(6507)] = 314984, - [SMALL_STATE(6508)] = 314994, - [SMALL_STATE(6509)] = 315010, - [SMALL_STATE(6510)] = 315020, - [SMALL_STATE(6511)] = 315030, - [SMALL_STATE(6512)] = 315046, - [SMALL_STATE(6513)] = 315056, - [SMALL_STATE(6514)] = 315066, - [SMALL_STATE(6515)] = 315082, - [SMALL_STATE(6516)] = 315098, - [SMALL_STATE(6517)] = 315108, - [SMALL_STATE(6518)] = 315118, - [SMALL_STATE(6519)] = 315128, - [SMALL_STATE(6520)] = 315138, - [SMALL_STATE(6521)] = 315148, - [SMALL_STATE(6522)] = 315160, - [SMALL_STATE(6523)] = 315176, - [SMALL_STATE(6524)] = 315192, - [SMALL_STATE(6525)] = 315206, - [SMALL_STATE(6526)] = 315216, - [SMALL_STATE(6527)] = 315232, - [SMALL_STATE(6528)] = 315246, - [SMALL_STATE(6529)] = 315260, - [SMALL_STATE(6530)] = 315270, - [SMALL_STATE(6531)] = 315286, - [SMALL_STATE(6532)] = 315296, - [SMALL_STATE(6533)] = 315306, - [SMALL_STATE(6534)] = 315316, - [SMALL_STATE(6535)] = 315328, - [SMALL_STATE(6536)] = 315338, - [SMALL_STATE(6537)] = 315348, - [SMALL_STATE(6538)] = 315362, - [SMALL_STATE(6539)] = 315372, - [SMALL_STATE(6540)] = 315382, - [SMALL_STATE(6541)] = 315392, - [SMALL_STATE(6542)] = 315406, - [SMALL_STATE(6543)] = 315416, - [SMALL_STATE(6544)] = 315426, - [SMALL_STATE(6545)] = 315442, - [SMALL_STATE(6546)] = 315452, - [SMALL_STATE(6547)] = 315462, - [SMALL_STATE(6548)] = 315475, - [SMALL_STATE(6549)] = 315488, - [SMALL_STATE(6550)] = 315501, - [SMALL_STATE(6551)] = 315514, - [SMALL_STATE(6552)] = 315527, - [SMALL_STATE(6553)] = 315540, - [SMALL_STATE(6554)] = 315553, - [SMALL_STATE(6555)] = 315566, - [SMALL_STATE(6556)] = 315579, - [SMALL_STATE(6557)] = 315592, - [SMALL_STATE(6558)] = 315605, - [SMALL_STATE(6559)] = 315618, - [SMALL_STATE(6560)] = 315631, - [SMALL_STATE(6561)] = 315644, - [SMALL_STATE(6562)] = 315657, - [SMALL_STATE(6563)] = 315670, - [SMALL_STATE(6564)] = 315681, - [SMALL_STATE(6565)] = 315694, - [SMALL_STATE(6566)] = 315707, - [SMALL_STATE(6567)] = 315720, - [SMALL_STATE(6568)] = 315733, - [SMALL_STATE(6569)] = 315746, - [SMALL_STATE(6570)] = 315759, - [SMALL_STATE(6571)] = 315770, - [SMALL_STATE(6572)] = 315783, - [SMALL_STATE(6573)] = 315796, - [SMALL_STATE(6574)] = 315809, - [SMALL_STATE(6575)] = 315822, - [SMALL_STATE(6576)] = 315835, - [SMALL_STATE(6577)] = 315848, - [SMALL_STATE(6578)] = 315861, - [SMALL_STATE(6579)] = 315874, - [SMALL_STATE(6580)] = 315887, - [SMALL_STATE(6581)] = 315898, - [SMALL_STATE(6582)] = 315911, - [SMALL_STATE(6583)] = 315924, - [SMALL_STATE(6584)] = 315937, - [SMALL_STATE(6585)] = 315950, - [SMALL_STATE(6586)] = 315963, - [SMALL_STATE(6587)] = 315972, - [SMALL_STATE(6588)] = 315985, - [SMALL_STATE(6589)] = 315998, - [SMALL_STATE(6590)] = 316009, - [SMALL_STATE(6591)] = 316022, - [SMALL_STATE(6592)] = 316033, - [SMALL_STATE(6593)] = 316046, - [SMALL_STATE(6594)] = 316059, - [SMALL_STATE(6595)] = 316072, - [SMALL_STATE(6596)] = 316083, - [SMALL_STATE(6597)] = 316094, - [SMALL_STATE(6598)] = 316105, - [SMALL_STATE(6599)] = 316118, - [SMALL_STATE(6600)] = 316131, - [SMALL_STATE(6601)] = 316142, - [SMALL_STATE(6602)] = 316153, - [SMALL_STATE(6603)] = 316164, - [SMALL_STATE(6604)] = 316177, - [SMALL_STATE(6605)] = 316188, - [SMALL_STATE(6606)] = 316201, - [SMALL_STATE(6607)] = 316212, - [SMALL_STATE(6608)] = 316223, - [SMALL_STATE(6609)] = 316234, - [SMALL_STATE(6610)] = 316247, - [SMALL_STATE(6611)] = 316258, - [SMALL_STATE(6612)] = 316269, - [SMALL_STATE(6613)] = 316280, - [SMALL_STATE(6614)] = 316293, - [SMALL_STATE(6615)] = 316306, - [SMALL_STATE(6616)] = 316319, - [SMALL_STATE(6617)] = 316330, - [SMALL_STATE(6618)] = 316343, - [SMALL_STATE(6619)] = 316354, - [SMALL_STATE(6620)] = 316365, - [SMALL_STATE(6621)] = 316378, - [SMALL_STATE(6622)] = 316387, - [SMALL_STATE(6623)] = 316400, - [SMALL_STATE(6624)] = 316411, - [SMALL_STATE(6625)] = 316424, - [SMALL_STATE(6626)] = 316435, - [SMALL_STATE(6627)] = 316448, - [SMALL_STATE(6628)] = 316461, - [SMALL_STATE(6629)] = 316474, - [SMALL_STATE(6630)] = 316483, - [SMALL_STATE(6631)] = 316492, - [SMALL_STATE(6632)] = 316505, - [SMALL_STATE(6633)] = 316518, - [SMALL_STATE(6634)] = 316531, - [SMALL_STATE(6635)] = 316542, - [SMALL_STATE(6636)] = 316555, - [SMALL_STATE(6637)] = 316568, - [SMALL_STATE(6638)] = 316581, - [SMALL_STATE(6639)] = 316594, - [SMALL_STATE(6640)] = 316605, - [SMALL_STATE(6641)] = 316618, - [SMALL_STATE(6642)] = 316631, - [SMALL_STATE(6643)] = 316640, - [SMALL_STATE(6644)] = 316653, - [SMALL_STATE(6645)] = 316666, - [SMALL_STATE(6646)] = 316679, - [SMALL_STATE(6647)] = 316692, - [SMALL_STATE(6648)] = 316705, - [SMALL_STATE(6649)] = 316718, - [SMALL_STATE(6650)] = 316731, - [SMALL_STATE(6651)] = 316744, - [SMALL_STATE(6652)] = 316757, - [SMALL_STATE(6653)] = 316770, - [SMALL_STATE(6654)] = 316779, - [SMALL_STATE(6655)] = 316792, - [SMALL_STATE(6656)] = 316805, - [SMALL_STATE(6657)] = 316818, - [SMALL_STATE(6658)] = 316827, - [SMALL_STATE(6659)] = 316838, - [SMALL_STATE(6660)] = 316851, - [SMALL_STATE(6661)] = 316864, - [SMALL_STATE(6662)] = 316875, - [SMALL_STATE(6663)] = 316888, - [SMALL_STATE(6664)] = 316899, - [SMALL_STATE(6665)] = 316912, - [SMALL_STATE(6666)] = 316925, - [SMALL_STATE(6667)] = 316938, - [SMALL_STATE(6668)] = 316951, - [SMALL_STATE(6669)] = 316964, - [SMALL_STATE(6670)] = 316977, - [SMALL_STATE(6671)] = 316990, - [SMALL_STATE(6672)] = 317003, - [SMALL_STATE(6673)] = 317012, - [SMALL_STATE(6674)] = 317021, - [SMALL_STATE(6675)] = 317034, - [SMALL_STATE(6676)] = 317043, - [SMALL_STATE(6677)] = 317056, - [SMALL_STATE(6678)] = 317069, - [SMALL_STATE(6679)] = 317082, - [SMALL_STATE(6680)] = 317095, - [SMALL_STATE(6681)] = 317106, - [SMALL_STATE(6682)] = 317119, - [SMALL_STATE(6683)] = 317132, - [SMALL_STATE(6684)] = 317145, - [SMALL_STATE(6685)] = 317158, - [SMALL_STATE(6686)] = 317171, - [SMALL_STATE(6687)] = 317184, - [SMALL_STATE(6688)] = 317197, - [SMALL_STATE(6689)] = 317210, - [SMALL_STATE(6690)] = 317223, - [SMALL_STATE(6691)] = 317236, - [SMALL_STATE(6692)] = 317249, - [SMALL_STATE(6693)] = 317258, - [SMALL_STATE(6694)] = 317271, - [SMALL_STATE(6695)] = 317284, - [SMALL_STATE(6696)] = 317297, - [SMALL_STATE(6697)] = 317310, - [SMALL_STATE(6698)] = 317319, - [SMALL_STATE(6699)] = 317332, - [SMALL_STATE(6700)] = 317341, - [SMALL_STATE(6701)] = 317354, - [SMALL_STATE(6702)] = 317365, - [SMALL_STATE(6703)] = 317374, - [SMALL_STATE(6704)] = 317387, - [SMALL_STATE(6705)] = 317400, - [SMALL_STATE(6706)] = 317413, - [SMALL_STATE(6707)] = 317426, - [SMALL_STATE(6708)] = 317439, - [SMALL_STATE(6709)] = 317452, - [SMALL_STATE(6710)] = 317465, - [SMALL_STATE(6711)] = 317478, - [SMALL_STATE(6712)] = 317491, - [SMALL_STATE(6713)] = 317504, - [SMALL_STATE(6714)] = 317517, - [SMALL_STATE(6715)] = 317530, - [SMALL_STATE(6716)] = 317541, - [SMALL_STATE(6717)] = 317554, - [SMALL_STATE(6718)] = 317567, - [SMALL_STATE(6719)] = 317580, - [SMALL_STATE(6720)] = 317591, - [SMALL_STATE(6721)] = 317604, - [SMALL_STATE(6722)] = 317615, - [SMALL_STATE(6723)] = 317626, - [SMALL_STATE(6724)] = 317639, - [SMALL_STATE(6725)] = 317652, - [SMALL_STATE(6726)] = 317665, - [SMALL_STATE(6727)] = 317675, - [SMALL_STATE(6728)] = 317685, - [SMALL_STATE(6729)] = 317693, - [SMALL_STATE(6730)] = 317701, - [SMALL_STATE(6731)] = 317709, - [SMALL_STATE(6732)] = 317717, - [SMALL_STATE(6733)] = 317727, - [SMALL_STATE(6734)] = 317735, - [SMALL_STATE(6735)] = 317743, - [SMALL_STATE(6736)] = 317753, - [SMALL_STATE(6737)] = 317761, - [SMALL_STATE(6738)] = 317769, - [SMALL_STATE(6739)] = 317779, - [SMALL_STATE(6740)] = 317789, - [SMALL_STATE(6741)] = 317797, - [SMALL_STATE(6742)] = 317807, - [SMALL_STATE(6743)] = 317817, - [SMALL_STATE(6744)] = 317825, - [SMALL_STATE(6745)] = 317833, - [SMALL_STATE(6746)] = 317841, - [SMALL_STATE(6747)] = 317849, - [SMALL_STATE(6748)] = 317859, - [SMALL_STATE(6749)] = 317867, - [SMALL_STATE(6750)] = 317877, - [SMALL_STATE(6751)] = 317885, - [SMALL_STATE(6752)] = 317895, - [SMALL_STATE(6753)] = 317903, - [SMALL_STATE(6754)] = 317913, - [SMALL_STATE(6755)] = 317923, - [SMALL_STATE(6756)] = 317933, - [SMALL_STATE(6757)] = 317941, - [SMALL_STATE(6758)] = 317949, - [SMALL_STATE(6759)] = 317957, - [SMALL_STATE(6760)] = 317965, - [SMALL_STATE(6761)] = 317973, - [SMALL_STATE(6762)] = 317981, - [SMALL_STATE(6763)] = 317989, - [SMALL_STATE(6764)] = 317997, - [SMALL_STATE(6765)] = 318007, - [SMALL_STATE(6766)] = 318015, - [SMALL_STATE(6767)] = 318023, - [SMALL_STATE(6768)] = 318031, - [SMALL_STATE(6769)] = 318041, - [SMALL_STATE(6770)] = 318049, - [SMALL_STATE(6771)] = 318057, - [SMALL_STATE(6772)] = 318065, - [SMALL_STATE(6773)] = 318075, - [SMALL_STATE(6774)] = 318083, - [SMALL_STATE(6775)] = 318091, - [SMALL_STATE(6776)] = 318101, - [SMALL_STATE(6777)] = 318111, - [SMALL_STATE(6778)] = 318121, - [SMALL_STATE(6779)] = 318129, - [SMALL_STATE(6780)] = 318137, - [SMALL_STATE(6781)] = 318147, - [SMALL_STATE(6782)] = 318155, - [SMALL_STATE(6783)] = 318165, - [SMALL_STATE(6784)] = 318173, - [SMALL_STATE(6785)] = 318181, - [SMALL_STATE(6786)] = 318189, - [SMALL_STATE(6787)] = 318199, - [SMALL_STATE(6788)] = 318207, - [SMALL_STATE(6789)] = 318217, - [SMALL_STATE(6790)] = 318225, - [SMALL_STATE(6791)] = 318235, - [SMALL_STATE(6792)] = 318243, - [SMALL_STATE(6793)] = 318250, - [SMALL_STATE(6794)] = 318257, - [SMALL_STATE(6795)] = 318264, - [SMALL_STATE(6796)] = 318271, - [SMALL_STATE(6797)] = 318278, - [SMALL_STATE(6798)] = 318285, - [SMALL_STATE(6799)] = 318292, - [SMALL_STATE(6800)] = 318299, - [SMALL_STATE(6801)] = 318306, - [SMALL_STATE(6802)] = 318313, - [SMALL_STATE(6803)] = 318320, - [SMALL_STATE(6804)] = 318327, - [SMALL_STATE(6805)] = 318334, - [SMALL_STATE(6806)] = 318341, - [SMALL_STATE(6807)] = 318348, - [SMALL_STATE(6808)] = 318355, - [SMALL_STATE(6809)] = 318362, - [SMALL_STATE(6810)] = 318369, - [SMALL_STATE(6811)] = 318376, - [SMALL_STATE(6812)] = 318383, - [SMALL_STATE(6813)] = 318390, - [SMALL_STATE(6814)] = 318397, - [SMALL_STATE(6815)] = 318404, - [SMALL_STATE(6816)] = 318411, - [SMALL_STATE(6817)] = 318418, - [SMALL_STATE(6818)] = 318425, - [SMALL_STATE(6819)] = 318432, - [SMALL_STATE(6820)] = 318439, - [SMALL_STATE(6821)] = 318446, - [SMALL_STATE(6822)] = 318453, - [SMALL_STATE(6823)] = 318460, - [SMALL_STATE(6824)] = 318467, - [SMALL_STATE(6825)] = 318474, - [SMALL_STATE(6826)] = 318481, - [SMALL_STATE(6827)] = 318488, - [SMALL_STATE(6828)] = 318495, - [SMALL_STATE(6829)] = 318502, - [SMALL_STATE(6830)] = 318509, - [SMALL_STATE(6831)] = 318516, - [SMALL_STATE(6832)] = 318523, - [SMALL_STATE(6833)] = 318530, - [SMALL_STATE(6834)] = 318537, - [SMALL_STATE(6835)] = 318544, - [SMALL_STATE(6836)] = 318551, - [SMALL_STATE(6837)] = 318558, - [SMALL_STATE(6838)] = 318565, - [SMALL_STATE(6839)] = 318572, - [SMALL_STATE(6840)] = 318579, - [SMALL_STATE(6841)] = 318586, - [SMALL_STATE(6842)] = 318593, - [SMALL_STATE(6843)] = 318600, - [SMALL_STATE(6844)] = 318607, - [SMALL_STATE(6845)] = 318614, - [SMALL_STATE(6846)] = 318621, - [SMALL_STATE(6847)] = 318628, - [SMALL_STATE(6848)] = 318635, - [SMALL_STATE(6849)] = 318642, - [SMALL_STATE(6850)] = 318649, - [SMALL_STATE(6851)] = 318656, - [SMALL_STATE(6852)] = 318663, - [SMALL_STATE(6853)] = 318670, - [SMALL_STATE(6854)] = 318677, - [SMALL_STATE(6855)] = 318684, - [SMALL_STATE(6856)] = 318691, - [SMALL_STATE(6857)] = 318698, - [SMALL_STATE(6858)] = 318705, - [SMALL_STATE(6859)] = 318712, - [SMALL_STATE(6860)] = 318719, - [SMALL_STATE(6861)] = 318726, - [SMALL_STATE(6862)] = 318733, - [SMALL_STATE(6863)] = 318740, - [SMALL_STATE(6864)] = 318747, - [SMALL_STATE(6865)] = 318754, - [SMALL_STATE(6866)] = 318761, - [SMALL_STATE(6867)] = 318768, - [SMALL_STATE(6868)] = 318775, - [SMALL_STATE(6869)] = 318782, - [SMALL_STATE(6870)] = 318789, - [SMALL_STATE(6871)] = 318796, - [SMALL_STATE(6872)] = 318803, - [SMALL_STATE(6873)] = 318810, - [SMALL_STATE(6874)] = 318817, - [SMALL_STATE(6875)] = 318824, - [SMALL_STATE(6876)] = 318831, - [SMALL_STATE(6877)] = 318838, - [SMALL_STATE(6878)] = 318845, - [SMALL_STATE(6879)] = 318852, - [SMALL_STATE(6880)] = 318859, - [SMALL_STATE(6881)] = 318866, - [SMALL_STATE(6882)] = 318873, - [SMALL_STATE(6883)] = 318880, - [SMALL_STATE(6884)] = 318887, - [SMALL_STATE(6885)] = 318894, - [SMALL_STATE(6886)] = 318901, - [SMALL_STATE(6887)] = 318908, - [SMALL_STATE(6888)] = 318915, - [SMALL_STATE(6889)] = 318922, - [SMALL_STATE(6890)] = 318929, - [SMALL_STATE(6891)] = 318936, - [SMALL_STATE(6892)] = 318943, - [SMALL_STATE(6893)] = 318950, - [SMALL_STATE(6894)] = 318957, - [SMALL_STATE(6895)] = 318964, - [SMALL_STATE(6896)] = 318971, - [SMALL_STATE(6897)] = 318978, - [SMALL_STATE(6898)] = 318985, - [SMALL_STATE(6899)] = 318992, - [SMALL_STATE(6900)] = 318999, - [SMALL_STATE(6901)] = 319006, - [SMALL_STATE(6902)] = 319013, - [SMALL_STATE(6903)] = 319020, - [SMALL_STATE(6904)] = 319027, - [SMALL_STATE(6905)] = 319034, - [SMALL_STATE(6906)] = 319041, - [SMALL_STATE(6907)] = 319048, - [SMALL_STATE(6908)] = 319055, - [SMALL_STATE(6909)] = 319062, - [SMALL_STATE(6910)] = 319069, - [SMALL_STATE(6911)] = 319076, - [SMALL_STATE(6912)] = 319083, - [SMALL_STATE(6913)] = 319090, - [SMALL_STATE(6914)] = 319097, - [SMALL_STATE(6915)] = 319104, - [SMALL_STATE(6916)] = 319111, - [SMALL_STATE(6917)] = 319118, - [SMALL_STATE(6918)] = 319125, - [SMALL_STATE(6919)] = 319132, - [SMALL_STATE(6920)] = 319139, - [SMALL_STATE(6921)] = 319146, - [SMALL_STATE(6922)] = 319153, - [SMALL_STATE(6923)] = 319160, - [SMALL_STATE(6924)] = 319167, - [SMALL_STATE(6925)] = 319174, - [SMALL_STATE(6926)] = 319181, - [SMALL_STATE(6927)] = 319188, - [SMALL_STATE(6928)] = 319195, - [SMALL_STATE(6929)] = 319202, - [SMALL_STATE(6930)] = 319209, - [SMALL_STATE(6931)] = 319216, - [SMALL_STATE(6932)] = 319223, - [SMALL_STATE(6933)] = 319230, - [SMALL_STATE(6934)] = 319237, - [SMALL_STATE(6935)] = 319244, - [SMALL_STATE(6936)] = 319251, - [SMALL_STATE(6937)] = 319258, - [SMALL_STATE(6938)] = 319265, - [SMALL_STATE(6939)] = 319272, - [SMALL_STATE(6940)] = 319279, - [SMALL_STATE(6941)] = 319286, - [SMALL_STATE(6942)] = 319293, - [SMALL_STATE(6943)] = 319300, - [SMALL_STATE(6944)] = 319307, - [SMALL_STATE(6945)] = 319314, - [SMALL_STATE(6946)] = 319321, - [SMALL_STATE(6947)] = 319328, - [SMALL_STATE(6948)] = 319335, - [SMALL_STATE(6949)] = 319342, - [SMALL_STATE(6950)] = 319349, - [SMALL_STATE(6951)] = 319356, - [SMALL_STATE(6952)] = 319363, - [SMALL_STATE(6953)] = 319370, - [SMALL_STATE(6954)] = 319377, - [SMALL_STATE(6955)] = 319384, - [SMALL_STATE(6956)] = 319391, - [SMALL_STATE(6957)] = 319398, - [SMALL_STATE(6958)] = 319405, - [SMALL_STATE(6959)] = 319412, - [SMALL_STATE(6960)] = 319419, - [SMALL_STATE(6961)] = 319426, - [SMALL_STATE(6962)] = 319433, - [SMALL_STATE(6963)] = 319440, - [SMALL_STATE(6964)] = 319447, - [SMALL_STATE(6965)] = 319454, - [SMALL_STATE(6966)] = 319461, - [SMALL_STATE(6967)] = 319468, - [SMALL_STATE(6968)] = 319475, - [SMALL_STATE(6969)] = 319482, - [SMALL_STATE(6970)] = 319489, - [SMALL_STATE(6971)] = 319496, - [SMALL_STATE(6972)] = 319503, - [SMALL_STATE(6973)] = 319510, - [SMALL_STATE(6974)] = 319517, - [SMALL_STATE(6975)] = 319524, - [SMALL_STATE(6976)] = 319531, - [SMALL_STATE(6977)] = 319538, - [SMALL_STATE(6978)] = 319545, - [SMALL_STATE(6979)] = 319552, - [SMALL_STATE(6980)] = 319559, - [SMALL_STATE(6981)] = 319566, - [SMALL_STATE(6982)] = 319573, - [SMALL_STATE(6983)] = 319580, - [SMALL_STATE(6984)] = 319587, - [SMALL_STATE(6985)] = 319594, - [SMALL_STATE(6986)] = 319601, - [SMALL_STATE(6987)] = 319608, - [SMALL_STATE(6988)] = 319615, - [SMALL_STATE(6989)] = 319622, - [SMALL_STATE(6990)] = 319629, - [SMALL_STATE(6991)] = 319636, - [SMALL_STATE(6992)] = 319643, - [SMALL_STATE(6993)] = 319650, - [SMALL_STATE(6994)] = 319657, - [SMALL_STATE(6995)] = 319664, - [SMALL_STATE(6996)] = 319671, - [SMALL_STATE(6997)] = 319678, - [SMALL_STATE(6998)] = 319685, - [SMALL_STATE(6999)] = 319692, - [SMALL_STATE(7000)] = 319699, - [SMALL_STATE(7001)] = 319706, - [SMALL_STATE(7002)] = 319713, - [SMALL_STATE(7003)] = 319720, - [SMALL_STATE(7004)] = 319727, - [SMALL_STATE(7005)] = 319734, - [SMALL_STATE(7006)] = 319741, - [SMALL_STATE(7007)] = 319748, - [SMALL_STATE(7008)] = 319755, - [SMALL_STATE(7009)] = 319762, - [SMALL_STATE(7010)] = 319769, - [SMALL_STATE(7011)] = 319776, - [SMALL_STATE(7012)] = 319783, - [SMALL_STATE(7013)] = 319790, - [SMALL_STATE(7014)] = 319797, - [SMALL_STATE(7015)] = 319804, - [SMALL_STATE(7016)] = 319811, - [SMALL_STATE(7017)] = 319818, - [SMALL_STATE(7018)] = 319825, - [SMALL_STATE(7019)] = 319832, - [SMALL_STATE(7020)] = 319839, - [SMALL_STATE(7021)] = 319846, - [SMALL_STATE(7022)] = 319853, - [SMALL_STATE(7023)] = 319860, - [SMALL_STATE(7024)] = 319867, - [SMALL_STATE(7025)] = 319874, - [SMALL_STATE(7026)] = 319881, - [SMALL_STATE(7027)] = 319888, - [SMALL_STATE(7028)] = 319895, - [SMALL_STATE(7029)] = 319902, - [SMALL_STATE(7030)] = 319909, - [SMALL_STATE(7031)] = 319916, - [SMALL_STATE(7032)] = 319923, - [SMALL_STATE(7033)] = 319930, - [SMALL_STATE(7034)] = 319937, - [SMALL_STATE(7035)] = 319944, - [SMALL_STATE(7036)] = 319951, - [SMALL_STATE(7037)] = 319958, - [SMALL_STATE(7038)] = 319965, - [SMALL_STATE(7039)] = 319972, - [SMALL_STATE(7040)] = 319979, - [SMALL_STATE(7041)] = 319986, - [SMALL_STATE(7042)] = 319993, - [SMALL_STATE(7043)] = 320000, - [SMALL_STATE(7044)] = 320007, - [SMALL_STATE(7045)] = 320014, - [SMALL_STATE(7046)] = 320021, - [SMALL_STATE(7047)] = 320028, - [SMALL_STATE(7048)] = 320035, - [SMALL_STATE(7049)] = 320042, - [SMALL_STATE(7050)] = 320049, - [SMALL_STATE(7051)] = 320056, - [SMALL_STATE(7052)] = 320063, - [SMALL_STATE(7053)] = 320070, - [SMALL_STATE(7054)] = 320077, - [SMALL_STATE(7055)] = 320084, - [SMALL_STATE(7056)] = 320091, - [SMALL_STATE(7057)] = 320098, - [SMALL_STATE(7058)] = 320105, - [SMALL_STATE(7059)] = 320112, - [SMALL_STATE(7060)] = 320119, - [SMALL_STATE(7061)] = 320126, - [SMALL_STATE(7062)] = 320133, - [SMALL_STATE(7063)] = 320140, - [SMALL_STATE(7064)] = 320147, - [SMALL_STATE(7065)] = 320154, - [SMALL_STATE(7066)] = 320161, - [SMALL_STATE(7067)] = 320168, - [SMALL_STATE(7068)] = 320175, - [SMALL_STATE(7069)] = 320182, - [SMALL_STATE(7070)] = 320189, - [SMALL_STATE(7071)] = 320196, - [SMALL_STATE(7072)] = 320203, - [SMALL_STATE(7073)] = 320210, - [SMALL_STATE(7074)] = 320217, - [SMALL_STATE(7075)] = 320224, - [SMALL_STATE(7076)] = 320231, - [SMALL_STATE(7077)] = 320238, - [SMALL_STATE(7078)] = 320245, - [SMALL_STATE(7079)] = 320252, - [SMALL_STATE(7080)] = 320259, - [SMALL_STATE(7081)] = 320266, - [SMALL_STATE(7082)] = 320273, - [SMALL_STATE(7083)] = 320280, - [SMALL_STATE(7084)] = 320287, - [SMALL_STATE(7085)] = 320294, - [SMALL_STATE(7086)] = 320301, - [SMALL_STATE(7087)] = 320308, - [SMALL_STATE(7088)] = 320315, - [SMALL_STATE(7089)] = 320322, - [SMALL_STATE(7090)] = 320329, - [SMALL_STATE(7091)] = 320336, - [SMALL_STATE(7092)] = 320343, - [SMALL_STATE(7093)] = 320350, - [SMALL_STATE(7094)] = 320357, - [SMALL_STATE(7095)] = 320364, - [SMALL_STATE(7096)] = 320371, - [SMALL_STATE(7097)] = 320378, - [SMALL_STATE(7098)] = 320385, - [SMALL_STATE(7099)] = 320392, - [SMALL_STATE(7100)] = 320399, - [SMALL_STATE(7101)] = 320406, - [SMALL_STATE(7102)] = 320413, - [SMALL_STATE(7103)] = 320420, - [SMALL_STATE(7104)] = 320427, - [SMALL_STATE(7105)] = 320434, - [SMALL_STATE(7106)] = 320441, - [SMALL_STATE(7107)] = 320448, - [SMALL_STATE(7108)] = 320455, - [SMALL_STATE(7109)] = 320462, - [SMALL_STATE(7110)] = 320469, - [SMALL_STATE(7111)] = 320476, - [SMALL_STATE(7112)] = 320483, - [SMALL_STATE(7113)] = 320490, - [SMALL_STATE(7114)] = 320497, - [SMALL_STATE(7115)] = 320504, - [SMALL_STATE(7116)] = 320511, - [SMALL_STATE(7117)] = 320518, - [SMALL_STATE(7118)] = 320525, - [SMALL_STATE(7119)] = 320532, - [SMALL_STATE(7120)] = 320539, - [SMALL_STATE(7121)] = 320546, - [SMALL_STATE(7122)] = 320553, - [SMALL_STATE(7123)] = 320560, - [SMALL_STATE(7124)] = 320567, - [SMALL_STATE(7125)] = 320574, - [SMALL_STATE(7126)] = 320581, - [SMALL_STATE(7127)] = 320588, - [SMALL_STATE(7128)] = 320595, - [SMALL_STATE(7129)] = 320602, - [SMALL_STATE(7130)] = 320609, - [SMALL_STATE(7131)] = 320616, - [SMALL_STATE(7132)] = 320623, - [SMALL_STATE(7133)] = 320630, - [SMALL_STATE(7134)] = 320637, - [SMALL_STATE(7135)] = 320644, - [SMALL_STATE(7136)] = 320651, - [SMALL_STATE(7137)] = 320658, - [SMALL_STATE(7138)] = 320665, - [SMALL_STATE(7139)] = 320672, - [SMALL_STATE(7140)] = 320679, - [SMALL_STATE(7141)] = 320686, - [SMALL_STATE(7142)] = 320693, - [SMALL_STATE(7143)] = 320700, - [SMALL_STATE(7144)] = 320707, - [SMALL_STATE(7145)] = 320714, - [SMALL_STATE(7146)] = 320721, - [SMALL_STATE(7147)] = 320728, - [SMALL_STATE(7148)] = 320735, - [SMALL_STATE(7149)] = 320742, - [SMALL_STATE(7150)] = 320749, - [SMALL_STATE(7151)] = 320756, - [SMALL_STATE(7152)] = 320763, - [SMALL_STATE(7153)] = 320770, - [SMALL_STATE(7154)] = 320777, - [SMALL_STATE(7155)] = 320784, - [SMALL_STATE(7156)] = 320791, - [SMALL_STATE(7157)] = 320798, - [SMALL_STATE(7158)] = 320805, - [SMALL_STATE(7159)] = 320812, - [SMALL_STATE(7160)] = 320819, - [SMALL_STATE(7161)] = 320826, - [SMALL_STATE(7162)] = 320833, - [SMALL_STATE(7163)] = 320840, - [SMALL_STATE(7164)] = 320847, - [SMALL_STATE(7165)] = 320854, - [SMALL_STATE(7166)] = 320861, - [SMALL_STATE(7167)] = 320868, - [SMALL_STATE(7168)] = 320875, - [SMALL_STATE(7169)] = 320882, - [SMALL_STATE(7170)] = 320889, - [SMALL_STATE(7171)] = 320896, - [SMALL_STATE(7172)] = 320903, - [SMALL_STATE(7173)] = 320910, - [SMALL_STATE(7174)] = 320917, - [SMALL_STATE(7175)] = 320924, - [SMALL_STATE(7176)] = 320931, - [SMALL_STATE(7177)] = 320938, - [SMALL_STATE(7178)] = 320945, - [SMALL_STATE(7179)] = 320952, - [SMALL_STATE(7180)] = 320959, - [SMALL_STATE(7181)] = 320966, - [SMALL_STATE(7182)] = 320973, - [SMALL_STATE(7183)] = 320980, - [SMALL_STATE(7184)] = 320987, - [SMALL_STATE(7185)] = 320994, - [SMALL_STATE(7186)] = 321001, - [SMALL_STATE(7187)] = 321008, - [SMALL_STATE(7188)] = 321015, - [SMALL_STATE(7189)] = 321022, - [SMALL_STATE(7190)] = 321029, - [SMALL_STATE(7191)] = 321036, - [SMALL_STATE(7192)] = 321043, - [SMALL_STATE(7193)] = 321050, - [SMALL_STATE(7194)] = 321057, - [SMALL_STATE(7195)] = 321064, - [SMALL_STATE(7196)] = 321071, - [SMALL_STATE(7197)] = 321078, - [SMALL_STATE(7198)] = 321085, - [SMALL_STATE(7199)] = 321092, - [SMALL_STATE(7200)] = 321099, - [SMALL_STATE(7201)] = 321106, - [SMALL_STATE(7202)] = 321113, - [SMALL_STATE(7203)] = 321120, - [SMALL_STATE(7204)] = 321127, - [SMALL_STATE(7205)] = 321134, - [SMALL_STATE(7206)] = 321141, - [SMALL_STATE(7207)] = 321148, - [SMALL_STATE(7208)] = 321155, - [SMALL_STATE(7209)] = 321162, - [SMALL_STATE(7210)] = 321169, - [SMALL_STATE(7211)] = 321176, - [SMALL_STATE(7212)] = 321183, - [SMALL_STATE(7213)] = 321190, - [SMALL_STATE(7214)] = 321197, - [SMALL_STATE(7215)] = 321204, - [SMALL_STATE(7216)] = 321211, - [SMALL_STATE(7217)] = 321218, - [SMALL_STATE(7218)] = 321225, - [SMALL_STATE(7219)] = 321232, - [SMALL_STATE(7220)] = 321239, - [SMALL_STATE(7221)] = 321246, - [SMALL_STATE(7222)] = 321253, - [SMALL_STATE(7223)] = 321260, - [SMALL_STATE(7224)] = 321267, - [SMALL_STATE(7225)] = 321274, - [SMALL_STATE(7226)] = 321281, - [SMALL_STATE(7227)] = 321288, - [SMALL_STATE(7228)] = 321295, - [SMALL_STATE(7229)] = 321302, - [SMALL_STATE(7230)] = 321309, - [SMALL_STATE(7231)] = 321316, - [SMALL_STATE(7232)] = 321323, - [SMALL_STATE(7233)] = 321330, - [SMALL_STATE(7234)] = 321337, - [SMALL_STATE(7235)] = 321344, - [SMALL_STATE(7236)] = 321351, - [SMALL_STATE(7237)] = 321358, - [SMALL_STATE(7238)] = 321365, - [SMALL_STATE(7239)] = 321372, - [SMALL_STATE(7240)] = 321379, - [SMALL_STATE(7241)] = 321386, - [SMALL_STATE(7242)] = 321393, - [SMALL_STATE(7243)] = 321400, - [SMALL_STATE(7244)] = 321407, - [SMALL_STATE(7245)] = 321414, - [SMALL_STATE(7246)] = 321421, - [SMALL_STATE(7247)] = 321428, - [SMALL_STATE(7248)] = 321435, - [SMALL_STATE(7249)] = 321442, - [SMALL_STATE(7250)] = 321449, - [SMALL_STATE(7251)] = 321456, - [SMALL_STATE(7252)] = 321463, - [SMALL_STATE(7253)] = 321470, - [SMALL_STATE(7254)] = 321477, - [SMALL_STATE(7255)] = 321484, - [SMALL_STATE(7256)] = 321491, - [SMALL_STATE(7257)] = 321498, - [SMALL_STATE(7258)] = 321505, - [SMALL_STATE(7259)] = 321512, - [SMALL_STATE(7260)] = 321519, - [SMALL_STATE(7261)] = 321526, - [SMALL_STATE(7262)] = 321533, - [SMALL_STATE(7263)] = 321540, - [SMALL_STATE(7264)] = 321547, - [SMALL_STATE(7265)] = 321554, - [SMALL_STATE(7266)] = 321561, - [SMALL_STATE(7267)] = 321568, - [SMALL_STATE(7268)] = 321575, - [SMALL_STATE(7269)] = 321582, - [SMALL_STATE(7270)] = 321589, - [SMALL_STATE(7271)] = 321596, - [SMALL_STATE(7272)] = 321603, - [SMALL_STATE(7273)] = 321610, - [SMALL_STATE(7274)] = 321617, - [SMALL_STATE(7275)] = 321624, - [SMALL_STATE(7276)] = 321631, - [SMALL_STATE(7277)] = 321638, - [SMALL_STATE(7278)] = 321645, - [SMALL_STATE(7279)] = 321652, - [SMALL_STATE(7280)] = 321659, - [SMALL_STATE(7281)] = 321666, - [SMALL_STATE(7282)] = 321673, - [SMALL_STATE(7283)] = 321680, - [SMALL_STATE(7284)] = 321687, - [SMALL_STATE(7285)] = 321694, - [SMALL_STATE(7286)] = 321701, - [SMALL_STATE(7287)] = 321708, - [SMALL_STATE(7288)] = 321715, - [SMALL_STATE(7289)] = 321722, - [SMALL_STATE(7290)] = 321729, - [SMALL_STATE(7291)] = 321736, - [SMALL_STATE(7292)] = 321743, - [SMALL_STATE(7293)] = 321750, - [SMALL_STATE(7294)] = 321757, - [SMALL_STATE(7295)] = 321764, - [SMALL_STATE(7296)] = 321771, - [SMALL_STATE(7297)] = 321778, - [SMALL_STATE(7298)] = 321785, - [SMALL_STATE(7299)] = 321792, - [SMALL_STATE(7300)] = 321799, - [SMALL_STATE(7301)] = 321806, - [SMALL_STATE(7302)] = 321813, - [SMALL_STATE(7303)] = 321820, - [SMALL_STATE(7304)] = 321827, - [SMALL_STATE(7305)] = 321834, - [SMALL_STATE(7306)] = 321841, - [SMALL_STATE(7307)] = 321848, - [SMALL_STATE(7308)] = 321855, - [SMALL_STATE(7309)] = 321862, - [SMALL_STATE(7310)] = 321869, - [SMALL_STATE(7311)] = 321876, - [SMALL_STATE(7312)] = 321883, - [SMALL_STATE(7313)] = 321890, - [SMALL_STATE(7314)] = 321897, - [SMALL_STATE(7315)] = 321904, - [SMALL_STATE(7316)] = 321911, - [SMALL_STATE(7317)] = 321918, - [SMALL_STATE(7318)] = 321925, - [SMALL_STATE(7319)] = 321932, - [SMALL_STATE(7320)] = 321939, - [SMALL_STATE(7321)] = 321946, - [SMALL_STATE(7322)] = 321953, - [SMALL_STATE(7323)] = 321960, - [SMALL_STATE(7324)] = 321967, - [SMALL_STATE(7325)] = 321974, - [SMALL_STATE(7326)] = 321981, - [SMALL_STATE(7327)] = 321988, - [SMALL_STATE(7328)] = 321995, - [SMALL_STATE(7329)] = 322002, - [SMALL_STATE(7330)] = 322009, - [SMALL_STATE(7331)] = 322016, - [SMALL_STATE(7332)] = 322023, - [SMALL_STATE(7333)] = 322030, - [SMALL_STATE(7334)] = 322037, - [SMALL_STATE(7335)] = 322044, - [SMALL_STATE(7336)] = 322051, - [SMALL_STATE(7337)] = 322058, - [SMALL_STATE(7338)] = 322065, - [SMALL_STATE(7339)] = 322072, - [SMALL_STATE(7340)] = 322079, - [SMALL_STATE(7341)] = 322086, - [SMALL_STATE(7342)] = 322093, - [SMALL_STATE(7343)] = 322100, - [SMALL_STATE(7344)] = 322107, - [SMALL_STATE(7345)] = 322114, - [SMALL_STATE(7346)] = 322121, - [SMALL_STATE(7347)] = 322128, - [SMALL_STATE(7348)] = 322135, - [SMALL_STATE(7349)] = 322142, - [SMALL_STATE(7350)] = 322149, - [SMALL_STATE(7351)] = 322156, - [SMALL_STATE(7352)] = 322163, - [SMALL_STATE(7353)] = 322170, - [SMALL_STATE(7354)] = 322177, - [SMALL_STATE(7355)] = 322184, - [SMALL_STATE(7356)] = 322191, - [SMALL_STATE(7357)] = 322198, - [SMALL_STATE(7358)] = 322205, - [SMALL_STATE(7359)] = 322212, - [SMALL_STATE(7360)] = 322219, - [SMALL_STATE(7361)] = 322226, - [SMALL_STATE(7362)] = 322233, - [SMALL_STATE(7363)] = 322240, - [SMALL_STATE(7364)] = 322247, - [SMALL_STATE(7365)] = 322254, - [SMALL_STATE(7366)] = 322261, - [SMALL_STATE(7367)] = 322268, - [SMALL_STATE(7368)] = 322275, - [SMALL_STATE(7369)] = 322282, - [SMALL_STATE(7370)] = 322289, - [SMALL_STATE(7371)] = 322296, - [SMALL_STATE(7372)] = 322303, - [SMALL_STATE(7373)] = 322310, - [SMALL_STATE(7374)] = 322317, - [SMALL_STATE(7375)] = 322324, - [SMALL_STATE(7376)] = 322331, - [SMALL_STATE(7377)] = 322338, - [SMALL_STATE(7378)] = 322345, - [SMALL_STATE(7379)] = 322352, - [SMALL_STATE(7380)] = 322359, - [SMALL_STATE(7381)] = 322366, - [SMALL_STATE(7382)] = 322373, - [SMALL_STATE(7383)] = 322380, - [SMALL_STATE(7384)] = 322387, - [SMALL_STATE(7385)] = 322394, - [SMALL_STATE(7386)] = 322401, - [SMALL_STATE(7387)] = 322408, - [SMALL_STATE(7388)] = 322415, - [SMALL_STATE(7389)] = 322422, - [SMALL_STATE(7390)] = 322429, - [SMALL_STATE(7391)] = 322436, - [SMALL_STATE(7392)] = 322443, - [SMALL_STATE(7393)] = 322450, - [SMALL_STATE(7394)] = 322457, - [SMALL_STATE(7395)] = 322464, - [SMALL_STATE(7396)] = 322471, - [SMALL_STATE(7397)] = 322478, - [SMALL_STATE(7398)] = 322485, - [SMALL_STATE(7399)] = 322492, - [SMALL_STATE(7400)] = 322499, - [SMALL_STATE(7401)] = 322506, - [SMALL_STATE(7402)] = 322513, - [SMALL_STATE(7403)] = 322520, - [SMALL_STATE(7404)] = 322527, - [SMALL_STATE(7405)] = 322534, - [SMALL_STATE(7406)] = 322541, - [SMALL_STATE(7407)] = 322548, - [SMALL_STATE(7408)] = 322555, - [SMALL_STATE(7409)] = 322562, - [SMALL_STATE(7410)] = 322569, - [SMALL_STATE(7411)] = 322576, - [SMALL_STATE(7412)] = 322583, - [SMALL_STATE(7413)] = 322590, - [SMALL_STATE(7414)] = 322597, - [SMALL_STATE(7415)] = 322604, - [SMALL_STATE(7416)] = 322611, - [SMALL_STATE(7417)] = 322618, - [SMALL_STATE(7418)] = 322625, - [SMALL_STATE(7419)] = 322632, - [SMALL_STATE(7420)] = 322639, - [SMALL_STATE(7421)] = 322646, - [SMALL_STATE(7422)] = 322653, - [SMALL_STATE(7423)] = 322660, - [SMALL_STATE(7424)] = 322667, - [SMALL_STATE(7425)] = 322674, - [SMALL_STATE(7426)] = 322681, - [SMALL_STATE(7427)] = 322688, - [SMALL_STATE(7428)] = 322695, - [SMALL_STATE(7429)] = 322702, - [SMALL_STATE(7430)] = 322709, - [SMALL_STATE(7431)] = 322716, - [SMALL_STATE(7432)] = 322723, - [SMALL_STATE(7433)] = 322730, - [SMALL_STATE(7434)] = 322737, - [SMALL_STATE(7435)] = 322744, - [SMALL_STATE(7436)] = 322751, - [SMALL_STATE(7437)] = 322758, - [SMALL_STATE(7438)] = 322765, - [SMALL_STATE(7439)] = 322772, - [SMALL_STATE(7440)] = 322779, - [SMALL_STATE(7441)] = 322786, - [SMALL_STATE(7442)] = 322793, - [SMALL_STATE(7443)] = 322800, - [SMALL_STATE(7444)] = 322807, - [SMALL_STATE(7445)] = 322814, - [SMALL_STATE(7446)] = 322821, - [SMALL_STATE(7447)] = 322828, - [SMALL_STATE(7448)] = 322835, - [SMALL_STATE(7449)] = 322842, - [SMALL_STATE(7450)] = 322849, - [SMALL_STATE(7451)] = 322856, - [SMALL_STATE(7452)] = 322863, - [SMALL_STATE(7453)] = 322870, - [SMALL_STATE(7454)] = 322877, - [SMALL_STATE(7455)] = 322884, - [SMALL_STATE(7456)] = 322891, - [SMALL_STATE(7457)] = 322898, - [SMALL_STATE(7458)] = 322905, - [SMALL_STATE(7459)] = 322912, - [SMALL_STATE(7460)] = 322919, - [SMALL_STATE(7461)] = 322926, - [SMALL_STATE(7462)] = 322933, - [SMALL_STATE(7463)] = 322940, - [SMALL_STATE(7464)] = 322947, - [SMALL_STATE(7465)] = 322954, - [SMALL_STATE(7466)] = 322961, - [SMALL_STATE(7467)] = 322968, - [SMALL_STATE(7468)] = 322975, - [SMALL_STATE(7469)] = 322982, - [SMALL_STATE(7470)] = 322989, - [SMALL_STATE(7471)] = 322996, - [SMALL_STATE(7472)] = 323003, - [SMALL_STATE(7473)] = 323010, - [SMALL_STATE(7474)] = 323017, - [SMALL_STATE(7475)] = 323024, - [SMALL_STATE(7476)] = 323031, - [SMALL_STATE(7477)] = 323038, - [SMALL_STATE(7478)] = 323045, - [SMALL_STATE(7479)] = 323052, - [SMALL_STATE(7480)] = 323059, - [SMALL_STATE(7481)] = 323066, - [SMALL_STATE(7482)] = 323073, - [SMALL_STATE(7483)] = 323080, - [SMALL_STATE(7484)] = 323087, - [SMALL_STATE(7485)] = 323094, - [SMALL_STATE(7486)] = 323101, - [SMALL_STATE(7487)] = 323108, - [SMALL_STATE(7488)] = 323115, - [SMALL_STATE(7489)] = 323122, - [SMALL_STATE(7490)] = 323129, - [SMALL_STATE(7491)] = 323136, - [SMALL_STATE(7492)] = 323143, - [SMALL_STATE(7493)] = 323150, - [SMALL_STATE(7494)] = 323157, - [SMALL_STATE(7495)] = 323164, - [SMALL_STATE(7496)] = 323171, - [SMALL_STATE(7497)] = 323178, - [SMALL_STATE(7498)] = 323185, - [SMALL_STATE(7499)] = 323192, - [SMALL_STATE(7500)] = 323199, - [SMALL_STATE(7501)] = 323206, - [SMALL_STATE(7502)] = 323213, - [SMALL_STATE(7503)] = 323220, - [SMALL_STATE(7504)] = 323227, - [SMALL_STATE(7505)] = 323234, - [SMALL_STATE(7506)] = 323241, - [SMALL_STATE(7507)] = 323248, - [SMALL_STATE(7508)] = 323255, - [SMALL_STATE(7509)] = 323262, - [SMALL_STATE(7510)] = 323269, - [SMALL_STATE(7511)] = 323276, - [SMALL_STATE(7512)] = 323283, - [SMALL_STATE(7513)] = 323290, - [SMALL_STATE(7514)] = 323297, - [SMALL_STATE(7515)] = 323304, - [SMALL_STATE(7516)] = 323311, - [SMALL_STATE(7517)] = 323318, - [SMALL_STATE(7518)] = 323325, - [SMALL_STATE(7519)] = 323332, - [SMALL_STATE(7520)] = 323339, - [SMALL_STATE(7521)] = 323346, - [SMALL_STATE(7522)] = 323353, - [SMALL_STATE(7523)] = 323360, - [SMALL_STATE(7524)] = 323367, - [SMALL_STATE(7525)] = 323374, - [SMALL_STATE(7526)] = 323381, - [SMALL_STATE(7527)] = 323388, - [SMALL_STATE(7528)] = 323395, - [SMALL_STATE(7529)] = 323402, - [SMALL_STATE(7530)] = 323409, - [SMALL_STATE(7531)] = 323416, - [SMALL_STATE(7532)] = 323423, - [SMALL_STATE(7533)] = 323430, - [SMALL_STATE(7534)] = 323437, - [SMALL_STATE(7535)] = 323444, - [SMALL_STATE(7536)] = 323451, - [SMALL_STATE(7537)] = 323458, - [SMALL_STATE(7538)] = 323465, - [SMALL_STATE(7539)] = 323472, - [SMALL_STATE(7540)] = 323479, - [SMALL_STATE(7541)] = 323486, - [SMALL_STATE(7542)] = 323493, - [SMALL_STATE(7543)] = 323500, - [SMALL_STATE(7544)] = 323507, - [SMALL_STATE(7545)] = 323514, - [SMALL_STATE(7546)] = 323521, - [SMALL_STATE(7547)] = 323528, - [SMALL_STATE(7548)] = 323535, - [SMALL_STATE(7549)] = 323542, - [SMALL_STATE(7550)] = 323549, - [SMALL_STATE(7551)] = 323556, - [SMALL_STATE(7552)] = 323563, - [SMALL_STATE(7553)] = 323570, - [SMALL_STATE(7554)] = 323577, - [SMALL_STATE(7555)] = 323584, - [SMALL_STATE(7556)] = 323591, - [SMALL_STATE(7557)] = 323598, - [SMALL_STATE(7558)] = 323605, - [SMALL_STATE(7559)] = 323612, - [SMALL_STATE(7560)] = 323619, - [SMALL_STATE(7561)] = 323626, - [SMALL_STATE(7562)] = 323633, - [SMALL_STATE(7563)] = 323640, - [SMALL_STATE(7564)] = 323647, - [SMALL_STATE(7565)] = 323654, - [SMALL_STATE(7566)] = 323661, - [SMALL_STATE(7567)] = 323668, - [SMALL_STATE(7568)] = 323675, - [SMALL_STATE(7569)] = 323682, - [SMALL_STATE(7570)] = 323689, - [SMALL_STATE(7571)] = 323696, - [SMALL_STATE(7572)] = 323703, - [SMALL_STATE(7573)] = 323710, - [SMALL_STATE(7574)] = 323717, - [SMALL_STATE(7575)] = 323724, - [SMALL_STATE(7576)] = 323731, - [SMALL_STATE(7577)] = 323738, - [SMALL_STATE(7578)] = 323745, - [SMALL_STATE(7579)] = 323752, - [SMALL_STATE(7580)] = 323759, - [SMALL_STATE(7581)] = 323766, - [SMALL_STATE(7582)] = 323773, - [SMALL_STATE(7583)] = 323780, - [SMALL_STATE(7584)] = 323787, - [SMALL_STATE(7585)] = 323794, - [SMALL_STATE(7586)] = 323801, - [SMALL_STATE(7587)] = 323808, - [SMALL_STATE(7588)] = 323815, - [SMALL_STATE(7589)] = 323822, - [SMALL_STATE(7590)] = 323829, - [SMALL_STATE(7591)] = 323836, - [SMALL_STATE(7592)] = 323843, - [SMALL_STATE(7593)] = 323850, - [SMALL_STATE(7594)] = 323857, - [SMALL_STATE(7595)] = 323864, - [SMALL_STATE(7596)] = 323871, - [SMALL_STATE(7597)] = 323878, - [SMALL_STATE(7598)] = 323885, - [SMALL_STATE(7599)] = 323892, - [SMALL_STATE(7600)] = 323899, - [SMALL_STATE(7601)] = 323906, - [SMALL_STATE(7602)] = 323913, - [SMALL_STATE(7603)] = 323920, - [SMALL_STATE(7604)] = 323927, - [SMALL_STATE(7605)] = 323934, - [SMALL_STATE(7606)] = 323941, - [SMALL_STATE(7607)] = 323948, - [SMALL_STATE(7608)] = 323955, - [SMALL_STATE(7609)] = 323962, - [SMALL_STATE(7610)] = 323969, - [SMALL_STATE(7611)] = 323976, - [SMALL_STATE(7612)] = 323983, - [SMALL_STATE(7613)] = 323990, - [SMALL_STATE(7614)] = 323997, - [SMALL_STATE(7615)] = 324004, - [SMALL_STATE(7616)] = 324011, - [SMALL_STATE(7617)] = 324018, - [SMALL_STATE(7618)] = 324025, - [SMALL_STATE(7619)] = 324032, - [SMALL_STATE(7620)] = 324039, - [SMALL_STATE(7621)] = 324046, - [SMALL_STATE(7622)] = 324053, - [SMALL_STATE(7623)] = 324060, - [SMALL_STATE(7624)] = 324067, - [SMALL_STATE(7625)] = 324074, - [SMALL_STATE(7626)] = 324081, - [SMALL_STATE(7627)] = 324088, - [SMALL_STATE(7628)] = 324095, - [SMALL_STATE(7629)] = 324102, - [SMALL_STATE(7630)] = 324109, - [SMALL_STATE(7631)] = 324116, - [SMALL_STATE(7632)] = 324123, - [SMALL_STATE(7633)] = 324130, - [SMALL_STATE(7634)] = 324137, - [SMALL_STATE(7635)] = 324144, - [SMALL_STATE(7636)] = 324151, - [SMALL_STATE(7637)] = 324158, - [SMALL_STATE(7638)] = 324165, - [SMALL_STATE(7639)] = 324172, - [SMALL_STATE(7640)] = 324179, - [SMALL_STATE(7641)] = 324186, - [SMALL_STATE(7642)] = 324193, - [SMALL_STATE(7643)] = 324200, - [SMALL_STATE(7644)] = 324207, - [SMALL_STATE(7645)] = 324214, - [SMALL_STATE(7646)] = 324221, - [SMALL_STATE(7647)] = 324228, - [SMALL_STATE(7648)] = 324235, - [SMALL_STATE(7649)] = 324242, - [SMALL_STATE(7650)] = 324249, - [SMALL_STATE(7651)] = 324256, - [SMALL_STATE(7652)] = 324263, - [SMALL_STATE(7653)] = 324270, - [SMALL_STATE(7654)] = 324277, - [SMALL_STATE(7655)] = 324284, - [SMALL_STATE(7656)] = 324291, - [SMALL_STATE(7657)] = 324298, - [SMALL_STATE(7658)] = 324305, - [SMALL_STATE(7659)] = 324312, - [SMALL_STATE(7660)] = 324319, - [SMALL_STATE(7661)] = 324326, - [SMALL_STATE(7662)] = 324333, - [SMALL_STATE(7663)] = 324340, - [SMALL_STATE(7664)] = 324347, - [SMALL_STATE(7665)] = 324354, - [SMALL_STATE(7666)] = 324361, - [SMALL_STATE(7667)] = 324368, - [SMALL_STATE(7668)] = 324375, - [SMALL_STATE(7669)] = 324382, - [SMALL_STATE(7670)] = 324389, + [SMALL_STATE(530)] = 0, + [SMALL_STATE(531)] = 123, + [SMALL_STATE(532)] = 246, + [SMALL_STATE(533)] = 368, + [SMALL_STATE(534)] = 490, + [SMALL_STATE(535)] = 609, + [SMALL_STATE(536)] = 730, + [SMALL_STATE(537)] = 847, + [SMALL_STATE(538)] = 964, + [SMALL_STATE(539)] = 1085, + [SMALL_STATE(540)] = 1206, + [SMALL_STATE(541)] = 1327, + [SMALL_STATE(542)] = 1439, + [SMALL_STATE(543)] = 1551, + [SMALL_STATE(544)] = 1663, + [SMALL_STATE(545)] = 1781, + [SMALL_STATE(546)] = 1859, + [SMALL_STATE(547)] = 1979, + [SMALL_STATE(548)] = 2099, + [SMALL_STATE(549)] = 2217, + [SMALL_STATE(550)] = 2295, + [SMALL_STATE(551)] = 2413, + [SMALL_STATE(552)] = 2529, + [SMALL_STATE(553)] = 2645, + [SMALL_STATE(554)] = 2756, + [SMALL_STATE(555)] = 2871, + [SMALL_STATE(556)] = 2982, + [SMALL_STATE(557)] = 3099, + [SMALL_STATE(558)] = 3214, + [SMALL_STATE(559)] = 3291, + [SMALL_STATE(560)] = 3368, + [SMALL_STATE(561)] = 3445, + [SMALL_STATE(562)] = 3522, + [SMALL_STATE(563)] = 3639, + [SMALL_STATE(564)] = 3754, + [SMALL_STATE(565)] = 3865, + [SMALL_STATE(566)] = 3980, + [SMALL_STATE(567)] = 4056, + [SMALL_STATE(568)] = 4166, + [SMALL_STATE(569)] = 4276, + [SMALL_STATE(570)] = 4386, + [SMALL_STATE(571)] = 4462, + [SMALL_STATE(572)] = 4574, + [SMALL_STATE(573)] = 4646, + [SMALL_STATE(574)] = 4718, + [SMALL_STATE(575)] = 4822, + [SMALL_STATE(576)] = 4934, + [SMALL_STATE(577)] = 5010, + [SMALL_STATE(578)] = 5120, + [SMALL_STATE(579)] = 5196, + [SMALL_STATE(580)] = 5272, + [SMALL_STATE(581)] = 5382, + [SMALL_STATE(582)] = 5492, + [SMALL_STATE(583)] = 5606, + [SMALL_STATE(584)] = 5722, + [SMALL_STATE(585)] = 5836, + [SMALL_STATE(586)] = 5912, + [SMALL_STATE(587)] = 5987, + [SMALL_STATE(588)] = 6058, + [SMALL_STATE(589)] = 6163, + [SMALL_STATE(590)] = 6238, + [SMALL_STATE(591)] = 6313, + [SMALL_STATE(592)] = 6384, + [SMALL_STATE(593)] = 6487, + [SMALL_STATE(594)] = 6590, + [SMALL_STATE(595)] = 6693, + [SMALL_STATE(596)] = 6796, + [SMALL_STATE(597)] = 6901, + [SMALL_STATE(598)] = 6972, + [SMALL_STATE(599)] = 7079, + [SMALL_STATE(600)] = 7150, + [SMALL_STATE(601)] = 7259, + [SMALL_STATE(602)] = 7368, + [SMALL_STATE(603)] = 7475, + [SMALL_STATE(604)] = 7584, + [SMALL_STATE(605)] = 7689, + [SMALL_STATE(606)] = 7764, + [SMALL_STATE(607)] = 7881, + [SMALL_STATE(608)] = 7956, + [SMALL_STATE(609)] = 8031, + [SMALL_STATE(610)] = 8148, + [SMALL_STATE(611)] = 8282, + [SMALL_STATE(612)] = 8384, + [SMALL_STATE(613)] = 8486, + [SMALL_STATE(614)] = 8604, + [SMALL_STATE(615)] = 8678, + [SMALL_STATE(616)] = 8748, + [SMALL_STATE(617)] = 8852, + [SMALL_STATE(618)] = 8954, + [SMALL_STATE(619)] = 9024, + [SMALL_STATE(620)] = 9094, + [SMALL_STATE(621)] = 9164, + [SMALL_STATE(622)] = 9266, + [SMALL_STATE(623)] = 9340, + [SMALL_STATE(624)] = 9442, + [SMALL_STATE(625)] = 9576, + [SMALL_STATE(626)] = 9678, + [SMALL_STATE(627)] = 9780, + [SMALL_STATE(628)] = 9854, + [SMALL_STATE(629)] = 9956, + [SMALL_STATE(630)] = 10060, + [SMALL_STATE(631)] = 10194, + [SMALL_STATE(632)] = 10328, + [SMALL_STATE(633)] = 10430, + [SMALL_STATE(634)] = 10564, + [SMALL_STATE(635)] = 10628, + [SMALL_STATE(636)] = 10702, + [SMALL_STATE(637)] = 10772, + [SMALL_STATE(638)] = 10906, + [SMALL_STATE(639)] = 11040, + [SMALL_STATE(640)] = 11142, + [SMALL_STATE(641)] = 11276, + [SMALL_STATE(642)] = 11350, + [SMALL_STATE(643)] = 11424, + [SMALL_STATE(644)] = 11528, + [SMALL_STATE(645)] = 11646, + [SMALL_STATE(646)] = 11716, + [SMALL_STATE(647)] = 11819, + [SMALL_STATE(648)] = 11888, + [SMALL_STATE(649)] = 11961, + [SMALL_STATE(650)] = 12034, + [SMALL_STATE(651)] = 12107, + [SMALL_STATE(652)] = 12180, + [SMALL_STATE(653)] = 12253, + [SMALL_STATE(654)] = 12326, + [SMALL_STATE(655)] = 12399, + [SMALL_STATE(656)] = 12472, + [SMALL_STATE(657)] = 12575, + [SMALL_STATE(658)] = 12648, + [SMALL_STATE(659)] = 12721, + [SMALL_STATE(660)] = 12852, + [SMALL_STATE(661)] = 12983, + [SMALL_STATE(662)] = 13050, + [SMALL_STATE(663)] = 13181, + [SMALL_STATE(664)] = 13284, + [SMALL_STATE(665)] = 13353, + [SMALL_STATE(666)] = 13422, + [SMALL_STATE(667)] = 13553, + [SMALL_STATE(668)] = 13656, + [SMALL_STATE(669)] = 13787, + [SMALL_STATE(670)] = 13918, + [SMALL_STATE(671)] = 14029, + [SMALL_STATE(672)] = 14132, + [SMALL_STATE(673)] = 14199, + [SMALL_STATE(674)] = 14300, + [SMALL_STATE(675)] = 14403, + [SMALL_STATE(676)] = 14504, + [SMALL_STATE(677)] = 14571, + [SMALL_STATE(678)] = 14672, + [SMALL_STATE(679)] = 14773, + [SMALL_STATE(680)] = 14874, + [SMALL_STATE(681)] = 14975, + [SMALL_STATE(682)] = 15076, + [SMALL_STATE(683)] = 15177, + [SMALL_STATE(684)] = 15278, + [SMALL_STATE(685)] = 15379, + [SMALL_STATE(686)] = 15510, + [SMALL_STATE(687)] = 15611, + [SMALL_STATE(688)] = 15712, + [SMALL_STATE(689)] = 15779, + [SMALL_STATE(690)] = 15848, + [SMALL_STATE(691)] = 15917, + [SMALL_STATE(692)] = 15986, + [SMALL_STATE(693)] = 16087, + [SMALL_STATE(694)] = 16198, + [SMALL_STATE(695)] = 16311, + [SMALL_STATE(696)] = 16412, + [SMALL_STATE(697)] = 16484, + [SMALL_STATE(698)] = 16584, + [SMALL_STATE(699)] = 16684, + [SMALL_STATE(700)] = 16784, + [SMALL_STATE(701)] = 16856, + [SMALL_STATE(702)] = 16956, + [SMALL_STATE(703)] = 17074, + [SMALL_STATE(704)] = 17192, + [SMALL_STATE(705)] = 17264, + [SMALL_STATE(706)] = 17392, + [SMALL_STATE(707)] = 17510, + [SMALL_STATE(708)] = 17628, + [SMALL_STATE(709)] = 17746, + [SMALL_STATE(710)] = 17864, + [SMALL_STATE(711)] = 17982, + [SMALL_STATE(712)] = 18110, + [SMALL_STATE(713)] = 18182, + [SMALL_STATE(714)] = 18310, + [SMALL_STATE(715)] = 18410, + [SMALL_STATE(716)] = 18510, + [SMALL_STATE(717)] = 18610, + [SMALL_STATE(718)] = 18710, + [SMALL_STATE(719)] = 18782, + [SMALL_STATE(720)] = 18882, + [SMALL_STATE(721)] = 18982, + [SMALL_STATE(722)] = 19080, + [SMALL_STATE(723)] = 19178, + [SMALL_STATE(724)] = 19250, + [SMALL_STATE(725)] = 19318, + [SMALL_STATE(726)] = 19430, + [SMALL_STATE(727)] = 19502, + [SMALL_STATE(728)] = 19620, + [SMALL_STATE(729)] = 19734, + [SMALL_STATE(730)] = 19846, + [SMALL_STATE(731)] = 19918, + [SMALL_STATE(732)] = 19990, + [SMALL_STATE(733)] = 20090, + [SMALL_STATE(734)] = 20190, + [SMALL_STATE(735)] = 20290, + [SMALL_STATE(736)] = 20390, + [SMALL_STATE(737)] = 20490, + [SMALL_STATE(738)] = 20562, + [SMALL_STATE(739)] = 20662, + [SMALL_STATE(740)] = 20790, + [SMALL_STATE(741)] = 20918, + [SMALL_STATE(742)] = 21046, + [SMALL_STATE(743)] = 21174, + [SMALL_STATE(744)] = 21246, + [SMALL_STATE(745)] = 21318, + [SMALL_STATE(746)] = 21390, + [SMALL_STATE(747)] = 21462, + [SMALL_STATE(748)] = 21564, + [SMALL_STATE(749)] = 21664, + [SMALL_STATE(750)] = 21766, + [SMALL_STATE(751)] = 21894, + [SMALL_STATE(752)] = 21966, + [SMALL_STATE(753)] = 22068, + [SMALL_STATE(754)] = 22174, + [SMALL_STATE(755)] = 22280, + [SMALL_STATE(756)] = 22398, + [SMALL_STATE(757)] = 22504, + [SMALL_STATE(758)] = 22622, + [SMALL_STATE(759)] = 22690, + [SMALL_STATE(760)] = 22762, + [SMALL_STATE(761)] = 22833, + [SMALL_STATE(762)] = 22930, + [SMALL_STATE(763)] = 23027, + [SMALL_STATE(764)] = 23098, + [SMALL_STATE(765)] = 23195, + [SMALL_STATE(766)] = 23294, + [SMALL_STATE(767)] = 23393, + [SMALL_STATE(768)] = 23464, + [SMALL_STATE(769)] = 23535, + [SMALL_STATE(770)] = 23606, + [SMALL_STATE(771)] = 23677, + [SMALL_STATE(772)] = 23748, + [SMALL_STATE(773)] = 23819, + [SMALL_STATE(774)] = 23890, + [SMALL_STATE(775)] = 23961, + [SMALL_STATE(776)] = 24032, + [SMALL_STATE(777)] = 24131, + [SMALL_STATE(778)] = 24238, + [SMALL_STATE(779)] = 24309, + [SMALL_STATE(780)] = 24380, + [SMALL_STATE(781)] = 24451, + [SMALL_STATE(782)] = 24550, + [SMALL_STATE(783)] = 24649, + [SMALL_STATE(784)] = 24756, + [SMALL_STATE(785)] = 24855, + [SMALL_STATE(786)] = 24954, + [SMALL_STATE(787)] = 25053, + [SMALL_STATE(788)] = 25124, + [SMALL_STATE(789)] = 25195, + [SMALL_STATE(790)] = 25266, + [SMALL_STATE(791)] = 25373, + [SMALL_STATE(792)] = 25444, + [SMALL_STATE(793)] = 25543, + [SMALL_STATE(794)] = 25614, + [SMALL_STATE(795)] = 25711, + [SMALL_STATE(796)] = 25782, + [SMALL_STATE(797)] = 25880, + [SMALL_STATE(798)] = 25942, + [SMALL_STATE(799)] = 26002, + [SMALL_STATE(800)] = 26064, + [SMALL_STATE(801)] = 26134, + [SMALL_STATE(802)] = 26204, + [SMALL_STATE(803)] = 26274, + [SMALL_STATE(804)] = 26344, + [SMALL_STATE(805)] = 26410, + [SMALL_STATE(806)] = 26510, + [SMALL_STATE(807)] = 26580, + [SMALL_STATE(808)] = 26650, + [SMALL_STATE(809)] = 26746, + [SMALL_STATE(810)] = 26842, + [SMALL_STATE(811)] = 26912, + [SMALL_STATE(812)] = 26982, + [SMALL_STATE(813)] = 27080, + [SMALL_STATE(814)] = 27140, + [SMALL_STATE(815)] = 27206, + [SMALL_STATE(816)] = 27272, + [SMALL_STATE(817)] = 27338, + [SMALL_STATE(818)] = 27436, + [SMALL_STATE(819)] = 27509, + [SMALL_STATE(820)] = 27580, + [SMALL_STATE(821)] = 27641, + [SMALL_STATE(822)] = 27702, + [SMALL_STATE(823)] = 27767, + [SMALL_STATE(824)] = 27834, + [SMALL_STATE(825)] = 27913, + [SMALL_STATE(826)] = 27978, + [SMALL_STATE(827)] = 28043, + [SMALL_STATE(828)] = 28108, + [SMALL_STATE(829)] = 28173, + [SMALL_STATE(830)] = 28238, + [SMALL_STATE(831)] = 28317, + [SMALL_STATE(832)] = 28376, + [SMALL_STATE(833)] = 28475, + [SMALL_STATE(834)] = 28540, + [SMALL_STATE(835)] = 28605, + [SMALL_STATE(836)] = 28702, + [SMALL_STATE(837)] = 28767, + [SMALL_STATE(838)] = 28866, + [SMALL_STATE(839)] = 28963, + [SMALL_STATE(840)] = 29062, + [SMALL_STATE(841)] = 29159, + [SMALL_STATE(842)] = 29224, + [SMALL_STATE(843)] = 29323, + [SMALL_STATE(844)] = 29422, + [SMALL_STATE(845)] = 29521, + [SMALL_STATE(846)] = 29586, + [SMALL_STATE(847)] = 29685, + [SMALL_STATE(848)] = 29750, + [SMALL_STATE(849)] = 29814, + [SMALL_STATE(850)] = 29884, + [SMALL_STATE(851)] = 29948, + [SMALL_STATE(852)] = 30026, + [SMALL_STATE(853)] = 30126, + [SMALL_STATE(854)] = 30240, + [SMALL_STATE(855)] = 30338, + [SMALL_STATE(856)] = 30452, + [SMALL_STATE(857)] = 30530, + [SMALL_STATE(858)] = 30626, + [SMALL_STATE(859)] = 30684, + [SMALL_STATE(860)] = 30742, + [SMALL_STATE(861)] = 30838, + [SMALL_STATE(862)] = 30896, + [SMALL_STATE(863)] = 30954, + [SMALL_STATE(864)] = 31012, + [SMALL_STATE(865)] = 31110, + [SMALL_STATE(866)] = 31168, + [SMALL_STATE(867)] = 31226, + [SMALL_STATE(868)] = 31284, + [SMALL_STATE(869)] = 31352, + [SMALL_STATE(870)] = 31420, + [SMALL_STATE(871)] = 31478, + [SMALL_STATE(872)] = 31536, + [SMALL_STATE(873)] = 31600, + [SMALL_STATE(874)] = 31664, + [SMALL_STATE(875)] = 31764, + [SMALL_STATE(876)] = 31822, + [SMALL_STATE(877)] = 31880, + [SMALL_STATE(878)] = 31944, + [SMALL_STATE(879)] = 32008, + [SMALL_STATE(880)] = 32072, + [SMALL_STATE(881)] = 32136, + [SMALL_STATE(882)] = 32194, + [SMALL_STATE(883)] = 32252, + [SMALL_STATE(884)] = 32310, + [SMALL_STATE(885)] = 32368, + [SMALL_STATE(886)] = 32426, + [SMALL_STATE(887)] = 32490, + [SMALL_STATE(888)] = 32554, + [SMALL_STATE(889)] = 32654, + [SMALL_STATE(890)] = 32712, + [SMALL_STATE(891)] = 32770, + [SMALL_STATE(892)] = 32828, + [SMALL_STATE(893)] = 32926, + [SMALL_STATE(894)] = 33022, + [SMALL_STATE(895)] = 33136, + [SMALL_STATE(896)] = 33250, + [SMALL_STATE(897)] = 33314, + [SMALL_STATE(898)] = 33378, + [SMALL_STATE(899)] = 33442, + [SMALL_STATE(900)] = 33506, + [SMALL_STATE(901)] = 33604, + [SMALL_STATE(902)] = 33702, + [SMALL_STATE(903)] = 33766, + [SMALL_STATE(904)] = 33880, + [SMALL_STATE(905)] = 33948, + [SMALL_STATE(906)] = 34014, + [SMALL_STATE(907)] = 34082, + [SMALL_STATE(908)] = 34196, + [SMALL_STATE(909)] = 34264, + [SMALL_STATE(910)] = 34332, + [SMALL_STATE(911)] = 34396, + [SMALL_STATE(912)] = 34464, + [SMALL_STATE(913)] = 34536, + [SMALL_STATE(914)] = 34600, + [SMALL_STATE(915)] = 34714, + [SMALL_STATE(916)] = 34778, + [SMALL_STATE(917)] = 34842, + [SMALL_STATE(918)] = 34940, + [SMALL_STATE(919)] = 35038, + [SMALL_STATE(920)] = 35134, + [SMALL_STATE(921)] = 35230, + [SMALL_STATE(922)] = 35328, + [SMALL_STATE(923)] = 35396, + [SMALL_STATE(924)] = 35460, + [SMALL_STATE(925)] = 35574, + [SMALL_STATE(926)] = 35639, + [SMALL_STATE(927)] = 35702, + [SMALL_STATE(928)] = 35769, + [SMALL_STATE(929)] = 35832, + [SMALL_STATE(930)] = 35889, + [SMALL_STATE(931)] = 35946, + [SMALL_STATE(932)] = 36009, + [SMALL_STATE(933)] = 36066, + [SMALL_STATE(934)] = 36143, + [SMALL_STATE(935)] = 36200, + [SMALL_STATE(936)] = 36271, + [SMALL_STATE(937)] = 36328, + [SMALL_STATE(938)] = 36385, + [SMALL_STATE(939)] = 36448, + [SMALL_STATE(940)] = 36511, + [SMALL_STATE(941)] = 36572, + [SMALL_STATE(942)] = 36643, + [SMALL_STATE(943)] = 36706, + [SMALL_STATE(944)] = 36783, + [SMALL_STATE(945)] = 36846, + [SMALL_STATE(946)] = 36911, + [SMALL_STATE(947)] = 36978, + [SMALL_STATE(948)] = 37041, + [SMALL_STATE(949)] = 37104, + [SMALL_STATE(950)] = 37167, + [SMALL_STATE(951)] = 37230, + [SMALL_STATE(952)] = 37293, + [SMALL_STATE(953)] = 37356, + [SMALL_STATE(954)] = 37419, + [SMALL_STATE(955)] = 37496, + [SMALL_STATE(956)] = 37563, + [SMALL_STATE(957)] = 37626, + [SMALL_STATE(958)] = 37689, + [SMALL_STATE(959)] = 37786, + [SMALL_STATE(960)] = 37883, + [SMALL_STATE(961)] = 37946, + [SMALL_STATE(962)] = 38013, + [SMALL_STATE(963)] = 38080, + [SMALL_STATE(964)] = 38141, + [SMALL_STATE(965)] = 38208, + [SMALL_STATE(966)] = 38275, + [SMALL_STATE(967)] = 38332, + [SMALL_STATE(968)] = 38389, + [SMALL_STATE(969)] = 38446, + [SMALL_STATE(970)] = 38503, + [SMALL_STATE(971)] = 38560, + [SMALL_STATE(972)] = 38617, + [SMALL_STATE(973)] = 38674, + [SMALL_STATE(974)] = 38731, + [SMALL_STATE(975)] = 38788, + [SMALL_STATE(976)] = 38845, + [SMALL_STATE(977)] = 38902, + [SMALL_STATE(978)] = 38971, + [SMALL_STATE(979)] = 39028, + [SMALL_STATE(980)] = 39085, + [SMALL_STATE(981)] = 39148, + [SMALL_STATE(982)] = 39205, + [SMALL_STATE(983)] = 39282, + [SMALL_STATE(984)] = 39339, + [SMALL_STATE(985)] = 39396, + [SMALL_STATE(986)] = 39453, + [SMALL_STATE(987)] = 39510, + [SMALL_STATE(988)] = 39567, + [SMALL_STATE(989)] = 39624, + [SMALL_STATE(990)] = 39691, + [SMALL_STATE(991)] = 39748, + [SMALL_STATE(992)] = 39805, + [SMALL_STATE(993)] = 39872, + [SMALL_STATE(994)] = 39939, + [SMALL_STATE(995)] = 40002, + [SMALL_STATE(996)] = 40059, + [SMALL_STATE(997)] = 40116, + [SMALL_STATE(998)] = 40179, + [SMALL_STATE(999)] = 40242, + [SMALL_STATE(1000)] = 40305, + [SMALL_STATE(1001)] = 40362, + [SMALL_STATE(1002)] = 40419, + [SMALL_STATE(1003)] = 40486, + [SMALL_STATE(1004)] = 40553, + [SMALL_STATE(1005)] = 40610, + [SMALL_STATE(1006)] = 40679, + [SMALL_STATE(1007)] = 40736, + [SMALL_STATE(1008)] = 40793, + [SMALL_STATE(1009)] = 40850, + [SMALL_STATE(1010)] = 40907, + [SMALL_STATE(1011)] = 40964, + [SMALL_STATE(1012)] = 41061, + [SMALL_STATE(1013)] = 41118, + [SMALL_STATE(1014)] = 41215, + [SMALL_STATE(1015)] = 41312, + [SMALL_STATE(1016)] = 41379, + [SMALL_STATE(1017)] = 41446, + [SMALL_STATE(1018)] = 41543, + [SMALL_STATE(1019)] = 41640, + [SMALL_STATE(1020)] = 41735, + [SMALL_STATE(1021)] = 41830, + [SMALL_STATE(1022)] = 41887, + [SMALL_STATE(1023)] = 41950, + [SMALL_STATE(1024)] = 42013, + [SMALL_STATE(1025)] = 42069, + [SMALL_STATE(1026)] = 42135, + [SMALL_STATE(1027)] = 42195, + [SMALL_STATE(1028)] = 42257, + [SMALL_STATE(1029)] = 42319, + [SMALL_STATE(1030)] = 42375, + [SMALL_STATE(1031)] = 42437, + [SMALL_STATE(1032)] = 42499, + [SMALL_STATE(1033)] = 42561, + [SMALL_STATE(1034)] = 42635, + [SMALL_STATE(1035)] = 42691, + [SMALL_STATE(1036)] = 42747, + [SMALL_STATE(1037)] = 42803, + [SMALL_STATE(1038)] = 42859, + [SMALL_STATE(1039)] = 42921, + [SMALL_STATE(1040)] = 42983, + [SMALL_STATE(1041)] = 43039, + [SMALL_STATE(1042)] = 43095, + [SMALL_STATE(1043)] = 43157, + [SMALL_STATE(1044)] = 43213, + [SMALL_STATE(1045)] = 43275, + [SMALL_STATE(1046)] = 43337, + [SMALL_STATE(1047)] = 43399, + [SMALL_STATE(1048)] = 43455, + [SMALL_STATE(1049)] = 43511, + [SMALL_STATE(1050)] = 43573, + [SMALL_STATE(1051)] = 43635, + [SMALL_STATE(1052)] = 43697, + [SMALL_STATE(1053)] = 43759, + [SMALL_STATE(1054)] = 43815, + [SMALL_STATE(1055)] = 43877, + [SMALL_STATE(1056)] = 43939, + [SMALL_STATE(1057)] = 44001, + [SMALL_STATE(1058)] = 44061, + [SMALL_STATE(1059)] = 44117, + [SMALL_STATE(1060)] = 44173, + [SMALL_STATE(1061)] = 44247, + [SMALL_STATE(1062)] = 44303, + [SMALL_STATE(1063)] = 44359, + [SMALL_STATE(1064)] = 44427, + [SMALL_STATE(1065)] = 44487, + [SMALL_STATE(1066)] = 44543, + [SMALL_STATE(1067)] = 44617, + [SMALL_STATE(1068)] = 44673, + [SMALL_STATE(1069)] = 44729, + [SMALL_STATE(1070)] = 44791, + [SMALL_STATE(1071)] = 44851, + [SMALL_STATE(1072)] = 44921, + [SMALL_STATE(1073)] = 44983, + [SMALL_STATE(1074)] = 45045, + [SMALL_STATE(1075)] = 45107, + [SMALL_STATE(1076)] = 45169, + [SMALL_STATE(1077)] = 45231, + [SMALL_STATE(1078)] = 45293, + [SMALL_STATE(1079)] = 45355, + [SMALL_STATE(1080)] = 45417, + [SMALL_STATE(1081)] = 45479, + [SMALL_STATE(1082)] = 45535, + [SMALL_STATE(1083)] = 45595, + [SMALL_STATE(1084)] = 45661, + [SMALL_STATE(1085)] = 45717, + [SMALL_STATE(1086)] = 45783, + [SMALL_STATE(1087)] = 45839, + [SMALL_STATE(1088)] = 45901, + [SMALL_STATE(1089)] = 45957, + [SMALL_STATE(1090)] = 46013, + [SMALL_STATE(1091)] = 46069, + [SMALL_STATE(1092)] = 46125, + [SMALL_STATE(1093)] = 46181, + [SMALL_STATE(1094)] = 46237, + [SMALL_STATE(1095)] = 46297, + [SMALL_STATE(1096)] = 46353, + [SMALL_STATE(1097)] = 46409, + [SMALL_STATE(1098)] = 46471, + [SMALL_STATE(1099)] = 46527, + [SMALL_STATE(1100)] = 46589, + [SMALL_STATE(1101)] = 46645, + [SMALL_STATE(1102)] = 46701, + [SMALL_STATE(1103)] = 46757, + [SMALL_STATE(1104)] = 46813, + [SMALL_STATE(1105)] = 46869, + [SMALL_STATE(1106)] = 46929, + [SMALL_STATE(1107)] = 46985, + [SMALL_STATE(1108)] = 47041, + [SMALL_STATE(1109)] = 47097, + [SMALL_STATE(1110)] = 47163, + [SMALL_STATE(1111)] = 47229, + [SMALL_STATE(1112)] = 47285, + [SMALL_STATE(1113)] = 47351, + [SMALL_STATE(1114)] = 47413, + [SMALL_STATE(1115)] = 47469, + [SMALL_STATE(1116)] = 47531, + [SMALL_STATE(1117)] = 47605, + [SMALL_STATE(1118)] = 47667, + [SMALL_STATE(1119)] = 47731, + [SMALL_STATE(1120)] = 47787, + [SMALL_STATE(1121)] = 47843, + [SMALL_STATE(1122)] = 47905, + [SMALL_STATE(1123)] = 47961, + [SMALL_STATE(1124)] = 48017, + [SMALL_STATE(1125)] = 48073, + [SMALL_STATE(1126)] = 48135, + [SMALL_STATE(1127)] = 48211, + [SMALL_STATE(1128)] = 48273, + [SMALL_STATE(1129)] = 48335, + [SMALL_STATE(1130)] = 48391, + [SMALL_STATE(1131)] = 48447, + [SMALL_STATE(1132)] = 48513, + [SMALL_STATE(1133)] = 48583, + [SMALL_STATE(1134)] = 48649, + [SMALL_STATE(1135)] = 48715, + [SMALL_STATE(1136)] = 48783, + [SMALL_STATE(1137)] = 48845, + [SMALL_STATE(1138)] = 48911, + [SMALL_STATE(1139)] = 48967, + [SMALL_STATE(1140)] = 49023, + [SMALL_STATE(1141)] = 49119, + [SMALL_STATE(1142)] = 49185, + [SMALL_STATE(1143)] = 49251, + [SMALL_STATE(1144)] = 49347, + [SMALL_STATE(1145)] = 49409, + [SMALL_STATE(1146)] = 49485, + [SMALL_STATE(1147)] = 49541, + [SMALL_STATE(1148)] = 49603, + [SMALL_STATE(1149)] = 49659, + [SMALL_STATE(1150)] = 49721, + [SMALL_STATE(1151)] = 49777, + [SMALL_STATE(1152)] = 49833, + [SMALL_STATE(1153)] = 49889, + [SMALL_STATE(1154)] = 49945, + [SMALL_STATE(1155)] = 50007, + [SMALL_STATE(1156)] = 50069, + [SMALL_STATE(1157)] = 50131, + [SMALL_STATE(1158)] = 50187, + [SMALL_STATE(1159)] = 50243, + [SMALL_STATE(1160)] = 50305, + [SMALL_STATE(1161)] = 50367, + [SMALL_STATE(1162)] = 50433, + [SMALL_STATE(1163)] = 50499, + [SMALL_STATE(1164)] = 50555, + [SMALL_STATE(1165)] = 50617, + [SMALL_STATE(1166)] = 50673, + [SMALL_STATE(1167)] = 50729, + [SMALL_STATE(1168)] = 50791, + [SMALL_STATE(1169)] = 50853, + [SMALL_STATE(1170)] = 50915, + [SMALL_STATE(1171)] = 50979, + [SMALL_STATE(1172)] = 51045, + [SMALL_STATE(1173)] = 51101, + [SMALL_STATE(1174)] = 51167, + [SMALL_STATE(1175)] = 51222, + [SMALL_STATE(1176)] = 51281, + [SMALL_STATE(1177)] = 51336, + [SMALL_STATE(1178)] = 51391, + [SMALL_STATE(1179)] = 51446, + [SMALL_STATE(1180)] = 51501, + [SMALL_STATE(1181)] = 51556, + [SMALL_STATE(1182)] = 51611, + [SMALL_STATE(1183)] = 51666, + [SMALL_STATE(1184)] = 51727, + [SMALL_STATE(1185)] = 51782, + [SMALL_STATE(1186)] = 51843, + [SMALL_STATE(1187)] = 51904, + [SMALL_STATE(1188)] = 51959, + [SMALL_STATE(1189)] = 52014, + [SMALL_STATE(1190)] = 52069, + [SMALL_STATE(1191)] = 52124, + [SMALL_STATE(1192)] = 52179, + [SMALL_STATE(1193)] = 52234, + [SMALL_STATE(1194)] = 52289, + [SMALL_STATE(1195)] = 52344, + [SMALL_STATE(1196)] = 52405, + [SMALL_STATE(1197)] = 52466, + [SMALL_STATE(1198)] = 52527, + [SMALL_STATE(1199)] = 52582, + [SMALL_STATE(1200)] = 52643, + [SMALL_STATE(1201)] = 52698, + [SMALL_STATE(1202)] = 52753, + [SMALL_STATE(1203)] = 52814, + [SMALL_STATE(1204)] = 52869, + [SMALL_STATE(1205)] = 52930, + [SMALL_STATE(1206)] = 52985, + [SMALL_STATE(1207)] = 53040, + [SMALL_STATE(1208)] = 53101, + [SMALL_STATE(1209)] = 53162, + [SMALL_STATE(1210)] = 53223, + [SMALL_STATE(1211)] = 53278, + [SMALL_STATE(1212)] = 53333, + [SMALL_STATE(1213)] = 53394, + [SMALL_STATE(1214)] = 53449, + [SMALL_STATE(1215)] = 53510, + [SMALL_STATE(1216)] = 53571, + [SMALL_STATE(1217)] = 53632, + [SMALL_STATE(1218)] = 53687, + [SMALL_STATE(1219)] = 53742, + [SMALL_STATE(1220)] = 53797, + [SMALL_STATE(1221)] = 53852, + [SMALL_STATE(1222)] = 53907, + [SMALL_STATE(1223)] = 53962, + [SMALL_STATE(1224)] = 54017, + [SMALL_STATE(1225)] = 54076, + [SMALL_STATE(1226)] = 54131, + [SMALL_STATE(1227)] = 54186, + [SMALL_STATE(1228)] = 54241, + [SMALL_STATE(1229)] = 54296, + [SMALL_STATE(1230)] = 54351, + [SMALL_STATE(1231)] = 54406, + [SMALL_STATE(1232)] = 54461, + [SMALL_STATE(1233)] = 54516, + [SMALL_STATE(1234)] = 54571, + [SMALL_STATE(1235)] = 54636, + [SMALL_STATE(1236)] = 54701, + [SMALL_STATE(1237)] = 54756, + [SMALL_STATE(1238)] = 54811, + [SMALL_STATE(1239)] = 54866, + [SMALL_STATE(1240)] = 54921, + [SMALL_STATE(1241)] = 54976, + [SMALL_STATE(1242)] = 55031, + [SMALL_STATE(1243)] = 55086, + [SMALL_STATE(1244)] = 55141, + [SMALL_STATE(1245)] = 55196, + [SMALL_STATE(1246)] = 55251, + [SMALL_STATE(1247)] = 55306, + [SMALL_STATE(1248)] = 55361, + [SMALL_STATE(1249)] = 55416, + [SMALL_STATE(1250)] = 55471, + [SMALL_STATE(1251)] = 55526, + [SMALL_STATE(1252)] = 55581, + [SMALL_STATE(1253)] = 55640, + [SMALL_STATE(1254)] = 55695, + [SMALL_STATE(1255)] = 55756, + [SMALL_STATE(1256)] = 55817, + [SMALL_STATE(1257)] = 55878, + [SMALL_STATE(1258)] = 55939, + [SMALL_STATE(1259)] = 56000, + [SMALL_STATE(1260)] = 56055, + [SMALL_STATE(1261)] = 56110, + [SMALL_STATE(1262)] = 56165, + [SMALL_STATE(1263)] = 56258, + [SMALL_STATE(1264)] = 56351, + [SMALL_STATE(1265)] = 56412, + [SMALL_STATE(1266)] = 56473, + [SMALL_STATE(1267)] = 56566, + [SMALL_STATE(1268)] = 56627, + [SMALL_STATE(1269)] = 56688, + [SMALL_STATE(1270)] = 56743, + [SMALL_STATE(1271)] = 56798, + [SMALL_STATE(1272)] = 56853, + [SMALL_STATE(1273)] = 56908, + [SMALL_STATE(1274)] = 56963, + [SMALL_STATE(1275)] = 57018, + [SMALL_STATE(1276)] = 57079, + [SMALL_STATE(1277)] = 57140, + [SMALL_STATE(1278)] = 57195, + [SMALL_STATE(1279)] = 57250, + [SMALL_STATE(1280)] = 57305, + [SMALL_STATE(1281)] = 57360, + [SMALL_STATE(1282)] = 57419, + [SMALL_STATE(1283)] = 57474, + [SMALL_STATE(1284)] = 57529, + [SMALL_STATE(1285)] = 57584, + [SMALL_STATE(1286)] = 57639, + [SMALL_STATE(1287)] = 57694, + [SMALL_STATE(1288)] = 57749, + [SMALL_STATE(1289)] = 57804, + [SMALL_STATE(1290)] = 57871, + [SMALL_STATE(1291)] = 57930, + [SMALL_STATE(1292)] = 57991, + [SMALL_STATE(1293)] = 58052, + [SMALL_STATE(1294)] = 58107, + [SMALL_STATE(1295)] = 58162, + [SMALL_STATE(1296)] = 58217, + [SMALL_STATE(1297)] = 58276, + [SMALL_STATE(1298)] = 58331, + [SMALL_STATE(1299)] = 58386, + [SMALL_STATE(1300)] = 58447, + [SMALL_STATE(1301)] = 58508, + [SMALL_STATE(1302)] = 58569, + [SMALL_STATE(1303)] = 58630, + [SMALL_STATE(1304)] = 58691, + [SMALL_STATE(1305)] = 58752, + [SMALL_STATE(1306)] = 58807, + [SMALL_STATE(1307)] = 58862, + [SMALL_STATE(1308)] = 58917, + [SMALL_STATE(1309)] = 58972, + [SMALL_STATE(1310)] = 59031, + [SMALL_STATE(1311)] = 59090, + [SMALL_STATE(1312)] = 59151, + [SMALL_STATE(1313)] = 59212, + [SMALL_STATE(1314)] = 59273, + [SMALL_STATE(1315)] = 59334, + [SMALL_STATE(1316)] = 59395, + [SMALL_STATE(1317)] = 59456, + [SMALL_STATE(1318)] = 59515, + [SMALL_STATE(1319)] = 59576, + [SMALL_STATE(1320)] = 59637, + [SMALL_STATE(1321)] = 59698, + [SMALL_STATE(1322)] = 59759, + [SMALL_STATE(1323)] = 59819, + [SMALL_STATE(1324)] = 59873, + [SMALL_STATE(1325)] = 59927, + [SMALL_STATE(1326)] = 59981, + [SMALL_STATE(1327)] = 60035, + [SMALL_STATE(1328)] = 60089, + [SMALL_STATE(1329)] = 60195, + [SMALL_STATE(1330)] = 60255, + [SMALL_STATE(1331)] = 60361, + [SMALL_STATE(1332)] = 60421, + [SMALL_STATE(1333)] = 60475, + [SMALL_STATE(1334)] = 60529, + [SMALL_STATE(1335)] = 60583, + [SMALL_STATE(1336)] = 60637, + [SMALL_STATE(1337)] = 60691, + [SMALL_STATE(1338)] = 60745, + [SMALL_STATE(1339)] = 60799, + [SMALL_STATE(1340)] = 60857, + [SMALL_STATE(1341)] = 60911, + [SMALL_STATE(1342)] = 60965, + [SMALL_STATE(1343)] = 61019, + [SMALL_STATE(1344)] = 61073, + [SMALL_STATE(1345)] = 61127, + [SMALL_STATE(1346)] = 61181, + [SMALL_STATE(1347)] = 61235, + [SMALL_STATE(1348)] = 61289, + [SMALL_STATE(1349)] = 61343, + [SMALL_STATE(1350)] = 61397, + [SMALL_STATE(1351)] = 61451, + [SMALL_STATE(1352)] = 61505, + [SMALL_STATE(1353)] = 61563, + [SMALL_STATE(1354)] = 61623, + [SMALL_STATE(1355)] = 61677, + [SMALL_STATE(1356)] = 61731, + [SMALL_STATE(1357)] = 61791, + [SMALL_STATE(1358)] = 61851, + [SMALL_STATE(1359)] = 61905, + [SMALL_STATE(1360)] = 62011, + [SMALL_STATE(1361)] = 62065, + [SMALL_STATE(1362)] = 62125, + [SMALL_STATE(1363)] = 62185, + [SMALL_STATE(1364)] = 62243, + [SMALL_STATE(1365)] = 62301, + [SMALL_STATE(1366)] = 62359, + [SMALL_STATE(1367)] = 62417, + [SMALL_STATE(1368)] = 62477, + [SMALL_STATE(1369)] = 62531, + [SMALL_STATE(1370)] = 62585, + [SMALL_STATE(1371)] = 62645, + [SMALL_STATE(1372)] = 62703, + [SMALL_STATE(1373)] = 62763, + [SMALL_STATE(1374)] = 62817, + [SMALL_STATE(1375)] = 62871, + [SMALL_STATE(1376)] = 62925, + [SMALL_STATE(1377)] = 62985, + [SMALL_STATE(1378)] = 63045, + [SMALL_STATE(1379)] = 63099, + [SMALL_STATE(1380)] = 63159, + [SMALL_STATE(1381)] = 63213, + [SMALL_STATE(1382)] = 63267, + [SMALL_STATE(1383)] = 63327, + [SMALL_STATE(1384)] = 63381, + [SMALL_STATE(1385)] = 63435, + [SMALL_STATE(1386)] = 63495, + [SMALL_STATE(1387)] = 63555, + [SMALL_STATE(1388)] = 63615, + [SMALL_STATE(1389)] = 63679, + [SMALL_STATE(1390)] = 63743, + [SMALL_STATE(1391)] = 63797, + [SMALL_STATE(1392)] = 63857, + [SMALL_STATE(1393)] = 63915, + [SMALL_STATE(1394)] = 63975, + [SMALL_STATE(1395)] = 64033, + [SMALL_STATE(1396)] = 64087, + [SMALL_STATE(1397)] = 64147, + [SMALL_STATE(1398)] = 64207, + [SMALL_STATE(1399)] = 64261, + [SMALL_STATE(1400)] = 64315, + [SMALL_STATE(1401)] = 64369, + [SMALL_STATE(1402)] = 64461, + [SMALL_STATE(1403)] = 64521, + [SMALL_STATE(1404)] = 64613, + [SMALL_STATE(1405)] = 64673, + [SMALL_STATE(1406)] = 64733, + [SMALL_STATE(1407)] = 64787, + [SMALL_STATE(1408)] = 64841, + [SMALL_STATE(1409)] = 64895, + [SMALL_STATE(1410)] = 64953, + [SMALL_STATE(1411)] = 65007, + [SMALL_STATE(1412)] = 65061, + [SMALL_STATE(1413)] = 65121, + [SMALL_STATE(1414)] = 65175, + [SMALL_STATE(1415)] = 65229, + [SMALL_STATE(1416)] = 65289, + [SMALL_STATE(1417)] = 65343, + [SMALL_STATE(1418)] = 65401, + [SMALL_STATE(1419)] = 65507, + [SMALL_STATE(1420)] = 65565, + [SMALL_STATE(1421)] = 65619, + [SMALL_STATE(1422)] = 65679, + [SMALL_STATE(1423)] = 65739, + [SMALL_STATE(1424)] = 65797, + [SMALL_STATE(1425)] = 65855, + [SMALL_STATE(1426)] = 65915, + [SMALL_STATE(1427)] = 65975, + [SMALL_STATE(1428)] = 66033, + [SMALL_STATE(1429)] = 66087, + [SMALL_STATE(1430)] = 66141, + [SMALL_STATE(1431)] = 66199, + [SMALL_STATE(1432)] = 66259, + [SMALL_STATE(1433)] = 66313, + [SMALL_STATE(1434)] = 66373, + [SMALL_STATE(1435)] = 66433, + [SMALL_STATE(1436)] = 66491, + [SMALL_STATE(1437)] = 66551, + [SMALL_STATE(1438)] = 66611, + [SMALL_STATE(1439)] = 66665, + [SMALL_STATE(1440)] = 66725, + [SMALL_STATE(1441)] = 66785, + [SMALL_STATE(1442)] = 66845, + [SMALL_STATE(1443)] = 66905, + [SMALL_STATE(1444)] = 66959, + [SMALL_STATE(1445)] = 67013, + [SMALL_STATE(1446)] = 67119, + [SMALL_STATE(1447)] = 67177, + [SMALL_STATE(1448)] = 67237, + [SMALL_STATE(1449)] = 67297, + [SMALL_STATE(1450)] = 67351, + [SMALL_STATE(1451)] = 67405, + [SMALL_STATE(1452)] = 67465, + [SMALL_STATE(1453)] = 67519, + [SMALL_STATE(1454)] = 67579, + [SMALL_STATE(1455)] = 67633, + [SMALL_STATE(1456)] = 67687, + [SMALL_STATE(1457)] = 67741, + [SMALL_STATE(1458)] = 67801, + [SMALL_STATE(1459)] = 67859, + [SMALL_STATE(1460)] = 67913, + [SMALL_STATE(1461)] = 67967, + [SMALL_STATE(1462)] = 68025, + [SMALL_STATE(1463)] = 68085, + [SMALL_STATE(1464)] = 68139, + [SMALL_STATE(1465)] = 68193, + [SMALL_STATE(1466)] = 68247, + [SMALL_STATE(1467)] = 68307, + [SMALL_STATE(1468)] = 68361, + [SMALL_STATE(1469)] = 68421, + [SMALL_STATE(1470)] = 68475, + [SMALL_STATE(1471)] = 68529, + [SMALL_STATE(1472)] = 68589, + [SMALL_STATE(1473)] = 68643, + [SMALL_STATE(1474)] = 68703, + [SMALL_STATE(1475)] = 68757, + [SMALL_STATE(1476)] = 68823, + [SMALL_STATE(1477)] = 68883, + [SMALL_STATE(1478)] = 68943, + [SMALL_STATE(1479)] = 69003, + [SMALL_STATE(1480)] = 69063, + [SMALL_STATE(1481)] = 69123, + [SMALL_STATE(1482)] = 69183, + [SMALL_STATE(1483)] = 69237, + [SMALL_STATE(1484)] = 69291, + [SMALL_STATE(1485)] = 69351, + [SMALL_STATE(1486)] = 69457, + [SMALL_STATE(1487)] = 69511, + [SMALL_STATE(1488)] = 69571, + [SMALL_STATE(1489)] = 69625, + [SMALL_STATE(1490)] = 69679, + [SMALL_STATE(1491)] = 69739, + [SMALL_STATE(1492)] = 69799, + [SMALL_STATE(1493)] = 69859, + [SMALL_STATE(1494)] = 69913, + [SMALL_STATE(1495)] = 70019, + [SMALL_STATE(1496)] = 70073, + [SMALL_STATE(1497)] = 70127, + [SMALL_STATE(1498)] = 70187, + [SMALL_STATE(1499)] = 70241, + [SMALL_STATE(1500)] = 70295, + [SMALL_STATE(1501)] = 70349, + [SMALL_STATE(1502)] = 70403, + [SMALL_STATE(1503)] = 70457, + [SMALL_STATE(1504)] = 70511, + [SMALL_STATE(1505)] = 70565, + [SMALL_STATE(1506)] = 70619, + [SMALL_STATE(1507)] = 70678, + [SMALL_STATE(1508)] = 70731, + [SMALL_STATE(1509)] = 70784, + [SMALL_STATE(1510)] = 70837, + [SMALL_STATE(1511)] = 70890, + [SMALL_STATE(1512)] = 70943, + [SMALL_STATE(1513)] = 70996, + [SMALL_STATE(1514)] = 71049, + [SMALL_STATE(1515)] = 71102, + [SMALL_STATE(1516)] = 71163, + [SMALL_STATE(1517)] = 71216, + [SMALL_STATE(1518)] = 71277, + [SMALL_STATE(1519)] = 71330, + [SMALL_STATE(1520)] = 71383, + [SMALL_STATE(1521)] = 71442, + [SMALL_STATE(1522)] = 71495, + [SMALL_STATE(1523)] = 71548, + [SMALL_STATE(1524)] = 71601, + [SMALL_STATE(1525)] = 71654, + [SMALL_STATE(1526)] = 71707, + [SMALL_STATE(1527)] = 71760, + [SMALL_STATE(1528)] = 71813, + [SMALL_STATE(1529)] = 71872, + [SMALL_STATE(1530)] = 71925, + [SMALL_STATE(1531)] = 71978, + [SMALL_STATE(1532)] = 72031, + [SMALL_STATE(1533)] = 72084, + [SMALL_STATE(1534)] = 72187, + [SMALL_STATE(1535)] = 72240, + [SMALL_STATE(1536)] = 72293, + [SMALL_STATE(1537)] = 72396, + [SMALL_STATE(1538)] = 72449, + [SMALL_STATE(1539)] = 72542, + [SMALL_STATE(1540)] = 72645, + [SMALL_STATE(1541)] = 72698, + [SMALL_STATE(1542)] = 72751, + [SMALL_STATE(1543)] = 72804, + [SMALL_STATE(1544)] = 72857, + [SMALL_STATE(1545)] = 72916, + [SMALL_STATE(1546)] = 72969, + [SMALL_STATE(1547)] = 73022, + [SMALL_STATE(1548)] = 73075, + [SMALL_STATE(1549)] = 73128, + [SMALL_STATE(1550)] = 73181, + [SMALL_STATE(1551)] = 73234, + [SMALL_STATE(1552)] = 73287, + [SMALL_STATE(1553)] = 73340, + [SMALL_STATE(1554)] = 73399, + [SMALL_STATE(1555)] = 73452, + [SMALL_STATE(1556)] = 73505, + [SMALL_STATE(1557)] = 73574, + [SMALL_STATE(1558)] = 73627, + [SMALL_STATE(1559)] = 73680, + [SMALL_STATE(1560)] = 73739, + [SMALL_STATE(1561)] = 73792, + [SMALL_STATE(1562)] = 73895, + [SMALL_STATE(1563)] = 73948, + [SMALL_STATE(1564)] = 74001, + [SMALL_STATE(1565)] = 74054, + [SMALL_STATE(1566)] = 74157, + [SMALL_STATE(1567)] = 74226, + [SMALL_STATE(1568)] = 74279, + [SMALL_STATE(1569)] = 74338, + [SMALL_STATE(1570)] = 74397, + [SMALL_STATE(1571)] = 74450, + [SMALL_STATE(1572)] = 74503, + [SMALL_STATE(1573)] = 74556, + [SMALL_STATE(1574)] = 74659, + [SMALL_STATE(1575)] = 74712, + [SMALL_STATE(1576)] = 74815, + [SMALL_STATE(1577)] = 74880, + [SMALL_STATE(1578)] = 74933, + [SMALL_STATE(1579)] = 74986, + [SMALL_STATE(1580)] = 75039, + [SMALL_STATE(1581)] = 75142, + [SMALL_STATE(1582)] = 75195, + [SMALL_STATE(1583)] = 75254, + [SMALL_STATE(1584)] = 75357, + [SMALL_STATE(1585)] = 75416, + [SMALL_STATE(1586)] = 75469, + [SMALL_STATE(1587)] = 75522, + [SMALL_STATE(1588)] = 75581, + [SMALL_STATE(1589)] = 75634, + [SMALL_STATE(1590)] = 75687, + [SMALL_STATE(1591)] = 75740, + [SMALL_STATE(1592)] = 75793, + [SMALL_STATE(1593)] = 75846, + [SMALL_STATE(1594)] = 75903, + [SMALL_STATE(1595)] = 75956, + [SMALL_STATE(1596)] = 76059, + [SMALL_STATE(1597)] = 76112, + [SMALL_STATE(1598)] = 76165, + [SMALL_STATE(1599)] = 76222, + [SMALL_STATE(1600)] = 76275, + [SMALL_STATE(1601)] = 76328, + [SMALL_STATE(1602)] = 76381, + [SMALL_STATE(1603)] = 76434, + [SMALL_STATE(1604)] = 76487, + [SMALL_STATE(1605)] = 76540, + [SMALL_STATE(1606)] = 76643, + [SMALL_STATE(1607)] = 76702, + [SMALL_STATE(1608)] = 76761, + [SMALL_STATE(1609)] = 76820, + [SMALL_STATE(1610)] = 76879, + [SMALL_STATE(1611)] = 76938, + [SMALL_STATE(1612)] = 76997, + [SMALL_STATE(1613)] = 77050, + [SMALL_STATE(1614)] = 77103, + [SMALL_STATE(1615)] = 77162, + [SMALL_STATE(1616)] = 77215, + [SMALL_STATE(1617)] = 77268, + [SMALL_STATE(1618)] = 77321, + [SMALL_STATE(1619)] = 77424, + [SMALL_STATE(1620)] = 77477, + [SMALL_STATE(1621)] = 77530, + [SMALL_STATE(1622)] = 77583, + [SMALL_STATE(1623)] = 77642, + [SMALL_STATE(1624)] = 77701, + [SMALL_STATE(1625)] = 77760, + [SMALL_STATE(1626)] = 77817, + [SMALL_STATE(1627)] = 77870, + [SMALL_STATE(1628)] = 77923, + [SMALL_STATE(1629)] = 77980, + [SMALL_STATE(1630)] = 78033, + [SMALL_STATE(1631)] = 78136, + [SMALL_STATE(1632)] = 78189, + [SMALL_STATE(1633)] = 78248, + [SMALL_STATE(1634)] = 78301, + [SMALL_STATE(1635)] = 78354, + [SMALL_STATE(1636)] = 78407, + [SMALL_STATE(1637)] = 78510, + [SMALL_STATE(1638)] = 78563, + [SMALL_STATE(1639)] = 78616, + [SMALL_STATE(1640)] = 78675, + [SMALL_STATE(1641)] = 78734, + [SMALL_STATE(1642)] = 78837, + [SMALL_STATE(1643)] = 78890, + [SMALL_STATE(1644)] = 78993, + [SMALL_STATE(1645)] = 79050, + [SMALL_STATE(1646)] = 79109, + [SMALL_STATE(1647)] = 79212, + [SMALL_STATE(1648)] = 79265, + [SMALL_STATE(1649)] = 79318, + [SMALL_STATE(1650)] = 79371, + [SMALL_STATE(1651)] = 79430, + [SMALL_STATE(1652)] = 79483, + [SMALL_STATE(1653)] = 79536, + [SMALL_STATE(1654)] = 79589, + [SMALL_STATE(1655)] = 79648, + [SMALL_STATE(1656)] = 79701, + [SMALL_STATE(1657)] = 79754, + [SMALL_STATE(1658)] = 79811, + [SMALL_STATE(1659)] = 79864, + [SMALL_STATE(1660)] = 79917, + [SMALL_STATE(1661)] = 79970, + [SMALL_STATE(1662)] = 80023, + [SMALL_STATE(1663)] = 80076, + [SMALL_STATE(1664)] = 80129, + [SMALL_STATE(1665)] = 80194, + [SMALL_STATE(1666)] = 80251, + [SMALL_STATE(1667)] = 80304, + [SMALL_STATE(1668)] = 80357, + [SMALL_STATE(1669)] = 80410, + [SMALL_STATE(1670)] = 80463, + [SMALL_STATE(1671)] = 80516, + [SMALL_STATE(1672)] = 80569, + [SMALL_STATE(1673)] = 80622, + [SMALL_STATE(1674)] = 80675, + [SMALL_STATE(1675)] = 80734, + [SMALL_STATE(1676)] = 80787, + [SMALL_STATE(1677)] = 80844, + [SMALL_STATE(1678)] = 80897, + [SMALL_STATE(1679)] = 80950, + [SMALL_STATE(1680)] = 81003, + [SMALL_STATE(1681)] = 81056, + [SMALL_STATE(1682)] = 81115, + [SMALL_STATE(1683)] = 81168, + [SMALL_STATE(1684)] = 81221, + [SMALL_STATE(1685)] = 81280, + [SMALL_STATE(1686)] = 81333, + [SMALL_STATE(1687)] = 81386, + [SMALL_STATE(1688)] = 81439, + [SMALL_STATE(1689)] = 81492, + [SMALL_STATE(1690)] = 81545, + [SMALL_STATE(1691)] = 81598, + [SMALL_STATE(1692)] = 81651, + [SMALL_STATE(1693)] = 81704, + [SMALL_STATE(1694)] = 81757, + [SMALL_STATE(1695)] = 81810, + [SMALL_STATE(1696)] = 81863, + [SMALL_STATE(1697)] = 81916, + [SMALL_STATE(1698)] = 82019, + [SMALL_STATE(1699)] = 82072, + [SMALL_STATE(1700)] = 82125, + [SMALL_STATE(1701)] = 82178, + [SMALL_STATE(1702)] = 82237, + [SMALL_STATE(1703)] = 82290, + [SMALL_STATE(1704)] = 82347, + [SMALL_STATE(1705)] = 82400, + [SMALL_STATE(1706)] = 82453, + [SMALL_STATE(1707)] = 82506, + [SMALL_STATE(1708)] = 82559, + [SMALL_STATE(1709)] = 82612, + [SMALL_STATE(1710)] = 82669, + [SMALL_STATE(1711)] = 82722, + [SMALL_STATE(1712)] = 82779, + [SMALL_STATE(1713)] = 82836, + [SMALL_STATE(1714)] = 82889, + [SMALL_STATE(1715)] = 82942, + [SMALL_STATE(1716)] = 82995, + [SMALL_STATE(1717)] = 83048, + [SMALL_STATE(1718)] = 83107, + [SMALL_STATE(1719)] = 83166, + [SMALL_STATE(1720)] = 83219, + [SMALL_STATE(1721)] = 83272, + [SMALL_STATE(1722)] = 83325, + [SMALL_STATE(1723)] = 83378, + [SMALL_STATE(1724)] = 83431, + [SMALL_STATE(1725)] = 83488, + [SMALL_STATE(1726)] = 83541, + [SMALL_STATE(1727)] = 83594, + [SMALL_STATE(1728)] = 83647, + [SMALL_STATE(1729)] = 83704, + [SMALL_STATE(1730)] = 83757, + [SMALL_STATE(1731)] = 83810, + [SMALL_STATE(1732)] = 83867, + [SMALL_STATE(1733)] = 83920, + [SMALL_STATE(1734)] = 83973, + [SMALL_STATE(1735)] = 84032, + [SMALL_STATE(1736)] = 84091, + [SMALL_STATE(1737)] = 84150, + [SMALL_STATE(1738)] = 84253, + [SMALL_STATE(1739)] = 84306, + [SMALL_STATE(1740)] = 84365, + [SMALL_STATE(1741)] = 84418, + [SMALL_STATE(1742)] = 84471, + [SMALL_STATE(1743)] = 84574, + [SMALL_STATE(1744)] = 84627, + [SMALL_STATE(1745)] = 84686, + [SMALL_STATE(1746)] = 84745, + [SMALL_STATE(1747)] = 84804, + [SMALL_STATE(1748)] = 84863, + [SMALL_STATE(1749)] = 84922, + [SMALL_STATE(1750)] = 84981, + [SMALL_STATE(1751)] = 85040, + [SMALL_STATE(1752)] = 85093, + [SMALL_STATE(1753)] = 85146, + [SMALL_STATE(1754)] = 85205, + [SMALL_STATE(1755)] = 85264, + [SMALL_STATE(1756)] = 85323, + [SMALL_STATE(1757)] = 85382, + [SMALL_STATE(1758)] = 85441, + [SMALL_STATE(1759)] = 85500, + [SMALL_STATE(1760)] = 85559, + [SMALL_STATE(1761)] = 85618, + [SMALL_STATE(1762)] = 85671, + [SMALL_STATE(1763)] = 85724, + [SMALL_STATE(1764)] = 85783, + [SMALL_STATE(1765)] = 85842, + [SMALL_STATE(1766)] = 85901, + [SMALL_STATE(1767)] = 85962, + [SMALL_STATE(1768)] = 86021, + [SMALL_STATE(1769)] = 86088, + [SMALL_STATE(1770)] = 86153, + [SMALL_STATE(1771)] = 86212, + [SMALL_STATE(1772)] = 86265, + [SMALL_STATE(1773)] = 86317, + [SMALL_STATE(1774)] = 86417, + [SMALL_STATE(1775)] = 86469, + [SMALL_STATE(1776)] = 86569, + [SMALL_STATE(1777)] = 86621, + [SMALL_STATE(1778)] = 86721, + [SMALL_STATE(1779)] = 86773, + [SMALL_STATE(1780)] = 86873, + [SMALL_STATE(1781)] = 86973, + [SMALL_STATE(1782)] = 87075, + [SMALL_STATE(1783)] = 87127, + [SMALL_STATE(1784)] = 87179, + [SMALL_STATE(1785)] = 87279, + [SMALL_STATE(1786)] = 87379, + [SMALL_STATE(1787)] = 87479, + [SMALL_STATE(1788)] = 87531, + [SMALL_STATE(1789)] = 87583, + [SMALL_STATE(1790)] = 87639, + [SMALL_STATE(1791)] = 87691, + [SMALL_STATE(1792)] = 87761, + [SMALL_STATE(1793)] = 87861, + [SMALL_STATE(1794)] = 87913, + [SMALL_STATE(1795)] = 88013, + [SMALL_STATE(1796)] = 88071, + [SMALL_STATE(1797)] = 88129, + [SMALL_STATE(1798)] = 88229, + [SMALL_STATE(1799)] = 88281, + [SMALL_STATE(1800)] = 88337, + [SMALL_STATE(1801)] = 88389, + [SMALL_STATE(1802)] = 88441, + [SMALL_STATE(1803)] = 88499, + [SMALL_STATE(1804)] = 88557, + [SMALL_STATE(1805)] = 88615, + [SMALL_STATE(1806)] = 88715, + [SMALL_STATE(1807)] = 88771, + [SMALL_STATE(1808)] = 88871, + [SMALL_STATE(1809)] = 88929, + [SMALL_STATE(1810)] = 88987, + [SMALL_STATE(1811)] = 89087, + [SMALL_STATE(1812)] = 89139, + [SMALL_STATE(1813)] = 89191, + [SMALL_STATE(1814)] = 89247, + [SMALL_STATE(1815)] = 89349, + [SMALL_STATE(1816)] = 89449, + [SMALL_STATE(1817)] = 89549, + [SMALL_STATE(1818)] = 89649, + [SMALL_STATE(1819)] = 89749, + [SMALL_STATE(1820)] = 89849, + [SMALL_STATE(1821)] = 89901, + [SMALL_STATE(1822)] = 90001, + [SMALL_STATE(1823)] = 90101, + [SMALL_STATE(1824)] = 90153, + [SMALL_STATE(1825)] = 90253, + [SMALL_STATE(1826)] = 90311, + [SMALL_STATE(1827)] = 90363, + [SMALL_STATE(1828)] = 90421, + [SMALL_STATE(1829)] = 90479, + [SMALL_STATE(1830)] = 90537, + [SMALL_STATE(1831)] = 90637, + [SMALL_STATE(1832)] = 90737, + [SMALL_STATE(1833)] = 90789, + [SMALL_STATE(1834)] = 90841, + [SMALL_STATE(1835)] = 90893, + [SMALL_STATE(1836)] = 90995, + [SMALL_STATE(1837)] = 91095, + [SMALL_STATE(1838)] = 91195, + [SMALL_STATE(1839)] = 91295, + [SMALL_STATE(1840)] = 91359, + [SMALL_STATE(1841)] = 91459, + [SMALL_STATE(1842)] = 91559, + [SMALL_STATE(1843)] = 91659, + [SMALL_STATE(1844)] = 91759, + [SMALL_STATE(1845)] = 91859, + [SMALL_STATE(1846)] = 91959, + [SMALL_STATE(1847)] = 92019, + [SMALL_STATE(1848)] = 92119, + [SMALL_STATE(1849)] = 92221, + [SMALL_STATE(1850)] = 92321, + [SMALL_STATE(1851)] = 92421, + [SMALL_STATE(1852)] = 92481, + [SMALL_STATE(1853)] = 92533, + [SMALL_STATE(1854)] = 92633, + [SMALL_STATE(1855)] = 92733, + [SMALL_STATE(1856)] = 92789, + [SMALL_STATE(1857)] = 92845, + [SMALL_STATE(1858)] = 92897, + [SMALL_STATE(1859)] = 92999, + [SMALL_STATE(1860)] = 93099, + [SMALL_STATE(1861)] = 93199, + [SMALL_STATE(1862)] = 93299, + [SMALL_STATE(1863)] = 93357, + [SMALL_STATE(1864)] = 93457, + [SMALL_STATE(1865)] = 93509, + [SMALL_STATE(1866)] = 93561, + [SMALL_STATE(1867)] = 93661, + [SMALL_STATE(1868)] = 93761, + [SMALL_STATE(1869)] = 93861, + [SMALL_STATE(1870)] = 93961, + [SMALL_STATE(1871)] = 94013, + [SMALL_STATE(1872)] = 94065, + [SMALL_STATE(1873)] = 94117, + [SMALL_STATE(1874)] = 94173, + [SMALL_STATE(1875)] = 94225, + [SMALL_STATE(1876)] = 94277, + [SMALL_STATE(1877)] = 94377, + [SMALL_STATE(1878)] = 94445, + [SMALL_STATE(1879)] = 94545, + [SMALL_STATE(1880)] = 94645, + [SMALL_STATE(1881)] = 94697, + [SMALL_STATE(1882)] = 94755, + [SMALL_STATE(1883)] = 94813, + [SMALL_STATE(1884)] = 94865, + [SMALL_STATE(1885)] = 94965, + [SMALL_STATE(1886)] = 95017, + [SMALL_STATE(1887)] = 95117, + [SMALL_STATE(1888)] = 95173, + [SMALL_STATE(1889)] = 95231, + [SMALL_STATE(1890)] = 95283, + [SMALL_STATE(1891)] = 95335, + [SMALL_STATE(1892)] = 95387, + [SMALL_STATE(1893)] = 95439, + [SMALL_STATE(1894)] = 95539, + [SMALL_STATE(1895)] = 95591, + [SMALL_STATE(1896)] = 95691, + [SMALL_STATE(1897)] = 95791, + [SMALL_STATE(1898)] = 95891, + [SMALL_STATE(1899)] = 95991, + [SMALL_STATE(1900)] = 96091, + [SMALL_STATE(1901)] = 96143, + [SMALL_STATE(1902)] = 96195, + [SMALL_STATE(1903)] = 96295, + [SMALL_STATE(1904)] = 96395, + [SMALL_STATE(1905)] = 96447, + [SMALL_STATE(1906)] = 96499, + [SMALL_STATE(1907)] = 96551, + [SMALL_STATE(1908)] = 96603, + [SMALL_STATE(1909)] = 96655, + [SMALL_STATE(1910)] = 96707, + [SMALL_STATE(1911)] = 96807, + [SMALL_STATE(1912)] = 96863, + [SMALL_STATE(1913)] = 96915, + [SMALL_STATE(1914)] = 97015, + [SMALL_STATE(1915)] = 97067, + [SMALL_STATE(1916)] = 97119, + [SMALL_STATE(1917)] = 97171, + [SMALL_STATE(1918)] = 97271, + [SMALL_STATE(1919)] = 97327, + [SMALL_STATE(1920)] = 97427, + [SMALL_STATE(1921)] = 97483, + [SMALL_STATE(1922)] = 97535, + [SMALL_STATE(1923)] = 97591, + [SMALL_STATE(1924)] = 97643, + [SMALL_STATE(1925)] = 97695, + [SMALL_STATE(1926)] = 97747, + [SMALL_STATE(1927)] = 97799, + [SMALL_STATE(1928)] = 97899, + [SMALL_STATE(1929)] = 97951, + [SMALL_STATE(1930)] = 98003, + [SMALL_STATE(1931)] = 98055, + [SMALL_STATE(1932)] = 98107, + [SMALL_STATE(1933)] = 98159, + [SMALL_STATE(1934)] = 98215, + [SMALL_STATE(1935)] = 98267, + [SMALL_STATE(1936)] = 98319, + [SMALL_STATE(1937)] = 98375, + [SMALL_STATE(1938)] = 98427, + [SMALL_STATE(1939)] = 98483, + [SMALL_STATE(1940)] = 98539, + [SMALL_STATE(1941)] = 98591, + [SMALL_STATE(1942)] = 98691, + [SMALL_STATE(1943)] = 98747, + [SMALL_STATE(1944)] = 98847, + [SMALL_STATE(1945)] = 98947, + [SMALL_STATE(1946)] = 99047, + [SMALL_STATE(1947)] = 99099, + [SMALL_STATE(1948)] = 99151, + [SMALL_STATE(1949)] = 99251, + [SMALL_STATE(1950)] = 99351, + [SMALL_STATE(1951)] = 99451, + [SMALL_STATE(1952)] = 99503, + [SMALL_STATE(1953)] = 99603, + [SMALL_STATE(1954)] = 99703, + [SMALL_STATE(1955)] = 99805, + [SMALL_STATE(1956)] = 99905, + [SMALL_STATE(1957)] = 100005, + [SMALL_STATE(1958)] = 100105, + [SMALL_STATE(1959)] = 100205, + [SMALL_STATE(1960)] = 100305, + [SMALL_STATE(1961)] = 100405, + [SMALL_STATE(1962)] = 100457, + [SMALL_STATE(1963)] = 100557, + [SMALL_STATE(1964)] = 100657, + [SMALL_STATE(1965)] = 100713, + [SMALL_STATE(1966)] = 100765, + [SMALL_STATE(1967)] = 100865, + [SMALL_STATE(1968)] = 100921, + [SMALL_STATE(1969)] = 101021, + [SMALL_STATE(1970)] = 101121, + [SMALL_STATE(1971)] = 101221, + [SMALL_STATE(1972)] = 101273, + [SMALL_STATE(1973)] = 101373, + [SMALL_STATE(1974)] = 101425, + [SMALL_STATE(1975)] = 101483, + [SMALL_STATE(1976)] = 101535, + [SMALL_STATE(1977)] = 101587, + [SMALL_STATE(1978)] = 101639, + [SMALL_STATE(1979)] = 101691, + [SMALL_STATE(1980)] = 101747, + [SMALL_STATE(1981)] = 101847, + [SMALL_STATE(1982)] = 101947, + [SMALL_STATE(1983)] = 102003, + [SMALL_STATE(1984)] = 102103, + [SMALL_STATE(1985)] = 102155, + [SMALL_STATE(1986)] = 102255, + [SMALL_STATE(1987)] = 102355, + [SMALL_STATE(1988)] = 102407, + [SMALL_STATE(1989)] = 102463, + [SMALL_STATE(1990)] = 102515, + [SMALL_STATE(1991)] = 102615, + [SMALL_STATE(1992)] = 102671, + [SMALL_STATE(1993)] = 102771, + [SMALL_STATE(1994)] = 102871, + [SMALL_STATE(1995)] = 102923, + [SMALL_STATE(1996)] = 103023, + [SMALL_STATE(1997)] = 103075, + [SMALL_STATE(1998)] = 103127, + [SMALL_STATE(1999)] = 103179, + [SMALL_STATE(2000)] = 103235, + [SMALL_STATE(2001)] = 103335, + [SMALL_STATE(2002)] = 103391, + [SMALL_STATE(2003)] = 103491, + [SMALL_STATE(2004)] = 103591, + [SMALL_STATE(2005)] = 103691, + [SMALL_STATE(2006)] = 103749, + [SMALL_STATE(2007)] = 103805, + [SMALL_STATE(2008)] = 103905, + [SMALL_STATE(2009)] = 103961, + [SMALL_STATE(2010)] = 104061, + [SMALL_STATE(2011)] = 104161, + [SMALL_STATE(2012)] = 104261, + [SMALL_STATE(2013)] = 104319, + [SMALL_STATE(2014)] = 104419, + [SMALL_STATE(2015)] = 104519, + [SMALL_STATE(2016)] = 104577, + [SMALL_STATE(2017)] = 104633, + [SMALL_STATE(2018)] = 104691, + [SMALL_STATE(2019)] = 104791, + [SMALL_STATE(2020)] = 104891, + [SMALL_STATE(2021)] = 104949, + [SMALL_STATE(2022)] = 105007, + [SMALL_STATE(2023)] = 105065, + [SMALL_STATE(2024)] = 105165, + [SMALL_STATE(2025)] = 105221, + [SMALL_STATE(2026)] = 105321, + [SMALL_STATE(2027)] = 105379, + [SMALL_STATE(2028)] = 105431, + [SMALL_STATE(2029)] = 105483, + [SMALL_STATE(2030)] = 105535, + [SMALL_STATE(2031)] = 105587, + [SMALL_STATE(2032)] = 105639, + [SMALL_STATE(2033)] = 105695, + [SMALL_STATE(2034)] = 105747, + [SMALL_STATE(2035)] = 105799, + [SMALL_STATE(2036)] = 105851, + [SMALL_STATE(2037)] = 105951, + [SMALL_STATE(2038)] = 106051, + [SMALL_STATE(2039)] = 106151, + [SMALL_STATE(2040)] = 106251, + [SMALL_STATE(2041)] = 106351, + [SMALL_STATE(2042)] = 106451, + [SMALL_STATE(2043)] = 106551, + [SMALL_STATE(2044)] = 106651, + [SMALL_STATE(2045)] = 106751, + [SMALL_STATE(2046)] = 106851, + [SMALL_STATE(2047)] = 106951, + [SMALL_STATE(2048)] = 107051, + [SMALL_STATE(2049)] = 107151, + [SMALL_STATE(2050)] = 107207, + [SMALL_STATE(2051)] = 107265, + [SMALL_STATE(2052)] = 107323, + [SMALL_STATE(2053)] = 107381, + [SMALL_STATE(2054)] = 107433, + [SMALL_STATE(2055)] = 107491, + [SMALL_STATE(2056)] = 107543, + [SMALL_STATE(2057)] = 107601, + [SMALL_STATE(2058)] = 107653, + [SMALL_STATE(2059)] = 107753, + [SMALL_STATE(2060)] = 107805, + [SMALL_STATE(2061)] = 107905, + [SMALL_STATE(2062)] = 108005, + [SMALL_STATE(2063)] = 108105, + [SMALL_STATE(2064)] = 108205, + [SMALL_STATE(2065)] = 108257, + [SMALL_STATE(2066)] = 108357, + [SMALL_STATE(2067)] = 108409, + [SMALL_STATE(2068)] = 108461, + [SMALL_STATE(2069)] = 108561, + [SMALL_STATE(2070)] = 108613, + [SMALL_STATE(2071)] = 108665, + [SMALL_STATE(2072)] = 108717, + [SMALL_STATE(2073)] = 108769, + [SMALL_STATE(2074)] = 108821, + [SMALL_STATE(2075)] = 108873, + [SMALL_STATE(2076)] = 108925, + [SMALL_STATE(2077)] = 108977, + [SMALL_STATE(2078)] = 109035, + [SMALL_STATE(2079)] = 109093, + [SMALL_STATE(2080)] = 109145, + [SMALL_STATE(2081)] = 109203, + [SMALL_STATE(2082)] = 109255, + [SMALL_STATE(2083)] = 109307, + [SMALL_STATE(2084)] = 109359, + [SMALL_STATE(2085)] = 109411, + [SMALL_STATE(2086)] = 109469, + [SMALL_STATE(2087)] = 109527, + [SMALL_STATE(2088)] = 109579, + [SMALL_STATE(2089)] = 109679, + [SMALL_STATE(2090)] = 109737, + [SMALL_STATE(2091)] = 109795, + [SMALL_STATE(2092)] = 109853, + [SMALL_STATE(2093)] = 109911, + [SMALL_STATE(2094)] = 109963, + [SMALL_STATE(2095)] = 110015, + [SMALL_STATE(2096)] = 110067, + [SMALL_STATE(2097)] = 110128, + [SMALL_STATE(2098)] = 110183, + [SMALL_STATE(2099)] = 110234, + [SMALL_STATE(2100)] = 110285, + [SMALL_STATE(2101)] = 110346, + [SMALL_STATE(2102)] = 110407, + [SMALL_STATE(2103)] = 110468, + [SMALL_STATE(2104)] = 110529, + [SMALL_STATE(2105)] = 110580, + [SMALL_STATE(2106)] = 110631, + [SMALL_STATE(2107)] = 110686, + [SMALL_STATE(2108)] = 110737, + [SMALL_STATE(2109)] = 110798, + [SMALL_STATE(2110)] = 110849, + [SMALL_STATE(2111)] = 110904, + [SMALL_STATE(2112)] = 110965, + [SMALL_STATE(2113)] = 111026, + [SMALL_STATE(2114)] = 111077, + [SMALL_STATE(2115)] = 111128, + [SMALL_STATE(2116)] = 111179, + [SMALL_STATE(2117)] = 111240, + [SMALL_STATE(2118)] = 111291, + [SMALL_STATE(2119)] = 111352, + [SMALL_STATE(2120)] = 111403, + [SMALL_STATE(2121)] = 111464, + [SMALL_STATE(2122)] = 111525, + [SMALL_STATE(2123)] = 111576, + [SMALL_STATE(2124)] = 111631, + [SMALL_STATE(2125)] = 111686, + [SMALL_STATE(2126)] = 111737, + [SMALL_STATE(2127)] = 111798, + [SMALL_STATE(2128)] = 111849, + [SMALL_STATE(2129)] = 111900, + [SMALL_STATE(2130)] = 111955, + [SMALL_STATE(2131)] = 112006, + [SMALL_STATE(2132)] = 112057, + [SMALL_STATE(2133)] = 112118, + [SMALL_STATE(2134)] = 112179, + [SMALL_STATE(2135)] = 112234, + [SMALL_STATE(2136)] = 112285, + [SMALL_STATE(2137)] = 112346, + [SMALL_STATE(2138)] = 112397, + [SMALL_STATE(2139)] = 112458, + [SMALL_STATE(2140)] = 112509, + [SMALL_STATE(2141)] = 112570, + [SMALL_STATE(2142)] = 112621, + [SMALL_STATE(2143)] = 112682, + [SMALL_STATE(2144)] = 112733, + [SMALL_STATE(2145)] = 112784, + [SMALL_STATE(2146)] = 112841, + [SMALL_STATE(2147)] = 112892, + [SMALL_STATE(2148)] = 112953, + [SMALL_STATE(2149)] = 113004, + [SMALL_STATE(2150)] = 113055, + [SMALL_STATE(2151)] = 113116, + [SMALL_STATE(2152)] = 113167, + [SMALL_STATE(2153)] = 113222, + [SMALL_STATE(2154)] = 113279, + [SMALL_STATE(2155)] = 113340, + [SMALL_STATE(2156)] = 113391, + [SMALL_STATE(2157)] = 113442, + [SMALL_STATE(2158)] = 113497, + [SMALL_STATE(2159)] = 113558, + [SMALL_STATE(2160)] = 113609, + [SMALL_STATE(2161)] = 113670, + [SMALL_STATE(2162)] = 113731, + [SMALL_STATE(2163)] = 113782, + [SMALL_STATE(2164)] = 113833, + [SMALL_STATE(2165)] = 113884, + [SMALL_STATE(2166)] = 113935, + [SMALL_STATE(2167)] = 113986, + [SMALL_STATE(2168)] = 114047, + [SMALL_STATE(2169)] = 114108, + [SMALL_STATE(2170)] = 114159, + [SMALL_STATE(2171)] = 114220, + [SMALL_STATE(2172)] = 114271, + [SMALL_STATE(2173)] = 114322, + [SMALL_STATE(2174)] = 114373, + [SMALL_STATE(2175)] = 114428, + [SMALL_STATE(2176)] = 114479, + [SMALL_STATE(2177)] = 114530, + [SMALL_STATE(2178)] = 114581, + [SMALL_STATE(2179)] = 114632, + [SMALL_STATE(2180)] = 114693, + [SMALL_STATE(2181)] = 114752, + [SMALL_STATE(2182)] = 114803, + [SMALL_STATE(2183)] = 114858, + [SMALL_STATE(2184)] = 114909, + [SMALL_STATE(2185)] = 114968, + [SMALL_STATE(2186)] = 115029, + [SMALL_STATE(2187)] = 115090, + [SMALL_STATE(2188)] = 115151, + [SMALL_STATE(2189)] = 115212, + [SMALL_STATE(2190)] = 115269, + [SMALL_STATE(2191)] = 115320, + [SMALL_STATE(2192)] = 115381, + [SMALL_STATE(2193)] = 115436, + [SMALL_STATE(2194)] = 115497, + [SMALL_STATE(2195)] = 115548, + [SMALL_STATE(2196)] = 115609, + [SMALL_STATE(2197)] = 115660, + [SMALL_STATE(2198)] = 115711, + [SMALL_STATE(2199)] = 115762, + [SMALL_STATE(2200)] = 115813, + [SMALL_STATE(2201)] = 115864, + [SMALL_STATE(2202)] = 115925, + [SMALL_STATE(2203)] = 115976, + [SMALL_STATE(2204)] = 116027, + [SMALL_STATE(2205)] = 116088, + [SMALL_STATE(2206)] = 116149, + [SMALL_STATE(2207)] = 116210, + [SMALL_STATE(2208)] = 116271, + [SMALL_STATE(2209)] = 116326, + [SMALL_STATE(2210)] = 116377, + [SMALL_STATE(2211)] = 116428, + [SMALL_STATE(2212)] = 116479, + [SMALL_STATE(2213)] = 116536, + [SMALL_STATE(2214)] = 116597, + [SMALL_STATE(2215)] = 116658, + [SMALL_STATE(2216)] = 116719, + [SMALL_STATE(2217)] = 116770, + [SMALL_STATE(2218)] = 116825, + [SMALL_STATE(2219)] = 116886, + [SMALL_STATE(2220)] = 116947, + [SMALL_STATE(2221)] = 116998, + [SMALL_STATE(2222)] = 117049, + [SMALL_STATE(2223)] = 117110, + [SMALL_STATE(2224)] = 117171, + [SMALL_STATE(2225)] = 117232, + [SMALL_STATE(2226)] = 117293, + [SMALL_STATE(2227)] = 117354, + [SMALL_STATE(2228)] = 117415, + [SMALL_STATE(2229)] = 117466, + [SMALL_STATE(2230)] = 117517, + [SMALL_STATE(2231)] = 117568, + [SMALL_STATE(2232)] = 117619, + [SMALL_STATE(2233)] = 117674, + [SMALL_STATE(2234)] = 117725, + [SMALL_STATE(2235)] = 117776, + [SMALL_STATE(2236)] = 117827, + [SMALL_STATE(2237)] = 117884, + [SMALL_STATE(2238)] = 117935, + [SMALL_STATE(2239)] = 117994, + [SMALL_STATE(2240)] = 118045, + [SMALL_STATE(2241)] = 118096, + [SMALL_STATE(2242)] = 118157, + [SMALL_STATE(2243)] = 118208, + [SMALL_STATE(2244)] = 118269, + [SMALL_STATE(2245)] = 118330, + [SMALL_STATE(2246)] = 118391, + [SMALL_STATE(2247)] = 118446, + [SMALL_STATE(2248)] = 118507, + [SMALL_STATE(2249)] = 118568, + [SMALL_STATE(2250)] = 118629, + [SMALL_STATE(2251)] = 118680, + [SMALL_STATE(2252)] = 118735, + [SMALL_STATE(2253)] = 118796, + [SMALL_STATE(2254)] = 118857, + [SMALL_STATE(2255)] = 118918, + [SMALL_STATE(2256)] = 118979, + [SMALL_STATE(2257)] = 119040, + [SMALL_STATE(2258)] = 119101, + [SMALL_STATE(2259)] = 119162, + [SMALL_STATE(2260)] = 119223, + [SMALL_STATE(2261)] = 119284, + [SMALL_STATE(2262)] = 119335, + [SMALL_STATE(2263)] = 119386, + [SMALL_STATE(2264)] = 119441, + [SMALL_STATE(2265)] = 119492, + [SMALL_STATE(2266)] = 119543, + [SMALL_STATE(2267)] = 119600, + [SMALL_STATE(2268)] = 119661, + [SMALL_STATE(2269)] = 119722, + [SMALL_STATE(2270)] = 119773, + [SMALL_STATE(2271)] = 119828, + [SMALL_STATE(2272)] = 119889, + [SMALL_STATE(2273)] = 119946, + [SMALL_STATE(2274)] = 120007, + [SMALL_STATE(2275)] = 120068, + [SMALL_STATE(2276)] = 120129, + [SMALL_STATE(2277)] = 120184, + [SMALL_STATE(2278)] = 120235, + [SMALL_STATE(2279)] = 120286, + [SMALL_STATE(2280)] = 120347, + [SMALL_STATE(2281)] = 120408, + [SMALL_STATE(2282)] = 120469, + [SMALL_STATE(2283)] = 120530, + [SMALL_STATE(2284)] = 120585, + [SMALL_STATE(2285)] = 120636, + [SMALL_STATE(2286)] = 120697, + [SMALL_STATE(2287)] = 120756, + [SMALL_STATE(2288)] = 120817, + [SMALL_STATE(2289)] = 120878, + [SMALL_STATE(2290)] = 120929, + [SMALL_STATE(2291)] = 120980, + [SMALL_STATE(2292)] = 121031, + [SMALL_STATE(2293)] = 121082, + [SMALL_STATE(2294)] = 121137, + [SMALL_STATE(2295)] = 121188, + [SMALL_STATE(2296)] = 121239, + [SMALL_STATE(2297)] = 121300, + [SMALL_STATE(2298)] = 121351, + [SMALL_STATE(2299)] = 121412, + [SMALL_STATE(2300)] = 121466, + [SMALL_STATE(2301)] = 121522, + [SMALL_STATE(2302)] = 121576, + [SMALL_STATE(2303)] = 121626, + [SMALL_STATE(2304)] = 121724, + [SMALL_STATE(2305)] = 121822, + [SMALL_STATE(2306)] = 121872, + [SMALL_STATE(2307)] = 121922, + [SMALL_STATE(2308)] = 121980, + [SMALL_STATE(2309)] = 122038, + [SMALL_STATE(2310)] = 122092, + [SMALL_STATE(2311)] = 122146, + [SMALL_STATE(2312)] = 122200, + [SMALL_STATE(2313)] = 122250, + [SMALL_STATE(2314)] = 122304, + [SMALL_STATE(2315)] = 122358, + [SMALL_STATE(2316)] = 122412, + [SMALL_STATE(2317)] = 122462, + [SMALL_STATE(2318)] = 122512, + [SMALL_STATE(2319)] = 122562, + [SMALL_STATE(2320)] = 122612, + [SMALL_STATE(2321)] = 122662, + [SMALL_STATE(2322)] = 122716, + [SMALL_STATE(2323)] = 122770, + [SMALL_STATE(2324)] = 122824, + [SMALL_STATE(2325)] = 122880, + [SMALL_STATE(2326)] = 122936, + [SMALL_STATE(2327)] = 123034, + [SMALL_STATE(2328)] = 123132, + [SMALL_STATE(2329)] = 123230, + [SMALL_STATE(2330)] = 123328, + [SMALL_STATE(2331)] = 123382, + [SMALL_STATE(2332)] = 123480, + [SMALL_STATE(2333)] = 123578, + [SMALL_STATE(2334)] = 123676, + [SMALL_STATE(2335)] = 123774, + [SMALL_STATE(2336)] = 123872, + [SMALL_STATE(2337)] = 123970, + [SMALL_STATE(2338)] = 124068, + [SMALL_STATE(2339)] = 124166, + [SMALL_STATE(2340)] = 124220, + [SMALL_STATE(2341)] = 124318, + [SMALL_STATE(2342)] = 124416, + [SMALL_STATE(2343)] = 124470, + [SMALL_STATE(2344)] = 124520, + [SMALL_STATE(2345)] = 124576, + [SMALL_STATE(2346)] = 124626, + [SMALL_STATE(2347)] = 124676, + [SMALL_STATE(2348)] = 124726, + [SMALL_STATE(2349)] = 124776, + [SMALL_STATE(2350)] = 124826, + [SMALL_STATE(2351)] = 124876, + [SMALL_STATE(2352)] = 124926, + [SMALL_STATE(2353)] = 124976, + [SMALL_STATE(2354)] = 125026, + [SMALL_STATE(2355)] = 125076, + [SMALL_STATE(2356)] = 125132, + [SMALL_STATE(2357)] = 125188, + [SMALL_STATE(2358)] = 125244, + [SMALL_STATE(2359)] = 125300, + [SMALL_STATE(2360)] = 125356, + [SMALL_STATE(2361)] = 125412, + [SMALL_STATE(2362)] = 125462, + [SMALL_STATE(2363)] = 125512, + [SMALL_STATE(2364)] = 125562, + [SMALL_STATE(2365)] = 125612, + [SMALL_STATE(2366)] = 125666, + [SMALL_STATE(2367)] = 125716, + [SMALL_STATE(2368)] = 125766, + [SMALL_STATE(2369)] = 125816, + [SMALL_STATE(2370)] = 125866, + [SMALL_STATE(2371)] = 125916, + [SMALL_STATE(2372)] = 125966, + [SMALL_STATE(2373)] = 126020, + [SMALL_STATE(2374)] = 126070, + [SMALL_STATE(2375)] = 126120, + [SMALL_STATE(2376)] = 126170, + [SMALL_STATE(2377)] = 126220, + [SMALL_STATE(2378)] = 126270, + [SMALL_STATE(2379)] = 126324, + [SMALL_STATE(2380)] = 126378, + [SMALL_STATE(2381)] = 126428, + [SMALL_STATE(2382)] = 126484, + [SMALL_STATE(2383)] = 126540, + [SMALL_STATE(2384)] = 126596, + [SMALL_STATE(2385)] = 126652, + [SMALL_STATE(2386)] = 126708, + [SMALL_STATE(2387)] = 126764, + [SMALL_STATE(2388)] = 126820, + [SMALL_STATE(2389)] = 126876, + [SMALL_STATE(2390)] = 126932, + [SMALL_STATE(2391)] = 126988, + [SMALL_STATE(2392)] = 127044, + [SMALL_STATE(2393)] = 127100, + [SMALL_STATE(2394)] = 127150, + [SMALL_STATE(2395)] = 127203, + [SMALL_STATE(2396)] = 127252, + [SMALL_STATE(2397)] = 127301, + [SMALL_STATE(2398)] = 127354, + [SMALL_STATE(2399)] = 127403, + [SMALL_STATE(2400)] = 127452, + [SMALL_STATE(2401)] = 127501, + [SMALL_STATE(2402)] = 127554, + [SMALL_STATE(2403)] = 127603, + [SMALL_STATE(2404)] = 127656, + [SMALL_STATE(2405)] = 127709, + [SMALL_STATE(2406)] = 127758, + [SMALL_STATE(2407)] = 127813, + [SMALL_STATE(2408)] = 127868, + [SMALL_STATE(2409)] = 127917, + [SMALL_STATE(2410)] = 127966, + [SMALL_STATE(2411)] = 128015, + [SMALL_STATE(2412)] = 128064, + [SMALL_STATE(2413)] = 128117, + [SMALL_STATE(2414)] = 128170, + [SMALL_STATE(2415)] = 128225, + [SMALL_STATE(2416)] = 128280, + [SMALL_STATE(2417)] = 128335, + [SMALL_STATE(2418)] = 128384, + [SMALL_STATE(2419)] = 128433, + [SMALL_STATE(2420)] = 128482, + [SMALL_STATE(2421)] = 128535, + [SMALL_STATE(2422)] = 128588, + [SMALL_STATE(2423)] = 128641, + [SMALL_STATE(2424)] = 128694, + [SMALL_STATE(2425)] = 128749, + [SMALL_STATE(2426)] = 128798, + [SMALL_STATE(2427)] = 128853, + [SMALL_STATE(2428)] = 128908, + [SMALL_STATE(2429)] = 128957, + [SMALL_STATE(2430)] = 129006, + [SMALL_STATE(2431)] = 129059, + [SMALL_STATE(2432)] = 129112, + [SMALL_STATE(2433)] = 129161, + [SMALL_STATE(2434)] = 129214, + [SMALL_STATE(2435)] = 129263, + [SMALL_STATE(2436)] = 129312, + [SMALL_STATE(2437)] = 129361, + [SMALL_STATE(2438)] = 129414, + [SMALL_STATE(2439)] = 129469, + [SMALL_STATE(2440)] = 129522, + [SMALL_STATE(2441)] = 129575, + [SMALL_STATE(2442)] = 129630, + [SMALL_STATE(2443)] = 129685, + [SMALL_STATE(2444)] = 129734, + [SMALL_STATE(2445)] = 129783, + [SMALL_STATE(2446)] = 129832, + [SMALL_STATE(2447)] = 129885, + [SMALL_STATE(2448)] = 129938, + [SMALL_STATE(2449)] = 129993, + [SMALL_STATE(2450)] = 130048, + [SMALL_STATE(2451)] = 130097, + [SMALL_STATE(2452)] = 130150, + [SMALL_STATE(2453)] = 130203, + [SMALL_STATE(2454)] = 130258, + [SMALL_STATE(2455)] = 130311, + [SMALL_STATE(2456)] = 130366, + [SMALL_STATE(2457)] = 130419, + [SMALL_STATE(2458)] = 130472, + [SMALL_STATE(2459)] = 130525, + [SMALL_STATE(2460)] = 130578, + [SMALL_STATE(2461)] = 130631, + [SMALL_STATE(2462)] = 130680, + [SMALL_STATE(2463)] = 130729, + [SMALL_STATE(2464)] = 130782, + [SMALL_STATE(2465)] = 130835, + [SMALL_STATE(2466)] = 130890, + [SMALL_STATE(2467)] = 130945, + [SMALL_STATE(2468)] = 130994, + [SMALL_STATE(2469)] = 131043, + [SMALL_STATE(2470)] = 131096, + [SMALL_STATE(2471)] = 131145, + [SMALL_STATE(2472)] = 131198, + [SMALL_STATE(2473)] = 131247, + [SMALL_STATE(2474)] = 131300, + [SMALL_STATE(2475)] = 131349, + [SMALL_STATE(2476)] = 131402, + [SMALL_STATE(2477)] = 131457, + [SMALL_STATE(2478)] = 131511, + [SMALL_STATE(2479)] = 131565, + [SMALL_STATE(2480)] = 131621, + [SMALL_STATE(2481)] = 131677, + [SMALL_STATE(2482)] = 131731, + [SMALL_STATE(2483)] = 131785, + [SMALL_STATE(2484)] = 131837, + [SMALL_STATE(2485)] = 131891, + [SMALL_STATE(2486)] = 131947, + [SMALL_STATE(2487)] = 132003, + [SMALL_STATE(2488)] = 132059, + [SMALL_STATE(2489)] = 132115, + [SMALL_STATE(2490)] = 132171, + [SMALL_STATE(2491)] = 132227, + [SMALL_STATE(2492)] = 132275, + [SMALL_STATE(2493)] = 132327, + [SMALL_STATE(2494)] = 132379, + [SMALL_STATE(2495)] = 132427, + [SMALL_STATE(2496)] = 132475, + [SMALL_STATE(2497)] = 132523, + [SMALL_STATE(2498)] = 132571, + [SMALL_STATE(2499)] = 132619, + [SMALL_STATE(2500)] = 132667, + [SMALL_STATE(2501)] = 132721, + [SMALL_STATE(2502)] = 132775, + [SMALL_STATE(2503)] = 132827, + [SMALL_STATE(2504)] = 132879, + [SMALL_STATE(2505)] = 132927, + [SMALL_STATE(2506)] = 132975, + [SMALL_STATE(2507)] = 133023, + [SMALL_STATE(2508)] = 133075, + [SMALL_STATE(2509)] = 133129, + [SMALL_STATE(2510)] = 133177, + [SMALL_STATE(2511)] = 133231, + [SMALL_STATE(2512)] = 133285, + [SMALL_STATE(2513)] = 133337, + [SMALL_STATE(2514)] = 133385, + [SMALL_STATE(2515)] = 133433, + [SMALL_STATE(2516)] = 133481, + [SMALL_STATE(2517)] = 133535, + [SMALL_STATE(2518)] = 133589, + [SMALL_STATE(2519)] = 133643, + [SMALL_STATE(2520)] = 133691, + [SMALL_STATE(2521)] = 133745, + [SMALL_STATE(2522)] = 133799, + [SMALL_STATE(2523)] = 133853, + [SMALL_STATE(2524)] = 133909, + [SMALL_STATE(2525)] = 133965, + [SMALL_STATE(2526)] = 134017, + [SMALL_STATE(2527)] = 134065, + [SMALL_STATE(2528)] = 134113, + [SMALL_STATE(2529)] = 134161, + [SMALL_STATE(2530)] = 134209, + [SMALL_STATE(2531)] = 134257, + [SMALL_STATE(2532)] = 134305, + [SMALL_STATE(2533)] = 134359, + [SMALL_STATE(2534)] = 134411, + [SMALL_STATE(2535)] = 134459, + [SMALL_STATE(2536)] = 134507, + [SMALL_STATE(2537)] = 134555, + [SMALL_STATE(2538)] = 134603, + [SMALL_STATE(2539)] = 134651, + [SMALL_STATE(2540)] = 134703, + [SMALL_STATE(2541)] = 134757, + [SMALL_STATE(2542)] = 134805, + [SMALL_STATE(2543)] = 134857, + [SMALL_STATE(2544)] = 134909, + [SMALL_STATE(2545)] = 134961, + [SMALL_STATE(2546)] = 135011, + [SMALL_STATE(2547)] = 135063, + [SMALL_STATE(2548)] = 135111, + [SMALL_STATE(2549)] = 135165, + [SMALL_STATE(2550)] = 135217, + [SMALL_STATE(2551)] = 135265, + [SMALL_STATE(2552)] = 135313, + [SMALL_STATE(2553)] = 135365, + [SMALL_STATE(2554)] = 135413, + [SMALL_STATE(2555)] = 135461, + [SMALL_STATE(2556)] = 135509, + [SMALL_STATE(2557)] = 135557, + [SMALL_STATE(2558)] = 135605, + [SMALL_STATE(2559)] = 135659, + [SMALL_STATE(2560)] = 135713, + [SMALL_STATE(2561)] = 135765, + [SMALL_STATE(2562)] = 135813, + [SMALL_STATE(2563)] = 135861, + [SMALL_STATE(2564)] = 135913, + [SMALL_STATE(2565)] = 135965, + [SMALL_STATE(2566)] = 136013, + [SMALL_STATE(2567)] = 136065, + [SMALL_STATE(2568)] = 136113, + [SMALL_STATE(2569)] = 136161, + [SMALL_STATE(2570)] = 136209, + [SMALL_STATE(2571)] = 136261, + [SMALL_STATE(2572)] = 136309, + [SMALL_STATE(2573)] = 136361, + [SMALL_STATE(2574)] = 136409, + [SMALL_STATE(2575)] = 136457, + [SMALL_STATE(2576)] = 136505, + [SMALL_STATE(2577)] = 136553, + [SMALL_STATE(2578)] = 136601, + [SMALL_STATE(2579)] = 136649, + [SMALL_STATE(2580)] = 136697, + [SMALL_STATE(2581)] = 136745, + [SMALL_STATE(2582)] = 136793, + [SMALL_STATE(2583)] = 136841, + [SMALL_STATE(2584)] = 136889, + [SMALL_STATE(2585)] = 136937, + [SMALL_STATE(2586)] = 136985, + [SMALL_STATE(2587)] = 137033, + [SMALL_STATE(2588)] = 137081, + [SMALL_STATE(2589)] = 137133, + [SMALL_STATE(2590)] = 137181, + [SMALL_STATE(2591)] = 137229, + [SMALL_STATE(2592)] = 137277, + [SMALL_STATE(2593)] = 137325, + [SMALL_STATE(2594)] = 137373, + [SMALL_STATE(2595)] = 137421, + [SMALL_STATE(2596)] = 137469, + [SMALL_STATE(2597)] = 137517, + [SMALL_STATE(2598)] = 137565, + [SMALL_STATE(2599)] = 137613, + [SMALL_STATE(2600)] = 137661, + [SMALL_STATE(2601)] = 137709, + [SMALL_STATE(2602)] = 137757, + [SMALL_STATE(2603)] = 137811, + [SMALL_STATE(2604)] = 137865, + [SMALL_STATE(2605)] = 137913, + [SMALL_STATE(2606)] = 137965, + [SMALL_STATE(2607)] = 138017, + [SMALL_STATE(2608)] = 138069, + [SMALL_STATE(2609)] = 138121, + [SMALL_STATE(2610)] = 138177, + [SMALL_STATE(2611)] = 138233, + [SMALL_STATE(2612)] = 138281, + [SMALL_STATE(2613)] = 138333, + [SMALL_STATE(2614)] = 138387, + [SMALL_STATE(2615)] = 138439, + [SMALL_STATE(2616)] = 138491, + [SMALL_STATE(2617)] = 138545, + [SMALL_STATE(2618)] = 138597, + [SMALL_STATE(2619)] = 138645, + [SMALL_STATE(2620)] = 138693, + [SMALL_STATE(2621)] = 138740, + [SMALL_STATE(2622)] = 138787, + [SMALL_STATE(2623)] = 138834, + [SMALL_STATE(2624)] = 138881, + [SMALL_STATE(2625)] = 138928, + [SMALL_STATE(2626)] = 138975, + [SMALL_STATE(2627)] = 139022, + [SMALL_STATE(2628)] = 139069, + [SMALL_STATE(2629)] = 139118, + [SMALL_STATE(2630)] = 139165, + [SMALL_STATE(2631)] = 139216, + [SMALL_STATE(2632)] = 139263, + [SMALL_STATE(2633)] = 139312, + [SMALL_STATE(2634)] = 139359, + [SMALL_STATE(2635)] = 139406, + [SMALL_STATE(2636)] = 139453, + [SMALL_STATE(2637)] = 139500, + [SMALL_STATE(2638)] = 139547, + [SMALL_STATE(2639)] = 139598, + [SMALL_STATE(2640)] = 139645, + [SMALL_STATE(2641)] = 139692, + [SMALL_STATE(2642)] = 139739, + [SMALL_STATE(2643)] = 139786, + [SMALL_STATE(2644)] = 139833, + [SMALL_STATE(2645)] = 139880, + [SMALL_STATE(2646)] = 139935, + [SMALL_STATE(2647)] = 139990, + [SMALL_STATE(2648)] = 140037, + [SMALL_STATE(2649)] = 140084, + [SMALL_STATE(2650)] = 140131, + [SMALL_STATE(2651)] = 140178, + [SMALL_STATE(2652)] = 140229, + [SMALL_STATE(2653)] = 140276, + [SMALL_STATE(2654)] = 140327, + [SMALL_STATE(2655)] = 140374, + [SMALL_STATE(2656)] = 140425, + [SMALL_STATE(2657)] = 140472, + [SMALL_STATE(2658)] = 140519, + [SMALL_STATE(2659)] = 140566, + [SMALL_STATE(2660)] = 140615, + [SMALL_STATE(2661)] = 140662, + [SMALL_STATE(2662)] = 140709, + [SMALL_STATE(2663)] = 140760, + [SMALL_STATE(2664)] = 140809, + [SMALL_STATE(2665)] = 140856, + [SMALL_STATE(2666)] = 140903, + [SMALL_STATE(2667)] = 140950, + [SMALL_STATE(2668)] = 140997, + [SMALL_STATE(2669)] = 141044, + [SMALL_STATE(2670)] = 141091, + [SMALL_STATE(2671)] = 141138, + [SMALL_STATE(2672)] = 141185, + [SMALL_STATE(2673)] = 141232, + [SMALL_STATE(2674)] = 141283, + [SMALL_STATE(2675)] = 141330, + [SMALL_STATE(2676)] = 141377, + [SMALL_STATE(2677)] = 141428, + [SMALL_STATE(2678)] = 141475, + [SMALL_STATE(2679)] = 141522, + [SMALL_STATE(2680)] = 141569, + [SMALL_STATE(2681)] = 141616, + [SMALL_STATE(2682)] = 141673, + [SMALL_STATE(2683)] = 141720, + [SMALL_STATE(2684)] = 141771, + [SMALL_STATE(2685)] = 141828, + [SMALL_STATE(2686)] = 141875, + [SMALL_STATE(2687)] = 141924, + [SMALL_STATE(2688)] = 141971, + [SMALL_STATE(2689)] = 142018, + [SMALL_STATE(2690)] = 142069, + [SMALL_STATE(2691)] = 142116, + [SMALL_STATE(2692)] = 142163, + [SMALL_STATE(2693)] = 142212, + [SMALL_STATE(2694)] = 142259, + [SMALL_STATE(2695)] = 142306, + [SMALL_STATE(2696)] = 142353, + [SMALL_STATE(2697)] = 142400, + [SMALL_STATE(2698)] = 142447, + [SMALL_STATE(2699)] = 142494, + [SMALL_STATE(2700)] = 142545, + [SMALL_STATE(2701)] = 142592, + [SMALL_STATE(2702)] = 142643, + [SMALL_STATE(2703)] = 142690, + [SMALL_STATE(2704)] = 142737, + [SMALL_STATE(2705)] = 142784, + [SMALL_STATE(2706)] = 142835, + [SMALL_STATE(2707)] = 142882, + [SMALL_STATE(2708)] = 142929, + [SMALL_STATE(2709)] = 142976, + [SMALL_STATE(2710)] = 143023, + [SMALL_STATE(2711)] = 143070, + [SMALL_STATE(2712)] = 143117, + [SMALL_STATE(2713)] = 143164, + [SMALL_STATE(2714)] = 143211, + [SMALL_STATE(2715)] = 143258, + [SMALL_STATE(2716)] = 143305, + [SMALL_STATE(2717)] = 143352, + [SMALL_STATE(2718)] = 143399, + [SMALL_STATE(2719)] = 143446, + [SMALL_STATE(2720)] = 143493, + [SMALL_STATE(2721)] = 143540, + [SMALL_STATE(2722)] = 143587, + [SMALL_STATE(2723)] = 143634, + [SMALL_STATE(2724)] = 143681, + [SMALL_STATE(2725)] = 143732, + [SMALL_STATE(2726)] = 143779, + [SMALL_STATE(2727)] = 143826, + [SMALL_STATE(2728)] = 143873, + [SMALL_STATE(2729)] = 143920, + [SMALL_STATE(2730)] = 143967, + [SMALL_STATE(2731)] = 144018, + [SMALL_STATE(2732)] = 144065, + [SMALL_STATE(2733)] = 144112, + [SMALL_STATE(2734)] = 144159, + [SMALL_STATE(2735)] = 144210, + [SMALL_STATE(2736)] = 144263, + [SMALL_STATE(2737)] = 144316, + [SMALL_STATE(2738)] = 144367, + [SMALL_STATE(2739)] = 144418, + [SMALL_STATE(2740)] = 144465, + [SMALL_STATE(2741)] = 144518, + [SMALL_STATE(2742)] = 144567, + [SMALL_STATE(2743)] = 144620, + [SMALL_STATE(2744)] = 144671, + [SMALL_STATE(2745)] = 144718, + [SMALL_STATE(2746)] = 144765, + [SMALL_STATE(2747)] = 144812, + [SMALL_STATE(2748)] = 144859, + [SMALL_STATE(2749)] = 144906, + [SMALL_STATE(2750)] = 144957, + [SMALL_STATE(2751)] = 145004, + [SMALL_STATE(2752)] = 145051, + [SMALL_STATE(2753)] = 145098, + [SMALL_STATE(2754)] = 145145, + [SMALL_STATE(2755)] = 145192, + [SMALL_STATE(2756)] = 145239, + [SMALL_STATE(2757)] = 145286, + [SMALL_STATE(2758)] = 145333, + [SMALL_STATE(2759)] = 145380, + [SMALL_STATE(2760)] = 145427, + [SMALL_STATE(2761)] = 145474, + [SMALL_STATE(2762)] = 145521, + [SMALL_STATE(2763)] = 145568, + [SMALL_STATE(2764)] = 145619, + [SMALL_STATE(2765)] = 145666, + [SMALL_STATE(2766)] = 145713, + [SMALL_STATE(2767)] = 145760, + [SMALL_STATE(2768)] = 145807, + [SMALL_STATE(2769)] = 145854, + [SMALL_STATE(2770)] = 145901, + [SMALL_STATE(2771)] = 145952, + [SMALL_STATE(2772)] = 145999, + [SMALL_STATE(2773)] = 146046, + [SMALL_STATE(2774)] = 146093, + [SMALL_STATE(2775)] = 146140, + [SMALL_STATE(2776)] = 146187, + [SMALL_STATE(2777)] = 146234, + [SMALL_STATE(2778)] = 146285, + [SMALL_STATE(2779)] = 146332, + [SMALL_STATE(2780)] = 146378, + [SMALL_STATE(2781)] = 146424, + [SMALL_STATE(2782)] = 146480, + [SMALL_STATE(2783)] = 146536, + [SMALL_STATE(2784)] = 146582, + [SMALL_STATE(2785)] = 146628, + [SMALL_STATE(2786)] = 146684, + [SMALL_STATE(2787)] = 146740, + [SMALL_STATE(2788)] = 146786, + [SMALL_STATE(2789)] = 146842, + [SMALL_STATE(2790)] = 146898, + [SMALL_STATE(2791)] = 146972, + [SMALL_STATE(2792)] = 147054, + [SMALL_STATE(2793)] = 147130, + [SMALL_STATE(2794)] = 147200, + [SMALL_STATE(2795)] = 147246, + [SMALL_STATE(2796)] = 147314, + [SMALL_STATE(2797)] = 147364, + [SMALL_STATE(2798)] = 147430, + [SMALL_STATE(2799)] = 147488, + [SMALL_STATE(2800)] = 147534, + [SMALL_STATE(2801)] = 147626, + [SMALL_STATE(2802)] = 147682, + [SMALL_STATE(2803)] = 147774, + [SMALL_STATE(2804)] = 147866, + [SMALL_STATE(2805)] = 147958, + [SMALL_STATE(2806)] = 148022, + [SMALL_STATE(2807)] = 148084, + [SMALL_STATE(2808)] = 148132, + [SMALL_STATE(2809)] = 148192, + [SMALL_STATE(2810)] = 148248, + [SMALL_STATE(2811)] = 148302, + [SMALL_STATE(2812)] = 148354, + [SMALL_STATE(2813)] = 148404, + [SMALL_STATE(2814)] = 148486, + [SMALL_STATE(2815)] = 148534, + [SMALL_STATE(2816)] = 148580, + [SMALL_STATE(2817)] = 148636, + [SMALL_STATE(2818)] = 148686, + [SMALL_STATE(2819)] = 148732, + [SMALL_STATE(2820)] = 148788, + [SMALL_STATE(2821)] = 148880, + [SMALL_STATE(2822)] = 148972, + [SMALL_STATE(2823)] = 149018, + [SMALL_STATE(2824)] = 149110, + [SMALL_STATE(2825)] = 149202, + [SMALL_STATE(2826)] = 149294, + [SMALL_STATE(2827)] = 149350, + [SMALL_STATE(2828)] = 149396, + [SMALL_STATE(2829)] = 149442, + [SMALL_STATE(2830)] = 149518, + [SMALL_STATE(2831)] = 149600, + [SMALL_STATE(2832)] = 149678, + [SMALL_STATE(2833)] = 149750, + [SMALL_STATE(2834)] = 149820, + [SMALL_STATE(2835)] = 149866, + [SMALL_STATE(2836)] = 149916, + [SMALL_STATE(2837)] = 149962, + [SMALL_STATE(2838)] = 150030, + [SMALL_STATE(2839)] = 150096, + [SMALL_STATE(2840)] = 150142, + [SMALL_STATE(2841)] = 150188, + [SMALL_STATE(2842)] = 150252, + [SMALL_STATE(2843)] = 150314, + [SMALL_STATE(2844)] = 150406, + [SMALL_STATE(2845)] = 150498, + [SMALL_STATE(2846)] = 150590, + [SMALL_STATE(2847)] = 150682, + [SMALL_STATE(2848)] = 150728, + [SMALL_STATE(2849)] = 150810, + [SMALL_STATE(2850)] = 150868, + [SMALL_STATE(2851)] = 150922, + [SMALL_STATE(2852)] = 150974, + [SMALL_STATE(2853)] = 151024, + [SMALL_STATE(2854)] = 151074, + [SMALL_STATE(2855)] = 151124, + [SMALL_STATE(2856)] = 151206, + [SMALL_STATE(2857)] = 151256, + [SMALL_STATE(2858)] = 151348, + [SMALL_STATE(2859)] = 151430, + [SMALL_STATE(2860)] = 151512, + [SMALL_STATE(2861)] = 151594, + [SMALL_STATE(2862)] = 151676, + [SMALL_STATE(2863)] = 151758, + [SMALL_STATE(2864)] = 151840, + [SMALL_STATE(2865)] = 151886, + [SMALL_STATE(2866)] = 151968, + [SMALL_STATE(2867)] = 152050, + [SMALL_STATE(2868)] = 152132, + [SMALL_STATE(2869)] = 152214, + [SMALL_STATE(2870)] = 152296, + [SMALL_STATE(2871)] = 152378, + [SMALL_STATE(2872)] = 152460, + [SMALL_STATE(2873)] = 152542, + [SMALL_STATE(2874)] = 152624, + [SMALL_STATE(2875)] = 152674, + [SMALL_STATE(2876)] = 152756, + [SMALL_STATE(2877)] = 152838, + [SMALL_STATE(2878)] = 152920, + [SMALL_STATE(2879)] = 153002, + [SMALL_STATE(2880)] = 153084, + [SMALL_STATE(2881)] = 153166, + [SMALL_STATE(2882)] = 153248, + [SMALL_STATE(2883)] = 153330, + [SMALL_STATE(2884)] = 153412, + [SMALL_STATE(2885)] = 153466, + [SMALL_STATE(2886)] = 153548, + [SMALL_STATE(2887)] = 153630, + [SMALL_STATE(2888)] = 153684, + [SMALL_STATE(2889)] = 153766, + [SMALL_STATE(2890)] = 153848, + [SMALL_STATE(2891)] = 153930, + [SMALL_STATE(2892)] = 154012, + [SMALL_STATE(2893)] = 154094, + [SMALL_STATE(2894)] = 154176, + [SMALL_STATE(2895)] = 154258, + [SMALL_STATE(2896)] = 154306, + [SMALL_STATE(2897)] = 154388, + [SMALL_STATE(2898)] = 154470, + [SMALL_STATE(2899)] = 154552, + [SMALL_STATE(2900)] = 154598, + [SMALL_STATE(2901)] = 154680, + [SMALL_STATE(2902)] = 154762, + [SMALL_STATE(2903)] = 154808, + [SMALL_STATE(2904)] = 154890, + [SMALL_STATE(2905)] = 154972, + [SMALL_STATE(2906)] = 155018, + [SMALL_STATE(2907)] = 155100, + [SMALL_STATE(2908)] = 155182, + [SMALL_STATE(2909)] = 155264, + [SMALL_STATE(2910)] = 155320, + [SMALL_STATE(2911)] = 155402, + [SMALL_STATE(2912)] = 155448, + [SMALL_STATE(2913)] = 155530, + [SMALL_STATE(2914)] = 155576, + [SMALL_STATE(2915)] = 155658, + [SMALL_STATE(2916)] = 155740, + [SMALL_STATE(2917)] = 155786, + [SMALL_STATE(2918)] = 155868, + [SMALL_STATE(2919)] = 155950, + [SMALL_STATE(2920)] = 156032, + [SMALL_STATE(2921)] = 156114, + [SMALL_STATE(2922)] = 156196, + [SMALL_STATE(2923)] = 156242, + [SMALL_STATE(2924)] = 156324, + [SMALL_STATE(2925)] = 156406, + [SMALL_STATE(2926)] = 156488, + [SMALL_STATE(2927)] = 156570, + [SMALL_STATE(2928)] = 156652, + [SMALL_STATE(2929)] = 156734, + [SMALL_STATE(2930)] = 156816, + [SMALL_STATE(2931)] = 156898, + [SMALL_STATE(2932)] = 156944, + [SMALL_STATE(2933)] = 156990, + [SMALL_STATE(2934)] = 157036, + [SMALL_STATE(2935)] = 157082, + [SMALL_STATE(2936)] = 157128, + [SMALL_STATE(2937)] = 157174, + [SMALL_STATE(2938)] = 157220, + [SMALL_STATE(2939)] = 157266, + [SMALL_STATE(2940)] = 157312, + [SMALL_STATE(2941)] = 157358, + [SMALL_STATE(2942)] = 157404, + [SMALL_STATE(2943)] = 157450, + [SMALL_STATE(2944)] = 157500, + [SMALL_STATE(2945)] = 157546, + [SMALL_STATE(2946)] = 157592, + [SMALL_STATE(2947)] = 157638, + [SMALL_STATE(2948)] = 157684, + [SMALL_STATE(2949)] = 157730, + [SMALL_STATE(2950)] = 157776, + [SMALL_STATE(2951)] = 157822, + [SMALL_STATE(2952)] = 157868, + [SMALL_STATE(2953)] = 157914, + [SMALL_STATE(2954)] = 157962, + [SMALL_STATE(2955)] = 158008, + [SMALL_STATE(2956)] = 158054, + [SMALL_STATE(2957)] = 158128, + [SMALL_STATE(2958)] = 158174, + [SMALL_STATE(2959)] = 158220, + [SMALL_STATE(2960)] = 158266, + [SMALL_STATE(2961)] = 158312, + [SMALL_STATE(2962)] = 158358, + [SMALL_STATE(2963)] = 158404, + [SMALL_STATE(2964)] = 158450, + [SMALL_STATE(2965)] = 158542, + [SMALL_STATE(2966)] = 158634, + [SMALL_STATE(2967)] = 158680, + [SMALL_STATE(2968)] = 158728, + [SMALL_STATE(2969)] = 158778, + [SMALL_STATE(2970)] = 158824, + [SMALL_STATE(2971)] = 158870, + [SMALL_STATE(2972)] = 158920, + [SMALL_STATE(2973)] = 158966, + [SMALL_STATE(2974)] = 159016, + [SMALL_STATE(2975)] = 159062, + [SMALL_STATE(2976)] = 159108, + [SMALL_STATE(2977)] = 159154, + [SMALL_STATE(2978)] = 159200, + [SMALL_STATE(2979)] = 159246, + [SMALL_STATE(2980)] = 159296, + [SMALL_STATE(2981)] = 159342, + [SMALL_STATE(2982)] = 159388, + [SMALL_STATE(2983)] = 159434, + [SMALL_STATE(2984)] = 159482, + [SMALL_STATE(2985)] = 159528, + [SMALL_STATE(2986)] = 159574, + [SMALL_STATE(2987)] = 159646, + [SMALL_STATE(2988)] = 159692, + [SMALL_STATE(2989)] = 159738, + [SMALL_STATE(2990)] = 159784, + [SMALL_STATE(2991)] = 159830, + [SMALL_STATE(2992)] = 159876, + [SMALL_STATE(2993)] = 159922, + [SMALL_STATE(2994)] = 159968, + [SMALL_STATE(2995)] = 160014, + [SMALL_STATE(2996)] = 160060, + [SMALL_STATE(2997)] = 160106, + [SMALL_STATE(2998)] = 160156, + [SMALL_STATE(2999)] = 160202, + [SMALL_STATE(3000)] = 160252, + [SMALL_STATE(3001)] = 160334, + [SMALL_STATE(3002)] = 160409, + [SMALL_STATE(3003)] = 160488, + [SMALL_STATE(3004)] = 160543, + [SMALL_STATE(3005)] = 160590, + [SMALL_STATE(3006)] = 160645, + [SMALL_STATE(3007)] = 160702, + [SMALL_STATE(3008)] = 160759, + [SMALL_STATE(3009)] = 160838, + [SMALL_STATE(3010)] = 160893, + [SMALL_STATE(3011)] = 160948, + [SMALL_STATE(3012)] = 161003, + [SMALL_STATE(3013)] = 161082, + [SMALL_STATE(3014)] = 161161, + [SMALL_STATE(3015)] = 161240, + [SMALL_STATE(3016)] = 161293, + [SMALL_STATE(3017)] = 161344, + [SMALL_STATE(3018)] = 161393, + [SMALL_STATE(3019)] = 161438, + [SMALL_STATE(3020)] = 161495, + [SMALL_STATE(3021)] = 161574, + [SMALL_STATE(3022)] = 161629, + [SMALL_STATE(3023)] = 161708, + [SMALL_STATE(3024)] = 161763, + [SMALL_STATE(3025)] = 161842, + [SMALL_STATE(3026)] = 161897, + [SMALL_STATE(3027)] = 161976, + [SMALL_STATE(3028)] = 162055, + [SMALL_STATE(3029)] = 162104, + [SMALL_STATE(3030)] = 162183, + [SMALL_STATE(3031)] = 162262, + [SMALL_STATE(3032)] = 162309, + [SMALL_STATE(3033)] = 162388, + [SMALL_STATE(3034)] = 162477, + [SMALL_STATE(3035)] = 162532, + [SMALL_STATE(3036)] = 162587, + [SMALL_STATE(3037)] = 162664, + [SMALL_STATE(3038)] = 162727, + [SMALL_STATE(3039)] = 162772, + [SMALL_STATE(3040)] = 162851, + [SMALL_STATE(3041)] = 162906, + [SMALL_STATE(3042)] = 162961, + [SMALL_STATE(3043)] = 163040, + [SMALL_STATE(3044)] = 163119, + [SMALL_STATE(3045)] = 163164, + [SMALL_STATE(3046)] = 163233, + [SMALL_STATE(3047)] = 163300, + [SMALL_STATE(3048)] = 163361, + [SMALL_STATE(3049)] = 163426, + [SMALL_STATE(3050)] = 163489, + [SMALL_STATE(3051)] = 163536, + [SMALL_STATE(3052)] = 163583, + [SMALL_STATE(3053)] = 163644, + [SMALL_STATE(3054)] = 163733, + [SMALL_STATE(3055)] = 163822, + [SMALL_STATE(3056)] = 163911, + [SMALL_STATE(3057)] = 164000, + [SMALL_STATE(3058)] = 164089, + [SMALL_STATE(3059)] = 164178, + [SMALL_STATE(3060)] = 164257, + [SMALL_STATE(3061)] = 164314, + [SMALL_STATE(3062)] = 164359, + [SMALL_STATE(3063)] = 164414, + [SMALL_STATE(3064)] = 164469, + [SMALL_STATE(3065)] = 164544, + [SMALL_STATE(3066)] = 164619, + [SMALL_STATE(3067)] = 164696, + [SMALL_STATE(3068)] = 164767, + [SMALL_STATE(3069)] = 164836, + [SMALL_STATE(3070)] = 164903, + [SMALL_STATE(3071)] = 164968, + [SMALL_STATE(3072)] = 165031, + [SMALL_STATE(3073)] = 165092, + [SMALL_STATE(3074)] = 165137, + [SMALL_STATE(3075)] = 165194, + [SMALL_STATE(3076)] = 165247, + [SMALL_STATE(3077)] = 165298, + [SMALL_STATE(3078)] = 165347, + [SMALL_STATE(3079)] = 165396, + [SMALL_STATE(3080)] = 165441, + [SMALL_STATE(3081)] = 165520, + [SMALL_STATE(3082)] = 165565, + [SMALL_STATE(3083)] = 165654, + [SMALL_STATE(3084)] = 165743, + [SMALL_STATE(3085)] = 165790, + [SMALL_STATE(3086)] = 165879, + [SMALL_STATE(3087)] = 165968, + [SMALL_STATE(3088)] = 166057, + [SMALL_STATE(3089)] = 166146, + [SMALL_STATE(3090)] = 166193, + [SMALL_STATE(3091)] = 166240, + [SMALL_STATE(3092)] = 166319, + [SMALL_STATE(3093)] = 166396, + [SMALL_STATE(3094)] = 166451, + [SMALL_STATE(3095)] = 166522, + [SMALL_STATE(3096)] = 166591, + [SMALL_STATE(3097)] = 166658, + [SMALL_STATE(3098)] = 166723, + [SMALL_STATE(3099)] = 166802, + [SMALL_STATE(3100)] = 166881, + [SMALL_STATE(3101)] = 166944, + [SMALL_STATE(3102)] = 167021, + [SMALL_STATE(3103)] = 167092, + [SMALL_STATE(3104)] = 167161, + [SMALL_STATE(3105)] = 167228, + [SMALL_STATE(3106)] = 167293, + [SMALL_STATE(3107)] = 167338, + [SMALL_STATE(3108)] = 167401, + [SMALL_STATE(3109)] = 167462, + [SMALL_STATE(3110)] = 167551, + [SMALL_STATE(3111)] = 167640, + [SMALL_STATE(3112)] = 167701, + [SMALL_STATE(3113)] = 167790, + [SMALL_STATE(3114)] = 167879, + [SMALL_STATE(3115)] = 167968, + [SMALL_STATE(3116)] = 168057, + [SMALL_STATE(3117)] = 168114, + [SMALL_STATE(3118)] = 168167, + [SMALL_STATE(3119)] = 168224, + [SMALL_STATE(3120)] = 168277, + [SMALL_STATE(3121)] = 168328, + [SMALL_STATE(3122)] = 168377, + [SMALL_STATE(3123)] = 168428, + [SMALL_STATE(3124)] = 168477, + [SMALL_STATE(3125)] = 168526, + [SMALL_STATE(3126)] = 168573, + [SMALL_STATE(3127)] = 168620, + [SMALL_STATE(3128)] = 168669, + [SMALL_STATE(3129)] = 168714, + [SMALL_STATE(3130)] = 168759, + [SMALL_STATE(3131)] = 168838, + [SMALL_STATE(3132)] = 168927, + [SMALL_STATE(3133)] = 168982, + [SMALL_STATE(3134)] = 169039, + [SMALL_STATE(3135)] = 169118, + [SMALL_STATE(3136)] = 169163, + [SMALL_STATE(3137)] = 169208, + [SMALL_STATE(3138)] = 169263, + [SMALL_STATE(3139)] = 169320, + [SMALL_STATE(3140)] = 169399, + [SMALL_STATE(3141)] = 169444, + [SMALL_STATE(3142)] = 169517, + [SMALL_STATE(3143)] = 169570, + [SMALL_STATE(3144)] = 169621, + [SMALL_STATE(3145)] = 169670, + [SMALL_STATE(3146)] = 169719, + [SMALL_STATE(3147)] = 169798, + [SMALL_STATE(3148)] = 169877, + [SMALL_STATE(3149)] = 169924, + [SMALL_STATE(3150)] = 170013, + [SMALL_STATE(3151)] = 170060, + [SMALL_STATE(3152)] = 170115, + [SMALL_STATE(3153)] = 170190, + [SMALL_STATE(3154)] = 170267, + [SMALL_STATE(3155)] = 170338, + [SMALL_STATE(3156)] = 170407, + [SMALL_STATE(3157)] = 170474, + [SMALL_STATE(3158)] = 170539, + [SMALL_STATE(3159)] = 170602, + [SMALL_STATE(3160)] = 170663, + [SMALL_STATE(3161)] = 170720, + [SMALL_STATE(3162)] = 170773, + [SMALL_STATE(3163)] = 170824, + [SMALL_STATE(3164)] = 170873, + [SMALL_STATE(3165)] = 170922, + [SMALL_STATE(3166)] = 171011, + [SMALL_STATE(3167)] = 171058, + [SMALL_STATE(3168)] = 171103, + [SMALL_STATE(3169)] = 171176, + [SMALL_STATE(3170)] = 171255, + [SMALL_STATE(3171)] = 171300, + [SMALL_STATE(3172)] = 171355, + [SMALL_STATE(3173)] = 171410, + [SMALL_STATE(3174)] = 171465, + [SMALL_STATE(3175)] = 171510, + [SMALL_STATE(3176)] = 171589, + [SMALL_STATE(3177)] = 171668, + [SMALL_STATE(3178)] = 171719, + [SMALL_STATE(3179)] = 171774, + [SMALL_STATE(3180)] = 171825, + [SMALL_STATE(3181)] = 171870, + [SMALL_STATE(3182)] = 171915, + [SMALL_STATE(3183)] = 171960, + [SMALL_STATE(3184)] = 172005, + [SMALL_STATE(3185)] = 172078, + [SMALL_STATE(3186)] = 172123, + [SMALL_STATE(3187)] = 172168, + [SMALL_STATE(3188)] = 172215, + [SMALL_STATE(3189)] = 172260, + [SMALL_STATE(3190)] = 172315, + [SMALL_STATE(3191)] = 172394, + [SMALL_STATE(3192)] = 172449, + [SMALL_STATE(3193)] = 172504, + [SMALL_STATE(3194)] = 172583, + [SMALL_STATE(3195)] = 172656, + [SMALL_STATE(3196)] = 172701, + [SMALL_STATE(3197)] = 172752, + [SMALL_STATE(3198)] = 172831, + [SMALL_STATE(3199)] = 172882, + [SMALL_STATE(3200)] = 172933, + [SMALL_STATE(3201)] = 173004, + [SMALL_STATE(3202)] = 173049, + [SMALL_STATE(3203)] = 173094, + [SMALL_STATE(3204)] = 173173, + [SMALL_STATE(3205)] = 173224, + [SMALL_STATE(3206)] = 173273, + [SMALL_STATE(3207)] = 173346, + [SMALL_STATE(3208)] = 173391, + [SMALL_STATE(3209)] = 173454, + [SMALL_STATE(3210)] = 173499, + [SMALL_STATE(3211)] = 173546, + [SMALL_STATE(3212)] = 173635, + [SMALL_STATE(3213)] = 173680, + [SMALL_STATE(3214)] = 173737, + [SMALL_STATE(3215)] = 173792, + [SMALL_STATE(3216)] = 173881, + [SMALL_STATE(3217)] = 173960, + [SMALL_STATE(3218)] = 174005, + [SMALL_STATE(3219)] = 174054, + [SMALL_STATE(3220)] = 174099, + [SMALL_STATE(3221)] = 174144, + [SMALL_STATE(3222)] = 174219, + [SMALL_STATE(3223)] = 174296, + [SMALL_STATE(3224)] = 174367, + [SMALL_STATE(3225)] = 174414, + [SMALL_STATE(3226)] = 174483, + [SMALL_STATE(3227)] = 174550, + [SMALL_STATE(3228)] = 174615, + [SMALL_STATE(3229)] = 174694, + [SMALL_STATE(3230)] = 174773, + [SMALL_STATE(3231)] = 174818, + [SMALL_STATE(3232)] = 174877, + [SMALL_STATE(3233)] = 174953, + [SMALL_STATE(3234)] = 174997, + [SMALL_STATE(3235)] = 175041, + [SMALL_STATE(3236)] = 175085, + [SMALL_STATE(3237)] = 175157, + [SMALL_STATE(3238)] = 175231, + [SMALL_STATE(3239)] = 175313, + [SMALL_STATE(3240)] = 175381, + [SMALL_STATE(3241)] = 175447, + [SMALL_STATE(3242)] = 175511, + [SMALL_STATE(3243)] = 175587, + [SMALL_STATE(3244)] = 175649, + [SMALL_STATE(3245)] = 175725, + [SMALL_STATE(3246)] = 175777, + [SMALL_STATE(3247)] = 175837, + [SMALL_STATE(3248)] = 175887, + [SMALL_STATE(3249)] = 175935, + [SMALL_STATE(3250)] = 175981, + [SMALL_STATE(3251)] = 176027, + [SMALL_STATE(3252)] = 176103, + [SMALL_STATE(3253)] = 176161, + [SMALL_STATE(3254)] = 176237, + [SMALL_STATE(3255)] = 176313, + [SMALL_STATE(3256)] = 176367, + [SMALL_STATE(3257)] = 176419, + [SMALL_STATE(3258)] = 176469, + [SMALL_STATE(3259)] = 176545, + [SMALL_STATE(3260)] = 176599, + [SMALL_STATE(3261)] = 176643, + [SMALL_STATE(3262)] = 176691, + [SMALL_STATE(3263)] = 176767, + [SMALL_STATE(3264)] = 176813, + [SMALL_STATE(3265)] = 176857, + [SMALL_STATE(3266)] = 176925, + [SMALL_STATE(3267)] = 176991, + [SMALL_STATE(3268)] = 177055, + [SMALL_STATE(3269)] = 177119, + [SMALL_STATE(3270)] = 177163, + [SMALL_STATE(3271)] = 177225, + [SMALL_STATE(3272)] = 177285, + [SMALL_STATE(3273)] = 177329, + [SMALL_STATE(3274)] = 177373, + [SMALL_STATE(3275)] = 177431, + [SMALL_STATE(3276)] = 177485, + [SMALL_STATE(3277)] = 177529, + [SMALL_STATE(3278)] = 177581, + [SMALL_STATE(3279)] = 177625, + [SMALL_STATE(3280)] = 177669, + [SMALL_STATE(3281)] = 177723, + [SMALL_STATE(3282)] = 177773, + [SMALL_STATE(3283)] = 177821, + [SMALL_STATE(3284)] = 177865, + [SMALL_STATE(3285)] = 177913, + [SMALL_STATE(3286)] = 177957, + [SMALL_STATE(3287)] = 178001, + [SMALL_STATE(3288)] = 178045, + [SMALL_STATE(3289)] = 178089, + [SMALL_STATE(3290)] = 178133, + [SMALL_STATE(3291)] = 178177, + [SMALL_STATE(3292)] = 178253, + [SMALL_STATE(3293)] = 178297, + [SMALL_STATE(3294)] = 178341, + [SMALL_STATE(3295)] = 178385, + [SMALL_STATE(3296)] = 178455, + [SMALL_STATE(3297)] = 178545, + [SMALL_STATE(3298)] = 178599, + [SMALL_STATE(3299)] = 178675, + [SMALL_STATE(3300)] = 178719, + [SMALL_STATE(3301)] = 178763, + [SMALL_STATE(3302)] = 178839, + [SMALL_STATE(3303)] = 178915, + [SMALL_STATE(3304)] = 178959, + [SMALL_STATE(3305)] = 179003, + [SMALL_STATE(3306)] = 179047, + [SMALL_STATE(3307)] = 179123, + [SMALL_STATE(3308)] = 179167, + [SMALL_STATE(3309)] = 179243, + [SMALL_STATE(3310)] = 179329, + [SMALL_STATE(3311)] = 179405, + [SMALL_STATE(3312)] = 179481, + [SMALL_STATE(3313)] = 179557, + [SMALL_STATE(3314)] = 179601, + [SMALL_STATE(3315)] = 179677, + [SMALL_STATE(3316)] = 179753, + [SMALL_STATE(3317)] = 179829, + [SMALL_STATE(3318)] = 179905, + [SMALL_STATE(3319)] = 179949, + [SMALL_STATE(3320)] = 179993, + [SMALL_STATE(3321)] = 180069, + [SMALL_STATE(3322)] = 180145, + [SMALL_STATE(3323)] = 180189, + [SMALL_STATE(3324)] = 180265, + [SMALL_STATE(3325)] = 180337, + [SMALL_STATE(3326)] = 180411, + [SMALL_STATE(3327)] = 180479, + [SMALL_STATE(3328)] = 180545, + [SMALL_STATE(3329)] = 180599, + [SMALL_STATE(3330)] = 180663, + [SMALL_STATE(3331)] = 180717, + [SMALL_STATE(3332)] = 180799, + [SMALL_STATE(3333)] = 180843, + [SMALL_STATE(3334)] = 180887, + [SMALL_STATE(3335)] = 180931, + [SMALL_STATE(3336)] = 180975, + [SMALL_STATE(3337)] = 181019, + [SMALL_STATE(3338)] = 181063, + [SMALL_STATE(3339)] = 181107, + [SMALL_STATE(3340)] = 181175, + [SMALL_STATE(3341)] = 181219, + [SMALL_STATE(3342)] = 181285, + [SMALL_STATE(3343)] = 181329, + [SMALL_STATE(3344)] = 181373, + [SMALL_STATE(3345)] = 181449, + [SMALL_STATE(3346)] = 181513, + [SMALL_STATE(3347)] = 181577, + [SMALL_STATE(3348)] = 181639, + [SMALL_STATE(3349)] = 181683, + [SMALL_STATE(3350)] = 181737, + [SMALL_STATE(3351)] = 181797, + [SMALL_STATE(3352)] = 181873, + [SMALL_STATE(3353)] = 181917, + [SMALL_STATE(3354)] = 181961, + [SMALL_STATE(3355)] = 182037, + [SMALL_STATE(3356)] = 182081, + [SMALL_STATE(3357)] = 182125, + [SMALL_STATE(3358)] = 182183, + [SMALL_STATE(3359)] = 182227, + [SMALL_STATE(3360)] = 182281, + [SMALL_STATE(3361)] = 182333, + [SMALL_STATE(3362)] = 182383, + [SMALL_STATE(3363)] = 182431, + [SMALL_STATE(3364)] = 182475, + [SMALL_STATE(3365)] = 182523, + [SMALL_STATE(3366)] = 182599, + [SMALL_STATE(3367)] = 182675, + [SMALL_STATE(3368)] = 182719, + [SMALL_STATE(3369)] = 182763, + [SMALL_STATE(3370)] = 182853, + [SMALL_STATE(3371)] = 182929, + [SMALL_STATE(3372)] = 182973, + [SMALL_STATE(3373)] = 183017, + [SMALL_STATE(3374)] = 183061, + [SMALL_STATE(3375)] = 183105, + [SMALL_STATE(3376)] = 183149, + [SMALL_STATE(3377)] = 183193, + [SMALL_STATE(3378)] = 183269, + [SMALL_STATE(3379)] = 183345, + [SMALL_STATE(3380)] = 183421, + [SMALL_STATE(3381)] = 183483, + [SMALL_STATE(3382)] = 183537, + [SMALL_STATE(3383)] = 183591, + [SMALL_STATE(3384)] = 183667, + [SMALL_STATE(3385)] = 183711, + [SMALL_STATE(3386)] = 183787, + [SMALL_STATE(3387)] = 183857, + [SMALL_STATE(3388)] = 183933, + [SMALL_STATE(3389)] = 184015, + [SMALL_STATE(3390)] = 184091, + [SMALL_STATE(3391)] = 184161, + [SMALL_STATE(3392)] = 184205, + [SMALL_STATE(3393)] = 184281, + [SMALL_STATE(3394)] = 184335, + [SMALL_STATE(3395)] = 184379, + [SMALL_STATE(3396)] = 184433, + [SMALL_STATE(3397)] = 184479, + [SMALL_STATE(3398)] = 184555, + [SMALL_STATE(3399)] = 184631, + [SMALL_STATE(3400)] = 184675, + [SMALL_STATE(3401)] = 184719, + [SMALL_STATE(3402)] = 184795, + [SMALL_STATE(3403)] = 184871, + [SMALL_STATE(3404)] = 184925, + [SMALL_STATE(3405)] = 185001, + [SMALL_STATE(3406)] = 185077, + [SMALL_STATE(3407)] = 185153, + [SMALL_STATE(3408)] = 185229, + [SMALL_STATE(3409)] = 185305, + [SMALL_STATE(3410)] = 185359, + [SMALL_STATE(3411)] = 185403, + [SMALL_STATE(3412)] = 185479, + [SMALL_STATE(3413)] = 185533, + [SMALL_STATE(3414)] = 185577, + [SMALL_STATE(3415)] = 185621, + [SMALL_STATE(3416)] = 185697, + [SMALL_STATE(3417)] = 185773, + [SMALL_STATE(3418)] = 185849, + [SMALL_STATE(3419)] = 185893, + [SMALL_STATE(3420)] = 185937, + [SMALL_STATE(3421)] = 186013, + [SMALL_STATE(3422)] = 186089, + [SMALL_STATE(3423)] = 186133, + [SMALL_STATE(3424)] = 186177, + [SMALL_STATE(3425)] = 186253, + [SMALL_STATE(3426)] = 186307, + [SMALL_STATE(3427)] = 186381, + [SMALL_STATE(3428)] = 186457, + [SMALL_STATE(3429)] = 186527, + [SMALL_STATE(3430)] = 186595, + [SMALL_STATE(3431)] = 186661, + [SMALL_STATE(3432)] = 186725, + [SMALL_STATE(3433)] = 186787, + [SMALL_STATE(3434)] = 186847, + [SMALL_STATE(3435)] = 186903, + [SMALL_STATE(3436)] = 186955, + [SMALL_STATE(3437)] = 187005, + [SMALL_STATE(3438)] = 187053, + [SMALL_STATE(3439)] = 187101, + [SMALL_STATE(3440)] = 187145, + [SMALL_STATE(3441)] = 187217, + [SMALL_STATE(3442)] = 187277, + [SMALL_STATE(3443)] = 187321, + [SMALL_STATE(3444)] = 187397, + [SMALL_STATE(3445)] = 187479, + [SMALL_STATE(3446)] = 187523, + [SMALL_STATE(3447)] = 187593, + [SMALL_STATE(3448)] = 187637, + [SMALL_STATE(3449)] = 187681, + [SMALL_STATE(3450)] = 187735, + [SMALL_STATE(3451)] = 187779, + [SMALL_STATE(3452)] = 187833, + [SMALL_STATE(3453)] = 187909, + [SMALL_STATE(3454)] = 187985, + [SMALL_STATE(3455)] = 188039, + [SMALL_STATE(3456)] = 188115, + [SMALL_STATE(3457)] = 188191, + [SMALL_STATE(3458)] = 188267, + [SMALL_STATE(3459)] = 188343, + [SMALL_STATE(3460)] = 188419, + [SMALL_STATE(3461)] = 188463, + [SMALL_STATE(3462)] = 188539, + [SMALL_STATE(3463)] = 188583, + [SMALL_STATE(3464)] = 188659, + [SMALL_STATE(3465)] = 188735, + [SMALL_STATE(3466)] = 188817, + [SMALL_STATE(3467)] = 188861, + [SMALL_STATE(3468)] = 188905, + [SMALL_STATE(3469)] = 188981, + [SMALL_STATE(3470)] = 189057, + [SMALL_STATE(3471)] = 189101, + [SMALL_STATE(3472)] = 189177, + [SMALL_STATE(3473)] = 189221, + [SMALL_STATE(3474)] = 189265, + [SMALL_STATE(3475)] = 189309, + [SMALL_STATE(3476)] = 189353, + [SMALL_STATE(3477)] = 189429, + [SMALL_STATE(3478)] = 189473, + [SMALL_STATE(3479)] = 189527, + [SMALL_STATE(3480)] = 189603, + [SMALL_STATE(3481)] = 189647, + [SMALL_STATE(3482)] = 189691, + [SMALL_STATE(3483)] = 189737, + [SMALL_STATE(3484)] = 189795, + [SMALL_STATE(3485)] = 189839, + [SMALL_STATE(3486)] = 189883, + [SMALL_STATE(3487)] = 189929, + [SMALL_STATE(3488)] = 189983, + [SMALL_STATE(3489)] = 190027, + [SMALL_STATE(3490)] = 190117, + [SMALL_STATE(3491)] = 190161, + [SMALL_STATE(3492)] = 190205, + [SMALL_STATE(3493)] = 190281, + [SMALL_STATE(3494)] = 190325, + [SMALL_STATE(3495)] = 190369, + [SMALL_STATE(3496)] = 190445, + [SMALL_STATE(3497)] = 190489, + [SMALL_STATE(3498)] = 190533, + [SMALL_STATE(3499)] = 190577, + [SMALL_STATE(3500)] = 190621, + [SMALL_STATE(3501)] = 190665, + [SMALL_STATE(3502)] = 190741, + [SMALL_STATE(3503)] = 190797, + [SMALL_STATE(3504)] = 190851, + [SMALL_STATE(3505)] = 190905, + [SMALL_STATE(3506)] = 190959, + [SMALL_STATE(3507)] = 191003, + [SMALL_STATE(3508)] = 191047, + [SMALL_STATE(3509)] = 191091, + [SMALL_STATE(3510)] = 191138, + [SMALL_STATE(3511)] = 191223, + [SMALL_STATE(3512)] = 191308, + [SMALL_STATE(3513)] = 191393, + [SMALL_STATE(3514)] = 191478, + [SMALL_STATE(3515)] = 191563, + [SMALL_STATE(3516)] = 191648, + [SMALL_STATE(3517)] = 191733, + [SMALL_STATE(3518)] = 191818, + [SMALL_STATE(3519)] = 191903, + [SMALL_STATE(3520)] = 191988, + [SMALL_STATE(3521)] = 192073, + [SMALL_STATE(3522)] = 192158, + [SMALL_STATE(3523)] = 192243, + [SMALL_STATE(3524)] = 192328, + [SMALL_STATE(3525)] = 192413, + [SMALL_STATE(3526)] = 192498, + [SMALL_STATE(3527)] = 192583, + [SMALL_STATE(3528)] = 192668, + [SMALL_STATE(3529)] = 192717, + [SMALL_STATE(3530)] = 192764, + [SMALL_STATE(3531)] = 192811, + [SMALL_STATE(3532)] = 192896, + [SMALL_STATE(3533)] = 192943, + [SMALL_STATE(3534)] = 192990, + [SMALL_STATE(3535)] = 193075, + [SMALL_STATE(3536)] = 193128, + [SMALL_STATE(3537)] = 193181, + [SMALL_STATE(3538)] = 193228, + [SMALL_STATE(3539)] = 193275, + [SMALL_STATE(3540)] = 193322, + [SMALL_STATE(3541)] = 193369, + [SMALL_STATE(3542)] = 193422, + [SMALL_STATE(3543)] = 193475, + [SMALL_STATE(3544)] = 193560, + [SMALL_STATE(3545)] = 193607, + [SMALL_STATE(3546)] = 193692, + [SMALL_STATE(3547)] = 193739, + [SMALL_STATE(3548)] = 193792, + [SMALL_STATE(3549)] = 193845, + [SMALL_STATE(3550)] = 193930, + [SMALL_STATE(3551)] = 193977, + [SMALL_STATE(3552)] = 194026, + [SMALL_STATE(3553)] = 194073, + [SMALL_STATE(3554)] = 194120, + [SMALL_STATE(3555)] = 194162, + [SMALL_STATE(3556)] = 194204, + [SMALL_STATE(3557)] = 194246, + [SMALL_STATE(3558)] = 194288, + [SMALL_STATE(3559)] = 194330, + [SMALL_STATE(3560)] = 194372, + [SMALL_STATE(3561)] = 194414, + [SMALL_STATE(3562)] = 194456, + [SMALL_STATE(3563)] = 194498, + [SMALL_STATE(3564)] = 194540, + [SMALL_STATE(3565)] = 194582, + [SMALL_STATE(3566)] = 194624, + [SMALL_STATE(3567)] = 194666, + [SMALL_STATE(3568)] = 194708, + [SMALL_STATE(3569)] = 194750, + [SMALL_STATE(3570)] = 194826, + [SMALL_STATE(3571)] = 194868, + [SMALL_STATE(3572)] = 194910, + [SMALL_STATE(3573)] = 194952, + [SMALL_STATE(3574)] = 194994, + [SMALL_STATE(3575)] = 195036, + [SMALL_STATE(3576)] = 195078, + [SMALL_STATE(3577)] = 195157, + [SMALL_STATE(3578)] = 195236, + [SMALL_STATE(3579)] = 195287, + [SMALL_STATE(3580)] = 195360, + [SMALL_STATE(3581)] = 195439, + [SMALL_STATE(3582)] = 195518, + [SMALL_STATE(3583)] = 195597, + [SMALL_STATE(3584)] = 195642, + [SMALL_STATE(3585)] = 195721, + [SMALL_STATE(3586)] = 195800, + [SMALL_STATE(3587)] = 195879, + [SMALL_STATE(3588)] = 195958, + [SMALL_STATE(3589)] = 196037, + [SMALL_STATE(3590)] = 196116, + [SMALL_STATE(3591)] = 196195, + [SMALL_STATE(3592)] = 196274, + [SMALL_STATE(3593)] = 196353, + [SMALL_STATE(3594)] = 196432, + [SMALL_STATE(3595)] = 196511, + [SMALL_STATE(3596)] = 196590, + [SMALL_STATE(3597)] = 196635, + [SMALL_STATE(3598)] = 196714, + [SMALL_STATE(3599)] = 196793, + [SMALL_STATE(3600)] = 196872, + [SMALL_STATE(3601)] = 196917, + [SMALL_STATE(3602)] = 196996, + [SMALL_STATE(3603)] = 197069, + [SMALL_STATE(3604)] = 197148, + [SMALL_STATE(3605)] = 197227, + [SMALL_STATE(3606)] = 197306, + [SMALL_STATE(3607)] = 197385, + [SMALL_STATE(3608)] = 197464, + [SMALL_STATE(3609)] = 197543, + [SMALL_STATE(3610)] = 197594, + [SMALL_STATE(3611)] = 197673, + [SMALL_STATE(3612)] = 197752, + [SMALL_STATE(3613)] = 197831, + [SMALL_STATE(3614)] = 197910, + [SMALL_STATE(3615)] = 197989, + [SMALL_STATE(3616)] = 198068, + [SMALL_STATE(3617)] = 198147, + [SMALL_STATE(3618)] = 198226, + [SMALL_STATE(3619)] = 198305, + [SMALL_STATE(3620)] = 198384, + [SMALL_STATE(3621)] = 198429, + [SMALL_STATE(3622)] = 198508, + [SMALL_STATE(3623)] = 198581, + [SMALL_STATE(3624)] = 198660, + [SMALL_STATE(3625)] = 198739, + [SMALL_STATE(3626)] = 198784, + [SMALL_STATE(3627)] = 198857, + [SMALL_STATE(3628)] = 198936, + [SMALL_STATE(3629)] = 199015, + [SMALL_STATE(3630)] = 199094, + [SMALL_STATE(3631)] = 199173, + [SMALL_STATE(3632)] = 199224, + [SMALL_STATE(3633)] = 199269, + [SMALL_STATE(3634)] = 199348, + [SMALL_STATE(3635)] = 199393, + [SMALL_STATE(3636)] = 199472, + [SMALL_STATE(3637)] = 199523, + [SMALL_STATE(3638)] = 199602, + [SMALL_STATE(3639)] = 199652, + [SMALL_STATE(3640)] = 199728, + [SMALL_STATE(3641)] = 199804, + [SMALL_STATE(3642)] = 199880, + [SMALL_STATE(3643)] = 199956, + [SMALL_STATE(3644)] = 199996, + [SMALL_STATE(3645)] = 200046, + [SMALL_STATE(3646)] = 200096, + [SMALL_STATE(3647)] = 200172, + [SMALL_STATE(3648)] = 200222, + [SMALL_STATE(3649)] = 200272, + [SMALL_STATE(3650)] = 200322, + [SMALL_STATE(3651)] = 200400, + [SMALL_STATE(3652)] = 200476, + [SMALL_STATE(3653)] = 200550, + [SMALL_STATE(3654)] = 200628, + [SMALL_STATE(3655)] = 200704, + [SMALL_STATE(3656)] = 200782, + [SMALL_STATE(3657)] = 200858, + [SMALL_STATE(3658)] = 200934, + [SMALL_STATE(3659)] = 201010, + [SMALL_STATE(3660)] = 201086, + [SMALL_STATE(3661)] = 201162, + [SMALL_STATE(3662)] = 201238, + [SMALL_STATE(3663)] = 201312, + [SMALL_STATE(3664)] = 201386, + [SMALL_STATE(3665)] = 201462, + [SMALL_STATE(3666)] = 201502, + [SMALL_STATE(3667)] = 201580, + [SMALL_STATE(3668)] = 201656, + [SMALL_STATE(3669)] = 201732, + [SMALL_STATE(3670)] = 201808, + [SMALL_STATE(3671)] = 201884, + [SMALL_STATE(3672)] = 201960, + [SMALL_STATE(3673)] = 202000, + [SMALL_STATE(3674)] = 202050, + [SMALL_STATE(3675)] = 202124, + [SMALL_STATE(3676)] = 202200, + [SMALL_STATE(3677)] = 202276, + [SMALL_STATE(3678)] = 202352, + [SMALL_STATE(3679)] = 202402, + [SMALL_STATE(3680)] = 202478, + [SMALL_STATE(3681)] = 202554, + [SMALL_STATE(3682)] = 202594, + [SMALL_STATE(3683)] = 202670, + [SMALL_STATE(3684)] = 202748, + [SMALL_STATE(3685)] = 202824, + [SMALL_STATE(3686)] = 202900, + [SMALL_STATE(3687)] = 202978, + [SMALL_STATE(3688)] = 203054, + [SMALL_STATE(3689)] = 203104, + [SMALL_STATE(3690)] = 203180, + [SMALL_STATE(3691)] = 203256, + [SMALL_STATE(3692)] = 203332, + [SMALL_STATE(3693)] = 203408, + [SMALL_STATE(3694)] = 203484, + [SMALL_STATE(3695)] = 203560, + [SMALL_STATE(3696)] = 203634, + [SMALL_STATE(3697)] = 203708, + [SMALL_STATE(3698)] = 203782, + [SMALL_STATE(3699)] = 203856, + [SMALL_STATE(3700)] = 203932, + [SMALL_STATE(3701)] = 204008, + [SMALL_STATE(3702)] = 204084, + [SMALL_STATE(3703)] = 204160, + [SMALL_STATE(3704)] = 204236, + [SMALL_STATE(3705)] = 204312, + [SMALL_STATE(3706)] = 204388, + [SMALL_STATE(3707)] = 204464, + [SMALL_STATE(3708)] = 204540, + [SMALL_STATE(3709)] = 204616, + [SMALL_STATE(3710)] = 204692, + [SMALL_STATE(3711)] = 204768, + [SMALL_STATE(3712)] = 204818, + [SMALL_STATE(3713)] = 204894, + [SMALL_STATE(3714)] = 204934, + [SMALL_STATE(3715)] = 205010, + [SMALL_STATE(3716)] = 205086, + [SMALL_STATE(3717)] = 205136, + [SMALL_STATE(3718)] = 205210, + [SMALL_STATE(3719)] = 205284, + [SMALL_STATE(3720)] = 205360, + [SMALL_STATE(3721)] = 205436, + [SMALL_STATE(3722)] = 205514, + [SMALL_STATE(3723)] = 205590, + [SMALL_STATE(3724)] = 205666, + [SMALL_STATE(3725)] = 205706, + [SMALL_STATE(3726)] = 205782, + [SMALL_STATE(3727)] = 205858, + [SMALL_STATE(3728)] = 205898, + [SMALL_STATE(3729)] = 205974, + [SMALL_STATE(3730)] = 206050, + [SMALL_STATE(3731)] = 206124, + [SMALL_STATE(3732)] = 206174, + [SMALL_STATE(3733)] = 206250, + [SMALL_STATE(3734)] = 206326, + [SMALL_STATE(3735)] = 206400, + [SMALL_STATE(3736)] = 206476, + [SMALL_STATE(3737)] = 206516, + [SMALL_STATE(3738)] = 206556, + [SMALL_STATE(3739)] = 206631, + [SMALL_STATE(3740)] = 206702, + [SMALL_STATE(3741)] = 206773, + [SMALL_STATE(3742)] = 206848, + [SMALL_STATE(3743)] = 206919, + [SMALL_STATE(3744)] = 206994, + [SMALL_STATE(3745)] = 207069, + [SMALL_STATE(3746)] = 207140, + [SMALL_STATE(3747)] = 207211, + [SMALL_STATE(3748)] = 207282, + [SMALL_STATE(3749)] = 207353, + [SMALL_STATE(3750)] = 207424, + [SMALL_STATE(3751)] = 207495, + [SMALL_STATE(3752)] = 207566, + [SMALL_STATE(3753)] = 207637, + [SMALL_STATE(3754)] = 207712, + [SMALL_STATE(3755)] = 207787, + [SMALL_STATE(3756)] = 207862, + [SMALL_STATE(3757)] = 207933, + [SMALL_STATE(3758)] = 208004, + [SMALL_STATE(3759)] = 208075, + [SMALL_STATE(3760)] = 208146, + [SMALL_STATE(3761)] = 208221, + [SMALL_STATE(3762)] = 208292, + [SMALL_STATE(3763)] = 208367, + [SMALL_STATE(3764)] = 208438, + [SMALL_STATE(3765)] = 208509, + [SMALL_STATE(3766)] = 208580, + [SMALL_STATE(3767)] = 208651, + [SMALL_STATE(3768)] = 208722, + [SMALL_STATE(3769)] = 208793, + [SMALL_STATE(3770)] = 208868, + [SMALL_STATE(3771)] = 208939, + [SMALL_STATE(3772)] = 209014, + [SMALL_STATE(3773)] = 209085, + [SMALL_STATE(3774)] = 209156, + [SMALL_STATE(3775)] = 209227, + [SMALL_STATE(3776)] = 209298, + [SMALL_STATE(3777)] = 209373, + [SMALL_STATE(3778)] = 209448, + [SMALL_STATE(3779)] = 209523, + [SMALL_STATE(3780)] = 209594, + [SMALL_STATE(3781)] = 209665, + [SMALL_STATE(3782)] = 209736, + [SMALL_STATE(3783)] = 209807, + [SMALL_STATE(3784)] = 209882, + [SMALL_STATE(3785)] = 209953, + [SMALL_STATE(3786)] = 210028, + [SMALL_STATE(3787)] = 210103, + [SMALL_STATE(3788)] = 210174, + [SMALL_STATE(3789)] = 210245, + [SMALL_STATE(3790)] = 210316, + [SMALL_STATE(3791)] = 210391, + [SMALL_STATE(3792)] = 210466, + [SMALL_STATE(3793)] = 210537, + [SMALL_STATE(3794)] = 210608, + [SMALL_STATE(3795)] = 210683, + [SMALL_STATE(3796)] = 210758, + [SMALL_STATE(3797)] = 210833, + [SMALL_STATE(3798)] = 210908, + [SMALL_STATE(3799)] = 210983, + [SMALL_STATE(3800)] = 211054, + [SMALL_STATE(3801)] = 211129, + [SMALL_STATE(3802)] = 211204, + [SMALL_STATE(3803)] = 211279, + [SMALL_STATE(3804)] = 211350, + [SMALL_STATE(3805)] = 211425, + [SMALL_STATE(3806)] = 211496, + [SMALL_STATE(3807)] = 211571, + [SMALL_STATE(3808)] = 211642, + [SMALL_STATE(3809)] = 211713, + [SMALL_STATE(3810)] = 211784, + [SMALL_STATE(3811)] = 211859, + [SMALL_STATE(3812)] = 211930, + [SMALL_STATE(3813)] = 212001, + [SMALL_STATE(3814)] = 212076, + [SMALL_STATE(3815)] = 212147, + [SMALL_STATE(3816)] = 212222, + [SMALL_STATE(3817)] = 212293, + [SMALL_STATE(3818)] = 212364, + [SMALL_STATE(3819)] = 212435, + [SMALL_STATE(3820)] = 212506, + [SMALL_STATE(3821)] = 212577, + [SMALL_STATE(3822)] = 212648, + [SMALL_STATE(3823)] = 212719, + [SMALL_STATE(3824)] = 212790, + [SMALL_STATE(3825)] = 212861, + [SMALL_STATE(3826)] = 212932, + [SMALL_STATE(3827)] = 213003, + [SMALL_STATE(3828)] = 213074, + [SMALL_STATE(3829)] = 213145, + [SMALL_STATE(3830)] = 213216, + [SMALL_STATE(3831)] = 213287, + [SMALL_STATE(3832)] = 213358, + [SMALL_STATE(3833)] = 213429, + [SMALL_STATE(3834)] = 213500, + [SMALL_STATE(3835)] = 213571, + [SMALL_STATE(3836)] = 213642, + [SMALL_STATE(3837)] = 213713, + [SMALL_STATE(3838)] = 213788, + [SMALL_STATE(3839)] = 213859, + [SMALL_STATE(3840)] = 213930, + [SMALL_STATE(3841)] = 214005, + [SMALL_STATE(3842)] = 214076, + [SMALL_STATE(3843)] = 214147, + [SMALL_STATE(3844)] = 214218, + [SMALL_STATE(3845)] = 214289, + [SMALL_STATE(3846)] = 214364, + [SMALL_STATE(3847)] = 214435, + [SMALL_STATE(3848)] = 214506, + [SMALL_STATE(3849)] = 214577, + [SMALL_STATE(3850)] = 214652, + [SMALL_STATE(3851)] = 214723, + [SMALL_STATE(3852)] = 214794, + [SMALL_STATE(3853)] = 214865, + [SMALL_STATE(3854)] = 214936, + [SMALL_STATE(3855)] = 215007, + [SMALL_STATE(3856)] = 215078, + [SMALL_STATE(3857)] = 215149, + [SMALL_STATE(3858)] = 215220, + [SMALL_STATE(3859)] = 215291, + [SMALL_STATE(3860)] = 215362, + [SMALL_STATE(3861)] = 215433, + [SMALL_STATE(3862)] = 215504, + [SMALL_STATE(3863)] = 215575, + [SMALL_STATE(3864)] = 215646, + [SMALL_STATE(3865)] = 215717, + [SMALL_STATE(3866)] = 215788, + [SMALL_STATE(3867)] = 215859, + [SMALL_STATE(3868)] = 215930, + [SMALL_STATE(3869)] = 216001, + [SMALL_STATE(3870)] = 216072, + [SMALL_STATE(3871)] = 216143, + [SMALL_STATE(3872)] = 216214, + [SMALL_STATE(3873)] = 216285, + [SMALL_STATE(3874)] = 216356, + [SMALL_STATE(3875)] = 216427, + [SMALL_STATE(3876)] = 216498, + [SMALL_STATE(3877)] = 216569, + [SMALL_STATE(3878)] = 216640, + [SMALL_STATE(3879)] = 216711, + [SMALL_STATE(3880)] = 216786, + [SMALL_STATE(3881)] = 216857, + [SMALL_STATE(3882)] = 216928, + [SMALL_STATE(3883)] = 216999, + [SMALL_STATE(3884)] = 217070, + [SMALL_STATE(3885)] = 217145, + [SMALL_STATE(3886)] = 217216, + [SMALL_STATE(3887)] = 217287, + [SMALL_STATE(3888)] = 217358, + [SMALL_STATE(3889)] = 217429, + [SMALL_STATE(3890)] = 217504, + [SMALL_STATE(3891)] = 217579, + [SMALL_STATE(3892)] = 217654, + [SMALL_STATE(3893)] = 217725, + [SMALL_STATE(3894)] = 217796, + [SMALL_STATE(3895)] = 217867, + [SMALL_STATE(3896)] = 217938, + [SMALL_STATE(3897)] = 218009, + [SMALL_STATE(3898)] = 218080, + [SMALL_STATE(3899)] = 218151, + [SMALL_STATE(3900)] = 218222, + [SMALL_STATE(3901)] = 218293, + [SMALL_STATE(3902)] = 218368, + [SMALL_STATE(3903)] = 218443, + [SMALL_STATE(3904)] = 218514, + [SMALL_STATE(3905)] = 218589, + [SMALL_STATE(3906)] = 218660, + [SMALL_STATE(3907)] = 218735, + [SMALL_STATE(3908)] = 218806, + [SMALL_STATE(3909)] = 218877, + [SMALL_STATE(3910)] = 218948, + [SMALL_STATE(3911)] = 219019, + [SMALL_STATE(3912)] = 219090, + [SMALL_STATE(3913)] = 219161, + [SMALL_STATE(3914)] = 219232, + [SMALL_STATE(3915)] = 219303, + [SMALL_STATE(3916)] = 219374, + [SMALL_STATE(3917)] = 219445, + [SMALL_STATE(3918)] = 219516, + [SMALL_STATE(3919)] = 219587, + [SMALL_STATE(3920)] = 219658, + [SMALL_STATE(3921)] = 219729, + [SMALL_STATE(3922)] = 219800, + [SMALL_STATE(3923)] = 219871, + [SMALL_STATE(3924)] = 219942, + [SMALL_STATE(3925)] = 220013, + [SMALL_STATE(3926)] = 220088, + [SMALL_STATE(3927)] = 220159, + [SMALL_STATE(3928)] = 220230, + [SMALL_STATE(3929)] = 220301, + [SMALL_STATE(3930)] = 220372, + [SMALL_STATE(3931)] = 220443, + [SMALL_STATE(3932)] = 220514, + [SMALL_STATE(3933)] = 220585, + [SMALL_STATE(3934)] = 220656, + [SMALL_STATE(3935)] = 220727, + [SMALL_STATE(3936)] = 220798, + [SMALL_STATE(3937)] = 220869, + [SMALL_STATE(3938)] = 220940, + [SMALL_STATE(3939)] = 221011, + [SMALL_STATE(3940)] = 221082, + [SMALL_STATE(3941)] = 221153, + [SMALL_STATE(3942)] = 221224, + [SMALL_STATE(3943)] = 221295, + [SMALL_STATE(3944)] = 221366, + [SMALL_STATE(3945)] = 221437, + [SMALL_STATE(3946)] = 221508, + [SMALL_STATE(3947)] = 221579, + [SMALL_STATE(3948)] = 221650, + [SMALL_STATE(3949)] = 221721, + [SMALL_STATE(3950)] = 221792, + [SMALL_STATE(3951)] = 221863, + [SMALL_STATE(3952)] = 221934, + [SMALL_STATE(3953)] = 222005, + [SMALL_STATE(3954)] = 222076, + [SMALL_STATE(3955)] = 222151, + [SMALL_STATE(3956)] = 222222, + [SMALL_STATE(3957)] = 222293, + [SMALL_STATE(3958)] = 222364, + [SMALL_STATE(3959)] = 222435, + [SMALL_STATE(3960)] = 222484, + [SMALL_STATE(3961)] = 222555, + [SMALL_STATE(3962)] = 222626, + [SMALL_STATE(3963)] = 222697, + [SMALL_STATE(3964)] = 222768, + [SMALL_STATE(3965)] = 222839, + [SMALL_STATE(3966)] = 222910, + [SMALL_STATE(3967)] = 222981, + [SMALL_STATE(3968)] = 223056, + [SMALL_STATE(3969)] = 223127, + [SMALL_STATE(3970)] = 223202, + [SMALL_STATE(3971)] = 223277, + [SMALL_STATE(3972)] = 223352, + [SMALL_STATE(3973)] = 223423, + [SMALL_STATE(3974)] = 223494, + [SMALL_STATE(3975)] = 223569, + [SMALL_STATE(3976)] = 223644, + [SMALL_STATE(3977)] = 223715, + [SMALL_STATE(3978)] = 223786, + [SMALL_STATE(3979)] = 223857, + [SMALL_STATE(3980)] = 223928, + [SMALL_STATE(3981)] = 223999, + [SMALL_STATE(3982)] = 224070, + [SMALL_STATE(3983)] = 224141, + [SMALL_STATE(3984)] = 224212, + [SMALL_STATE(3985)] = 224287, + [SMALL_STATE(3986)] = 224358, + [SMALL_STATE(3987)] = 224429, + [SMALL_STATE(3988)] = 224500, + [SMALL_STATE(3989)] = 224571, + [SMALL_STATE(3990)] = 224642, + [SMALL_STATE(3991)] = 224713, + [SMALL_STATE(3992)] = 224784, + [SMALL_STATE(3993)] = 224855, + [SMALL_STATE(3994)] = 224930, + [SMALL_STATE(3995)] = 225001, + [SMALL_STATE(3996)] = 225072, + [SMALL_STATE(3997)] = 225143, + [SMALL_STATE(3998)] = 225214, + [SMALL_STATE(3999)] = 225285, + [SMALL_STATE(4000)] = 225360, + [SMALL_STATE(4001)] = 225431, + [SMALL_STATE(4002)] = 225502, + [SMALL_STATE(4003)] = 225551, + [SMALL_STATE(4004)] = 225622, + [SMALL_STATE(4005)] = 225697, + [SMALL_STATE(4006)] = 225768, + [SMALL_STATE(4007)] = 225839, + [SMALL_STATE(4008)] = 225910, + [SMALL_STATE(4009)] = 225985, + [SMALL_STATE(4010)] = 226056, + [SMALL_STATE(4011)] = 226127, + [SMALL_STATE(4012)] = 226202, + [SMALL_STATE(4013)] = 226273, + [SMALL_STATE(4014)] = 226344, + [SMALL_STATE(4015)] = 226419, + [SMALL_STATE(4016)] = 226490, + [SMALL_STATE(4017)] = 226561, + [SMALL_STATE(4018)] = 226632, + [SMALL_STATE(4019)] = 226703, + [SMALL_STATE(4020)] = 226774, + [SMALL_STATE(4021)] = 226845, + [SMALL_STATE(4022)] = 226916, + [SMALL_STATE(4023)] = 226987, + [SMALL_STATE(4024)] = 227062, + [SMALL_STATE(4025)] = 227133, + [SMALL_STATE(4026)] = 227204, + [SMALL_STATE(4027)] = 227275, + [SMALL_STATE(4028)] = 227346, + [SMALL_STATE(4029)] = 227395, + [SMALL_STATE(4030)] = 227470, + [SMALL_STATE(4031)] = 227545, + [SMALL_STATE(4032)] = 227616, + [SMALL_STATE(4033)] = 227687, + [SMALL_STATE(4034)] = 227762, + [SMALL_STATE(4035)] = 227833, + [SMALL_STATE(4036)] = 227904, + [SMALL_STATE(4037)] = 227979, + [SMALL_STATE(4038)] = 228054, + [SMALL_STATE(4039)] = 228103, + [SMALL_STATE(4040)] = 228178, + [SMALL_STATE(4041)] = 228253, + [SMALL_STATE(4042)] = 228324, + [SMALL_STATE(4043)] = 228395, + [SMALL_STATE(4044)] = 228466, + [SMALL_STATE(4045)] = 228537, + [SMALL_STATE(4046)] = 228608, + [SMALL_STATE(4047)] = 228679, + [SMALL_STATE(4048)] = 228750, + [SMALL_STATE(4049)] = 228821, + [SMALL_STATE(4050)] = 228892, + [SMALL_STATE(4051)] = 228963, + [SMALL_STATE(4052)] = 229034, + [SMALL_STATE(4053)] = 229105, + [SMALL_STATE(4054)] = 229176, + [SMALL_STATE(4055)] = 229247, + [SMALL_STATE(4056)] = 229318, + [SMALL_STATE(4057)] = 229389, + [SMALL_STATE(4058)] = 229464, + [SMALL_STATE(4059)] = 229535, + [SMALL_STATE(4060)] = 229606, + [SMALL_STATE(4061)] = 229681, + [SMALL_STATE(4062)] = 229756, + [SMALL_STATE(4063)] = 229831, + [SMALL_STATE(4064)] = 229902, + [SMALL_STATE(4065)] = 229977, + [SMALL_STATE(4066)] = 230048, + [SMALL_STATE(4067)] = 230119, + [SMALL_STATE(4068)] = 230190, + [SMALL_STATE(4069)] = 230261, + [SMALL_STATE(4070)] = 230332, + [SMALL_STATE(4071)] = 230407, + [SMALL_STATE(4072)] = 230481, + [SMALL_STATE(4073)] = 230555, + [SMALL_STATE(4074)] = 230629, + [SMALL_STATE(4075)] = 230703, + [SMALL_STATE(4076)] = 230777, + [SMALL_STATE(4077)] = 230851, + [SMALL_STATE(4078)] = 230925, + [SMALL_STATE(4079)] = 230999, + [SMALL_STATE(4080)] = 231073, + [SMALL_STATE(4081)] = 231147, + [SMALL_STATE(4082)] = 231221, + [SMALL_STATE(4083)] = 231295, + [SMALL_STATE(4084)] = 231369, + [SMALL_STATE(4085)] = 231443, + [SMALL_STATE(4086)] = 231517, + [SMALL_STATE(4087)] = 231591, + [SMALL_STATE(4088)] = 231665, + [SMALL_STATE(4089)] = 231739, + [SMALL_STATE(4090)] = 231813, + [SMALL_STATE(4091)] = 231887, + [SMALL_STATE(4092)] = 231961, + [SMALL_STATE(4093)] = 232035, + [SMALL_STATE(4094)] = 232109, + [SMALL_STATE(4095)] = 232183, + [SMALL_STATE(4096)] = 232257, + [SMALL_STATE(4097)] = 232331, + [SMALL_STATE(4098)] = 232405, + [SMALL_STATE(4099)] = 232479, + [SMALL_STATE(4100)] = 232553, + [SMALL_STATE(4101)] = 232627, + [SMALL_STATE(4102)] = 232701, + [SMALL_STATE(4103)] = 232775, + [SMALL_STATE(4104)] = 232849, + [SMALL_STATE(4105)] = 232923, + [SMALL_STATE(4106)] = 232997, + [SMALL_STATE(4107)] = 233071, + [SMALL_STATE(4108)] = 233145, + [SMALL_STATE(4109)] = 233219, + [SMALL_STATE(4110)] = 233293, + [SMALL_STATE(4111)] = 233367, + [SMALL_STATE(4112)] = 233441, + [SMALL_STATE(4113)] = 233515, + [SMALL_STATE(4114)] = 233589, + [SMALL_STATE(4115)] = 233663, + [SMALL_STATE(4116)] = 233737, + [SMALL_STATE(4117)] = 233811, + [SMALL_STATE(4118)] = 233885, + [SMALL_STATE(4119)] = 233959, + [SMALL_STATE(4120)] = 234033, + [SMALL_STATE(4121)] = 234107, + [SMALL_STATE(4122)] = 234181, + [SMALL_STATE(4123)] = 234255, + [SMALL_STATE(4124)] = 234329, + [SMALL_STATE(4125)] = 234403, + [SMALL_STATE(4126)] = 234477, + [SMALL_STATE(4127)] = 234551, + [SMALL_STATE(4128)] = 234625, + [SMALL_STATE(4129)] = 234699, + [SMALL_STATE(4130)] = 234773, + [SMALL_STATE(4131)] = 234847, + [SMALL_STATE(4132)] = 234921, + [SMALL_STATE(4133)] = 234995, + [SMALL_STATE(4134)] = 235069, + [SMALL_STATE(4135)] = 235143, + [SMALL_STATE(4136)] = 235217, + [SMALL_STATE(4137)] = 235291, + [SMALL_STATE(4138)] = 235365, + [SMALL_STATE(4139)] = 235439, + [SMALL_STATE(4140)] = 235513, + [SMALL_STATE(4141)] = 235587, + [SMALL_STATE(4142)] = 235661, + [SMALL_STATE(4143)] = 235735, + [SMALL_STATE(4144)] = 235809, + [SMALL_STATE(4145)] = 235883, + [SMALL_STATE(4146)] = 235957, + [SMALL_STATE(4147)] = 236031, + [SMALL_STATE(4148)] = 236105, + [SMALL_STATE(4149)] = 236179, + [SMALL_STATE(4150)] = 236253, + [SMALL_STATE(4151)] = 236327, + [SMALL_STATE(4152)] = 236401, + [SMALL_STATE(4153)] = 236475, + [SMALL_STATE(4154)] = 236549, + [SMALL_STATE(4155)] = 236623, + [SMALL_STATE(4156)] = 236697, + [SMALL_STATE(4157)] = 236771, + [SMALL_STATE(4158)] = 236845, + [SMALL_STATE(4159)] = 236919, + [SMALL_STATE(4160)] = 236993, + [SMALL_STATE(4161)] = 237067, + [SMALL_STATE(4162)] = 237141, + [SMALL_STATE(4163)] = 237215, + [SMALL_STATE(4164)] = 237289, + [SMALL_STATE(4165)] = 237363, + [SMALL_STATE(4166)] = 237437, + [SMALL_STATE(4167)] = 237511, + [SMALL_STATE(4168)] = 237585, + [SMALL_STATE(4169)] = 237659, + [SMALL_STATE(4170)] = 237733, + [SMALL_STATE(4171)] = 237807, + [SMALL_STATE(4172)] = 237881, + [SMALL_STATE(4173)] = 237955, + [SMALL_STATE(4174)] = 238029, + [SMALL_STATE(4175)] = 238103, + [SMALL_STATE(4176)] = 238177, + [SMALL_STATE(4177)] = 238251, + [SMALL_STATE(4178)] = 238325, + [SMALL_STATE(4179)] = 238399, + [SMALL_STATE(4180)] = 238473, + [SMALL_STATE(4181)] = 238547, + [SMALL_STATE(4182)] = 238621, + [SMALL_STATE(4183)] = 238695, + [SMALL_STATE(4184)] = 238769, + [SMALL_STATE(4185)] = 238843, + [SMALL_STATE(4186)] = 238917, + [SMALL_STATE(4187)] = 238991, + [SMALL_STATE(4188)] = 239065, + [SMALL_STATE(4189)] = 239139, + [SMALL_STATE(4190)] = 239213, + [SMALL_STATE(4191)] = 239287, + [SMALL_STATE(4192)] = 239361, + [SMALL_STATE(4193)] = 239435, + [SMALL_STATE(4194)] = 239509, + [SMALL_STATE(4195)] = 239583, + [SMALL_STATE(4196)] = 239657, + [SMALL_STATE(4197)] = 239731, + [SMALL_STATE(4198)] = 239805, + [SMALL_STATE(4199)] = 239879, + [SMALL_STATE(4200)] = 239953, + [SMALL_STATE(4201)] = 240027, + [SMALL_STATE(4202)] = 240101, + [SMALL_STATE(4203)] = 240175, + [SMALL_STATE(4204)] = 240249, + [SMALL_STATE(4205)] = 240323, + [SMALL_STATE(4206)] = 240397, + [SMALL_STATE(4207)] = 240471, + [SMALL_STATE(4208)] = 240545, + [SMALL_STATE(4209)] = 240619, + [SMALL_STATE(4210)] = 240693, + [SMALL_STATE(4211)] = 240767, + [SMALL_STATE(4212)] = 240841, + [SMALL_STATE(4213)] = 240915, + [SMALL_STATE(4214)] = 240989, + [SMALL_STATE(4215)] = 241063, + [SMALL_STATE(4216)] = 241137, + [SMALL_STATE(4217)] = 241211, + [SMALL_STATE(4218)] = 241285, + [SMALL_STATE(4219)] = 241359, + [SMALL_STATE(4220)] = 241433, + [SMALL_STATE(4221)] = 241507, + [SMALL_STATE(4222)] = 241581, + [SMALL_STATE(4223)] = 241655, + [SMALL_STATE(4224)] = 241729, + [SMALL_STATE(4225)] = 241803, + [SMALL_STATE(4226)] = 241877, + [SMALL_STATE(4227)] = 241951, + [SMALL_STATE(4228)] = 242025, + [SMALL_STATE(4229)] = 242099, + [SMALL_STATE(4230)] = 242173, + [SMALL_STATE(4231)] = 242247, + [SMALL_STATE(4232)] = 242321, + [SMALL_STATE(4233)] = 242395, + [SMALL_STATE(4234)] = 242469, + [SMALL_STATE(4235)] = 242543, + [SMALL_STATE(4236)] = 242617, + [SMALL_STATE(4237)] = 242691, + [SMALL_STATE(4238)] = 242765, + [SMALL_STATE(4239)] = 242839, + [SMALL_STATE(4240)] = 242913, + [SMALL_STATE(4241)] = 242987, + [SMALL_STATE(4242)] = 243061, + [SMALL_STATE(4243)] = 243135, + [SMALL_STATE(4244)] = 243209, + [SMALL_STATE(4245)] = 243283, + [SMALL_STATE(4246)] = 243357, + [SMALL_STATE(4247)] = 243431, + [SMALL_STATE(4248)] = 243505, + [SMALL_STATE(4249)] = 243579, + [SMALL_STATE(4250)] = 243653, + [SMALL_STATE(4251)] = 243727, + [SMALL_STATE(4252)] = 243801, + [SMALL_STATE(4253)] = 243875, + [SMALL_STATE(4254)] = 243949, + [SMALL_STATE(4255)] = 244023, + [SMALL_STATE(4256)] = 244097, + [SMALL_STATE(4257)] = 244171, + [SMALL_STATE(4258)] = 244245, + [SMALL_STATE(4259)] = 244319, + [SMALL_STATE(4260)] = 244393, + [SMALL_STATE(4261)] = 244467, + [SMALL_STATE(4262)] = 244514, + [SMALL_STATE(4263)] = 244571, + [SMALL_STATE(4264)] = 244614, + [SMALL_STATE(4265)] = 244689, + [SMALL_STATE(4266)] = 244764, + [SMALL_STATE(4267)] = 244807, + [SMALL_STATE(4268)] = 244864, + [SMALL_STATE(4269)] = 244909, + [SMALL_STATE(4270)] = 244956, + [SMALL_STATE(4271)] = 245021, + [SMALL_STATE(4272)] = 245064, + [SMALL_STATE(4273)] = 245139, + [SMALL_STATE(4274)] = 245214, + [SMALL_STATE(4275)] = 245256, + [SMALL_STATE(4276)] = 245298, + [SMALL_STATE(4277)] = 245340, + [SMALL_STATE(4278)] = 245382, + [SMALL_STATE(4279)] = 245428, + [SMALL_STATE(4280)] = 245500, + [SMALL_STATE(4281)] = 245542, + [SMALL_STATE(4282)] = 245584, + [SMALL_STATE(4283)] = 245626, + [SMALL_STATE(4284)] = 245668, + [SMALL_STATE(4285)] = 245712, + [SMALL_STATE(4286)] = 245784, + [SMALL_STATE(4287)] = 245826, + [SMALL_STATE(4288)] = 245882, + [SMALL_STATE(4289)] = 245928, + [SMALL_STATE(4290)] = 245970, + [SMALL_STATE(4291)] = 246042, + [SMALL_STATE(4292)] = 246084, + [SMALL_STATE(4293)] = 246140, + [SMALL_STATE(4294)] = 246182, + [SMALL_STATE(4295)] = 246224, + [SMALL_STATE(4296)] = 246266, + [SMALL_STATE(4297)] = 246308, + [SMALL_STATE(4298)] = 246350, + [SMALL_STATE(4299)] = 246392, + [SMALL_STATE(4300)] = 246434, + [SMALL_STATE(4301)] = 246476, + [SMALL_STATE(4302)] = 246518, + [SMALL_STATE(4303)] = 246560, + [SMALL_STATE(4304)] = 246602, + [SMALL_STATE(4305)] = 246644, + [SMALL_STATE(4306)] = 246686, + [SMALL_STATE(4307)] = 246721, + [SMALL_STATE(4308)] = 246762, + [SMALL_STATE(4309)] = 246803, + [SMALL_STATE(4310)] = 246838, + [SMALL_STATE(4311)] = 246893, + [SMALL_STATE(4312)] = 246938, + [SMALL_STATE(4313)] = 246973, + [SMALL_STATE(4314)] = 247012, + [SMALL_STATE(4315)] = 247047, + [SMALL_STATE(4316)] = 247082, + [SMALL_STATE(4317)] = 247121, + [SMALL_STATE(4318)] = 247164, + [SMALL_STATE(4319)] = 247199, + [SMALL_STATE(4320)] = 247244, + [SMALL_STATE(4321)] = 247295, + [SMALL_STATE(4322)] = 247336, + [SMALL_STATE(4323)] = 247377, + [SMALL_STATE(4324)] = 247414, + [SMALL_STATE(4325)] = 247451, + [SMALL_STATE(4326)] = 247486, + [SMALL_STATE(4327)] = 247523, + [SMALL_STATE(4328)] = 247560, + [SMALL_STATE(4329)] = 247615, + [SMALL_STATE(4330)] = 247658, + [SMALL_STATE(4331)] = 247699, + [SMALL_STATE(4332)] = 247740, + [SMALL_STATE(4333)] = 247785, + [SMALL_STATE(4334)] = 247840, + [SMALL_STATE(4335)] = 247875, + [SMALL_STATE(4336)] = 247930, + [SMALL_STATE(4337)] = 247971, + [SMALL_STATE(4338)] = 248012, + [SMALL_STATE(4339)] = 248053, + [SMALL_STATE(4340)] = 248094, + [SMALL_STATE(4341)] = 248129, + [SMALL_STATE(4342)] = 248164, + [SMALL_STATE(4343)] = 248205, + [SMALL_STATE(4344)] = 248244, + [SMALL_STATE(4345)] = 248299, + [SMALL_STATE(4346)] = 248334, + [SMALL_STATE(4347)] = 248369, + [SMALL_STATE(4348)] = 248404, + [SMALL_STATE(4349)] = 248439, + [SMALL_STATE(4350)] = 248474, + [SMALL_STATE(4351)] = 248509, + [SMALL_STATE(4352)] = 248544, + [SMALL_STATE(4353)] = 248579, + [SMALL_STATE(4354)] = 248614, + [SMALL_STATE(4355)] = 248655, + [SMALL_STATE(4356)] = 248694, + [SMALL_STATE(4357)] = 248729, + [SMALL_STATE(4358)] = 248764, + [SMALL_STATE(4359)] = 248799, + [SMALL_STATE(4360)] = 248834, + [SMALL_STATE(4361)] = 248869, + [SMALL_STATE(4362)] = 248904, + [SMALL_STATE(4363)] = 248939, + [SMALL_STATE(4364)] = 248974, + [SMALL_STATE(4365)] = 249009, + [SMALL_STATE(4366)] = 249048, + [SMALL_STATE(4367)] = 249093, + [SMALL_STATE(4368)] = 249128, + [SMALL_STATE(4369)] = 249163, + [SMALL_STATE(4370)] = 249198, + [SMALL_STATE(4371)] = 249237, + [SMALL_STATE(4372)] = 249272, + [SMALL_STATE(4373)] = 249307, + [SMALL_STATE(4374)] = 249342, + [SMALL_STATE(4375)] = 249383, + [SMALL_STATE(4376)] = 249418, + [SMALL_STATE(4377)] = 249457, + [SMALL_STATE(4378)] = 249492, + [SMALL_STATE(4379)] = 249527, + [SMALL_STATE(4380)] = 249566, + [SMALL_STATE(4381)] = 249607, + [SMALL_STATE(4382)] = 249646, + [SMALL_STATE(4383)] = 249681, + [SMALL_STATE(4384)] = 249716, + [SMALL_STATE(4385)] = 249751, + [SMALL_STATE(4386)] = 249792, + [SMALL_STATE(4387)] = 249833, + [SMALL_STATE(4388)] = 249868, + [SMALL_STATE(4389)] = 249903, + [SMALL_STATE(4390)] = 249944, + [SMALL_STATE(4391)] = 249985, + [SMALL_STATE(4392)] = 250020, + [SMALL_STATE(4393)] = 250055, + [SMALL_STATE(4394)] = 250090, + [SMALL_STATE(4395)] = 250125, + [SMALL_STATE(4396)] = 250160, + [SMALL_STATE(4397)] = 250195, + [SMALL_STATE(4398)] = 250230, + [SMALL_STATE(4399)] = 250265, + [SMALL_STATE(4400)] = 250300, + [SMALL_STATE(4401)] = 250335, + [SMALL_STATE(4402)] = 250370, + [SMALL_STATE(4403)] = 250411, + [SMALL_STATE(4404)] = 250452, + [SMALL_STATE(4405)] = 250487, + [SMALL_STATE(4406)] = 250528, + [SMALL_STATE(4407)] = 250583, + [SMALL_STATE(4408)] = 250618, + [SMALL_STATE(4409)] = 250659, + [SMALL_STATE(4410)] = 250700, + [SMALL_STATE(4411)] = 250735, + [SMALL_STATE(4412)] = 250770, + [SMALL_STATE(4413)] = 250805, + [SMALL_STATE(4414)] = 250840, + [SMALL_STATE(4415)] = 250875, + [SMALL_STATE(4416)] = 250910, + [SMALL_STATE(4417)] = 250945, + [SMALL_STATE(4418)] = 250980, + [SMALL_STATE(4419)] = 251015, + [SMALL_STATE(4420)] = 251050, + [SMALL_STATE(4421)] = 251085, + [SMALL_STATE(4422)] = 251120, + [SMALL_STATE(4423)] = 251155, + [SMALL_STATE(4424)] = 251196, + [SMALL_STATE(4425)] = 251237, + [SMALL_STATE(4426)] = 251276, + [SMALL_STATE(4427)] = 251311, + [SMALL_STATE(4428)] = 251350, + [SMALL_STATE(4429)] = 251385, + [SMALL_STATE(4430)] = 251430, + [SMALL_STATE(4431)] = 251465, + [SMALL_STATE(4432)] = 251500, + [SMALL_STATE(4433)] = 251535, + [SMALL_STATE(4434)] = 251574, + [SMALL_STATE(4435)] = 251611, + [SMALL_STATE(4436)] = 251646, + [SMALL_STATE(4437)] = 251691, + [SMALL_STATE(4438)] = 251730, + [SMALL_STATE(4439)] = 251773, + [SMALL_STATE(4440)] = 251814, + [SMALL_STATE(4441)] = 251855, + [SMALL_STATE(4442)] = 251890, + [SMALL_STATE(4443)] = 251925, + [SMALL_STATE(4444)] = 251966, + [SMALL_STATE(4445)] = 252007, + [SMALL_STATE(4446)] = 252052, + [SMALL_STATE(4447)] = 252087, + [SMALL_STATE(4448)] = 252122, + [SMALL_STATE(4449)] = 252163, + [SMALL_STATE(4450)] = 252204, + [SMALL_STATE(4451)] = 252243, + [SMALL_STATE(4452)] = 252284, + [SMALL_STATE(4453)] = 252325, + [SMALL_STATE(4454)] = 252360, + [SMALL_STATE(4455)] = 252395, + [SMALL_STATE(4456)] = 252436, + [SMALL_STATE(4457)] = 252477, + [SMALL_STATE(4458)] = 252518, + [SMALL_STATE(4459)] = 252569, + [SMALL_STATE(4460)] = 252608, + [SMALL_STATE(4461)] = 252649, + [SMALL_STATE(4462)] = 252690, + [SMALL_STATE(4463)] = 252731, + [SMALL_STATE(4464)] = 252772, + [SMALL_STATE(4465)] = 252806, + [SMALL_STATE(4466)] = 252844, + [SMALL_STATE(4467)] = 252878, + [SMALL_STATE(4468)] = 252916, + [SMALL_STATE(4469)] = 252954, + [SMALL_STATE(4470)] = 252992, + [SMALL_STATE(4471)] = 253026, + [SMALL_STATE(4472)] = 253060, + [SMALL_STATE(4473)] = 253098, + [SMALL_STATE(4474)] = 253142, + [SMALL_STATE(4475)] = 253192, + [SMALL_STATE(4476)] = 253226, + [SMALL_STATE(4477)] = 253260, + [SMALL_STATE(4478)] = 253294, + [SMALL_STATE(4479)] = 253328, + [SMALL_STATE(4480)] = 253366, + [SMALL_STATE(4481)] = 253400, + [SMALL_STATE(4482)] = 253434, + [SMALL_STATE(4483)] = 253472, + [SMALL_STATE(4484)] = 253512, + [SMALL_STATE(4485)] = 253552, + [SMALL_STATE(4486)] = 253586, + [SMALL_STATE(4487)] = 253626, + [SMALL_STATE(4488)] = 253660, + [SMALL_STATE(4489)] = 253700, + [SMALL_STATE(4490)] = 253734, + [SMALL_STATE(4491)] = 253768, + [SMALL_STATE(4492)] = 253808, + [SMALL_STATE(4493)] = 253848, + [SMALL_STATE(4494)] = 253888, + [SMALL_STATE(4495)] = 253926, + [SMALL_STATE(4496)] = 253960, + [SMALL_STATE(4497)] = 253994, + [SMALL_STATE(4498)] = 254038, + [SMALL_STATE(4499)] = 254076, + [SMALL_STATE(4500)] = 254110, + [SMALL_STATE(4501)] = 254144, + [SMALL_STATE(4502)] = 254178, + [SMALL_STATE(4503)] = 254218, + [SMALL_STATE(4504)] = 254252, + [SMALL_STATE(4505)] = 254292, + [SMALL_STATE(4506)] = 254326, + [SMALL_STATE(4507)] = 254360, + [SMALL_STATE(4508)] = 254394, + [SMALL_STATE(4509)] = 254434, + [SMALL_STATE(4510)] = 254468, + [SMALL_STATE(4511)] = 254502, + [SMALL_STATE(4512)] = 254536, + [SMALL_STATE(4513)] = 254570, + [SMALL_STATE(4514)] = 254604, + [SMALL_STATE(4515)] = 254638, + [SMALL_STATE(4516)] = 254678, + [SMALL_STATE(4517)] = 254716, + [SMALL_STATE(4518)] = 254750, + [SMALL_STATE(4519)] = 254784, + [SMALL_STATE(4520)] = 254818, + [SMALL_STATE(4521)] = 254856, + [SMALL_STATE(4522)] = 254890, + [SMALL_STATE(4523)] = 254924, + [SMALL_STATE(4524)] = 254958, + [SMALL_STATE(4525)] = 254998, + [SMALL_STATE(4526)] = 255038, + [SMALL_STATE(4527)] = 255072, + [SMALL_STATE(4528)] = 255106, + [SMALL_STATE(4529)] = 255146, + [SMALL_STATE(4530)] = 255186, + [SMALL_STATE(4531)] = 255220, + [SMALL_STATE(4532)] = 255254, + [SMALL_STATE(4533)] = 255294, + [SMALL_STATE(4534)] = 255328, + [SMALL_STATE(4535)] = 255368, + [SMALL_STATE(4536)] = 255408, + [SMALL_STATE(4537)] = 255448, + [SMALL_STATE(4538)] = 255482, + [SMALL_STATE(4539)] = 255516, + [SMALL_STATE(4540)] = 255550, + [SMALL_STATE(4541)] = 255594, + [SMALL_STATE(4542)] = 255628, + [SMALL_STATE(4543)] = 255662, + [SMALL_STATE(4544)] = 255702, + [SMALL_STATE(4545)] = 255742, + [SMALL_STATE(4546)] = 255776, + [SMALL_STATE(4547)] = 255810, + [SMALL_STATE(4548)] = 255844, + [SMALL_STATE(4549)] = 255878, + [SMALL_STATE(4550)] = 255916, + [SMALL_STATE(4551)] = 255956, + [SMALL_STATE(4552)] = 255996, + [SMALL_STATE(4553)] = 256036, + [SMALL_STATE(4554)] = 256076, + [SMALL_STATE(4555)] = 256116, + [SMALL_STATE(4556)] = 256156, + [SMALL_STATE(4557)] = 256190, + [SMALL_STATE(4558)] = 256232, + [SMALL_STATE(4559)] = 256272, + [SMALL_STATE(4560)] = 256312, + [SMALL_STATE(4561)] = 256352, + [SMALL_STATE(4562)] = 256392, + [SMALL_STATE(4563)] = 256432, + [SMALL_STATE(4564)] = 256472, + [SMALL_STATE(4565)] = 256512, + [SMALL_STATE(4566)] = 256552, + [SMALL_STATE(4567)] = 256586, + [SMALL_STATE(4568)] = 256626, + [SMALL_STATE(4569)] = 256666, + [SMALL_STATE(4570)] = 256710, + [SMALL_STATE(4571)] = 256762, + [SMALL_STATE(4572)] = 256796, + [SMALL_STATE(4573)] = 256848, + [SMALL_STATE(4574)] = 256882, + [SMALL_STATE(4575)] = 256926, + [SMALL_STATE(4576)] = 256970, + [SMALL_STATE(4577)] = 257004, + [SMALL_STATE(4578)] = 257054, + [SMALL_STATE(4579)] = 257088, + [SMALL_STATE(4580)] = 257140, + [SMALL_STATE(4581)] = 257174, + [SMALL_STATE(4582)] = 257208, + [SMALL_STATE(4583)] = 257242, + [SMALL_STATE(4584)] = 257276, + [SMALL_STATE(4585)] = 257310, + [SMALL_STATE(4586)] = 257348, + [SMALL_STATE(4587)] = 257382, + [SMALL_STATE(4588)] = 257418, + [SMALL_STATE(4589)] = 257452, + [SMALL_STATE(4590)] = 257486, + [SMALL_STATE(4591)] = 257520, + [SMALL_STATE(4592)] = 257554, + [SMALL_STATE(4593)] = 257592, + [SMALL_STATE(4594)] = 257626, + [SMALL_STATE(4595)] = 257660, + [SMALL_STATE(4596)] = 257694, + [SMALL_STATE(4597)] = 257728, + [SMALL_STATE(4598)] = 257762, + [SMALL_STATE(4599)] = 257806, + [SMALL_STATE(4600)] = 257840, + [SMALL_STATE(4601)] = 257874, + [SMALL_STATE(4602)] = 257908, + [SMALL_STATE(4603)] = 257942, + [SMALL_STATE(4604)] = 257976, + [SMALL_STATE(4605)] = 258020, + [SMALL_STATE(4606)] = 258060, + [SMALL_STATE(4607)] = 258100, + [SMALL_STATE(4608)] = 258134, + [SMALL_STATE(4609)] = 258168, + [SMALL_STATE(4610)] = 258212, + [SMALL_STATE(4611)] = 258246, + [SMALL_STATE(4612)] = 258280, + [SMALL_STATE(4613)] = 258314, + [SMALL_STATE(4614)] = 258354, + [SMALL_STATE(4615)] = 258394, + [SMALL_STATE(4616)] = 258446, + [SMALL_STATE(4617)] = 258486, + [SMALL_STATE(4618)] = 258526, + [SMALL_STATE(4619)] = 258564, + [SMALL_STATE(4620)] = 258608, + [SMALL_STATE(4621)] = 258646, + [SMALL_STATE(4622)] = 258686, + [SMALL_STATE(4623)] = 258720, + [SMALL_STATE(4624)] = 258754, + [SMALL_STATE(4625)] = 258794, + [SMALL_STATE(4626)] = 258834, + [SMALL_STATE(4627)] = 258874, + [SMALL_STATE(4628)] = 258914, + [SMALL_STATE(4629)] = 258954, + [SMALL_STATE(4630)] = 258994, + [SMALL_STATE(4631)] = 259034, + [SMALL_STATE(4632)] = 259074, + [SMALL_STATE(4633)] = 259114, + [SMALL_STATE(4634)] = 259154, + [SMALL_STATE(4635)] = 259194, + [SMALL_STATE(4636)] = 259234, + [SMALL_STATE(4637)] = 259268, + [SMALL_STATE(4638)] = 259308, + [SMALL_STATE(4639)] = 259348, + [SMALL_STATE(4640)] = 259382, + [SMALL_STATE(4641)] = 259416, + [SMALL_STATE(4642)] = 259450, + [SMALL_STATE(4643)] = 259490, + [SMALL_STATE(4644)] = 259530, + [SMALL_STATE(4645)] = 259570, + [SMALL_STATE(4646)] = 259610, + [SMALL_STATE(4647)] = 259650, + [SMALL_STATE(4648)] = 259690, + [SMALL_STATE(4649)] = 259730, + [SMALL_STATE(4650)] = 259770, + [SMALL_STATE(4651)] = 259810, + [SMALL_STATE(4652)] = 259850, + [SMALL_STATE(4653)] = 259890, + [SMALL_STATE(4654)] = 259930, + [SMALL_STATE(4655)] = 259970, + [SMALL_STATE(4656)] = 260008, + [SMALL_STATE(4657)] = 260046, + [SMALL_STATE(4658)] = 260090, + [SMALL_STATE(4659)] = 260124, + [SMALL_STATE(4660)] = 260158, + [SMALL_STATE(4661)] = 260195, + [SMALL_STATE(4662)] = 260254, + [SMALL_STATE(4663)] = 260303, + [SMALL_STATE(4664)] = 260342, + [SMALL_STATE(4665)] = 260389, + [SMALL_STATE(4666)] = 260448, + [SMALL_STATE(4667)] = 260481, + [SMALL_STATE(4668)] = 260540, + [SMALL_STATE(4669)] = 260599, + [SMALL_STATE(4670)] = 260632, + [SMALL_STATE(4671)] = 260691, + [SMALL_STATE(4672)] = 260730, + [SMALL_STATE(4673)] = 260789, + [SMALL_STATE(4674)] = 260848, + [SMALL_STATE(4675)] = 260881, + [SMALL_STATE(4676)] = 260940, + [SMALL_STATE(4677)] = 260999, + [SMALL_STATE(4678)] = 261058, + [SMALL_STATE(4679)] = 261117, + [SMALL_STATE(4680)] = 261176, + [SMALL_STATE(4681)] = 261209, + [SMALL_STATE(4682)] = 261268, + [SMALL_STATE(4683)] = 261327, + [SMALL_STATE(4684)] = 261386, + [SMALL_STATE(4685)] = 261445, + [SMALL_STATE(4686)] = 261504, + [SMALL_STATE(4687)] = 261563, + [SMALL_STATE(4688)] = 261606, + [SMALL_STATE(4689)] = 261665, + [SMALL_STATE(4690)] = 261698, + [SMALL_STATE(4691)] = 261731, + [SMALL_STATE(4692)] = 261796, + [SMALL_STATE(4693)] = 261829, + [SMALL_STATE(4694)] = 261862, + [SMALL_STATE(4695)] = 261895, + [SMALL_STATE(4696)] = 261928, + [SMALL_STATE(4697)] = 261961, + [SMALL_STATE(4698)] = 261994, + [SMALL_STATE(4699)] = 262033, + [SMALL_STATE(4700)] = 262072, + [SMALL_STATE(4701)] = 262111, + [SMALL_STATE(4702)] = 262170, + [SMALL_STATE(4703)] = 262203, + [SMALL_STATE(4704)] = 262240, + [SMALL_STATE(4705)] = 262273, + [SMALL_STATE(4706)] = 262312, + [SMALL_STATE(4707)] = 262371, + [SMALL_STATE(4708)] = 262430, + [SMALL_STATE(4709)] = 262473, + [SMALL_STATE(4710)] = 262506, + [SMALL_STATE(4711)] = 262549, + [SMALL_STATE(4712)] = 262608, + [SMALL_STATE(4713)] = 262645, + [SMALL_STATE(4714)] = 262678, + [SMALL_STATE(4715)] = 262711, + [SMALL_STATE(4716)] = 262750, + [SMALL_STATE(4717)] = 262789, + [SMALL_STATE(4718)] = 262828, + [SMALL_STATE(4719)] = 262887, + [SMALL_STATE(4720)] = 262926, + [SMALL_STATE(4721)] = 262965, + [SMALL_STATE(4722)] = 262998, + [SMALL_STATE(4723)] = 263057, + [SMALL_STATE(4724)] = 263106, + [SMALL_STATE(4725)] = 263149, + [SMALL_STATE(4726)] = 263188, + [SMALL_STATE(4727)] = 263227, + [SMALL_STATE(4728)] = 263292, + [SMALL_STATE(4729)] = 263325, + [SMALL_STATE(4730)] = 263384, + [SMALL_STATE(4731)] = 263423, + [SMALL_STATE(4732)] = 263482, + [SMALL_STATE(4733)] = 263515, + [SMALL_STATE(4734)] = 263554, + [SMALL_STATE(4735)] = 263587, + [SMALL_STATE(4736)] = 263624, + [SMALL_STATE(4737)] = 263683, + [SMALL_STATE(4738)] = 263716, + [SMALL_STATE(4739)] = 263755, + [SMALL_STATE(4740)] = 263798, + [SMALL_STATE(4741)] = 263831, + [SMALL_STATE(4742)] = 263890, + [SMALL_STATE(4743)] = 263929, + [SMALL_STATE(4744)] = 263962, + [SMALL_STATE(4745)] = 264021, + [SMALL_STATE(4746)] = 264054, + [SMALL_STATE(4747)] = 264087, + [SMALL_STATE(4748)] = 264120, + [SMALL_STATE(4749)] = 264185, + [SMALL_STATE(4750)] = 264250, + [SMALL_STATE(4751)] = 264315, + [SMALL_STATE(4752)] = 264348, + [SMALL_STATE(4753)] = 264407, + [SMALL_STATE(4754)] = 264466, + [SMALL_STATE(4755)] = 264499, + [SMALL_STATE(4756)] = 264558, + [SMALL_STATE(4757)] = 264601, + [SMALL_STATE(4758)] = 264638, + [SMALL_STATE(4759)] = 264687, + [SMALL_STATE(4760)] = 264724, + [SMALL_STATE(4761)] = 264757, + [SMALL_STATE(4762)] = 264816, + [SMALL_STATE(4763)] = 264849, + [SMALL_STATE(4764)] = 264884, + [SMALL_STATE(4765)] = 264927, + [SMALL_STATE(4766)] = 264960, + [SMALL_STATE(4767)] = 265019, + [SMALL_STATE(4768)] = 265078, + [SMALL_STATE(4769)] = 265137, + [SMALL_STATE(4770)] = 265180, + [SMALL_STATE(4771)] = 265213, + [SMALL_STATE(4772)] = 265272, + [SMALL_STATE(4773)] = 265315, + [SMALL_STATE(4774)] = 265348, + [SMALL_STATE(4775)] = 265381, + [SMALL_STATE(4776)] = 265414, + [SMALL_STATE(4777)] = 265447, + [SMALL_STATE(4778)] = 265490, + [SMALL_STATE(4779)] = 265537, + [SMALL_STATE(4780)] = 265596, + [SMALL_STATE(4781)] = 265629, + [SMALL_STATE(4782)] = 265672, + [SMALL_STATE(4783)] = 265731, + [SMALL_STATE(4784)] = 265764, + [SMALL_STATE(4785)] = 265823, + [SMALL_STATE(4786)] = 265856, + [SMALL_STATE(4787)] = 265889, + [SMALL_STATE(4788)] = 265922, + [SMALL_STATE(4789)] = 265981, + [SMALL_STATE(4790)] = 266014, + [SMALL_STATE(4791)] = 266073, + [SMALL_STATE(4792)] = 266138, + [SMALL_STATE(4793)] = 266171, + [SMALL_STATE(4794)] = 266204, + [SMALL_STATE(4795)] = 266237, + [SMALL_STATE(4796)] = 266270, + [SMALL_STATE(4797)] = 266303, + [SMALL_STATE(4798)] = 266336, + [SMALL_STATE(4799)] = 266395, + [SMALL_STATE(4800)] = 266460, + [SMALL_STATE(4801)] = 266525, + [SMALL_STATE(4802)] = 266562, + [SMALL_STATE(4803)] = 266599, + [SMALL_STATE(4804)] = 266636, + [SMALL_STATE(4805)] = 266675, + [SMALL_STATE(4806)] = 266734, + [SMALL_STATE(4807)] = 266767, + [SMALL_STATE(4808)] = 266816, + [SMALL_STATE(4809)] = 266849, + [SMALL_STATE(4810)] = 266908, + [SMALL_STATE(4811)] = 266941, + [SMALL_STATE(4812)] = 266974, + [SMALL_STATE(4813)] = 267033, + [SMALL_STATE(4814)] = 267066, + [SMALL_STATE(4815)] = 267125, + [SMALL_STATE(4816)] = 267158, + [SMALL_STATE(4817)] = 267191, + [SMALL_STATE(4818)] = 267224, + [SMALL_STATE(4819)] = 267261, + [SMALL_STATE(4820)] = 267294, + [SMALL_STATE(4821)] = 267327, + [SMALL_STATE(4822)] = 267386, + [SMALL_STATE(4823)] = 267445, + [SMALL_STATE(4824)] = 267482, + [SMALL_STATE(4825)] = 267525, + [SMALL_STATE(4826)] = 267560, + [SMALL_STATE(4827)] = 267619, + [SMALL_STATE(4828)] = 267662, + [SMALL_STATE(4829)] = 267695, + [SMALL_STATE(4830)] = 267728, + [SMALL_STATE(4831)] = 267787, + [SMALL_STATE(4832)] = 267820, + [SMALL_STATE(4833)] = 267879, + [SMALL_STATE(4834)] = 267918, + [SMALL_STATE(4835)] = 267957, + [SMALL_STATE(4836)] = 267996, + [SMALL_STATE(4837)] = 268035, + [SMALL_STATE(4838)] = 268074, + [SMALL_STATE(4839)] = 268113, + [SMALL_STATE(4840)] = 268152, + [SMALL_STATE(4841)] = 268191, + [SMALL_STATE(4842)] = 268250, + [SMALL_STATE(4843)] = 268283, + [SMALL_STATE(4844)] = 268342, + [SMALL_STATE(4845)] = 268375, + [SMALL_STATE(4846)] = 268434, + [SMALL_STATE(4847)] = 268493, + [SMALL_STATE(4848)] = 268526, + [SMALL_STATE(4849)] = 268559, + [SMALL_STATE(4850)] = 268618, + [SMALL_STATE(4851)] = 268677, + [SMALL_STATE(4852)] = 268736, + [SMALL_STATE(4853)] = 268795, + [SMALL_STATE(4854)] = 268828, + [SMALL_STATE(4855)] = 268861, + [SMALL_STATE(4856)] = 268900, + [SMALL_STATE(4857)] = 268939, + [SMALL_STATE(4858)] = 268976, + [SMALL_STATE(4859)] = 269009, + [SMALL_STATE(4860)] = 269042, + [SMALL_STATE(4861)] = 269077, + [SMALL_STATE(4862)] = 269120, + [SMALL_STATE(4863)] = 269163, + [SMALL_STATE(4864)] = 269196, + [SMALL_STATE(4865)] = 269239, + [SMALL_STATE(4866)] = 269272, + [SMALL_STATE(4867)] = 269305, + [SMALL_STATE(4868)] = 269364, + [SMALL_STATE(4869)] = 269423, + [SMALL_STATE(4870)] = 269466, + [SMALL_STATE(4871)] = 269499, + [SMALL_STATE(4872)] = 269548, + [SMALL_STATE(4873)] = 269587, + [SMALL_STATE(4874)] = 269626, + [SMALL_STATE(4875)] = 269665, + [SMALL_STATE(4876)] = 269704, + [SMALL_STATE(4877)] = 269743, + [SMALL_STATE(4878)] = 269782, + [SMALL_STATE(4879)] = 269815, + [SMALL_STATE(4880)] = 269854, + [SMALL_STATE(4881)] = 269893, + [SMALL_STATE(4882)] = 269932, + [SMALL_STATE(4883)] = 269971, + [SMALL_STATE(4884)] = 270004, + [SMALL_STATE(4885)] = 270063, + [SMALL_STATE(4886)] = 270096, + [SMALL_STATE(4887)] = 270129, + [SMALL_STATE(4888)] = 270162, + [SMALL_STATE(4889)] = 270221, + [SMALL_STATE(4890)] = 270254, + [SMALL_STATE(4891)] = 270303, + [SMALL_STATE(4892)] = 270362, + [SMALL_STATE(4893)] = 270395, + [SMALL_STATE(4894)] = 270454, + [SMALL_STATE(4895)] = 270493, + [SMALL_STATE(4896)] = 270532, + [SMALL_STATE(4897)] = 270571, + [SMALL_STATE(4898)] = 270610, + [SMALL_STATE(4899)] = 270649, + [SMALL_STATE(4900)] = 270688, + [SMALL_STATE(4901)] = 270727, + [SMALL_STATE(4902)] = 270766, + [SMALL_STATE(4903)] = 270831, + [SMALL_STATE(4904)] = 270890, + [SMALL_STATE(4905)] = 270923, + [SMALL_STATE(4906)] = 270982, + [SMALL_STATE(4907)] = 271041, + [SMALL_STATE(4908)] = 271100, + [SMALL_STATE(4909)] = 271159, + [SMALL_STATE(4910)] = 271218, + [SMALL_STATE(4911)] = 271277, + [SMALL_STATE(4912)] = 271316, + [SMALL_STATE(4913)] = 271375, + [SMALL_STATE(4914)] = 271434, + [SMALL_STATE(4915)] = 271467, + [SMALL_STATE(4916)] = 271500, + [SMALL_STATE(4917)] = 271559, + [SMALL_STATE(4918)] = 271618, + [SMALL_STATE(4919)] = 271677, + [SMALL_STATE(4920)] = 271715, + [SMALL_STATE(4921)] = 271747, + [SMALL_STATE(4922)] = 271779, + [SMALL_STATE(4923)] = 271811, + [SMALL_STATE(4924)] = 271843, + [SMALL_STATE(4925)] = 271875, + [SMALL_STATE(4926)] = 271907, + [SMALL_STATE(4927)] = 271953, + [SMALL_STATE(4928)] = 271985, + [SMALL_STATE(4929)] = 272017, + [SMALL_STATE(4930)] = 272049, + [SMALL_STATE(4931)] = 272081, + [SMALL_STATE(4932)] = 272117, + [SMALL_STATE(4933)] = 272149, + [SMALL_STATE(4934)] = 272181, + [SMALL_STATE(4935)] = 272213, + [SMALL_STATE(4936)] = 272245, + [SMALL_STATE(4937)] = 272277, + [SMALL_STATE(4938)] = 272309, + [SMALL_STATE(4939)] = 272355, + [SMALL_STATE(4940)] = 272387, + [SMALL_STATE(4941)] = 272419, + [SMALL_STATE(4942)] = 272451, + [SMALL_STATE(4943)] = 272483, + [SMALL_STATE(4944)] = 272515, + [SMALL_STATE(4945)] = 272547, + [SMALL_STATE(4946)] = 272579, + [SMALL_STATE(4947)] = 272611, + [SMALL_STATE(4948)] = 272643, + [SMALL_STATE(4949)] = 272675, + [SMALL_STATE(4950)] = 272707, + [SMALL_STATE(4951)] = 272739, + [SMALL_STATE(4952)] = 272771, + [SMALL_STATE(4953)] = 272803, + [SMALL_STATE(4954)] = 272835, + [SMALL_STATE(4955)] = 272867, + [SMALL_STATE(4956)] = 272913, + [SMALL_STATE(4957)] = 272945, + [SMALL_STATE(4958)] = 272977, + [SMALL_STATE(4959)] = 273039, + [SMALL_STATE(4960)] = 273071, + [SMALL_STATE(4961)] = 273103, + [SMALL_STATE(4962)] = 273135, + [SMALL_STATE(4963)] = 273167, + [SMALL_STATE(4964)] = 273199, + [SMALL_STATE(4965)] = 273231, + [SMALL_STATE(4966)] = 273263, + [SMALL_STATE(4967)] = 273295, + [SMALL_STATE(4968)] = 273327, + [SMALL_STATE(4969)] = 273359, + [SMALL_STATE(4970)] = 273391, + [SMALL_STATE(4971)] = 273427, + [SMALL_STATE(4972)] = 273459, + [SMALL_STATE(4973)] = 273491, + [SMALL_STATE(4974)] = 273523, + [SMALL_STATE(4975)] = 273555, + [SMALL_STATE(4976)] = 273587, + [SMALL_STATE(4977)] = 273619, + [SMALL_STATE(4978)] = 273681, + [SMALL_STATE(4979)] = 273743, + [SMALL_STATE(4980)] = 273775, + [SMALL_STATE(4981)] = 273807, + [SMALL_STATE(4982)] = 273839, + [SMALL_STATE(4983)] = 273871, + [SMALL_STATE(4984)] = 273903, + [SMALL_STATE(4985)] = 273935, + [SMALL_STATE(4986)] = 273967, + [SMALL_STATE(4987)] = 273999, + [SMALL_STATE(4988)] = 274031, + [SMALL_STATE(4989)] = 274063, + [SMALL_STATE(4990)] = 274095, + [SMALL_STATE(4991)] = 274127, + [SMALL_STATE(4992)] = 274159, + [SMALL_STATE(4993)] = 274191, + [SMALL_STATE(4994)] = 274223, + [SMALL_STATE(4995)] = 274255, + [SMALL_STATE(4996)] = 274287, + [SMALL_STATE(4997)] = 274319, + [SMALL_STATE(4998)] = 274351, + [SMALL_STATE(4999)] = 274383, + [SMALL_STATE(5000)] = 274415, + [SMALL_STATE(5001)] = 274447, + [SMALL_STATE(5002)] = 274479, + [SMALL_STATE(5003)] = 274511, + [SMALL_STATE(5004)] = 274543, + [SMALL_STATE(5005)] = 274575, + [SMALL_STATE(5006)] = 274607, + [SMALL_STATE(5007)] = 274639, + [SMALL_STATE(5008)] = 274671, + [SMALL_STATE(5009)] = 274717, + [SMALL_STATE(5010)] = 274779, + [SMALL_STATE(5011)] = 274811, + [SMALL_STATE(5012)] = 274843, + [SMALL_STATE(5013)] = 274879, + [SMALL_STATE(5014)] = 274911, + [SMALL_STATE(5015)] = 274943, + [SMALL_STATE(5016)] = 274975, + [SMALL_STATE(5017)] = 275007, + [SMALL_STATE(5018)] = 275039, + [SMALL_STATE(5019)] = 275071, + [SMALL_STATE(5020)] = 275103, + [SMALL_STATE(5021)] = 275135, + [SMALL_STATE(5022)] = 275167, + [SMALL_STATE(5023)] = 275199, + [SMALL_STATE(5024)] = 275231, + [SMALL_STATE(5025)] = 275263, + [SMALL_STATE(5026)] = 275295, + [SMALL_STATE(5027)] = 275327, + [SMALL_STATE(5028)] = 275359, + [SMALL_STATE(5029)] = 275391, + [SMALL_STATE(5030)] = 275423, + [SMALL_STATE(5031)] = 275455, + [SMALL_STATE(5032)] = 275487, + [SMALL_STATE(5033)] = 275519, + [SMALL_STATE(5034)] = 275551, + [SMALL_STATE(5035)] = 275583, + [SMALL_STATE(5036)] = 275615, + [SMALL_STATE(5037)] = 275661, + [SMALL_STATE(5038)] = 275693, + [SMALL_STATE(5039)] = 275725, + [SMALL_STATE(5040)] = 275757, + [SMALL_STATE(5041)] = 275819, + [SMALL_STATE(5042)] = 275851, + [SMALL_STATE(5043)] = 275883, + [SMALL_STATE(5044)] = 275915, + [SMALL_STATE(5045)] = 275947, + [SMALL_STATE(5046)] = 275985, + [SMALL_STATE(5047)] = 276023, + [SMALL_STATE(5048)] = 276061, + [SMALL_STATE(5049)] = 276099, + [SMALL_STATE(5050)] = 276137, + [SMALL_STATE(5051)] = 276169, + [SMALL_STATE(5052)] = 276207, + [SMALL_STATE(5053)] = 276245, + [SMALL_STATE(5054)] = 276307, + [SMALL_STATE(5055)] = 276353, + [SMALL_STATE(5056)] = 276415, + [SMALL_STATE(5057)] = 276447, + [SMALL_STATE(5058)] = 276479, + [SMALL_STATE(5059)] = 276521, + [SMALL_STATE(5060)] = 276553, + [SMALL_STATE(5061)] = 276595, + [SMALL_STATE(5062)] = 276631, + [SMALL_STATE(5063)] = 276665, + [SMALL_STATE(5064)] = 276707, + [SMALL_STATE(5065)] = 276749, + [SMALL_STATE(5066)] = 276791, + [SMALL_STATE(5067)] = 276823, + [SMALL_STATE(5068)] = 276855, + [SMALL_STATE(5069)] = 276887, + [SMALL_STATE(5070)] = 276949, + [SMALL_STATE(5071)] = 276981, + [SMALL_STATE(5072)] = 277017, + [SMALL_STATE(5073)] = 277053, + [SMALL_STATE(5074)] = 277085, + [SMALL_STATE(5075)] = 277117, + [SMALL_STATE(5076)] = 277155, + [SMALL_STATE(5077)] = 277193, + [SMALL_STATE(5078)] = 277225, + [SMALL_STATE(5079)] = 277257, + [SMALL_STATE(5080)] = 277289, + [SMALL_STATE(5081)] = 277321, + [SMALL_STATE(5082)] = 277353, + [SMALL_STATE(5083)] = 277385, + [SMALL_STATE(5084)] = 277417, + [SMALL_STATE(5085)] = 277449, + [SMALL_STATE(5086)] = 277481, + [SMALL_STATE(5087)] = 277513, + [SMALL_STATE(5088)] = 277545, + [SMALL_STATE(5089)] = 277607, + [SMALL_STATE(5090)] = 277638, + [SMALL_STATE(5091)] = 277669, + [SMALL_STATE(5092)] = 277700, + [SMALL_STATE(5093)] = 277731, + [SMALL_STATE(5094)] = 277762, + [SMALL_STATE(5095)] = 277799, + [SMALL_STATE(5096)] = 277836, + [SMALL_STATE(5097)] = 277867, + [SMALL_STATE(5098)] = 277898, + [SMALL_STATE(5099)] = 277929, + [SMALL_STATE(5100)] = 277964, + [SMALL_STATE(5101)] = 277995, + [SMALL_STATE(5102)] = 278026, + [SMALL_STATE(5103)] = 278057, + [SMALL_STATE(5104)] = 278088, + [SMALL_STATE(5105)] = 278123, + [SMALL_STATE(5106)] = 278154, + [SMALL_STATE(5107)] = 278199, + [SMALL_STATE(5108)] = 278230, + [SMALL_STATE(5109)] = 278275, + [SMALL_STATE(5110)] = 278306, + [SMALL_STATE(5111)] = 278337, + [SMALL_STATE(5112)] = 278368, + [SMALL_STATE(5113)] = 278399, + [SMALL_STATE(5114)] = 278430, + [SMALL_STATE(5115)] = 278465, + [SMALL_STATE(5116)] = 278496, + [SMALL_STATE(5117)] = 278541, + [SMALL_STATE(5118)] = 278576, + [SMALL_STATE(5119)] = 278623, + [SMALL_STATE(5120)] = 278670, + [SMALL_STATE(5121)] = 278705, + [SMALL_STATE(5122)] = 278736, + [SMALL_STATE(5123)] = 278767, + [SMALL_STATE(5124)] = 278798, + [SMALL_STATE(5125)] = 278829, + [SMALL_STATE(5126)] = 278860, + [SMALL_STATE(5127)] = 278891, + [SMALL_STATE(5128)] = 278922, + [SMALL_STATE(5129)] = 278953, + [SMALL_STATE(5130)] = 278984, + [SMALL_STATE(5131)] = 279021, + [SMALL_STATE(5132)] = 279058, + [SMALL_STATE(5133)] = 279095, + [SMALL_STATE(5134)] = 279126, + [SMALL_STATE(5135)] = 279161, + [SMALL_STATE(5136)] = 279192, + [SMALL_STATE(5137)] = 279249, + [SMALL_STATE(5138)] = 279280, + [SMALL_STATE(5139)] = 279311, + [SMALL_STATE(5140)] = 279342, + [SMALL_STATE(5141)] = 279377, + [SMALL_STATE(5142)] = 279408, + [SMALL_STATE(5143)] = 279445, + [SMALL_STATE(5144)] = 279476, + [SMALL_STATE(5145)] = 279507, + [SMALL_STATE(5146)] = 279538, + [SMALL_STATE(5147)] = 279569, + [SMALL_STATE(5148)] = 279600, + [SMALL_STATE(5149)] = 279631, + [SMALL_STATE(5150)] = 279676, + [SMALL_STATE(5151)] = 279707, + [SMALL_STATE(5152)] = 279738, + [SMALL_STATE(5153)] = 279769, + [SMALL_STATE(5154)] = 279800, + [SMALL_STATE(5155)] = 279831, + [SMALL_STATE(5156)] = 279862, + [SMALL_STATE(5157)] = 279897, + [SMALL_STATE(5158)] = 279942, + [SMALL_STATE(5159)] = 279973, + [SMALL_STATE(5160)] = 280004, + [SMALL_STATE(5161)] = 280041, + [SMALL_STATE(5162)] = 280078, + [SMALL_STATE(5163)] = 280109, + [SMALL_STATE(5164)] = 280140, + [SMALL_STATE(5165)] = 280177, + [SMALL_STATE(5166)] = 280208, + [SMALL_STATE(5167)] = 280253, + [SMALL_STATE(5168)] = 280284, + [SMALL_STATE(5169)] = 280319, + [SMALL_STATE(5170)] = 280354, + [SMALL_STATE(5171)] = 280393, + [SMALL_STATE(5172)] = 280424, + [SMALL_STATE(5173)] = 280455, + [SMALL_STATE(5174)] = 280492, + [SMALL_STATE(5175)] = 280527, + [SMALL_STATE(5176)] = 280558, + [SMALL_STATE(5177)] = 280589, + [SMALL_STATE(5178)] = 280625, + [SMALL_STATE(5179)] = 280655, + [SMALL_STATE(5180)] = 280697, + [SMALL_STATE(5181)] = 280729, + [SMALL_STATE(5182)] = 280761, + [SMALL_STATE(5183)] = 280793, + [SMALL_STATE(5184)] = 280823, + [SMALL_STATE(5185)] = 280873, + [SMALL_STATE(5186)] = 280905, + [SMALL_STATE(5187)] = 280939, + [SMALL_STATE(5188)] = 280971, + [SMALL_STATE(5189)] = 281013, + [SMALL_STATE(5190)] = 281069, + [SMALL_STATE(5191)] = 281125, + [SMALL_STATE(5192)] = 281181, + [SMALL_STATE(5193)] = 281237, + [SMALL_STATE(5194)] = 281293, + [SMALL_STATE(5195)] = 281349, + [SMALL_STATE(5196)] = 281405, + [SMALL_STATE(5197)] = 281461, + [SMALL_STATE(5198)] = 281503, + [SMALL_STATE(5199)] = 281559, + [SMALL_STATE(5200)] = 281593, + [SMALL_STATE(5201)] = 281627, + [SMALL_STATE(5202)] = 281659, + [SMALL_STATE(5203)] = 281691, + [SMALL_STATE(5204)] = 281747, + [SMALL_STATE(5205)] = 281803, + [SMALL_STATE(5206)] = 281833, + [SMALL_STATE(5207)] = 281889, + [SMALL_STATE(5208)] = 281929, + [SMALL_STATE(5209)] = 281969, + [SMALL_STATE(5210)] = 282003, + [SMALL_STATE(5211)] = 282037, + [SMALL_STATE(5212)] = 282067, + [SMALL_STATE(5213)] = 282097, + [SMALL_STATE(5214)] = 282127, + [SMALL_STATE(5215)] = 282159, + [SMALL_STATE(5216)] = 282191, + [SMALL_STATE(5217)] = 282221, + [SMALL_STATE(5218)] = 282257, + [SMALL_STATE(5219)] = 282293, + [SMALL_STATE(5220)] = 282329, + [SMALL_STATE(5221)] = 282365, + [SMALL_STATE(5222)] = 282401, + [SMALL_STATE(5223)] = 282431, + [SMALL_STATE(5224)] = 282461, + [SMALL_STATE(5225)] = 282491, + [SMALL_STATE(5226)] = 282525, + [SMALL_STATE(5227)] = 282587, + [SMALL_STATE(5228)] = 282655, + [SMALL_STATE(5229)] = 282687, + [SMALL_STATE(5230)] = 282723, + [SMALL_STATE(5231)] = 282753, + [SMALL_STATE(5232)] = 282785, + [SMALL_STATE(5233)] = 282817, + [SMALL_STATE(5234)] = 282851, + [SMALL_STATE(5235)] = 282885, + [SMALL_STATE(5236)] = 282917, + [SMALL_STATE(5237)] = 282951, + [SMALL_STATE(5238)] = 282985, + [SMALL_STATE(5239)] = 283041, + [SMALL_STATE(5240)] = 283081, + [SMALL_STATE(5241)] = 283113, + [SMALL_STATE(5242)] = 283155, + [SMALL_STATE(5243)] = 283185, + [SMALL_STATE(5244)] = 283215, + [SMALL_STATE(5245)] = 283245, + [SMALL_STATE(5246)] = 283287, + [SMALL_STATE(5247)] = 283319, + [SMALL_STATE(5248)] = 283351, + [SMALL_STATE(5249)] = 283383, + [SMALL_STATE(5250)] = 283415, + [SMALL_STATE(5251)] = 283471, + [SMALL_STATE(5252)] = 283527, + [SMALL_STATE(5253)] = 283583, + [SMALL_STATE(5254)] = 283639, + [SMALL_STATE(5255)] = 283695, + [SMALL_STATE(5256)] = 283751, + [SMALL_STATE(5257)] = 283807, + [SMALL_STATE(5258)] = 283863, + [SMALL_STATE(5259)] = 283919, + [SMALL_STATE(5260)] = 283975, + [SMALL_STATE(5261)] = 284031, + [SMALL_STATE(5262)] = 284087, + [SMALL_STATE(5263)] = 284119, + [SMALL_STATE(5264)] = 284151, + [SMALL_STATE(5265)] = 284183, + [SMALL_STATE(5266)] = 284215, + [SMALL_STATE(5267)] = 284271, + [SMALL_STATE(5268)] = 284327, + [SMALL_STATE(5269)] = 284361, + [SMALL_STATE(5270)] = 284417, + [SMALL_STATE(5271)] = 284451, + [SMALL_STATE(5272)] = 284507, + [SMALL_STATE(5273)] = 284563, + [SMALL_STATE(5274)] = 284595, + [SMALL_STATE(5275)] = 284651, + [SMALL_STATE(5276)] = 284707, + [SMALL_STATE(5277)] = 284749, + [SMALL_STATE(5278)] = 284805, + [SMALL_STATE(5279)] = 284861, + [SMALL_STATE(5280)] = 284917, + [SMALL_STATE(5281)] = 284973, + [SMALL_STATE(5282)] = 285029, + [SMALL_STATE(5283)] = 285085, + [SMALL_STATE(5284)] = 285115, + [SMALL_STATE(5285)] = 285149, + [SMALL_STATE(5286)] = 285185, + [SMALL_STATE(5287)] = 285215, + [SMALL_STATE(5288)] = 285251, + [SMALL_STATE(5289)] = 285281, + [SMALL_STATE(5290)] = 285315, + [SMALL_STATE(5291)] = 285345, + [SMALL_STATE(5292)] = 285407, + [SMALL_STATE(5293)] = 285437, + [SMALL_STATE(5294)] = 285467, + [SMALL_STATE(5295)] = 285503, + [SMALL_STATE(5296)] = 285539, + [SMALL_STATE(5297)] = 285575, + [SMALL_STATE(5298)] = 285611, + [SMALL_STATE(5299)] = 285647, + [SMALL_STATE(5300)] = 285683, + [SMALL_STATE(5301)] = 285719, + [SMALL_STATE(5302)] = 285755, + [SMALL_STATE(5303)] = 285791, + [SMALL_STATE(5304)] = 285827, + [SMALL_STATE(5305)] = 285863, + [SMALL_STATE(5306)] = 285919, + [SMALL_STATE(5307)] = 285951, + [SMALL_STATE(5308)] = 285984, + [SMALL_STATE(5309)] = 286013, + [SMALL_STATE(5310)] = 286042, + [SMALL_STATE(5311)] = 286071, + [SMALL_STATE(5312)] = 286100, + [SMALL_STATE(5313)] = 286129, + [SMALL_STATE(5314)] = 286162, + [SMALL_STATE(5315)] = 286191, + [SMALL_STATE(5316)] = 286220, + [SMALL_STATE(5317)] = 286253, + [SMALL_STATE(5318)] = 286294, + [SMALL_STATE(5319)] = 286323, + [SMALL_STATE(5320)] = 286352, + [SMALL_STATE(5321)] = 286381, + [SMALL_STATE(5322)] = 286410, + [SMALL_STATE(5323)] = 286439, + [SMALL_STATE(5324)] = 286472, + [SMALL_STATE(5325)] = 286501, + [SMALL_STATE(5326)] = 286536, + [SMALL_STATE(5327)] = 286565, + [SMALL_STATE(5328)] = 286594, + [SMALL_STATE(5329)] = 286623, + [SMALL_STATE(5330)] = 286652, + [SMALL_STATE(5331)] = 286681, + [SMALL_STATE(5332)] = 286724, + [SMALL_STATE(5333)] = 286757, + [SMALL_STATE(5334)] = 286790, + [SMALL_STATE(5335)] = 286819, + [SMALL_STATE(5336)] = 286848, + [SMALL_STATE(5337)] = 286881, + [SMALL_STATE(5338)] = 286914, + [SMALL_STATE(5339)] = 286947, + [SMALL_STATE(5340)] = 286976, + [SMALL_STATE(5341)] = 287005, + [SMALL_STATE(5342)] = 287034, + [SMALL_STATE(5343)] = 287063, + [SMALL_STATE(5344)] = 287110, + [SMALL_STATE(5345)] = 287149, + [SMALL_STATE(5346)] = 287184, + [SMALL_STATE(5347)] = 287213, + [SMALL_STATE(5348)] = 287248, + [SMALL_STATE(5349)] = 287277, + [SMALL_STATE(5350)] = 287324, + [SMALL_STATE(5351)] = 287371, + [SMALL_STATE(5352)] = 287406, + [SMALL_STATE(5353)] = 287435, + [SMALL_STATE(5354)] = 287464, + [SMALL_STATE(5355)] = 287493, + [SMALL_STATE(5356)] = 287522, + [SMALL_STATE(5357)] = 287551, + [SMALL_STATE(5358)] = 287580, + [SMALL_STATE(5359)] = 287613, + [SMALL_STATE(5360)] = 287652, + [SMALL_STATE(5361)] = 287681, + [SMALL_STATE(5362)] = 287710, + [SMALL_STATE(5363)] = 287743, + [SMALL_STATE(5364)] = 287772, + [SMALL_STATE(5365)] = 287803, + [SMALL_STATE(5366)] = 287842, + [SMALL_STATE(5367)] = 287881, + [SMALL_STATE(5368)] = 287920, + [SMALL_STATE(5369)] = 287979, + [SMALL_STATE(5370)] = 288008, + [SMALL_STATE(5371)] = 288041, + [SMALL_STATE(5372)] = 288088, + [SMALL_STATE(5373)] = 288117, + [SMALL_STATE(5374)] = 288146, + [SMALL_STATE(5375)] = 288175, + [SMALL_STATE(5376)] = 288204, + [SMALL_STATE(5377)] = 288233, + [SMALL_STATE(5378)] = 288262, + [SMALL_STATE(5379)] = 288291, + [SMALL_STATE(5380)] = 288320, + [SMALL_STATE(5381)] = 288349, + [SMALL_STATE(5382)] = 288378, + [SMALL_STATE(5383)] = 288407, + [SMALL_STATE(5384)] = 288436, + [SMALL_STATE(5385)] = 288483, + [SMALL_STATE(5386)] = 288526, + [SMALL_STATE(5387)] = 288555, + [SMALL_STATE(5388)] = 288584, + [SMALL_STATE(5389)] = 288613, + [SMALL_STATE(5390)] = 288642, + [SMALL_STATE(5391)] = 288671, + [SMALL_STATE(5392)] = 288700, + [SMALL_STATE(5393)] = 288735, + [SMALL_STATE(5394)] = 288764, + [SMALL_STATE(5395)] = 288799, + [SMALL_STATE(5396)] = 288828, + [SMALL_STATE(5397)] = 288857, + [SMALL_STATE(5398)] = 288886, + [SMALL_STATE(5399)] = 288915, + [SMALL_STATE(5400)] = 288950, + [SMALL_STATE(5401)] = 288979, + [SMALL_STATE(5402)] = 289012, + [SMALL_STATE(5403)] = 289045, + [SMALL_STATE(5404)] = 289080, + [SMALL_STATE(5405)] = 289115, + [SMALL_STATE(5406)] = 289150, + [SMALL_STATE(5407)] = 289183, + [SMALL_STATE(5408)] = 289212, + [SMALL_STATE(5409)] = 289241, + [SMALL_STATE(5410)] = 289270, + [SMALL_STATE(5411)] = 289303, + [SMALL_STATE(5412)] = 289350, + [SMALL_STATE(5413)] = 289379, + [SMALL_STATE(5414)] = 289426, + [SMALL_STATE(5415)] = 289455, + [SMALL_STATE(5416)] = 289488, + [SMALL_STATE(5417)] = 289521, + [SMALL_STATE(5418)] = 289554, + [SMALL_STATE(5419)] = 289587, + [SMALL_STATE(5420)] = 289616, + [SMALL_STATE(5421)] = 289645, + [SMALL_STATE(5422)] = 289674, + [SMALL_STATE(5423)] = 289707, + [SMALL_STATE(5424)] = 289736, + [SMALL_STATE(5425)] = 289765, + [SMALL_STATE(5426)] = 289794, + [SMALL_STATE(5427)] = 289823, + [SMALL_STATE(5428)] = 289870, + [SMALL_STATE(5429)] = 289899, + [SMALL_STATE(5430)] = 289928, + [SMALL_STATE(5431)] = 289961, + [SMALL_STATE(5432)] = 289994, + [SMALL_STATE(5433)] = 290023, + [SMALL_STATE(5434)] = 290056, + [SMALL_STATE(5435)] = 290089, + [SMALL_STATE(5436)] = 290122, + [SMALL_STATE(5437)] = 290155, + [SMALL_STATE(5438)] = 290184, + [SMALL_STATE(5439)] = 290217, + [SMALL_STATE(5440)] = 290250, + [SMALL_STATE(5441)] = 290283, + [SMALL_STATE(5442)] = 290312, + [SMALL_STATE(5443)] = 290359, + [SMALL_STATE(5444)] = 290394, + [SMALL_STATE(5445)] = 290429, + [SMALL_STATE(5446)] = 290464, + [SMALL_STATE(5447)] = 290499, + [SMALL_STATE(5448)] = 290534, + [SMALL_STATE(5449)] = 290569, + [SMALL_STATE(5450)] = 290604, + [SMALL_STATE(5451)] = 290639, + [SMALL_STATE(5452)] = 290680, + [SMALL_STATE(5453)] = 290709, + [SMALL_STATE(5454)] = 290750, + [SMALL_STATE(5455)] = 290779, + [SMALL_STATE(5456)] = 290820, + [SMALL_STATE(5457)] = 290849, + [SMALL_STATE(5458)] = 290882, + [SMALL_STATE(5459)] = 290911, + [SMALL_STATE(5460)] = 290940, + [SMALL_STATE(5461)] = 290969, + [SMALL_STATE(5462)] = 290998, + [SMALL_STATE(5463)] = 291026, + [SMALL_STATE(5464)] = 291054, + [SMALL_STATE(5465)] = 291094, + [SMALL_STATE(5466)] = 291122, + [SMALL_STATE(5467)] = 291150, + [SMALL_STATE(5468)] = 291178, + [SMALL_STATE(5469)] = 291210, + [SMALL_STATE(5470)] = 291238, + [SMALL_STATE(5471)] = 291266, + [SMALL_STATE(5472)] = 291322, + [SMALL_STATE(5473)] = 291354, + [SMALL_STATE(5474)] = 291382, + [SMALL_STATE(5475)] = 291410, + [SMALL_STATE(5476)] = 291442, + [SMALL_STATE(5477)] = 291470, + [SMALL_STATE(5478)] = 291498, + [SMALL_STATE(5479)] = 291530, + [SMALL_STATE(5480)] = 291562, + [SMALL_STATE(5481)] = 291590, + [SMALL_STATE(5482)] = 291618, + [SMALL_STATE(5483)] = 291646, + [SMALL_STATE(5484)] = 291674, + [SMALL_STATE(5485)] = 291702, + [SMALL_STATE(5486)] = 291730, + [SMALL_STATE(5487)] = 291758, + [SMALL_STATE(5488)] = 291786, + [SMALL_STATE(5489)] = 291828, + [SMALL_STATE(5490)] = 291860, + [SMALL_STATE(5491)] = 291892, + [SMALL_STATE(5492)] = 291932, + [SMALL_STATE(5493)] = 291960, + [SMALL_STATE(5494)] = 291988, + [SMALL_STATE(5495)] = 292016, + [SMALL_STATE(5496)] = 292044, + [SMALL_STATE(5497)] = 292072, + [SMALL_STATE(5498)] = 292104, + [SMALL_STATE(5499)] = 292136, + [SMALL_STATE(5500)] = 292164, + [SMALL_STATE(5501)] = 292198, + [SMALL_STATE(5502)] = 292228, + [SMALL_STATE(5503)] = 292256, + [SMALL_STATE(5504)] = 292312, + [SMALL_STATE(5505)] = 292340, + [SMALL_STATE(5506)] = 292372, + [SMALL_STATE(5507)] = 292434, + [SMALL_STATE(5508)] = 292466, + [SMALL_STATE(5509)] = 292494, + [SMALL_STATE(5510)] = 292522, + [SMALL_STATE(5511)] = 292550, + [SMALL_STATE(5512)] = 292578, + [SMALL_STATE(5513)] = 292622, + [SMALL_STATE(5514)] = 292664, + [SMALL_STATE(5515)] = 292692, + [SMALL_STATE(5516)] = 292720, + [SMALL_STATE(5517)] = 292748, + [SMALL_STATE(5518)] = 292776, + [SMALL_STATE(5519)] = 292804, + [SMALL_STATE(5520)] = 292832, + [SMALL_STATE(5521)] = 292860, + [SMALL_STATE(5522)] = 292892, + [SMALL_STATE(5523)] = 292920, + [SMALL_STATE(5524)] = 292948, + [SMALL_STATE(5525)] = 292976, + [SMALL_STATE(5526)] = 293004, + [SMALL_STATE(5527)] = 293032, + [SMALL_STATE(5528)] = 293060, + [SMALL_STATE(5529)] = 293088, + [SMALL_STATE(5530)] = 293120, + [SMALL_STATE(5531)] = 293152, + [SMALL_STATE(5532)] = 293180, + [SMALL_STATE(5533)] = 293208, + [SMALL_STATE(5534)] = 293242, + [SMALL_STATE(5535)] = 293270, + [SMALL_STATE(5536)] = 293304, + [SMALL_STATE(5537)] = 293336, + [SMALL_STATE(5538)] = 293368, + [SMALL_STATE(5539)] = 293400, + [SMALL_STATE(5540)] = 293440, + [SMALL_STATE(5541)] = 293468, + [SMALL_STATE(5542)] = 293496, + [SMALL_STATE(5543)] = 293524, + [SMALL_STATE(5544)] = 293552, + [SMALL_STATE(5545)] = 293580, + [SMALL_STATE(5546)] = 293608, + [SMALL_STATE(5547)] = 293636, + [SMALL_STATE(5548)] = 293664, + [SMALL_STATE(5549)] = 293696, + [SMALL_STATE(5550)] = 293724, + [SMALL_STATE(5551)] = 293756, + [SMALL_STATE(5552)] = 293788, + [SMALL_STATE(5553)] = 293816, + [SMALL_STATE(5554)] = 293844, + [SMALL_STATE(5555)] = 293872, + [SMALL_STATE(5556)] = 293900, + [SMALL_STATE(5557)] = 293932, + [SMALL_STATE(5558)] = 293960, + [SMALL_STATE(5559)] = 293988, + [SMALL_STATE(5560)] = 294015, + [SMALL_STATE(5561)] = 294042, + [SMALL_STATE(5562)] = 294069, + [SMALL_STATE(5563)] = 294106, + [SMALL_STATE(5564)] = 294137, + [SMALL_STATE(5565)] = 294168, + [SMALL_STATE(5566)] = 294205, + [SMALL_STATE(5567)] = 294232, + [SMALL_STATE(5568)] = 294259, + [SMALL_STATE(5569)] = 294292, + [SMALL_STATE(5570)] = 294319, + [SMALL_STATE(5571)] = 294346, + [SMALL_STATE(5572)] = 294377, + [SMALL_STATE(5573)] = 294404, + [SMALL_STATE(5574)] = 294431, + [SMALL_STATE(5575)] = 294458, + [SMALL_STATE(5576)] = 294489, + [SMALL_STATE(5577)] = 294528, + [SMALL_STATE(5578)] = 294567, + [SMALL_STATE(5579)] = 294606, + [SMALL_STATE(5580)] = 294645, + [SMALL_STATE(5581)] = 294684, + [SMALL_STATE(5582)] = 294719, + [SMALL_STATE(5583)] = 294746, + [SMALL_STATE(5584)] = 294785, + [SMALL_STATE(5585)] = 294812, + [SMALL_STATE(5586)] = 294843, + [SMALL_STATE(5587)] = 294870, + [SMALL_STATE(5588)] = 294897, + [SMALL_STATE(5589)] = 294924, + [SMALL_STATE(5590)] = 294955, + [SMALL_STATE(5591)] = 294982, + [SMALL_STATE(5592)] = 295013, + [SMALL_STATE(5593)] = 295040, + [SMALL_STATE(5594)] = 295067, + [SMALL_STATE(5595)] = 295106, + [SMALL_STATE(5596)] = 295133, + [SMALL_STATE(5597)] = 295172, + [SMALL_STATE(5598)] = 295211, + [SMALL_STATE(5599)] = 295246, + [SMALL_STATE(5600)] = 295273, + [SMALL_STATE(5601)] = 295300, + [SMALL_STATE(5602)] = 295327, + [SMALL_STATE(5603)] = 295354, + [SMALL_STATE(5604)] = 295393, + [SMALL_STATE(5605)] = 295420, + [SMALL_STATE(5606)] = 295447, + [SMALL_STATE(5607)] = 295474, + [SMALL_STATE(5608)] = 295501, + [SMALL_STATE(5609)] = 295527, + [SMALL_STATE(5610)] = 295559, + [SMALL_STATE(5611)] = 295597, + [SMALL_STATE(5612)] = 295623, + [SMALL_STATE(5613)] = 295655, + [SMALL_STATE(5614)] = 295681, + [SMALL_STATE(5615)] = 295707, + [SMALL_STATE(5616)] = 295733, + [SMALL_STATE(5617)] = 295769, + [SMALL_STATE(5618)] = 295795, + [SMALL_STATE(5619)] = 295821, + [SMALL_STATE(5620)] = 295847, + [SMALL_STATE(5621)] = 295885, + [SMALL_STATE(5622)] = 295911, + [SMALL_STATE(5623)] = 295937, + [SMALL_STATE(5624)] = 295969, + [SMALL_STATE(5625)] = 296001, + [SMALL_STATE(5626)] = 296033, + [SMALL_STATE(5627)] = 296065, + [SMALL_STATE(5628)] = 296097, + [SMALL_STATE(5629)] = 296135, + [SMALL_STATE(5630)] = 296167, + [SMALL_STATE(5631)] = 296199, + [SMALL_STATE(5632)] = 296225, + [SMALL_STATE(5633)] = 296251, + [SMALL_STATE(5634)] = 296277, + [SMALL_STATE(5635)] = 296309, + [SMALL_STATE(5636)] = 296335, + [SMALL_STATE(5637)] = 296373, + [SMALL_STATE(5638)] = 296405, + [SMALL_STATE(5639)] = 296431, + [SMALL_STATE(5640)] = 296457, + [SMALL_STATE(5641)] = 296495, + [SMALL_STATE(5642)] = 296521, + [SMALL_STATE(5643)] = 296547, + [SMALL_STATE(5644)] = 296579, + [SMALL_STATE(5645)] = 296605, + [SMALL_STATE(5646)] = 296631, + [SMALL_STATE(5647)] = 296657, + [SMALL_STATE(5648)] = 296683, + [SMALL_STATE(5649)] = 296721, + [SMALL_STATE(5650)] = 296747, + [SMALL_STATE(5651)] = 296785, + [SMALL_STATE(5652)] = 296811, + [SMALL_STATE(5653)] = 296849, + [SMALL_STATE(5654)] = 296881, + [SMALL_STATE(5655)] = 296907, + [SMALL_STATE(5656)] = 296933, + [SMALL_STATE(5657)] = 296959, + [SMALL_STATE(5658)] = 296997, + [SMALL_STATE(5659)] = 297023, + [SMALL_STATE(5660)] = 297049, + [SMALL_STATE(5661)] = 297075, + [SMALL_STATE(5662)] = 297101, + [SMALL_STATE(5663)] = 297127, + [SMALL_STATE(5664)] = 297153, + [SMALL_STATE(5665)] = 297179, + [SMALL_STATE(5666)] = 297205, + [SMALL_STATE(5667)] = 297231, + [SMALL_STATE(5668)] = 297257, + [SMALL_STATE(5669)] = 297283, + [SMALL_STATE(5670)] = 297309, + [SMALL_STATE(5671)] = 297341, + [SMALL_STATE(5672)] = 297367, + [SMALL_STATE(5673)] = 297393, + [SMALL_STATE(5674)] = 297419, + [SMALL_STATE(5675)] = 297445, + [SMALL_STATE(5676)] = 297471, + [SMALL_STATE(5677)] = 297497, + [SMALL_STATE(5678)] = 297523, + [SMALL_STATE(5679)] = 297548, + [SMALL_STATE(5680)] = 297573, + [SMALL_STATE(5681)] = 297598, + [SMALL_STATE(5682)] = 297623, + [SMALL_STATE(5683)] = 297648, + [SMALL_STATE(5684)] = 297673, + [SMALL_STATE(5685)] = 297698, + [SMALL_STATE(5686)] = 297723, + [SMALL_STATE(5687)] = 297748, + [SMALL_STATE(5688)] = 297777, + [SMALL_STATE(5689)] = 297802, + [SMALL_STATE(5690)] = 297831, + [SMALL_STATE(5691)] = 297856, + [SMALL_STATE(5692)] = 297881, + [SMALL_STATE(5693)] = 297906, + [SMALL_STATE(5694)] = 297931, + [SMALL_STATE(5695)] = 297956, + [SMALL_STATE(5696)] = 297981, + [SMALL_STATE(5697)] = 298006, + [SMALL_STATE(5698)] = 298031, + [SMALL_STATE(5699)] = 298056, + [SMALL_STATE(5700)] = 298081, + [SMALL_STATE(5701)] = 298106, + [SMALL_STATE(5702)] = 298131, + [SMALL_STATE(5703)] = 298156, + [SMALL_STATE(5704)] = 298185, + [SMALL_STATE(5705)] = 298210, + [SMALL_STATE(5706)] = 298235, + [SMALL_STATE(5707)] = 298260, + [SMALL_STATE(5708)] = 298285, + [SMALL_STATE(5709)] = 298310, + [SMALL_STATE(5710)] = 298335, + [SMALL_STATE(5711)] = 298360, + [SMALL_STATE(5712)] = 298385, + [SMALL_STATE(5713)] = 298410, + [SMALL_STATE(5714)] = 298435, + [SMALL_STATE(5715)] = 298460, + [SMALL_STATE(5716)] = 298485, + [SMALL_STATE(5717)] = 298510, + [SMALL_STATE(5718)] = 298535, + [SMALL_STATE(5719)] = 298560, + [SMALL_STATE(5720)] = 298585, + [SMALL_STATE(5721)] = 298610, + [SMALL_STATE(5722)] = 298635, + [SMALL_STATE(5723)] = 298660, + [SMALL_STATE(5724)] = 298685, + [SMALL_STATE(5725)] = 298710, + [SMALL_STATE(5726)] = 298739, + [SMALL_STATE(5727)] = 298764, + [SMALL_STATE(5728)] = 298789, + [SMALL_STATE(5729)] = 298814, + [SMALL_STATE(5730)] = 298839, + [SMALL_STATE(5731)] = 298864, + [SMALL_STATE(5732)] = 298889, + [SMALL_STATE(5733)] = 298914, + [SMALL_STATE(5734)] = 298939, + [SMALL_STATE(5735)] = 298964, + [SMALL_STATE(5736)] = 298989, + [SMALL_STATE(5737)] = 299014, + [SMALL_STATE(5738)] = 299039, + [SMALL_STATE(5739)] = 299064, + [SMALL_STATE(5740)] = 299089, + [SMALL_STATE(5741)] = 299114, + [SMALL_STATE(5742)] = 299139, + [SMALL_STATE(5743)] = 299164, + [SMALL_STATE(5744)] = 299189, + [SMALL_STATE(5745)] = 299214, + [SMALL_STATE(5746)] = 299239, + [SMALL_STATE(5747)] = 299264, + [SMALL_STATE(5748)] = 299289, + [SMALL_STATE(5749)] = 299314, + [SMALL_STATE(5750)] = 299343, + [SMALL_STATE(5751)] = 299368, + [SMALL_STATE(5752)] = 299393, + [SMALL_STATE(5753)] = 299418, + [SMALL_STATE(5754)] = 299443, + [SMALL_STATE(5755)] = 299468, + [SMALL_STATE(5756)] = 299493, + [SMALL_STATE(5757)] = 299518, + [SMALL_STATE(5758)] = 299543, + [SMALL_STATE(5759)] = 299568, + [SMALL_STATE(5760)] = 299592, + [SMALL_STATE(5761)] = 299624, + [SMALL_STATE(5762)] = 299656, + [SMALL_STATE(5763)] = 299694, + [SMALL_STATE(5764)] = 299730, + [SMALL_STATE(5765)] = 299771, + [SMALL_STATE(5766)] = 299812, + [SMALL_STATE(5767)] = 299853, + [SMALL_STATE(5768)] = 299894, + [SMALL_STATE(5769)] = 299935, + [SMALL_STATE(5770)] = 299976, + [SMALL_STATE(5771)] = 300017, + [SMALL_STATE(5772)] = 300058, + [SMALL_STATE(5773)] = 300099, + [SMALL_STATE(5774)] = 300140, + [SMALL_STATE(5775)] = 300181, + [SMALL_STATE(5776)] = 300222, + [SMALL_STATE(5777)] = 300263, + [SMALL_STATE(5778)] = 300304, + [SMALL_STATE(5779)] = 300345, + [SMALL_STATE(5780)] = 300386, + [SMALL_STATE(5781)] = 300427, + [SMALL_STATE(5782)] = 300450, + [SMALL_STATE(5783)] = 300491, + [SMALL_STATE(5784)] = 300532, + [SMALL_STATE(5785)] = 300573, + [SMALL_STATE(5786)] = 300614, + [SMALL_STATE(5787)] = 300655, + [SMALL_STATE(5788)] = 300696, + [SMALL_STATE(5789)] = 300737, + [SMALL_STATE(5790)] = 300778, + [SMALL_STATE(5791)] = 300819, + [SMALL_STATE(5792)] = 300860, + [SMALL_STATE(5793)] = 300901, + [SMALL_STATE(5794)] = 300942, + [SMALL_STATE(5795)] = 300983, + [SMALL_STATE(5796)] = 301024, + [SMALL_STATE(5797)] = 301065, + [SMALL_STATE(5798)] = 301106, + [SMALL_STATE(5799)] = 301147, + [SMALL_STATE(5800)] = 301188, + [SMALL_STATE(5801)] = 301229, + [SMALL_STATE(5802)] = 301270, + [SMALL_STATE(5803)] = 301311, + [SMALL_STATE(5804)] = 301352, + [SMALL_STATE(5805)] = 301393, + [SMALL_STATE(5806)] = 301434, + [SMALL_STATE(5807)] = 301475, + [SMALL_STATE(5808)] = 301498, + [SMALL_STATE(5809)] = 301539, + [SMALL_STATE(5810)] = 301580, + [SMALL_STATE(5811)] = 301621, + [SMALL_STATE(5812)] = 301662, + [SMALL_STATE(5813)] = 301703, + [SMALL_STATE(5814)] = 301744, + [SMALL_STATE(5815)] = 301785, + [SMALL_STATE(5816)] = 301826, + [SMALL_STATE(5817)] = 301867, + [SMALL_STATE(5818)] = 301908, + [SMALL_STATE(5819)] = 301949, + [SMALL_STATE(5820)] = 301990, + [SMALL_STATE(5821)] = 302031, + [SMALL_STATE(5822)] = 302072, + [SMALL_STATE(5823)] = 302113, + [SMALL_STATE(5824)] = 302154, + [SMALL_STATE(5825)] = 302195, + [SMALL_STATE(5826)] = 302236, + [SMALL_STATE(5827)] = 302277, + [SMALL_STATE(5828)] = 302318, + [SMALL_STATE(5829)] = 302359, + [SMALL_STATE(5830)] = 302400, + [SMALL_STATE(5831)] = 302441, + [SMALL_STATE(5832)] = 302482, + [SMALL_STATE(5833)] = 302523, + [SMALL_STATE(5834)] = 302564, + [SMALL_STATE(5835)] = 302605, + [SMALL_STATE(5836)] = 302646, + [SMALL_STATE(5837)] = 302687, + [SMALL_STATE(5838)] = 302710, + [SMALL_STATE(5839)] = 302751, + [SMALL_STATE(5840)] = 302792, + [SMALL_STATE(5841)] = 302833, + [SMALL_STATE(5842)] = 302874, + [SMALL_STATE(5843)] = 302915, + [SMALL_STATE(5844)] = 302956, + [SMALL_STATE(5845)] = 302997, + [SMALL_STATE(5846)] = 303038, + [SMALL_STATE(5847)] = 303079, + [SMALL_STATE(5848)] = 303120, + [SMALL_STATE(5849)] = 303161, + [SMALL_STATE(5850)] = 303202, + [SMALL_STATE(5851)] = 303243, + [SMALL_STATE(5852)] = 303284, + [SMALL_STATE(5853)] = 303325, + [SMALL_STATE(5854)] = 303366, + [SMALL_STATE(5855)] = 303407, + [SMALL_STATE(5856)] = 303448, + [SMALL_STATE(5857)] = 303489, + [SMALL_STATE(5858)] = 303530, + [SMALL_STATE(5859)] = 303571, + [SMALL_STATE(5860)] = 303612, + [SMALL_STATE(5861)] = 303653, + [SMALL_STATE(5862)] = 303694, + [SMALL_STATE(5863)] = 303735, + [SMALL_STATE(5864)] = 303776, + [SMALL_STATE(5865)] = 303817, + [SMALL_STATE(5866)] = 303858, + [SMALL_STATE(5867)] = 303899, + [SMALL_STATE(5868)] = 303940, + [SMALL_STATE(5869)] = 303981, + [SMALL_STATE(5870)] = 304022, + [SMALL_STATE(5871)] = 304063, + [SMALL_STATE(5872)] = 304104, + [SMALL_STATE(5873)] = 304145, + [SMALL_STATE(5874)] = 304186, + [SMALL_STATE(5875)] = 304227, + [SMALL_STATE(5876)] = 304268, + [SMALL_STATE(5877)] = 304309, + [SMALL_STATE(5878)] = 304350, + [SMALL_STATE(5879)] = 304391, + [SMALL_STATE(5880)] = 304432, + [SMALL_STATE(5881)] = 304473, + [SMALL_STATE(5882)] = 304514, + [SMALL_STATE(5883)] = 304555, + [SMALL_STATE(5884)] = 304596, + [SMALL_STATE(5885)] = 304637, + [SMALL_STATE(5886)] = 304678, + [SMALL_STATE(5887)] = 304719, + [SMALL_STATE(5888)] = 304760, + [SMALL_STATE(5889)] = 304801, + [SMALL_STATE(5890)] = 304842, + [SMALL_STATE(5891)] = 304883, + [SMALL_STATE(5892)] = 304924, + [SMALL_STATE(5893)] = 304965, + [SMALL_STATE(5894)] = 305006, + [SMALL_STATE(5895)] = 305047, + [SMALL_STATE(5896)] = 305088, + [SMALL_STATE(5897)] = 305129, + [SMALL_STATE(5898)] = 305170, + [SMALL_STATE(5899)] = 305211, + [SMALL_STATE(5900)] = 305252, + [SMALL_STATE(5901)] = 305293, + [SMALL_STATE(5902)] = 305334, + [SMALL_STATE(5903)] = 305375, + [SMALL_STATE(5904)] = 305416, + [SMALL_STATE(5905)] = 305457, + [SMALL_STATE(5906)] = 305498, + [SMALL_STATE(5907)] = 305539, + [SMALL_STATE(5908)] = 305580, + [SMALL_STATE(5909)] = 305621, + [SMALL_STATE(5910)] = 305662, + [SMALL_STATE(5911)] = 305703, + [SMALL_STATE(5912)] = 305726, + [SMALL_STATE(5913)] = 305767, + [SMALL_STATE(5914)] = 305808, + [SMALL_STATE(5915)] = 305849, + [SMALL_STATE(5916)] = 305890, + [SMALL_STATE(5917)] = 305931, + [SMALL_STATE(5918)] = 305972, + [SMALL_STATE(5919)] = 306013, + [SMALL_STATE(5920)] = 306054, + [SMALL_STATE(5921)] = 306095, + [SMALL_STATE(5922)] = 306136, + [SMALL_STATE(5923)] = 306177, + [SMALL_STATE(5924)] = 306218, + [SMALL_STATE(5925)] = 306259, + [SMALL_STATE(5926)] = 306300, + [SMALL_STATE(5927)] = 306341, + [SMALL_STATE(5928)] = 306369, + [SMALL_STATE(5929)] = 306397, + [SMALL_STATE(5930)] = 306425, + [SMALL_STATE(5931)] = 306453, + [SMALL_STATE(5932)] = 306481, + [SMALL_STATE(5933)] = 306509, + [SMALL_STATE(5934)] = 306537, + [SMALL_STATE(5935)] = 306565, + [SMALL_STATE(5936)] = 306593, + [SMALL_STATE(5937)] = 306621, + [SMALL_STATE(5938)] = 306649, + [SMALL_STATE(5939)] = 306677, + [SMALL_STATE(5940)] = 306705, + [SMALL_STATE(5941)] = 306733, + [SMALL_STATE(5942)] = 306761, + [SMALL_STATE(5943)] = 306789, + [SMALL_STATE(5944)] = 306817, + [SMALL_STATE(5945)] = 306845, + [SMALL_STATE(5946)] = 306873, + [SMALL_STATE(5947)] = 306901, + [SMALL_STATE(5948)] = 306929, + [SMALL_STATE(5949)] = 306957, + [SMALL_STATE(5950)] = 306985, + [SMALL_STATE(5951)] = 307013, + [SMALL_STATE(5952)] = 307041, + [SMALL_STATE(5953)] = 307069, + [SMALL_STATE(5954)] = 307097, + [SMALL_STATE(5955)] = 307125, + [SMALL_STATE(5956)] = 307153, + [SMALL_STATE(5957)] = 307181, + [SMALL_STATE(5958)] = 307209, + [SMALL_STATE(5959)] = 307237, + [SMALL_STATE(5960)] = 307265, + [SMALL_STATE(5961)] = 307293, + [SMALL_STATE(5962)] = 307321, + [SMALL_STATE(5963)] = 307349, + [SMALL_STATE(5964)] = 307377, + [SMALL_STATE(5965)] = 307405, + [SMALL_STATE(5966)] = 307433, + [SMALL_STATE(5967)] = 307461, + [SMALL_STATE(5968)] = 307489, + [SMALL_STATE(5969)] = 307517, + [SMALL_STATE(5970)] = 307545, + [SMALL_STATE(5971)] = 307573, + [SMALL_STATE(5972)] = 307601, + [SMALL_STATE(5973)] = 307629, + [SMALL_STATE(5974)] = 307657, + [SMALL_STATE(5975)] = 307685, + [SMALL_STATE(5976)] = 307713, + [SMALL_STATE(5977)] = 307741, + [SMALL_STATE(5978)] = 307769, + [SMALL_STATE(5979)] = 307797, + [SMALL_STATE(5980)] = 307825, + [SMALL_STATE(5981)] = 307853, + [SMALL_STATE(5982)] = 307881, + [SMALL_STATE(5983)] = 307909, + [SMALL_STATE(5984)] = 307937, + [SMALL_STATE(5985)] = 307965, + [SMALL_STATE(5986)] = 307993, + [SMALL_STATE(5987)] = 308021, + [SMALL_STATE(5988)] = 308049, + [SMALL_STATE(5989)] = 308077, + [SMALL_STATE(5990)] = 308105, + [SMALL_STATE(5991)] = 308133, + [SMALL_STATE(5992)] = 308161, + [SMALL_STATE(5993)] = 308189, + [SMALL_STATE(5994)] = 308217, + [SMALL_STATE(5995)] = 308245, + [SMALL_STATE(5996)] = 308273, + [SMALL_STATE(5997)] = 308301, + [SMALL_STATE(5998)] = 308329, + [SMALL_STATE(5999)] = 308357, + [SMALL_STATE(6000)] = 308385, + [SMALL_STATE(6001)] = 308413, + [SMALL_STATE(6002)] = 308441, + [SMALL_STATE(6003)] = 308469, + [SMALL_STATE(6004)] = 308497, + [SMALL_STATE(6005)] = 308525, + [SMALL_STATE(6006)] = 308553, + [SMALL_STATE(6007)] = 308581, + [SMALL_STATE(6008)] = 308609, + [SMALL_STATE(6009)] = 308637, + [SMALL_STATE(6010)] = 308665, + [SMALL_STATE(6011)] = 308693, + [SMALL_STATE(6012)] = 308721, + [SMALL_STATE(6013)] = 308749, + [SMALL_STATE(6014)] = 308777, + [SMALL_STATE(6015)] = 308805, + [SMALL_STATE(6016)] = 308833, + [SMALL_STATE(6017)] = 308861, + [SMALL_STATE(6018)] = 308889, + [SMALL_STATE(6019)] = 308917, + [SMALL_STATE(6020)] = 308945, + [SMALL_STATE(6021)] = 308973, + [SMALL_STATE(6022)] = 309001, + [SMALL_STATE(6023)] = 309029, + [SMALL_STATE(6024)] = 309057, + [SMALL_STATE(6025)] = 309085, + [SMALL_STATE(6026)] = 309113, + [SMALL_STATE(6027)] = 309141, + [SMALL_STATE(6028)] = 309169, + [SMALL_STATE(6029)] = 309197, + [SMALL_STATE(6030)] = 309225, + [SMALL_STATE(6031)] = 309253, + [SMALL_STATE(6032)] = 309281, + [SMALL_STATE(6033)] = 309309, + [SMALL_STATE(6034)] = 309337, + [SMALL_STATE(6035)] = 309365, + [SMALL_STATE(6036)] = 309393, + [SMALL_STATE(6037)] = 309421, + [SMALL_STATE(6038)] = 309449, + [SMALL_STATE(6039)] = 309477, + [SMALL_STATE(6040)] = 309505, + [SMALL_STATE(6041)] = 309533, + [SMALL_STATE(6042)] = 309561, + [SMALL_STATE(6043)] = 309589, + [SMALL_STATE(6044)] = 309617, + [SMALL_STATE(6045)] = 309645, + [SMALL_STATE(6046)] = 309673, + [SMALL_STATE(6047)] = 309701, + [SMALL_STATE(6048)] = 309729, + [SMALL_STATE(6049)] = 309757, + [SMALL_STATE(6050)] = 309785, + [SMALL_STATE(6051)] = 309813, + [SMALL_STATE(6052)] = 309841, + [SMALL_STATE(6053)] = 309869, + [SMALL_STATE(6054)] = 309897, + [SMALL_STATE(6055)] = 309925, + [SMALL_STATE(6056)] = 309953, + [SMALL_STATE(6057)] = 309981, + [SMALL_STATE(6058)] = 310009, + [SMALL_STATE(6059)] = 310037, + [SMALL_STATE(6060)] = 310065, + [SMALL_STATE(6061)] = 310093, + [SMALL_STATE(6062)] = 310121, + [SMALL_STATE(6063)] = 310149, + [SMALL_STATE(6064)] = 310177, + [SMALL_STATE(6065)] = 310205, + [SMALL_STATE(6066)] = 310233, + [SMALL_STATE(6067)] = 310261, + [SMALL_STATE(6068)] = 310289, + [SMALL_STATE(6069)] = 310317, + [SMALL_STATE(6070)] = 310345, + [SMALL_STATE(6071)] = 310373, + [SMALL_STATE(6072)] = 310401, + [SMALL_STATE(6073)] = 310429, + [SMALL_STATE(6074)] = 310457, + [SMALL_STATE(6075)] = 310485, + [SMALL_STATE(6076)] = 310513, + [SMALL_STATE(6077)] = 310541, + [SMALL_STATE(6078)] = 310569, + [SMALL_STATE(6079)] = 310597, + [SMALL_STATE(6080)] = 310625, + [SMALL_STATE(6081)] = 310653, + [SMALL_STATE(6082)] = 310681, + [SMALL_STATE(6083)] = 310709, + [SMALL_STATE(6084)] = 310737, + [SMALL_STATE(6085)] = 310765, + [SMALL_STATE(6086)] = 310793, + [SMALL_STATE(6087)] = 310821, + [SMALL_STATE(6088)] = 310849, + [SMALL_STATE(6089)] = 310877, + [SMALL_STATE(6090)] = 310905, + [SMALL_STATE(6091)] = 310933, + [SMALL_STATE(6092)] = 310961, + [SMALL_STATE(6093)] = 310989, + [SMALL_STATE(6094)] = 311017, + [SMALL_STATE(6095)] = 311045, + [SMALL_STATE(6096)] = 311073, + [SMALL_STATE(6097)] = 311101, + [SMALL_STATE(6098)] = 311129, + [SMALL_STATE(6099)] = 311157, + [SMALL_STATE(6100)] = 311185, + [SMALL_STATE(6101)] = 311213, + [SMALL_STATE(6102)] = 311241, + [SMALL_STATE(6103)] = 311269, + [SMALL_STATE(6104)] = 311297, + [SMALL_STATE(6105)] = 311325, + [SMALL_STATE(6106)] = 311353, + [SMALL_STATE(6107)] = 311381, + [SMALL_STATE(6108)] = 311409, + [SMALL_STATE(6109)] = 311437, + [SMALL_STATE(6110)] = 311465, + [SMALL_STATE(6111)] = 311493, + [SMALL_STATE(6112)] = 311521, + [SMALL_STATE(6113)] = 311549, + [SMALL_STATE(6114)] = 311577, + [SMALL_STATE(6115)] = 311605, + [SMALL_STATE(6116)] = 311633, + [SMALL_STATE(6117)] = 311661, + [SMALL_STATE(6118)] = 311689, + [SMALL_STATE(6119)] = 311717, + [SMALL_STATE(6120)] = 311745, + [SMALL_STATE(6121)] = 311773, + [SMALL_STATE(6122)] = 311801, + [SMALL_STATE(6123)] = 311829, + [SMALL_STATE(6124)] = 311857, + [SMALL_STATE(6125)] = 311885, + [SMALL_STATE(6126)] = 311913, + [SMALL_STATE(6127)] = 311941, + [SMALL_STATE(6128)] = 311969, + [SMALL_STATE(6129)] = 311997, + [SMALL_STATE(6130)] = 312025, + [SMALL_STATE(6131)] = 312053, + [SMALL_STATE(6132)] = 312081, + [SMALL_STATE(6133)] = 312109, + [SMALL_STATE(6134)] = 312137, + [SMALL_STATE(6135)] = 312165, + [SMALL_STATE(6136)] = 312193, + [SMALL_STATE(6137)] = 312221, + [SMALL_STATE(6138)] = 312249, + [SMALL_STATE(6139)] = 312277, + [SMALL_STATE(6140)] = 312305, + [SMALL_STATE(6141)] = 312333, + [SMALL_STATE(6142)] = 312361, + [SMALL_STATE(6143)] = 312389, + [SMALL_STATE(6144)] = 312417, + [SMALL_STATE(6145)] = 312445, + [SMALL_STATE(6146)] = 312473, + [SMALL_STATE(6147)] = 312501, + [SMALL_STATE(6148)] = 312529, + [SMALL_STATE(6149)] = 312557, + [SMALL_STATE(6150)] = 312585, + [SMALL_STATE(6151)] = 312614, + [SMALL_STATE(6152)] = 312643, + [SMALL_STATE(6153)] = 312672, + [SMALL_STATE(6154)] = 312701, + [SMALL_STATE(6155)] = 312722, + [SMALL_STATE(6156)] = 312743, + [SMALL_STATE(6157)] = 312772, + [SMALL_STATE(6158)] = 312801, + [SMALL_STATE(6159)] = 312830, + [SMALL_STATE(6160)] = 312855, + [SMALL_STATE(6161)] = 312884, + [SMALL_STATE(6162)] = 312910, + [SMALL_STATE(6163)] = 312936, + [SMALL_STATE(6164)] = 312962, + [SMALL_STATE(6165)] = 312984, + [SMALL_STATE(6166)] = 313010, + [SMALL_STATE(6167)] = 313032, + [SMALL_STATE(6168)] = 313054, + [SMALL_STATE(6169)] = 313076, + [SMALL_STATE(6170)] = 313098, + [SMALL_STATE(6171)] = 313120, + [SMALL_STATE(6172)] = 313146, + [SMALL_STATE(6173)] = 313172, + [SMALL_STATE(6174)] = 313198, + [SMALL_STATE(6175)] = 313220, + [SMALL_STATE(6176)] = 313246, + [SMALL_STATE(6177)] = 313268, + [SMALL_STATE(6178)] = 313294, + [SMALL_STATE(6179)] = 313316, + [SMALL_STATE(6180)] = 313335, + [SMALL_STATE(6181)] = 313358, + [SMALL_STATE(6182)] = 313381, + [SMALL_STATE(6183)] = 313404, + [SMALL_STATE(6184)] = 313427, + [SMALL_STATE(6185)] = 313458, + [SMALL_STATE(6186)] = 313481, + [SMALL_STATE(6187)] = 313504, + [SMALL_STATE(6188)] = 313535, + [SMALL_STATE(6189)] = 313554, + [SMALL_STATE(6190)] = 313573, + [SMALL_STATE(6191)] = 313596, + [SMALL_STATE(6192)] = 313619, + [SMALL_STATE(6193)] = 313642, + [SMALL_STATE(6194)] = 313665, + [SMALL_STATE(6195)] = 313688, + [SMALL_STATE(6196)] = 313707, + [SMALL_STATE(6197)] = 313730, + [SMALL_STATE(6198)] = 313753, + [SMALL_STATE(6199)] = 313772, + [SMALL_STATE(6200)] = 313795, + [SMALL_STATE(6201)] = 313818, + [SMALL_STATE(6202)] = 313841, + [SMALL_STATE(6203)] = 313860, + [SMALL_STATE(6204)] = 313879, + [SMALL_STATE(6205)] = 313902, + [SMALL_STATE(6206)] = 313925, + [SMALL_STATE(6207)] = 313944, + [SMALL_STATE(6208)] = 313963, + [SMALL_STATE(6209)] = 313986, + [SMALL_STATE(6210)] = 314009, + [SMALL_STATE(6211)] = 314040, + [SMALL_STATE(6212)] = 314063, + [SMALL_STATE(6213)] = 314086, + [SMALL_STATE(6214)] = 314105, + [SMALL_STATE(6215)] = 314128, + [SMALL_STATE(6216)] = 314147, + [SMALL_STATE(6217)] = 314170, + [SMALL_STATE(6218)] = 314193, + [SMALL_STATE(6219)] = 314216, + [SMALL_STATE(6220)] = 314235, + [SMALL_STATE(6221)] = 314258, + [SMALL_STATE(6222)] = 314286, + [SMALL_STATE(6223)] = 314314, + [SMALL_STATE(6224)] = 314342, + [SMALL_STATE(6225)] = 314370, + [SMALL_STATE(6226)] = 314398, + [SMALL_STATE(6227)] = 314426, + [SMALL_STATE(6228)] = 314454, + [SMALL_STATE(6229)] = 314482, + [SMALL_STATE(6230)] = 314510, + [SMALL_STATE(6231)] = 314538, + [SMALL_STATE(6232)] = 314566, + [SMALL_STATE(6233)] = 314594, + [SMALL_STATE(6234)] = 314622, + [SMALL_STATE(6235)] = 314650, + [SMALL_STATE(6236)] = 314678, + [SMALL_STATE(6237)] = 314706, + [SMALL_STATE(6238)] = 314734, + [SMALL_STATE(6239)] = 314762, + [SMALL_STATE(6240)] = 314790, + [SMALL_STATE(6241)] = 314806, + [SMALL_STATE(6242)] = 314834, + [SMALL_STATE(6243)] = 314850, + [SMALL_STATE(6244)] = 314878, + [SMALL_STATE(6245)] = 314906, + [SMALL_STATE(6246)] = 314934, + [SMALL_STATE(6247)] = 314962, + [SMALL_STATE(6248)] = 314990, + [SMALL_STATE(6249)] = 315006, + [SMALL_STATE(6250)] = 315033, + [SMALL_STATE(6251)] = 315064, + [SMALL_STATE(6252)] = 315091, + [SMALL_STATE(6253)] = 315118, + [SMALL_STATE(6254)] = 315141, + [SMALL_STATE(6255)] = 315165, + [SMALL_STATE(6256)] = 315187, + [SMALL_STATE(6257)] = 315211, + [SMALL_STATE(6258)] = 315235, + [SMALL_STATE(6259)] = 315257, + [SMALL_STATE(6260)] = 315281, + [SMALL_STATE(6261)] = 315305, + [SMALL_STATE(6262)] = 315327, + [SMALL_STATE(6263)] = 315351, + [SMALL_STATE(6264)] = 315375, + [SMALL_STATE(6265)] = 315399, + [SMALL_STATE(6266)] = 315423, + [SMALL_STATE(6267)] = 315447, + [SMALL_STATE(6268)] = 315462, + [SMALL_STATE(6269)] = 315483, + [SMALL_STATE(6270)] = 315496, + [SMALL_STATE(6271)] = 315509, + [SMALL_STATE(6272)] = 315522, + [SMALL_STATE(6273)] = 315535, + [SMALL_STATE(6274)] = 315550, + [SMALL_STATE(6275)] = 315565, + [SMALL_STATE(6276)] = 315580, + [SMALL_STATE(6277)] = 315595, + [SMALL_STATE(6278)] = 315608, + [SMALL_STATE(6279)] = 315621, + [SMALL_STATE(6280)] = 315636, + [SMALL_STATE(6281)] = 315651, + [SMALL_STATE(6282)] = 315666, + [SMALL_STATE(6283)] = 315681, + [SMALL_STATE(6284)] = 315696, + [SMALL_STATE(6285)] = 315711, + [SMALL_STATE(6286)] = 315726, + [SMALL_STATE(6287)] = 315743, + [SMALL_STATE(6288)] = 315758, + [SMALL_STATE(6289)] = 315773, + [SMALL_STATE(6290)] = 315786, + [SMALL_STATE(6291)] = 315799, + [SMALL_STATE(6292)] = 315814, + [SMALL_STATE(6293)] = 315829, + [SMALL_STATE(6294)] = 315844, + [SMALL_STATE(6295)] = 315863, + [SMALL_STATE(6296)] = 315878, + [SMALL_STATE(6297)] = 315895, + [SMALL_STATE(6298)] = 315910, + [SMALL_STATE(6299)] = 315925, + [SMALL_STATE(6300)] = 315938, + [SMALL_STATE(6301)] = 315959, + [SMALL_STATE(6302)] = 315980, + [SMALL_STATE(6303)] = 315995, + [SMALL_STATE(6304)] = 316010, + [SMALL_STATE(6305)] = 316025, + [SMALL_STATE(6306)] = 316040, + [SMALL_STATE(6307)] = 316055, + [SMALL_STATE(6308)] = 316070, + [SMALL_STATE(6309)] = 316085, + [SMALL_STATE(6310)] = 316106, + [SMALL_STATE(6311)] = 316121, + [SMALL_STATE(6312)] = 316141, + [SMALL_STATE(6313)] = 316161, + [SMALL_STATE(6314)] = 316181, + [SMALL_STATE(6315)] = 316201, + [SMALL_STATE(6316)] = 316221, + [SMALL_STATE(6317)] = 316241, + [SMALL_STATE(6318)] = 316261, + [SMALL_STATE(6319)] = 316281, + [SMALL_STATE(6320)] = 316295, + [SMALL_STATE(6321)] = 316315, + [SMALL_STATE(6322)] = 316335, + [SMALL_STATE(6323)] = 316355, + [SMALL_STATE(6324)] = 316375, + [SMALL_STATE(6325)] = 316389, + [SMALL_STATE(6326)] = 316409, + [SMALL_STATE(6327)] = 316429, + [SMALL_STATE(6328)] = 316443, + [SMALL_STATE(6329)] = 316463, + [SMALL_STATE(6330)] = 316483, + [SMALL_STATE(6331)] = 316503, + [SMALL_STATE(6332)] = 316523, + [SMALL_STATE(6333)] = 316543, + [SMALL_STATE(6334)] = 316563, + [SMALL_STATE(6335)] = 316583, + [SMALL_STATE(6336)] = 316603, + [SMALL_STATE(6337)] = 316623, + [SMALL_STATE(6338)] = 316643, + [SMALL_STATE(6339)] = 316663, + [SMALL_STATE(6340)] = 316683, + [SMALL_STATE(6341)] = 316703, + [SMALL_STATE(6342)] = 316723, + [SMALL_STATE(6343)] = 316743, + [SMALL_STATE(6344)] = 316763, + [SMALL_STATE(6345)] = 316783, + [SMALL_STATE(6346)] = 316803, + [SMALL_STATE(6347)] = 316823, + [SMALL_STATE(6348)] = 316843, + [SMALL_STATE(6349)] = 316863, + [SMALL_STATE(6350)] = 316883, + [SMALL_STATE(6351)] = 316903, + [SMALL_STATE(6352)] = 316923, + [SMALL_STATE(6353)] = 316937, + [SMALL_STATE(6354)] = 316957, + [SMALL_STATE(6355)] = 316977, + [SMALL_STATE(6356)] = 316997, + [SMALL_STATE(6357)] = 317011, + [SMALL_STATE(6358)] = 317025, + [SMALL_STATE(6359)] = 317045, + [SMALL_STATE(6360)] = 317059, + [SMALL_STATE(6361)] = 317073, + [SMALL_STATE(6362)] = 317093, + [SMALL_STATE(6363)] = 317113, + [SMALL_STATE(6364)] = 317133, + [SMALL_STATE(6365)] = 317153, + [SMALL_STATE(6366)] = 317173, + [SMALL_STATE(6367)] = 317187, + [SMALL_STATE(6368)] = 317201, + [SMALL_STATE(6369)] = 317215, + [SMALL_STATE(6370)] = 317229, + [SMALL_STATE(6371)] = 317249, + [SMALL_STATE(6372)] = 317269, + [SMALL_STATE(6373)] = 317285, + [SMALL_STATE(6374)] = 317305, + [SMALL_STATE(6375)] = 317325, + [SMALL_STATE(6376)] = 317339, + [SMALL_STATE(6377)] = 317359, + [SMALL_STATE(6378)] = 317379, + [SMALL_STATE(6379)] = 317399, + [SMALL_STATE(6380)] = 317413, + [SMALL_STATE(6381)] = 317433, + [SMALL_STATE(6382)] = 317453, + [SMALL_STATE(6383)] = 317473, + [SMALL_STATE(6384)] = 317493, + [SMALL_STATE(6385)] = 317513, + [SMALL_STATE(6386)] = 317533, + [SMALL_STATE(6387)] = 317553, + [SMALL_STATE(6388)] = 317573, + [SMALL_STATE(6389)] = 317593, + [SMALL_STATE(6390)] = 317613, + [SMALL_STATE(6391)] = 317633, + [SMALL_STATE(6392)] = 317653, + [SMALL_STATE(6393)] = 317667, + [SMALL_STATE(6394)] = 317687, + [SMALL_STATE(6395)] = 317707, + [SMALL_STATE(6396)] = 317727, + [SMALL_STATE(6397)] = 317747, + [SMALL_STATE(6398)] = 317767, + [SMALL_STATE(6399)] = 317787, + [SMALL_STATE(6400)] = 317807, + [SMALL_STATE(6401)] = 317827, + [SMALL_STATE(6402)] = 317847, + [SMALL_STATE(6403)] = 317867, + [SMALL_STATE(6404)] = 317887, + [SMALL_STATE(6405)] = 317907, + [SMALL_STATE(6406)] = 317927, + [SMALL_STATE(6407)] = 317941, + [SMALL_STATE(6408)] = 317961, + [SMALL_STATE(6409)] = 317981, + [SMALL_STATE(6410)] = 318001, + [SMALL_STATE(6411)] = 318021, + [SMALL_STATE(6412)] = 318041, + [SMALL_STATE(6413)] = 318055, + [SMALL_STATE(6414)] = 318069, + [SMALL_STATE(6415)] = 318083, + [SMALL_STATE(6416)] = 318103, + [SMALL_STATE(6417)] = 318117, + [SMALL_STATE(6418)] = 318131, + [SMALL_STATE(6419)] = 318145, + [SMALL_STATE(6420)] = 318165, + [SMALL_STATE(6421)] = 318185, + [SMALL_STATE(6422)] = 318205, + [SMALL_STATE(6423)] = 318225, + [SMALL_STATE(6424)] = 318245, + [SMALL_STATE(6425)] = 318265, + [SMALL_STATE(6426)] = 318285, + [SMALL_STATE(6427)] = 318305, + [SMALL_STATE(6428)] = 318325, + [SMALL_STATE(6429)] = 318345, + [SMALL_STATE(6430)] = 318365, + [SMALL_STATE(6431)] = 318385, + [SMALL_STATE(6432)] = 318405, + [SMALL_STATE(6433)] = 318418, + [SMALL_STATE(6434)] = 318429, + [SMALL_STATE(6435)] = 318446, + [SMALL_STATE(6436)] = 318463, + [SMALL_STATE(6437)] = 318482, + [SMALL_STATE(6438)] = 318499, + [SMALL_STATE(6439)] = 318514, + [SMALL_STATE(6440)] = 318529, + [SMALL_STATE(6441)] = 318548, + [SMALL_STATE(6442)] = 318563, + [SMALL_STATE(6443)] = 318582, + [SMALL_STATE(6444)] = 318599, + [SMALL_STATE(6445)] = 318616, + [SMALL_STATE(6446)] = 318633, + [SMALL_STATE(6447)] = 318652, + [SMALL_STATE(6448)] = 318671, + [SMALL_STATE(6449)] = 318688, + [SMALL_STATE(6450)] = 318705, + [SMALL_STATE(6451)] = 318722, + [SMALL_STATE(6452)] = 318737, + [SMALL_STATE(6453)] = 318754, + [SMALL_STATE(6454)] = 318771, + [SMALL_STATE(6455)] = 318784, + [SMALL_STATE(6456)] = 318803, + [SMALL_STATE(6457)] = 318822, + [SMALL_STATE(6458)] = 318839, + [SMALL_STATE(6459)] = 318858, + [SMALL_STATE(6460)] = 318875, + [SMALL_STATE(6461)] = 318890, + [SMALL_STATE(6462)] = 318907, + [SMALL_STATE(6463)] = 318922, + [SMALL_STATE(6464)] = 318937, + [SMALL_STATE(6465)] = 318952, + [SMALL_STATE(6466)] = 318971, + [SMALL_STATE(6467)] = 318990, + [SMALL_STATE(6468)] = 319007, + [SMALL_STATE(6469)] = 319026, + [SMALL_STATE(6470)] = 319045, + [SMALL_STATE(6471)] = 319062, + [SMALL_STATE(6472)] = 319077, + [SMALL_STATE(6473)] = 319096, + [SMALL_STATE(6474)] = 319115, + [SMALL_STATE(6475)] = 319134, + [SMALL_STATE(6476)] = 319149, + [SMALL_STATE(6477)] = 319162, + [SMALL_STATE(6478)] = 319181, + [SMALL_STATE(6479)] = 319200, + [SMALL_STATE(6480)] = 319215, + [SMALL_STATE(6481)] = 319232, + [SMALL_STATE(6482)] = 319247, + [SMALL_STATE(6483)] = 319264, + [SMALL_STATE(6484)] = 319283, + [SMALL_STATE(6485)] = 319294, + [SMALL_STATE(6486)] = 319311, + [SMALL_STATE(6487)] = 319326, + [SMALL_STATE(6488)] = 319341, + [SMALL_STATE(6489)] = 319360, + [SMALL_STATE(6490)] = 319377, + [SMALL_STATE(6491)] = 319394, + [SMALL_STATE(6492)] = 319411, + [SMALL_STATE(6493)] = 319430, + [SMALL_STATE(6494)] = 319449, + [SMALL_STATE(6495)] = 319468, + [SMALL_STATE(6496)] = 319487, + [SMALL_STATE(6497)] = 319502, + [SMALL_STATE(6498)] = 319519, + [SMALL_STATE(6499)] = 319536, + [SMALL_STATE(6500)] = 319555, + [SMALL_STATE(6501)] = 319574, + [SMALL_STATE(6502)] = 319589, + [SMALL_STATE(6503)] = 319604, + [SMALL_STATE(6504)] = 319623, + [SMALL_STATE(6505)] = 319640, + [SMALL_STATE(6506)] = 319655, + [SMALL_STATE(6507)] = 319672, + [SMALL_STATE(6508)] = 319687, + [SMALL_STATE(6509)] = 319704, + [SMALL_STATE(6510)] = 319721, + [SMALL_STATE(6511)] = 319736, + [SMALL_STATE(6512)] = 319753, + [SMALL_STATE(6513)] = 319768, + [SMALL_STATE(6514)] = 319783, + [SMALL_STATE(6515)] = 319798, + [SMALL_STATE(6516)] = 319817, + [SMALL_STATE(6517)] = 319834, + [SMALL_STATE(6518)] = 319849, + [SMALL_STATE(6519)] = 319864, + [SMALL_STATE(6520)] = 319881, + [SMALL_STATE(6521)] = 319898, + [SMALL_STATE(6522)] = 319915, + [SMALL_STATE(6523)] = 319934, + [SMALL_STATE(6524)] = 319953, + [SMALL_STATE(6525)] = 319970, + [SMALL_STATE(6526)] = 319987, + [SMALL_STATE(6527)] = 320004, + [SMALL_STATE(6528)] = 320023, + [SMALL_STATE(6529)] = 320038, + [SMALL_STATE(6530)] = 320057, + [SMALL_STATE(6531)] = 320074, + [SMALL_STATE(6532)] = 320093, + [SMALL_STATE(6533)] = 320112, + [SMALL_STATE(6534)] = 320131, + [SMALL_STATE(6535)] = 320150, + [SMALL_STATE(6536)] = 320169, + [SMALL_STATE(6537)] = 320182, + [SMALL_STATE(6538)] = 320199, + [SMALL_STATE(6539)] = 320212, + [SMALL_STATE(6540)] = 320231, + [SMALL_STATE(6541)] = 320248, + [SMALL_STATE(6542)] = 320267, + [SMALL_STATE(6543)] = 320278, + [SMALL_STATE(6544)] = 320293, + [SMALL_STATE(6545)] = 320309, + [SMALL_STATE(6546)] = 320323, + [SMALL_STATE(6547)] = 320333, + [SMALL_STATE(6548)] = 320343, + [SMALL_STATE(6549)] = 320353, + [SMALL_STATE(6550)] = 320369, + [SMALL_STATE(6551)] = 320379, + [SMALL_STATE(6552)] = 320389, + [SMALL_STATE(6553)] = 320399, + [SMALL_STATE(6554)] = 320409, + [SMALL_STATE(6555)] = 320419, + [SMALL_STATE(6556)] = 320429, + [SMALL_STATE(6557)] = 320439, + [SMALL_STATE(6558)] = 320451, + [SMALL_STATE(6559)] = 320467, + [SMALL_STATE(6560)] = 320477, + [SMALL_STATE(6561)] = 320493, + [SMALL_STATE(6562)] = 320503, + [SMALL_STATE(6563)] = 320519, + [SMALL_STATE(6564)] = 320529, + [SMALL_STATE(6565)] = 320539, + [SMALL_STATE(6566)] = 320549, + [SMALL_STATE(6567)] = 320559, + [SMALL_STATE(6568)] = 320569, + [SMALL_STATE(6569)] = 320579, + [SMALL_STATE(6570)] = 320593, + [SMALL_STATE(6571)] = 320607, + [SMALL_STATE(6572)] = 320617, + [SMALL_STATE(6573)] = 320631, + [SMALL_STATE(6574)] = 320645, + [SMALL_STATE(6575)] = 320655, + [SMALL_STATE(6576)] = 320667, + [SMALL_STATE(6577)] = 320681, + [SMALL_STATE(6578)] = 320695, + [SMALL_STATE(6579)] = 320711, + [SMALL_STATE(6580)] = 320721, + [SMALL_STATE(6581)] = 320737, + [SMALL_STATE(6582)] = 320753, + [SMALL_STATE(6583)] = 320763, + [SMALL_STATE(6584)] = 320773, + [SMALL_STATE(6585)] = 320783, + [SMALL_STATE(6586)] = 320799, + [SMALL_STATE(6587)] = 320815, + [SMALL_STATE(6588)] = 320825, + [SMALL_STATE(6589)] = 320841, + [SMALL_STATE(6590)] = 320857, + [SMALL_STATE(6591)] = 320869, + [SMALL_STATE(6592)] = 320885, + [SMALL_STATE(6593)] = 320895, + [SMALL_STATE(6594)] = 320905, + [SMALL_STATE(6595)] = 320915, + [SMALL_STATE(6596)] = 320931, + [SMALL_STATE(6597)] = 320941, + [SMALL_STATE(6598)] = 320957, + [SMALL_STATE(6599)] = 320967, + [SMALL_STATE(6600)] = 320977, + [SMALL_STATE(6601)] = 320987, + [SMALL_STATE(6602)] = 320997, + [SMALL_STATE(6603)] = 321007, + [SMALL_STATE(6604)] = 321017, + [SMALL_STATE(6605)] = 321027, + [SMALL_STATE(6606)] = 321037, + [SMALL_STATE(6607)] = 321047, + [SMALL_STATE(6608)] = 321057, + [SMALL_STATE(6609)] = 321067, + [SMALL_STATE(6610)] = 321077, + [SMALL_STATE(6611)] = 321087, + [SMALL_STATE(6612)] = 321097, + [SMALL_STATE(6613)] = 321111, + [SMALL_STATE(6614)] = 321124, + [SMALL_STATE(6615)] = 321137, + [SMALL_STATE(6616)] = 321146, + [SMALL_STATE(6617)] = 321157, + [SMALL_STATE(6618)] = 321170, + [SMALL_STATE(6619)] = 321183, + [SMALL_STATE(6620)] = 321194, + [SMALL_STATE(6621)] = 321207, + [SMALL_STATE(6622)] = 321220, + [SMALL_STATE(6623)] = 321233, + [SMALL_STATE(6624)] = 321246, + [SMALL_STATE(6625)] = 321257, + [SMALL_STATE(6626)] = 321270, + [SMALL_STATE(6627)] = 321283, + [SMALL_STATE(6628)] = 321296, + [SMALL_STATE(6629)] = 321307, + [SMALL_STATE(6630)] = 321320, + [SMALL_STATE(6631)] = 321331, + [SMALL_STATE(6632)] = 321344, + [SMALL_STATE(6633)] = 321355, + [SMALL_STATE(6634)] = 321368, + [SMALL_STATE(6635)] = 321381, + [SMALL_STATE(6636)] = 321394, + [SMALL_STATE(6637)] = 321407, + [SMALL_STATE(6638)] = 321416, + [SMALL_STATE(6639)] = 321427, + [SMALL_STATE(6640)] = 321440, + [SMALL_STATE(6641)] = 321453, + [SMALL_STATE(6642)] = 321464, + [SMALL_STATE(6643)] = 321477, + [SMALL_STATE(6644)] = 321490, + [SMALL_STATE(6645)] = 321501, + [SMALL_STATE(6646)] = 321514, + [SMALL_STATE(6647)] = 321527, + [SMALL_STATE(6648)] = 321540, + [SMALL_STATE(6649)] = 321553, + [SMALL_STATE(6650)] = 321564, + [SMALL_STATE(6651)] = 321577, + [SMALL_STATE(6652)] = 321590, + [SMALL_STATE(6653)] = 321601, + [SMALL_STATE(6654)] = 321614, + [SMALL_STATE(6655)] = 321627, + [SMALL_STATE(6656)] = 321640, + [SMALL_STATE(6657)] = 321653, + [SMALL_STATE(6658)] = 321664, + [SMALL_STATE(6659)] = 321677, + [SMALL_STATE(6660)] = 321690, + [SMALL_STATE(6661)] = 321703, + [SMALL_STATE(6662)] = 321716, + [SMALL_STATE(6663)] = 321729, + [SMALL_STATE(6664)] = 321742, + [SMALL_STATE(6665)] = 321755, + [SMALL_STATE(6666)] = 321768, + [SMALL_STATE(6667)] = 321781, + [SMALL_STATE(6668)] = 321794, + [SMALL_STATE(6669)] = 321805, + [SMALL_STATE(6670)] = 321814, + [SMALL_STATE(6671)] = 321827, + [SMALL_STATE(6672)] = 321836, + [SMALL_STATE(6673)] = 321849, + [SMALL_STATE(6674)] = 321860, + [SMALL_STATE(6675)] = 321869, + [SMALL_STATE(6676)] = 321882, + [SMALL_STATE(6677)] = 321895, + [SMALL_STATE(6678)] = 321908, + [SMALL_STATE(6679)] = 321917, + [SMALL_STATE(6680)] = 321930, + [SMALL_STATE(6681)] = 321941, + [SMALL_STATE(6682)] = 321954, + [SMALL_STATE(6683)] = 321967, + [SMALL_STATE(6684)] = 321980, + [SMALL_STATE(6685)] = 321993, + [SMALL_STATE(6686)] = 322002, + [SMALL_STATE(6687)] = 322011, + [SMALL_STATE(6688)] = 322024, + [SMALL_STATE(6689)] = 322037, + [SMALL_STATE(6690)] = 322050, + [SMALL_STATE(6691)] = 322063, + [SMALL_STATE(6692)] = 322076, + [SMALL_STATE(6693)] = 322085, + [SMALL_STATE(6694)] = 322098, + [SMALL_STATE(6695)] = 322111, + [SMALL_STATE(6696)] = 322122, + [SMALL_STATE(6697)] = 322135, + [SMALL_STATE(6698)] = 322146, + [SMALL_STATE(6699)] = 322159, + [SMALL_STATE(6700)] = 322172, + [SMALL_STATE(6701)] = 322185, + [SMALL_STATE(6702)] = 322198, + [SMALL_STATE(6703)] = 322211, + [SMALL_STATE(6704)] = 322220, + [SMALL_STATE(6705)] = 322229, + [SMALL_STATE(6706)] = 322238, + [SMALL_STATE(6707)] = 322251, + [SMALL_STATE(6708)] = 322264, + [SMALL_STATE(6709)] = 322277, + [SMALL_STATE(6710)] = 322290, + [SMALL_STATE(6711)] = 322303, + [SMALL_STATE(6712)] = 322314, + [SMALL_STATE(6713)] = 322327, + [SMALL_STATE(6714)] = 322336, + [SMALL_STATE(6715)] = 322349, + [SMALL_STATE(6716)] = 322360, + [SMALL_STATE(6717)] = 322373, + [SMALL_STATE(6718)] = 322384, + [SMALL_STATE(6719)] = 322397, + [SMALL_STATE(6720)] = 322410, + [SMALL_STATE(6721)] = 322423, + [SMALL_STATE(6722)] = 322436, + [SMALL_STATE(6723)] = 322449, + [SMALL_STATE(6724)] = 322462, + [SMALL_STATE(6725)] = 322475, + [SMALL_STATE(6726)] = 322488, + [SMALL_STATE(6727)] = 322501, + [SMALL_STATE(6728)] = 322514, + [SMALL_STATE(6729)] = 322527, + [SMALL_STATE(6730)] = 322540, + [SMALL_STATE(6731)] = 322551, + [SMALL_STATE(6732)] = 322564, + [SMALL_STATE(6733)] = 322577, + [SMALL_STATE(6734)] = 322590, + [SMALL_STATE(6735)] = 322603, + [SMALL_STATE(6736)] = 322616, + [SMALL_STATE(6737)] = 322627, + [SMALL_STATE(6738)] = 322640, + [SMALL_STATE(6739)] = 322653, + [SMALL_STATE(6740)] = 322666, + [SMALL_STATE(6741)] = 322679, + [SMALL_STATE(6742)] = 322692, + [SMALL_STATE(6743)] = 322705, + [SMALL_STATE(6744)] = 322718, + [SMALL_STATE(6745)] = 322731, + [SMALL_STATE(6746)] = 322744, + [SMALL_STATE(6747)] = 322757, + [SMALL_STATE(6748)] = 322768, + [SMALL_STATE(6749)] = 322781, + [SMALL_STATE(6750)] = 322794, + [SMALL_STATE(6751)] = 322807, + [SMALL_STATE(6752)] = 322820, + [SMALL_STATE(6753)] = 322831, + [SMALL_STATE(6754)] = 322842, + [SMALL_STATE(6755)] = 322855, + [SMALL_STATE(6756)] = 322868, + [SMALL_STATE(6757)] = 322879, + [SMALL_STATE(6758)] = 322888, + [SMALL_STATE(6759)] = 322901, + [SMALL_STATE(6760)] = 322912, + [SMALL_STATE(6761)] = 322925, + [SMALL_STATE(6762)] = 322938, + [SMALL_STATE(6763)] = 322951, + [SMALL_STATE(6764)] = 322964, + [SMALL_STATE(6765)] = 322977, + [SMALL_STATE(6766)] = 322990, + [SMALL_STATE(6767)] = 323003, + [SMALL_STATE(6768)] = 323016, + [SMALL_STATE(6769)] = 323029, + [SMALL_STATE(6770)] = 323042, + [SMALL_STATE(6771)] = 323053, + [SMALL_STATE(6772)] = 323064, + [SMALL_STATE(6773)] = 323077, + [SMALL_STATE(6774)] = 323090, + [SMALL_STATE(6775)] = 323103, + [SMALL_STATE(6776)] = 323116, + [SMALL_STATE(6777)] = 323129, + [SMALL_STATE(6778)] = 323142, + [SMALL_STATE(6779)] = 323155, + [SMALL_STATE(6780)] = 323166, + [SMALL_STATE(6781)] = 323179, + [SMALL_STATE(6782)] = 323192, + [SMALL_STATE(6783)] = 323203, + [SMALL_STATE(6784)] = 323214, + [SMALL_STATE(6785)] = 323225, + [SMALL_STATE(6786)] = 323238, + [SMALL_STATE(6787)] = 323251, + [SMALL_STATE(6788)] = 323262, + [SMALL_STATE(6789)] = 323275, + [SMALL_STATE(6790)] = 323288, + [SMALL_STATE(6791)] = 323301, + [SMALL_STATE(6792)] = 323314, + [SMALL_STATE(6793)] = 323324, + [SMALL_STATE(6794)] = 323332, + [SMALL_STATE(6795)] = 323342, + [SMALL_STATE(6796)] = 323350, + [SMALL_STATE(6797)] = 323358, + [SMALL_STATE(6798)] = 323366, + [SMALL_STATE(6799)] = 323374, + [SMALL_STATE(6800)] = 323384, + [SMALL_STATE(6801)] = 323394, + [SMALL_STATE(6802)] = 323404, + [SMALL_STATE(6803)] = 323412, + [SMALL_STATE(6804)] = 323420, + [SMALL_STATE(6805)] = 323430, + [SMALL_STATE(6806)] = 323438, + [SMALL_STATE(6807)] = 323446, + [SMALL_STATE(6808)] = 323456, + [SMALL_STATE(6809)] = 323466, + [SMALL_STATE(6810)] = 323474, + [SMALL_STATE(6811)] = 323484, + [SMALL_STATE(6812)] = 323492, + [SMALL_STATE(6813)] = 323500, + [SMALL_STATE(6814)] = 323508, + [SMALL_STATE(6815)] = 323516, + [SMALL_STATE(6816)] = 323524, + [SMALL_STATE(6817)] = 323532, + [SMALL_STATE(6818)] = 323542, + [SMALL_STATE(6819)] = 323552, + [SMALL_STATE(6820)] = 323560, + [SMALL_STATE(6821)] = 323568, + [SMALL_STATE(6822)] = 323576, + [SMALL_STATE(6823)] = 323586, + [SMALL_STATE(6824)] = 323594, + [SMALL_STATE(6825)] = 323604, + [SMALL_STATE(6826)] = 323612, + [SMALL_STATE(6827)] = 323620, + [SMALL_STATE(6828)] = 323628, + [SMALL_STATE(6829)] = 323636, + [SMALL_STATE(6830)] = 323644, + [SMALL_STATE(6831)] = 323652, + [SMALL_STATE(6832)] = 323660, + [SMALL_STATE(6833)] = 323670, + [SMALL_STATE(6834)] = 323680, + [SMALL_STATE(6835)] = 323688, + [SMALL_STATE(6836)] = 323696, + [SMALL_STATE(6837)] = 323704, + [SMALL_STATE(6838)] = 323714, + [SMALL_STATE(6839)] = 323724, + [SMALL_STATE(6840)] = 323732, + [SMALL_STATE(6841)] = 323740, + [SMALL_STATE(6842)] = 323750, + [SMALL_STATE(6843)] = 323760, + [SMALL_STATE(6844)] = 323768, + [SMALL_STATE(6845)] = 323778, + [SMALL_STATE(6846)] = 323786, + [SMALL_STATE(6847)] = 323794, + [SMALL_STATE(6848)] = 323804, + [SMALL_STATE(6849)] = 323814, + [SMALL_STATE(6850)] = 323822, + [SMALL_STATE(6851)] = 323830, + [SMALL_STATE(6852)] = 323838, + [SMALL_STATE(6853)] = 323846, + [SMALL_STATE(6854)] = 323854, + [SMALL_STATE(6855)] = 323864, + [SMALL_STATE(6856)] = 323872, + [SMALL_STATE(6857)] = 323882, + [SMALL_STATE(6858)] = 323892, + [SMALL_STATE(6859)] = 323899, + [SMALL_STATE(6860)] = 323906, + [SMALL_STATE(6861)] = 323913, + [SMALL_STATE(6862)] = 323920, + [SMALL_STATE(6863)] = 323927, + [SMALL_STATE(6864)] = 323934, + [SMALL_STATE(6865)] = 323941, + [SMALL_STATE(6866)] = 323948, + [SMALL_STATE(6867)] = 323955, + [SMALL_STATE(6868)] = 323962, + [SMALL_STATE(6869)] = 323969, + [SMALL_STATE(6870)] = 323976, + [SMALL_STATE(6871)] = 323983, + [SMALL_STATE(6872)] = 323990, + [SMALL_STATE(6873)] = 323997, + [SMALL_STATE(6874)] = 324004, + [SMALL_STATE(6875)] = 324011, + [SMALL_STATE(6876)] = 324018, + [SMALL_STATE(6877)] = 324025, + [SMALL_STATE(6878)] = 324032, + [SMALL_STATE(6879)] = 324039, + [SMALL_STATE(6880)] = 324046, + [SMALL_STATE(6881)] = 324053, + [SMALL_STATE(6882)] = 324060, + [SMALL_STATE(6883)] = 324067, + [SMALL_STATE(6884)] = 324074, + [SMALL_STATE(6885)] = 324081, + [SMALL_STATE(6886)] = 324088, + [SMALL_STATE(6887)] = 324095, + [SMALL_STATE(6888)] = 324102, + [SMALL_STATE(6889)] = 324109, + [SMALL_STATE(6890)] = 324116, + [SMALL_STATE(6891)] = 324123, + [SMALL_STATE(6892)] = 324130, + [SMALL_STATE(6893)] = 324137, + [SMALL_STATE(6894)] = 324144, + [SMALL_STATE(6895)] = 324151, + [SMALL_STATE(6896)] = 324158, + [SMALL_STATE(6897)] = 324165, + [SMALL_STATE(6898)] = 324172, + [SMALL_STATE(6899)] = 324179, + [SMALL_STATE(6900)] = 324186, + [SMALL_STATE(6901)] = 324193, + [SMALL_STATE(6902)] = 324200, + [SMALL_STATE(6903)] = 324207, + [SMALL_STATE(6904)] = 324214, + [SMALL_STATE(6905)] = 324221, + [SMALL_STATE(6906)] = 324228, + [SMALL_STATE(6907)] = 324235, + [SMALL_STATE(6908)] = 324242, + [SMALL_STATE(6909)] = 324249, + [SMALL_STATE(6910)] = 324256, + [SMALL_STATE(6911)] = 324263, + [SMALL_STATE(6912)] = 324270, + [SMALL_STATE(6913)] = 324277, + [SMALL_STATE(6914)] = 324284, + [SMALL_STATE(6915)] = 324291, + [SMALL_STATE(6916)] = 324298, + [SMALL_STATE(6917)] = 324305, + [SMALL_STATE(6918)] = 324312, + [SMALL_STATE(6919)] = 324319, + [SMALL_STATE(6920)] = 324326, + [SMALL_STATE(6921)] = 324333, + [SMALL_STATE(6922)] = 324340, + [SMALL_STATE(6923)] = 324347, + [SMALL_STATE(6924)] = 324354, + [SMALL_STATE(6925)] = 324361, + [SMALL_STATE(6926)] = 324368, + [SMALL_STATE(6927)] = 324375, + [SMALL_STATE(6928)] = 324382, + [SMALL_STATE(6929)] = 324389, + [SMALL_STATE(6930)] = 324396, + [SMALL_STATE(6931)] = 324403, + [SMALL_STATE(6932)] = 324410, + [SMALL_STATE(6933)] = 324417, + [SMALL_STATE(6934)] = 324424, + [SMALL_STATE(6935)] = 324431, + [SMALL_STATE(6936)] = 324438, + [SMALL_STATE(6937)] = 324445, + [SMALL_STATE(6938)] = 324452, + [SMALL_STATE(6939)] = 324459, + [SMALL_STATE(6940)] = 324466, + [SMALL_STATE(6941)] = 324473, + [SMALL_STATE(6942)] = 324480, + [SMALL_STATE(6943)] = 324487, + [SMALL_STATE(6944)] = 324494, + [SMALL_STATE(6945)] = 324501, + [SMALL_STATE(6946)] = 324508, + [SMALL_STATE(6947)] = 324515, + [SMALL_STATE(6948)] = 324522, + [SMALL_STATE(6949)] = 324529, + [SMALL_STATE(6950)] = 324536, + [SMALL_STATE(6951)] = 324543, + [SMALL_STATE(6952)] = 324550, + [SMALL_STATE(6953)] = 324557, + [SMALL_STATE(6954)] = 324564, + [SMALL_STATE(6955)] = 324571, + [SMALL_STATE(6956)] = 324578, + [SMALL_STATE(6957)] = 324585, + [SMALL_STATE(6958)] = 324592, + [SMALL_STATE(6959)] = 324599, + [SMALL_STATE(6960)] = 324606, + [SMALL_STATE(6961)] = 324613, + [SMALL_STATE(6962)] = 324620, + [SMALL_STATE(6963)] = 324627, + [SMALL_STATE(6964)] = 324634, + [SMALL_STATE(6965)] = 324641, + [SMALL_STATE(6966)] = 324648, + [SMALL_STATE(6967)] = 324655, + [SMALL_STATE(6968)] = 324662, + [SMALL_STATE(6969)] = 324669, + [SMALL_STATE(6970)] = 324676, + [SMALL_STATE(6971)] = 324683, + [SMALL_STATE(6972)] = 324690, + [SMALL_STATE(6973)] = 324697, + [SMALL_STATE(6974)] = 324704, + [SMALL_STATE(6975)] = 324711, + [SMALL_STATE(6976)] = 324718, + [SMALL_STATE(6977)] = 324725, + [SMALL_STATE(6978)] = 324732, + [SMALL_STATE(6979)] = 324739, + [SMALL_STATE(6980)] = 324746, + [SMALL_STATE(6981)] = 324753, + [SMALL_STATE(6982)] = 324760, + [SMALL_STATE(6983)] = 324767, + [SMALL_STATE(6984)] = 324774, + [SMALL_STATE(6985)] = 324781, + [SMALL_STATE(6986)] = 324788, + [SMALL_STATE(6987)] = 324795, + [SMALL_STATE(6988)] = 324802, + [SMALL_STATE(6989)] = 324809, + [SMALL_STATE(6990)] = 324816, + [SMALL_STATE(6991)] = 324823, + [SMALL_STATE(6992)] = 324830, + [SMALL_STATE(6993)] = 324837, + [SMALL_STATE(6994)] = 324844, + [SMALL_STATE(6995)] = 324851, + [SMALL_STATE(6996)] = 324858, + [SMALL_STATE(6997)] = 324865, + [SMALL_STATE(6998)] = 324872, + [SMALL_STATE(6999)] = 324879, + [SMALL_STATE(7000)] = 324886, + [SMALL_STATE(7001)] = 324893, + [SMALL_STATE(7002)] = 324900, + [SMALL_STATE(7003)] = 324907, + [SMALL_STATE(7004)] = 324914, + [SMALL_STATE(7005)] = 324921, + [SMALL_STATE(7006)] = 324928, + [SMALL_STATE(7007)] = 324935, + [SMALL_STATE(7008)] = 324942, + [SMALL_STATE(7009)] = 324949, + [SMALL_STATE(7010)] = 324956, + [SMALL_STATE(7011)] = 324963, + [SMALL_STATE(7012)] = 324970, + [SMALL_STATE(7013)] = 324977, + [SMALL_STATE(7014)] = 324984, + [SMALL_STATE(7015)] = 324991, + [SMALL_STATE(7016)] = 324998, + [SMALL_STATE(7017)] = 325005, + [SMALL_STATE(7018)] = 325012, + [SMALL_STATE(7019)] = 325019, + [SMALL_STATE(7020)] = 325026, + [SMALL_STATE(7021)] = 325033, + [SMALL_STATE(7022)] = 325040, + [SMALL_STATE(7023)] = 325047, + [SMALL_STATE(7024)] = 325054, + [SMALL_STATE(7025)] = 325061, + [SMALL_STATE(7026)] = 325068, + [SMALL_STATE(7027)] = 325075, + [SMALL_STATE(7028)] = 325082, + [SMALL_STATE(7029)] = 325089, + [SMALL_STATE(7030)] = 325096, + [SMALL_STATE(7031)] = 325103, + [SMALL_STATE(7032)] = 325110, + [SMALL_STATE(7033)] = 325117, + [SMALL_STATE(7034)] = 325124, + [SMALL_STATE(7035)] = 325131, + [SMALL_STATE(7036)] = 325138, + [SMALL_STATE(7037)] = 325145, + [SMALL_STATE(7038)] = 325152, + [SMALL_STATE(7039)] = 325159, + [SMALL_STATE(7040)] = 325166, + [SMALL_STATE(7041)] = 325173, + [SMALL_STATE(7042)] = 325180, + [SMALL_STATE(7043)] = 325187, + [SMALL_STATE(7044)] = 325194, + [SMALL_STATE(7045)] = 325201, + [SMALL_STATE(7046)] = 325208, + [SMALL_STATE(7047)] = 325215, + [SMALL_STATE(7048)] = 325222, + [SMALL_STATE(7049)] = 325229, + [SMALL_STATE(7050)] = 325236, + [SMALL_STATE(7051)] = 325243, + [SMALL_STATE(7052)] = 325250, + [SMALL_STATE(7053)] = 325257, + [SMALL_STATE(7054)] = 325264, + [SMALL_STATE(7055)] = 325271, + [SMALL_STATE(7056)] = 325278, + [SMALL_STATE(7057)] = 325285, + [SMALL_STATE(7058)] = 325292, + [SMALL_STATE(7059)] = 325299, + [SMALL_STATE(7060)] = 325306, + [SMALL_STATE(7061)] = 325313, + [SMALL_STATE(7062)] = 325320, + [SMALL_STATE(7063)] = 325327, + [SMALL_STATE(7064)] = 325334, + [SMALL_STATE(7065)] = 325341, + [SMALL_STATE(7066)] = 325348, + [SMALL_STATE(7067)] = 325355, + [SMALL_STATE(7068)] = 325362, + [SMALL_STATE(7069)] = 325369, + [SMALL_STATE(7070)] = 325376, + [SMALL_STATE(7071)] = 325383, + [SMALL_STATE(7072)] = 325390, + [SMALL_STATE(7073)] = 325397, + [SMALL_STATE(7074)] = 325404, + [SMALL_STATE(7075)] = 325411, + [SMALL_STATE(7076)] = 325418, + [SMALL_STATE(7077)] = 325425, + [SMALL_STATE(7078)] = 325432, + [SMALL_STATE(7079)] = 325439, + [SMALL_STATE(7080)] = 325446, + [SMALL_STATE(7081)] = 325453, + [SMALL_STATE(7082)] = 325460, + [SMALL_STATE(7083)] = 325467, + [SMALL_STATE(7084)] = 325474, + [SMALL_STATE(7085)] = 325481, + [SMALL_STATE(7086)] = 325488, + [SMALL_STATE(7087)] = 325495, + [SMALL_STATE(7088)] = 325502, + [SMALL_STATE(7089)] = 325509, + [SMALL_STATE(7090)] = 325516, + [SMALL_STATE(7091)] = 325523, + [SMALL_STATE(7092)] = 325530, + [SMALL_STATE(7093)] = 325537, + [SMALL_STATE(7094)] = 325544, + [SMALL_STATE(7095)] = 325551, + [SMALL_STATE(7096)] = 325558, + [SMALL_STATE(7097)] = 325565, + [SMALL_STATE(7098)] = 325572, + [SMALL_STATE(7099)] = 325579, + [SMALL_STATE(7100)] = 325586, + [SMALL_STATE(7101)] = 325593, + [SMALL_STATE(7102)] = 325600, + [SMALL_STATE(7103)] = 325607, + [SMALL_STATE(7104)] = 325614, + [SMALL_STATE(7105)] = 325621, + [SMALL_STATE(7106)] = 325628, + [SMALL_STATE(7107)] = 325635, + [SMALL_STATE(7108)] = 325642, + [SMALL_STATE(7109)] = 325649, + [SMALL_STATE(7110)] = 325656, + [SMALL_STATE(7111)] = 325663, + [SMALL_STATE(7112)] = 325670, + [SMALL_STATE(7113)] = 325677, + [SMALL_STATE(7114)] = 325684, + [SMALL_STATE(7115)] = 325691, + [SMALL_STATE(7116)] = 325698, + [SMALL_STATE(7117)] = 325705, + [SMALL_STATE(7118)] = 325712, + [SMALL_STATE(7119)] = 325719, + [SMALL_STATE(7120)] = 325726, + [SMALL_STATE(7121)] = 325733, + [SMALL_STATE(7122)] = 325740, + [SMALL_STATE(7123)] = 325747, + [SMALL_STATE(7124)] = 325754, + [SMALL_STATE(7125)] = 325761, + [SMALL_STATE(7126)] = 325768, + [SMALL_STATE(7127)] = 325775, + [SMALL_STATE(7128)] = 325782, + [SMALL_STATE(7129)] = 325789, + [SMALL_STATE(7130)] = 325796, + [SMALL_STATE(7131)] = 325803, + [SMALL_STATE(7132)] = 325810, + [SMALL_STATE(7133)] = 325817, + [SMALL_STATE(7134)] = 325824, + [SMALL_STATE(7135)] = 325831, + [SMALL_STATE(7136)] = 325838, + [SMALL_STATE(7137)] = 325845, + [SMALL_STATE(7138)] = 325852, + [SMALL_STATE(7139)] = 325859, + [SMALL_STATE(7140)] = 325866, + [SMALL_STATE(7141)] = 325873, + [SMALL_STATE(7142)] = 325880, + [SMALL_STATE(7143)] = 325887, + [SMALL_STATE(7144)] = 325894, + [SMALL_STATE(7145)] = 325901, + [SMALL_STATE(7146)] = 325908, + [SMALL_STATE(7147)] = 325915, + [SMALL_STATE(7148)] = 325922, + [SMALL_STATE(7149)] = 325929, + [SMALL_STATE(7150)] = 325936, + [SMALL_STATE(7151)] = 325943, + [SMALL_STATE(7152)] = 325950, + [SMALL_STATE(7153)] = 325957, + [SMALL_STATE(7154)] = 325964, + [SMALL_STATE(7155)] = 325971, + [SMALL_STATE(7156)] = 325978, + [SMALL_STATE(7157)] = 325985, + [SMALL_STATE(7158)] = 325992, + [SMALL_STATE(7159)] = 325999, + [SMALL_STATE(7160)] = 326006, + [SMALL_STATE(7161)] = 326013, + [SMALL_STATE(7162)] = 326020, + [SMALL_STATE(7163)] = 326027, + [SMALL_STATE(7164)] = 326034, + [SMALL_STATE(7165)] = 326041, + [SMALL_STATE(7166)] = 326048, + [SMALL_STATE(7167)] = 326055, + [SMALL_STATE(7168)] = 326062, + [SMALL_STATE(7169)] = 326069, + [SMALL_STATE(7170)] = 326076, + [SMALL_STATE(7171)] = 326083, + [SMALL_STATE(7172)] = 326090, + [SMALL_STATE(7173)] = 326097, + [SMALL_STATE(7174)] = 326104, + [SMALL_STATE(7175)] = 326111, + [SMALL_STATE(7176)] = 326118, + [SMALL_STATE(7177)] = 326125, + [SMALL_STATE(7178)] = 326132, + [SMALL_STATE(7179)] = 326139, + [SMALL_STATE(7180)] = 326146, + [SMALL_STATE(7181)] = 326153, + [SMALL_STATE(7182)] = 326160, + [SMALL_STATE(7183)] = 326167, + [SMALL_STATE(7184)] = 326174, + [SMALL_STATE(7185)] = 326181, + [SMALL_STATE(7186)] = 326188, + [SMALL_STATE(7187)] = 326195, + [SMALL_STATE(7188)] = 326202, + [SMALL_STATE(7189)] = 326209, + [SMALL_STATE(7190)] = 326216, + [SMALL_STATE(7191)] = 326223, + [SMALL_STATE(7192)] = 326230, + [SMALL_STATE(7193)] = 326237, + [SMALL_STATE(7194)] = 326244, + [SMALL_STATE(7195)] = 326251, + [SMALL_STATE(7196)] = 326258, + [SMALL_STATE(7197)] = 326265, + [SMALL_STATE(7198)] = 326272, + [SMALL_STATE(7199)] = 326279, + [SMALL_STATE(7200)] = 326286, + [SMALL_STATE(7201)] = 326293, + [SMALL_STATE(7202)] = 326300, + [SMALL_STATE(7203)] = 326307, + [SMALL_STATE(7204)] = 326314, + [SMALL_STATE(7205)] = 326321, + [SMALL_STATE(7206)] = 326328, + [SMALL_STATE(7207)] = 326335, + [SMALL_STATE(7208)] = 326342, + [SMALL_STATE(7209)] = 326349, + [SMALL_STATE(7210)] = 326356, + [SMALL_STATE(7211)] = 326363, + [SMALL_STATE(7212)] = 326370, + [SMALL_STATE(7213)] = 326377, + [SMALL_STATE(7214)] = 326384, + [SMALL_STATE(7215)] = 326391, + [SMALL_STATE(7216)] = 326398, + [SMALL_STATE(7217)] = 326405, + [SMALL_STATE(7218)] = 326412, + [SMALL_STATE(7219)] = 326419, + [SMALL_STATE(7220)] = 326426, + [SMALL_STATE(7221)] = 326433, + [SMALL_STATE(7222)] = 326440, + [SMALL_STATE(7223)] = 326447, + [SMALL_STATE(7224)] = 326454, + [SMALL_STATE(7225)] = 326461, + [SMALL_STATE(7226)] = 326468, + [SMALL_STATE(7227)] = 326475, + [SMALL_STATE(7228)] = 326482, + [SMALL_STATE(7229)] = 326489, + [SMALL_STATE(7230)] = 326496, + [SMALL_STATE(7231)] = 326503, + [SMALL_STATE(7232)] = 326510, + [SMALL_STATE(7233)] = 326517, + [SMALL_STATE(7234)] = 326524, + [SMALL_STATE(7235)] = 326531, + [SMALL_STATE(7236)] = 326538, + [SMALL_STATE(7237)] = 326545, + [SMALL_STATE(7238)] = 326552, + [SMALL_STATE(7239)] = 326559, + [SMALL_STATE(7240)] = 326566, + [SMALL_STATE(7241)] = 326573, + [SMALL_STATE(7242)] = 326580, + [SMALL_STATE(7243)] = 326587, + [SMALL_STATE(7244)] = 326594, + [SMALL_STATE(7245)] = 326601, + [SMALL_STATE(7246)] = 326608, + [SMALL_STATE(7247)] = 326615, + [SMALL_STATE(7248)] = 326622, + [SMALL_STATE(7249)] = 326629, + [SMALL_STATE(7250)] = 326636, + [SMALL_STATE(7251)] = 326643, + [SMALL_STATE(7252)] = 326650, + [SMALL_STATE(7253)] = 326657, + [SMALL_STATE(7254)] = 326664, + [SMALL_STATE(7255)] = 326671, + [SMALL_STATE(7256)] = 326678, + [SMALL_STATE(7257)] = 326685, + [SMALL_STATE(7258)] = 326692, + [SMALL_STATE(7259)] = 326699, + [SMALL_STATE(7260)] = 326706, + [SMALL_STATE(7261)] = 326713, + [SMALL_STATE(7262)] = 326720, + [SMALL_STATE(7263)] = 326727, + [SMALL_STATE(7264)] = 326734, + [SMALL_STATE(7265)] = 326741, + [SMALL_STATE(7266)] = 326748, + [SMALL_STATE(7267)] = 326755, + [SMALL_STATE(7268)] = 326762, + [SMALL_STATE(7269)] = 326769, + [SMALL_STATE(7270)] = 326776, + [SMALL_STATE(7271)] = 326783, + [SMALL_STATE(7272)] = 326790, + [SMALL_STATE(7273)] = 326797, + [SMALL_STATE(7274)] = 326804, + [SMALL_STATE(7275)] = 326811, + [SMALL_STATE(7276)] = 326818, + [SMALL_STATE(7277)] = 326825, + [SMALL_STATE(7278)] = 326832, + [SMALL_STATE(7279)] = 326839, + [SMALL_STATE(7280)] = 326846, + [SMALL_STATE(7281)] = 326853, + [SMALL_STATE(7282)] = 326860, + [SMALL_STATE(7283)] = 326867, + [SMALL_STATE(7284)] = 326874, + [SMALL_STATE(7285)] = 326881, + [SMALL_STATE(7286)] = 326888, + [SMALL_STATE(7287)] = 326895, + [SMALL_STATE(7288)] = 326902, + [SMALL_STATE(7289)] = 326909, + [SMALL_STATE(7290)] = 326916, + [SMALL_STATE(7291)] = 326923, + [SMALL_STATE(7292)] = 326930, + [SMALL_STATE(7293)] = 326937, + [SMALL_STATE(7294)] = 326944, + [SMALL_STATE(7295)] = 326951, + [SMALL_STATE(7296)] = 326958, + [SMALL_STATE(7297)] = 326965, + [SMALL_STATE(7298)] = 326972, + [SMALL_STATE(7299)] = 326979, + [SMALL_STATE(7300)] = 326986, + [SMALL_STATE(7301)] = 326993, + [SMALL_STATE(7302)] = 327000, + [SMALL_STATE(7303)] = 327007, + [SMALL_STATE(7304)] = 327014, + [SMALL_STATE(7305)] = 327021, + [SMALL_STATE(7306)] = 327028, + [SMALL_STATE(7307)] = 327035, + [SMALL_STATE(7308)] = 327042, + [SMALL_STATE(7309)] = 327049, + [SMALL_STATE(7310)] = 327056, + [SMALL_STATE(7311)] = 327063, + [SMALL_STATE(7312)] = 327070, + [SMALL_STATE(7313)] = 327077, + [SMALL_STATE(7314)] = 327084, + [SMALL_STATE(7315)] = 327091, + [SMALL_STATE(7316)] = 327098, + [SMALL_STATE(7317)] = 327105, + [SMALL_STATE(7318)] = 327112, + [SMALL_STATE(7319)] = 327119, + [SMALL_STATE(7320)] = 327126, + [SMALL_STATE(7321)] = 327133, + [SMALL_STATE(7322)] = 327140, + [SMALL_STATE(7323)] = 327147, + [SMALL_STATE(7324)] = 327154, + [SMALL_STATE(7325)] = 327161, + [SMALL_STATE(7326)] = 327168, + [SMALL_STATE(7327)] = 327175, + [SMALL_STATE(7328)] = 327182, + [SMALL_STATE(7329)] = 327189, + [SMALL_STATE(7330)] = 327196, + [SMALL_STATE(7331)] = 327203, + [SMALL_STATE(7332)] = 327210, + [SMALL_STATE(7333)] = 327217, + [SMALL_STATE(7334)] = 327224, + [SMALL_STATE(7335)] = 327231, + [SMALL_STATE(7336)] = 327238, + [SMALL_STATE(7337)] = 327245, + [SMALL_STATE(7338)] = 327252, + [SMALL_STATE(7339)] = 327259, + [SMALL_STATE(7340)] = 327266, + [SMALL_STATE(7341)] = 327273, + [SMALL_STATE(7342)] = 327280, + [SMALL_STATE(7343)] = 327287, + [SMALL_STATE(7344)] = 327294, + [SMALL_STATE(7345)] = 327301, + [SMALL_STATE(7346)] = 327308, + [SMALL_STATE(7347)] = 327315, + [SMALL_STATE(7348)] = 327322, + [SMALL_STATE(7349)] = 327329, + [SMALL_STATE(7350)] = 327336, + [SMALL_STATE(7351)] = 327343, + [SMALL_STATE(7352)] = 327350, + [SMALL_STATE(7353)] = 327357, + [SMALL_STATE(7354)] = 327364, + [SMALL_STATE(7355)] = 327371, + [SMALL_STATE(7356)] = 327378, + [SMALL_STATE(7357)] = 327385, + [SMALL_STATE(7358)] = 327392, + [SMALL_STATE(7359)] = 327399, + [SMALL_STATE(7360)] = 327406, + [SMALL_STATE(7361)] = 327413, + [SMALL_STATE(7362)] = 327420, + [SMALL_STATE(7363)] = 327427, + [SMALL_STATE(7364)] = 327434, + [SMALL_STATE(7365)] = 327441, + [SMALL_STATE(7366)] = 327448, + [SMALL_STATE(7367)] = 327455, + [SMALL_STATE(7368)] = 327462, + [SMALL_STATE(7369)] = 327469, + [SMALL_STATE(7370)] = 327476, + [SMALL_STATE(7371)] = 327483, + [SMALL_STATE(7372)] = 327490, + [SMALL_STATE(7373)] = 327497, + [SMALL_STATE(7374)] = 327504, + [SMALL_STATE(7375)] = 327511, + [SMALL_STATE(7376)] = 327518, + [SMALL_STATE(7377)] = 327525, + [SMALL_STATE(7378)] = 327532, + [SMALL_STATE(7379)] = 327539, + [SMALL_STATE(7380)] = 327546, + [SMALL_STATE(7381)] = 327553, + [SMALL_STATE(7382)] = 327560, + [SMALL_STATE(7383)] = 327567, + [SMALL_STATE(7384)] = 327574, + [SMALL_STATE(7385)] = 327581, + [SMALL_STATE(7386)] = 327588, + [SMALL_STATE(7387)] = 327595, + [SMALL_STATE(7388)] = 327602, + [SMALL_STATE(7389)] = 327609, + [SMALL_STATE(7390)] = 327616, + [SMALL_STATE(7391)] = 327623, + [SMALL_STATE(7392)] = 327630, + [SMALL_STATE(7393)] = 327637, + [SMALL_STATE(7394)] = 327644, + [SMALL_STATE(7395)] = 327651, + [SMALL_STATE(7396)] = 327658, + [SMALL_STATE(7397)] = 327665, + [SMALL_STATE(7398)] = 327672, + [SMALL_STATE(7399)] = 327679, + [SMALL_STATE(7400)] = 327686, + [SMALL_STATE(7401)] = 327693, + [SMALL_STATE(7402)] = 327700, + [SMALL_STATE(7403)] = 327707, + [SMALL_STATE(7404)] = 327714, + [SMALL_STATE(7405)] = 327721, + [SMALL_STATE(7406)] = 327728, + [SMALL_STATE(7407)] = 327735, + [SMALL_STATE(7408)] = 327742, + [SMALL_STATE(7409)] = 327749, + [SMALL_STATE(7410)] = 327756, + [SMALL_STATE(7411)] = 327763, + [SMALL_STATE(7412)] = 327770, + [SMALL_STATE(7413)] = 327777, + [SMALL_STATE(7414)] = 327784, + [SMALL_STATE(7415)] = 327791, + [SMALL_STATE(7416)] = 327798, + [SMALL_STATE(7417)] = 327805, + [SMALL_STATE(7418)] = 327812, + [SMALL_STATE(7419)] = 327819, + [SMALL_STATE(7420)] = 327826, + [SMALL_STATE(7421)] = 327833, + [SMALL_STATE(7422)] = 327840, + [SMALL_STATE(7423)] = 327847, + [SMALL_STATE(7424)] = 327854, + [SMALL_STATE(7425)] = 327861, + [SMALL_STATE(7426)] = 327868, + [SMALL_STATE(7427)] = 327875, + [SMALL_STATE(7428)] = 327882, + [SMALL_STATE(7429)] = 327889, + [SMALL_STATE(7430)] = 327896, + [SMALL_STATE(7431)] = 327903, + [SMALL_STATE(7432)] = 327910, + [SMALL_STATE(7433)] = 327917, + [SMALL_STATE(7434)] = 327924, + [SMALL_STATE(7435)] = 327931, + [SMALL_STATE(7436)] = 327938, + [SMALL_STATE(7437)] = 327945, + [SMALL_STATE(7438)] = 327952, + [SMALL_STATE(7439)] = 327959, + [SMALL_STATE(7440)] = 327966, + [SMALL_STATE(7441)] = 327973, + [SMALL_STATE(7442)] = 327980, + [SMALL_STATE(7443)] = 327987, + [SMALL_STATE(7444)] = 327994, + [SMALL_STATE(7445)] = 328001, + [SMALL_STATE(7446)] = 328008, + [SMALL_STATE(7447)] = 328015, + [SMALL_STATE(7448)] = 328022, + [SMALL_STATE(7449)] = 328029, + [SMALL_STATE(7450)] = 328036, + [SMALL_STATE(7451)] = 328043, + [SMALL_STATE(7452)] = 328050, + [SMALL_STATE(7453)] = 328057, + [SMALL_STATE(7454)] = 328064, + [SMALL_STATE(7455)] = 328071, + [SMALL_STATE(7456)] = 328078, + [SMALL_STATE(7457)] = 328085, + [SMALL_STATE(7458)] = 328092, + [SMALL_STATE(7459)] = 328099, + [SMALL_STATE(7460)] = 328106, + [SMALL_STATE(7461)] = 328113, + [SMALL_STATE(7462)] = 328120, + [SMALL_STATE(7463)] = 328127, + [SMALL_STATE(7464)] = 328134, + [SMALL_STATE(7465)] = 328141, + [SMALL_STATE(7466)] = 328148, + [SMALL_STATE(7467)] = 328155, + [SMALL_STATE(7468)] = 328162, + [SMALL_STATE(7469)] = 328169, + [SMALL_STATE(7470)] = 328176, + [SMALL_STATE(7471)] = 328183, + [SMALL_STATE(7472)] = 328190, + [SMALL_STATE(7473)] = 328197, + [SMALL_STATE(7474)] = 328204, + [SMALL_STATE(7475)] = 328211, + [SMALL_STATE(7476)] = 328218, + [SMALL_STATE(7477)] = 328225, + [SMALL_STATE(7478)] = 328232, + [SMALL_STATE(7479)] = 328239, + [SMALL_STATE(7480)] = 328246, + [SMALL_STATE(7481)] = 328253, + [SMALL_STATE(7482)] = 328260, + [SMALL_STATE(7483)] = 328267, + [SMALL_STATE(7484)] = 328274, + [SMALL_STATE(7485)] = 328281, + [SMALL_STATE(7486)] = 328288, + [SMALL_STATE(7487)] = 328295, + [SMALL_STATE(7488)] = 328302, + [SMALL_STATE(7489)] = 328309, + [SMALL_STATE(7490)] = 328316, + [SMALL_STATE(7491)] = 328323, + [SMALL_STATE(7492)] = 328330, + [SMALL_STATE(7493)] = 328337, + [SMALL_STATE(7494)] = 328344, + [SMALL_STATE(7495)] = 328351, + [SMALL_STATE(7496)] = 328358, + [SMALL_STATE(7497)] = 328365, + [SMALL_STATE(7498)] = 328372, + [SMALL_STATE(7499)] = 328379, + [SMALL_STATE(7500)] = 328386, + [SMALL_STATE(7501)] = 328393, + [SMALL_STATE(7502)] = 328400, + [SMALL_STATE(7503)] = 328407, + [SMALL_STATE(7504)] = 328414, + [SMALL_STATE(7505)] = 328421, + [SMALL_STATE(7506)] = 328428, + [SMALL_STATE(7507)] = 328435, + [SMALL_STATE(7508)] = 328442, + [SMALL_STATE(7509)] = 328449, + [SMALL_STATE(7510)] = 328456, + [SMALL_STATE(7511)] = 328463, + [SMALL_STATE(7512)] = 328470, + [SMALL_STATE(7513)] = 328477, + [SMALL_STATE(7514)] = 328484, + [SMALL_STATE(7515)] = 328491, + [SMALL_STATE(7516)] = 328498, + [SMALL_STATE(7517)] = 328505, + [SMALL_STATE(7518)] = 328512, + [SMALL_STATE(7519)] = 328519, + [SMALL_STATE(7520)] = 328526, + [SMALL_STATE(7521)] = 328533, + [SMALL_STATE(7522)] = 328540, + [SMALL_STATE(7523)] = 328547, + [SMALL_STATE(7524)] = 328554, + [SMALL_STATE(7525)] = 328561, + [SMALL_STATE(7526)] = 328568, + [SMALL_STATE(7527)] = 328575, + [SMALL_STATE(7528)] = 328582, + [SMALL_STATE(7529)] = 328589, + [SMALL_STATE(7530)] = 328596, + [SMALL_STATE(7531)] = 328603, + [SMALL_STATE(7532)] = 328610, + [SMALL_STATE(7533)] = 328617, + [SMALL_STATE(7534)] = 328624, + [SMALL_STATE(7535)] = 328631, + [SMALL_STATE(7536)] = 328638, + [SMALL_STATE(7537)] = 328645, + [SMALL_STATE(7538)] = 328652, + [SMALL_STATE(7539)] = 328659, + [SMALL_STATE(7540)] = 328666, + [SMALL_STATE(7541)] = 328673, + [SMALL_STATE(7542)] = 328680, + [SMALL_STATE(7543)] = 328687, + [SMALL_STATE(7544)] = 328694, + [SMALL_STATE(7545)] = 328701, + [SMALL_STATE(7546)] = 328708, + [SMALL_STATE(7547)] = 328715, + [SMALL_STATE(7548)] = 328722, + [SMALL_STATE(7549)] = 328729, + [SMALL_STATE(7550)] = 328736, + [SMALL_STATE(7551)] = 328743, + [SMALL_STATE(7552)] = 328750, + [SMALL_STATE(7553)] = 328757, + [SMALL_STATE(7554)] = 328764, + [SMALL_STATE(7555)] = 328771, + [SMALL_STATE(7556)] = 328778, + [SMALL_STATE(7557)] = 328785, + [SMALL_STATE(7558)] = 328792, + [SMALL_STATE(7559)] = 328799, + [SMALL_STATE(7560)] = 328806, + [SMALL_STATE(7561)] = 328813, + [SMALL_STATE(7562)] = 328820, + [SMALL_STATE(7563)] = 328827, + [SMALL_STATE(7564)] = 328834, + [SMALL_STATE(7565)] = 328841, + [SMALL_STATE(7566)] = 328848, + [SMALL_STATE(7567)] = 328855, + [SMALL_STATE(7568)] = 328862, + [SMALL_STATE(7569)] = 328869, + [SMALL_STATE(7570)] = 328876, + [SMALL_STATE(7571)] = 328883, + [SMALL_STATE(7572)] = 328890, + [SMALL_STATE(7573)] = 328897, + [SMALL_STATE(7574)] = 328904, + [SMALL_STATE(7575)] = 328911, + [SMALL_STATE(7576)] = 328918, + [SMALL_STATE(7577)] = 328925, + [SMALL_STATE(7578)] = 328932, + [SMALL_STATE(7579)] = 328939, + [SMALL_STATE(7580)] = 328946, + [SMALL_STATE(7581)] = 328953, + [SMALL_STATE(7582)] = 328960, + [SMALL_STATE(7583)] = 328967, + [SMALL_STATE(7584)] = 328974, + [SMALL_STATE(7585)] = 328981, + [SMALL_STATE(7586)] = 328988, + [SMALL_STATE(7587)] = 328995, + [SMALL_STATE(7588)] = 329002, + [SMALL_STATE(7589)] = 329009, + [SMALL_STATE(7590)] = 329016, + [SMALL_STATE(7591)] = 329023, + [SMALL_STATE(7592)] = 329030, + [SMALL_STATE(7593)] = 329037, + [SMALL_STATE(7594)] = 329044, + [SMALL_STATE(7595)] = 329051, + [SMALL_STATE(7596)] = 329058, + [SMALL_STATE(7597)] = 329065, + [SMALL_STATE(7598)] = 329072, + [SMALL_STATE(7599)] = 329079, + [SMALL_STATE(7600)] = 329086, + [SMALL_STATE(7601)] = 329093, + [SMALL_STATE(7602)] = 329100, + [SMALL_STATE(7603)] = 329107, + [SMALL_STATE(7604)] = 329114, + [SMALL_STATE(7605)] = 329121, + [SMALL_STATE(7606)] = 329128, + [SMALL_STATE(7607)] = 329135, + [SMALL_STATE(7608)] = 329142, + [SMALL_STATE(7609)] = 329149, + [SMALL_STATE(7610)] = 329156, + [SMALL_STATE(7611)] = 329163, + [SMALL_STATE(7612)] = 329170, + [SMALL_STATE(7613)] = 329177, + [SMALL_STATE(7614)] = 329184, + [SMALL_STATE(7615)] = 329191, + [SMALL_STATE(7616)] = 329198, + [SMALL_STATE(7617)] = 329205, + [SMALL_STATE(7618)] = 329212, + [SMALL_STATE(7619)] = 329219, + [SMALL_STATE(7620)] = 329226, + [SMALL_STATE(7621)] = 329233, + [SMALL_STATE(7622)] = 329240, + [SMALL_STATE(7623)] = 329247, + [SMALL_STATE(7624)] = 329254, + [SMALL_STATE(7625)] = 329261, + [SMALL_STATE(7626)] = 329268, + [SMALL_STATE(7627)] = 329275, + [SMALL_STATE(7628)] = 329282, + [SMALL_STATE(7629)] = 329289, + [SMALL_STATE(7630)] = 329296, + [SMALL_STATE(7631)] = 329303, + [SMALL_STATE(7632)] = 329310, + [SMALL_STATE(7633)] = 329317, + [SMALL_STATE(7634)] = 329324, + [SMALL_STATE(7635)] = 329331, + [SMALL_STATE(7636)] = 329338, + [SMALL_STATE(7637)] = 329345, + [SMALL_STATE(7638)] = 329352, + [SMALL_STATE(7639)] = 329359, + [SMALL_STATE(7640)] = 329366, + [SMALL_STATE(7641)] = 329373, + [SMALL_STATE(7642)] = 329380, + [SMALL_STATE(7643)] = 329387, + [SMALL_STATE(7644)] = 329394, + [SMALL_STATE(7645)] = 329401, + [SMALL_STATE(7646)] = 329408, + [SMALL_STATE(7647)] = 329415, + [SMALL_STATE(7648)] = 329422, + [SMALL_STATE(7649)] = 329429, + [SMALL_STATE(7650)] = 329436, + [SMALL_STATE(7651)] = 329443, + [SMALL_STATE(7652)] = 329450, + [SMALL_STATE(7653)] = 329457, + [SMALL_STATE(7654)] = 329464, + [SMALL_STATE(7655)] = 329471, + [SMALL_STATE(7656)] = 329478, + [SMALL_STATE(7657)] = 329485, + [SMALL_STATE(7658)] = 329492, + [SMALL_STATE(7659)] = 329499, + [SMALL_STATE(7660)] = 329506, + [SMALL_STATE(7661)] = 329513, + [SMALL_STATE(7662)] = 329520, + [SMALL_STATE(7663)] = 329527, + [SMALL_STATE(7664)] = 329534, + [SMALL_STATE(7665)] = 329541, + [SMALL_STATE(7666)] = 329548, + [SMALL_STATE(7667)] = 329555, + [SMALL_STATE(7668)] = 329562, + [SMALL_STATE(7669)] = 329569, + [SMALL_STATE(7670)] = 329576, + [SMALL_STATE(7671)] = 329583, + [SMALL_STATE(7672)] = 329590, + [SMALL_STATE(7673)] = 329597, + [SMALL_STATE(7674)] = 329604, + [SMALL_STATE(7675)] = 329611, + [SMALL_STATE(7676)] = 329618, + [SMALL_STATE(7677)] = 329625, + [SMALL_STATE(7678)] = 329632, + [SMALL_STATE(7679)] = 329639, + [SMALL_STATE(7680)] = 329646, + [SMALL_STATE(7681)] = 329653, + [SMALL_STATE(7682)] = 329660, + [SMALL_STATE(7683)] = 329667, + [SMALL_STATE(7684)] = 329674, + [SMALL_STATE(7685)] = 329681, + [SMALL_STATE(7686)] = 329688, + [SMALL_STATE(7687)] = 329695, + [SMALL_STATE(7688)] = 329702, + [SMALL_STATE(7689)] = 329709, + [SMALL_STATE(7690)] = 329716, + [SMALL_STATE(7691)] = 329723, + [SMALL_STATE(7692)] = 329730, + [SMALL_STATE(7693)] = 329737, + [SMALL_STATE(7694)] = 329744, + [SMALL_STATE(7695)] = 329751, + [SMALL_STATE(7696)] = 329758, + [SMALL_STATE(7697)] = 329765, + [SMALL_STATE(7698)] = 329772, + [SMALL_STATE(7699)] = 329779, + [SMALL_STATE(7700)] = 329786, + [SMALL_STATE(7701)] = 329793, + [SMALL_STATE(7702)] = 329800, + [SMALL_STATE(7703)] = 329807, + [SMALL_STATE(7704)] = 329814, + [SMALL_STATE(7705)] = 329821, + [SMALL_STATE(7706)] = 329828, + [SMALL_STATE(7707)] = 329835, + [SMALL_STATE(7708)] = 329842, + [SMALL_STATE(7709)] = 329849, + [SMALL_STATE(7710)] = 329856, + [SMALL_STATE(7711)] = 329863, + [SMALL_STATE(7712)] = 329870, + [SMALL_STATE(7713)] = 329877, + [SMALL_STATE(7714)] = 329884, + [SMALL_STATE(7715)] = 329891, + [SMALL_STATE(7716)] = 329898, + [SMALL_STATE(7717)] = 329905, + [SMALL_STATE(7718)] = 329912, + [SMALL_STATE(7719)] = 329919, + [SMALL_STATE(7720)] = 329926, + [SMALL_STATE(7721)] = 329933, + [SMALL_STATE(7722)] = 329940, + [SMALL_STATE(7723)] = 329947, + [SMALL_STATE(7724)] = 329954, + [SMALL_STATE(7725)] = 329961, + [SMALL_STATE(7726)] = 329968, + [SMALL_STATE(7727)] = 329975, + [SMALL_STATE(7728)] = 329982, + [SMALL_STATE(7729)] = 329989, + [SMALL_STATE(7730)] = 329996, + [SMALL_STATE(7731)] = 330003, + [SMALL_STATE(7732)] = 330010, + [SMALL_STATE(7733)] = 330017, + [SMALL_STATE(7734)] = 330024, + [SMALL_STATE(7735)] = 330031, + [SMALL_STATE(7736)] = 330038, + [SMALL_STATE(7737)] = 330045, + [SMALL_STATE(7738)] = 330052, + [SMALL_STATE(7739)] = 330059, + [SMALL_STATE(7740)] = 330066, + [SMALL_STATE(7741)] = 330073, + [SMALL_STATE(7742)] = 330080, + [SMALL_STATE(7743)] = 330087, + [SMALL_STATE(7744)] = 330094, + [SMALL_STATE(7745)] = 330101, + [SMALL_STATE(7746)] = 330108, + [SMALL_STATE(7747)] = 330115, + [SMALL_STATE(7748)] = 330122, + [SMALL_STATE(7749)] = 330129, + [SMALL_STATE(7750)] = 330136, + [SMALL_STATE(7751)] = 330143, + [SMALL_STATE(7752)] = 330150, + [SMALL_STATE(7753)] = 330157, + [SMALL_STATE(7754)] = 330164, + [SMALL_STATE(7755)] = 330171, + [SMALL_STATE(7756)] = 330178, + [SMALL_STATE(7757)] = 330185, + [SMALL_STATE(7758)] = 330192, + [SMALL_STATE(7759)] = 330199, + [SMALL_STATE(7760)] = 330206, + [SMALL_STATE(7761)] = 330213, + [SMALL_STATE(7762)] = 330220, + [SMALL_STATE(7763)] = 330227, + [SMALL_STATE(7764)] = 330234, + [SMALL_STATE(7765)] = 330241, + [SMALL_STATE(7766)] = 330248, + [SMALL_STATE(7767)] = 330255, + [SMALL_STATE(7768)] = 330262, + [SMALL_STATE(7769)] = 330269, + [SMALL_STATE(7770)] = 330276, + [SMALL_STATE(7771)] = 330283, + [SMALL_STATE(7772)] = 330290, + [SMALL_STATE(7773)] = 330297, + [SMALL_STATE(7774)] = 330304, + [SMALL_STATE(7775)] = 330311, + [SMALL_STATE(7776)] = 330318, + [SMALL_STATE(7777)] = 330325, + [SMALL_STATE(7778)] = 330332, + [SMALL_STATE(7779)] = 330339, + [SMALL_STATE(7780)] = 330346, + [SMALL_STATE(7781)] = 330353, + [SMALL_STATE(7782)] = 330360, + [SMALL_STATE(7783)] = 330367, + [SMALL_STATE(7784)] = 330374, + [SMALL_STATE(7785)] = 330381, + [SMALL_STATE(7786)] = 330388, + [SMALL_STATE(7787)] = 330395, + [SMALL_STATE(7788)] = 330402, + [SMALL_STATE(7789)] = 330409, + [SMALL_STATE(7790)] = 330416, + [SMALL_STATE(7791)] = 330423, + [SMALL_STATE(7792)] = 330430, + [SMALL_STATE(7793)] = 330437, + [SMALL_STATE(7794)] = 330444, + [SMALL_STATE(7795)] = 330451, + [SMALL_STATE(7796)] = 330458, + [SMALL_STATE(7797)] = 330465, + [SMALL_STATE(7798)] = 330472, + [SMALL_STATE(7799)] = 330479, + [SMALL_STATE(7800)] = 330486, + [SMALL_STATE(7801)] = 330493, + [SMALL_STATE(7802)] = 330500, + [SMALL_STATE(7803)] = 330507, + [SMALL_STATE(7804)] = 330514, + [SMALL_STATE(7805)] = 330521, + [SMALL_STATE(7806)] = 330528, + [SMALL_STATE(7807)] = 330535, + [SMALL_STATE(7808)] = 330542, + [SMALL_STATE(7809)] = 330549, + [SMALL_STATE(7810)] = 330556, + [SMALL_STATE(7811)] = 330563, + [SMALL_STATE(7812)] = 330570, + [SMALL_STATE(7813)] = 330577, + [SMALL_STATE(7814)] = 330584, + [SMALL_STATE(7815)] = 330591, + [SMALL_STATE(7816)] = 330598, + [SMALL_STATE(7817)] = 330605, + [SMALL_STATE(7818)] = 330612, + [SMALL_STATE(7819)] = 330619, + [SMALL_STATE(7820)] = 330626, + [SMALL_STATE(7821)] = 330633, + [SMALL_STATE(7822)] = 330640, + [SMALL_STATE(7823)] = 330647, + [SMALL_STATE(7824)] = 330654, + [SMALL_STATE(7825)] = 330661, + [SMALL_STATE(7826)] = 330668, + [SMALL_STATE(7827)] = 330675, + [SMALL_STATE(7828)] = 330682, + [SMALL_STATE(7829)] = 330689, + [SMALL_STATE(7830)] = 330696, + [SMALL_STATE(7831)] = 330703, + [SMALL_STATE(7832)] = 330710, + [SMALL_STATE(7833)] = 330717, + [SMALL_STATE(7834)] = 330724, + [SMALL_STATE(7835)] = 330731, + [SMALL_STATE(7836)] = 330738, + [SMALL_STATE(7837)] = 330745, + [SMALL_STATE(7838)] = 330752, + [SMALL_STATE(7839)] = 330759, + [SMALL_STATE(7840)] = 330766, + [SMALL_STATE(7841)] = 330773, + [SMALL_STATE(7842)] = 330780, + [SMALL_STATE(7843)] = 330787, + [SMALL_STATE(7844)] = 330794, + [SMALL_STATE(7845)] = 330801, + [SMALL_STATE(7846)] = 330808, + [SMALL_STATE(7847)] = 330815, + [SMALL_STATE(7848)] = 330822, + [SMALL_STATE(7849)] = 330829, + [SMALL_STATE(7850)] = 330836, + [SMALL_STATE(7851)] = 330843, + [SMALL_STATE(7852)] = 330850, + [SMALL_STATE(7853)] = 330857, + [SMALL_STATE(7854)] = 330864, + [SMALL_STATE(7855)] = 330871, + [SMALL_STATE(7856)] = 330878, + [SMALL_STATE(7857)] = 330885, + [SMALL_STATE(7858)] = 330892, + [SMALL_STATE(7859)] = 330899, + [SMALL_STATE(7860)] = 330906, + [SMALL_STATE(7861)] = 330913, + [SMALL_STATE(7862)] = 330920, + [SMALL_STATE(7863)] = 330927, + [SMALL_STATE(7864)] = 330934, + [SMALL_STATE(7865)] = 330941, + [SMALL_STATE(7866)] = 330948, + [SMALL_STATE(7867)] = 330955, + [SMALL_STATE(7868)] = 330962, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -351083,7788 +357521,8058 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6751), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6856), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6297), - [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), - [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), - [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6262), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), - [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 1), - [243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 1), - [245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 1), REDUCE(sym__expression, 1, 0, 1), - [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), - [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), - [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 1), - [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7614), - [286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 1), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 1), REDUCE(sym__expression, 1, 0, 1), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6254), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7391), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6145), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), - [421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 59), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), - [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 60), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 79), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), - [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 45), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), - [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 46), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 83), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 109), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 112), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5805), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7819), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7462), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6220), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7807), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 1), + [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 1), + [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 1), REDUCE(sym__expression, 1, 0, 1), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), + [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), + [276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 1), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7812), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 1), + [300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 1), REDUCE(sym__expression, 1, 0, 1), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7811), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7589), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7805), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6833), + [419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7586), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 59), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), + [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6148), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5856), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6628), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6858), + [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 2, 0, 60), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 79), + [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 45), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 46), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 83), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 109), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 112), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1142), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6751), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7076), - [564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(702), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3691), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3691), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(84), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(427), - [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(425), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4143), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7391), - [590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(70), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(649), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4), - [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1783), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(601), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(749), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(775), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3998), - [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4024), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4025), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6017), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1151), - [626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(5837), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1010), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1063), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6271), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4697), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(116), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(117), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(118), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(119), - [653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6145), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6721), - [659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1138), - [662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7607), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6772), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7478), - [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6863), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6269), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), - [739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), - [743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), - [745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), - [749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), - [751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), - [755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), - [759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3, 0, 0), - [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 0), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6168), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6166), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), - [851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), - [869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5022), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1, 0, 0), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1142), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6751), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7076), - [898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(702), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), - [904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3691), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(427), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(425), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4143), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7391), - [922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(70), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(649), - [928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1783), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(601), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(749), - [940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(775), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3998), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4024), - [949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4025), - [952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6017), - [955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1151), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5837), - [961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1010), - [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1063), - [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6271), - [970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4697), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(117), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(119), - [985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6145), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6721), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1138), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7607), - [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), - [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7510), - [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), - [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), - [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), - [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [1127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [1137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [1223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [1227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, 0, 1), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [1235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 1), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [1239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, 0, 0), - [1241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 0), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), - [1253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [1255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), - [1258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), - [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), - [1263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7272), - [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 1), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 1), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), - [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), - [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), - [1278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), - [1280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), - [1283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), - [1286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 0), - [1288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 0), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 11), - [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 11), - [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2, 0, 0), - [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2, 0, 0), - [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), - [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), - [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), - [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), - [1308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3, 0, 0), - [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3, 0, 0), - [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, 0, 0), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, 0, 0), - [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), - [1318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), - [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), - [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5414), + [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1118), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6856), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7350), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(666), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3715), + [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3715), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(160), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(431), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(418), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4008), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7589), + [604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(114), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(624), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4), + [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1605), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(600), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(747), + [622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(758), + [625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(3999), + [628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4071), + [631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4181), + [634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6057), + [637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1136), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(5870), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7604), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1117), + [649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1041), + [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6325), + [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(4913), + [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(116), + [661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(117), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(118), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(119), + [670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6201), + [673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(6783), + [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(1113), + [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), SHIFT_REPEAT(7805), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6824), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7676), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7588), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5883), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7856), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 3, 0, 0), + [782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, 0, 0), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6231), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7679), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminated_statement, 2, 0, 0), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 1, 0, 0), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1118), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6856), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7350), + [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(666), + [920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3715), + [923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3715), + [926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(431), + [932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(418), + [935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4008), + [938] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7589), + [941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(624), + [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1605), + [953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(600), + [956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(747), + [959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(758), + [962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(3999), + [965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4071), + [968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4181), + [971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6057), + [974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1136), + [977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(5870), + [980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7604), + [983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), + [986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1041), + [989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6325), + [992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(4913), + [995] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(116), + [998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(117), + [1001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(118), + [1004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(119), + [1007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6201), + [1010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(6783), + [1013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(1113), + [1016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), SHIFT_REPEAT(7805), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7708), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6214), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [1063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5926), + [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), + [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), + [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [1087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [1095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7823), + [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [1101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [1105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), + [1107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), + [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [1125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [1129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [1131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [1133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7794), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [1175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [1191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [1195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [1197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [1207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [1209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [1211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [1213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [1215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [1217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [1219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [1221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [1227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [1243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [1249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, 0, 0), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5805), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 0), + [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 4, 0, 1), + [1269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 4, 0, 1), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [1277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [1279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), + [1281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [1283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), + [1288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_command_name, 1, 0, 0), REDUCE(sym__expression, 1, 0, 0), + [1291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7470), + [1294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 1), + [1296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 1), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 1, 0, 0), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [1306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), + [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4063), + [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4063), + [1314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_concatenation, 2, 0, 0), + [1316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_concatenation, 2, 0, 0), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [1320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 11), + [1322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 11), [1324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), [1326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), [1328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 2, 0, 0), [1330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 2, 0, 0), - [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4, 0, 0), - [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4, 0, 0), + [1332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 4, 0, 0), + [1334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 4, 0, 0), + [1336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), [1340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_expansion, 2, 0, 0), [1342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_expansion, 2, 0, 0), - [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 35), - [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 35), - [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), - [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), - [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, 0, 31), - [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, 0, 31), - [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 0), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 0), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), - [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(498), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [1373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4188), - [1376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [1378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7401), - [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(524), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [1390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [1394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5765), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [1440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 19), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 19), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4172), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), - [1480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 39), - [1482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 39), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6367), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7612), - [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(879), - [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4148), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), - [1564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3623), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), - [1569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3929), - [1572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4149), - [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5887), - [1578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(855), - [1581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5765), - [1584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(907), - [1587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6320), - [1590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4806), - [1593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(369), - [1596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(370), - [1599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(371), - [1602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(308), - [1605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7378), - [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(868), - [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1171), - [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7653), - [1617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 18), - [1619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 18), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [1629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1085), - [1632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4144), - [1635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), - [1637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), - [1639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4145), - [1642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6053), - [1645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1154), - [1648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5755), - [1651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1253), - [1654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6313), - [1657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4782), - [1660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(361), - [1663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(362), - [1666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(363), - [1669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(300), - [1672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(541), - [1675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6612), - [1678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1084), - [1681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7651), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1, 0, 0), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [1720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7651), - [1722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2, 0, 0), - [1724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2, 0, 0), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [1752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(994), - [1755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4172), - [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3666), - [1761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3941), - [1764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4173), - [1767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5956), - [1770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(919), - [1773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5808), - [1776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1115), - [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6340), - [1782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4856), - [1785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(399), - [1788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(400), - [1791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(401), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(348), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7474), - [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(993), - [1803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1444), - [1806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7663), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), - [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1135), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4062), - [1821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3646), - [1824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3895), - [1827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4063), - [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5878), - [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1075), - [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5784), - [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1273), - [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6367), - [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4825), - [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(186), - [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(187), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(188), - [1857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(169), - [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7402), - [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1134), - [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1626), - [1869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7618), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6296), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7661), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [1920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [1924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1306), - [1927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4166), - [1930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4167), - [1933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5910), - [1936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1286), - [1939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5801), - [1942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), - [1945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6296), - [1948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4846), - [1951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(393), - [1954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(394), - [1957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(395), - [1960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(340), - [1963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(566), - [1966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6619), - [1969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1239), - [1972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7661), - [1975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1157), - [1978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4049), - [1981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3617), - [1984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3886), - [1987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4050), - [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5961), - [1993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1052), - [1996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5756), - [1999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1236), - [2002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6341), - [2005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4778), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(158), - [2011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(159), - [2014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(160), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(145), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7259), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1141), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1682), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7612), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [2038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [2050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [2056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [2058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), - [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7616), - [2066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), - [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4057), - [2072] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4058), - [2075] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6061), - [2078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1352), - [2081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5776), - [2084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), - [2087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6260), - [2090] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4814), - [2093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [2096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(179), - [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [2102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(161), - [2105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(573), - [2108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6595), - [2111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1430), - [2114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7616), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), - [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), - [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6580), - [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), - [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 8), - [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 8), - [2171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 21), - [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 21), - [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1082), - [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4141), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), - [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), - [2185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4142), - [2188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6022), - [2191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1152), - [2194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5749), - [2197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1243), - [2200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6256), - [2203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4779), - [2206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(357), - [2209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(358), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(359), - [2215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(296), - [2218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1081), - [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7650), - [2224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1346), - [2227] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4041), - [2230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4042), - [2233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5867), - [2236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), - [2239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5729), - [2242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1598), - [2245] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6316), - [2248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4753), - [2251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(133), - [2254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(134), - [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(136), - [2263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(586), - [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6580), - [2269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1338), - [2272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7610), - [2275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1263), - [2278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3696), - [2281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4005), - [2284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1186), - [2287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7603), - [2290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1262), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [2301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 1, 0, 0), - [2303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 1, 0, 0), - [2305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 4), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 4), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7656), - [2345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1276), - [2348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4146), - [2351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), - [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), - [2355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4147), - [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5960), - [2361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1304), - [2364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5759), - [2367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1313), - [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6270), - [2373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4787), - [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(365), - [2379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(366), - [2382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(367), - [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(304), - [2388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(600), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1275), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7652), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [2407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1178), - [2410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4156), - [2413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4157), - [2416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5965), - [2419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1249), - [2422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5780), - [2425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1363), - [2428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6267), - [2431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4817), - [2434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(378), - [2437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(379), - [2440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(380), - [2443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(320), - [2446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1177), - [2449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7656), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2, 0, 0), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2, 0, 0), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6270), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), - [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1649), - [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), - [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(606), - [2499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6600), - [2502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1648), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1, 0, 0), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1, 0, 0), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1191), - [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4164), - [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4165), - [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5894), - [2535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1264), - [2538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5798), - [2541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), - [2544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6257), - [2547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4845), - [2550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(390), - [2553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(391), - [2556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(392), - [2559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(336), - [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1190), - [2565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7660), - [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1388), - [2571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4150), - [2574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4151), - [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6033), - [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1460), - [2583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5768), - [2586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1586), - [2589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6274), - [2592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4809), - [2595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(372), - [2598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(373), - [2601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(374), - [2604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(312), - [2607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), - [2610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7654), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [2651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [2669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [2691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), - [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), - [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), - [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), - [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), - [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), - [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7657), - [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [2751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), - [2753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), - [2755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2, 0, 0), - [2757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), - [2759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1329), - [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4008), - [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4009), - [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5944), - [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1406), - [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5811), - [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1546), - [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6315), - [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4655), - [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(111), - [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(113), - [2798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1327), - [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7604), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3, 0, 0), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3, 0, 0), - [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1421), - [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4178), - [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4179), - [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6030), - [2852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1310), - [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5819), - [2858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1585), - [2861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6250), - [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4859), - [2867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(408), - [2870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(409), - [2873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [2876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(360), - [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7666), - [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [2903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1415), - [2906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4055), - [2909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4056), - [2912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6037), - [2915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1335), - [2918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5773), - [2921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1561), - [2924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6355), - [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4795), - [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1414), - [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7615), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), - [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), - [2956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1442), - [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4169), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4170), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5929), - [2976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1397), - [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5804), - [2982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1692), - [2985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6323), - [2988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4855), - [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(396), - [2994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(397), - [2997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(398), - [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(344), - [3003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(652), - [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1441), - [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7662), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), - [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), - [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6336), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), - [3056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1578), - [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4099), - [3062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4100), - [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6027), - [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1615), - [3071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5855), - [3074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1761), - [3077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6336), - [3080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4641), - [3083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(253), - [3086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(254), - [3089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [3092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(229), - [3095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1613), - [3098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7633), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), - [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6275), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), - [3189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1695), - [3192] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4043), - [3195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4044), - [3198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5916), - [3201] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1677), - [3204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5737), - [3207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1812), - [3210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6301), - [3213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4757), - [3216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(138), - [3219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(139), - [3222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(140), - [3225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(141), - [3228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(668), - [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1554), - [3234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7611), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5779), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6265), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), - [3299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1559), - [3302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4174), - [3305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), - [3308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5974), - [3311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1587), - [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5813), - [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1811), - [3320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6265), - [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4857), - [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(402), - [3329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(403), - [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(404), - [3335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(352), - [3338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1558), - [3341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7664), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [3346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [3348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [3358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [3366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), - [3380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), - [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), - [3392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), - [3394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6301), - [3396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [3398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [3402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [3406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7611), - [3412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), - [3414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [3416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [3418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [3424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [3431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4088), - [3434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4089), - [3437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5985), - [3440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1602), - [3443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5838), - [3446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1738), - [3449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6275), - [3452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4621), - [3455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(230), - [3458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(231), - [3461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(232), - [3464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(209), - [3467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1569), - [3470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7628), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1593), - [3496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4059), - [3499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4060), - [3502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5868), - [3505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1560), - [3508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5779), - [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1897), - [3514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6302), - [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4820), - [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(182), - [3523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [3526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [3529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(697), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1592), - [3538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7617), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), - [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1646), - [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1710), - [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1645), - [3552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [3554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1921), - [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3668), - [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4021), - [3569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1866), - [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7153), - [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1920), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [3580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2971), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), - [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6406), - [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6387), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [3716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), - [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), - [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), - [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), - [3766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), - [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [3782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2159), - [3785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4077), - [3788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3688), - [3791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3901), - [3794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4078), - [3797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5930), - [3800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2266), - [3803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5815), - [3806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2159), - [3809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2288), - [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6306), - [3815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4699), - [3818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(210), - [3821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(211), - [3824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(212), - [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(193), - [3830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6910), - [3833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2158), - [3836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2523), - [3839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7624), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4176), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6363), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [3870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), - [3878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1780), - [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4083), - [3886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4084), - [3889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5959), - [3892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1730), - [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5831), - [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), - [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6308), - [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4611), - [3907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [3910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(223), - [3913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(224), - [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1779), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7626), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6462), - [3931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1915), - [3934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1861), - [3937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(758), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1914), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [3947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1836), - [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4096), - [3953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), - [3956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6020), - [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1755), - [3962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5853), - [3965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1993), - [3968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6329), - [3971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4638), - [3974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(250), - [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(251), - [3980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(252), - [3983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1835), - [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7632), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6329), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7632), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [4036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), - [4039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1849), - [4042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [4049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2326), - [4052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2305), - [4055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(770), - [4058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6610), - [4061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2325), - [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), - [4070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [4088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2340), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [4112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2357), - [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4073), - [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4074), - [4121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5911), - [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2368), - [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5803), - [4130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2357), - [4133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2566), - [4136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6253), - [4139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4608), - [4142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(202), - [4145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(185), - [4154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6602), - [4160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2356), - [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7622), - [4166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), - [4169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2036), - [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2128), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), - [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), - [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2357), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), - [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6253), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), - [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [4247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2324), - [4250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2300), - [4253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2323), - [4256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2302), - [4259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4069), - [4262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4070), - [4265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5893), - [4268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2286), - [4271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5792), - [4274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2302), - [4277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2434), - [4280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6268), - [4283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4862), - [4286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(195), - [4292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(196), - [4295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [4298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2301), - [4301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7620), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [4310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), - [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [4320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6616), - [4323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), - [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), - [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [4339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7602), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [4350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3959), - [4353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3959), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [4378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), - [4381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4112), - [4384] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4113), - [4387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6065), - [4390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2405), - [4393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5716), - [4396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), - [4399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2577), - [4402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6328), - [4405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4660), - [4408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(273), - [4411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [4417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [4420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2373), - [4423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7638), - [4426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 10), - [4428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 10), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [4448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2361), - [4451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2390), - [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), - [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6623), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [4480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3969), - [4483] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3969), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), - [4492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3975), - [4495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3975), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [4500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 36), - [4502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 36), - [4504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), - [4506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), - [4508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(6908), - [4511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 0), - [4513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 0), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [4517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), - [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), - [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), - [4523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [4529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), - [4532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4105), - [4535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4106), - [4538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6039), - [4541] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2432), - [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5860), - [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2362), - [4550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2543), - [4553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6353), - [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4652), - [4559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [4562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(262), - [4565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(263), - [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(237), - [4571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2346), - [4574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7635), - [4577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 23), - [4579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 23), - [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2409), - [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2380), - [4587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(885), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2408), - [4593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 4), - [4595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 4), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [4635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6597), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3980), - [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3980), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7089), - [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5865), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [4673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [4675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), - [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7068), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6589), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [4714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [4720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), - [4723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4075), - [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4076), - [4729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5865), - [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2565), - [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5809), - [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2517), - [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2669), - [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6277), - [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4688), - [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [4753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(207), - [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [4759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(189), - [4762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(957), - [4765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2514), - [4768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7623), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5863), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7639), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [4847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2516), - [4850] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2478), - [4853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2515), - [4856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2482), - [4859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4107), - [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4108), - [4865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6051), - [4868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2518), - [4871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5863), - [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2482), - [4877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2706), - [4880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6364), - [4883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4653), - [4886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(265), - [4889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(266), - [4892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(267), - [4895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(241), - [4898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2481), - [4901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7636), - [4904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4194), - [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4194), - [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), - [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [4920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), - [4922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [4924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [4928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), - [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [4934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), - [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), - [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [4946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [4950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [4952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [4954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), - [4956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2532), - [4959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4136), - [4962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4137), - [4965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5883), - [4968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), - [4971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5736), - [4974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2532), - [4977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2594), - [4980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6279), - [4983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4761), - [4986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(345), - [4989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(346), - [4992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(347), - [4995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(288), - [4998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2531), - [5001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7648), - [5004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [5008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [5012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [5016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), - [5019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3913), - [5022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [5030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [5032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1137), - [5035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), - [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [5055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [5063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), - [5065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [5067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [5071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [5077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6606), - [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), - [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [5098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6601), - [5101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [5105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), - [5119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), - [5121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), - [5127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [5133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [5159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), - [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3740), - [5165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 25), - [5167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 25), - [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 24), - [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 24), - [5177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [5181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), - [5183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [5203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [5223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3894), - [5226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3894), - [5229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), - [5232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4130), - [5235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4131), - [5238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6018), - [5241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2702), - [5244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5730), - [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2664), - [5250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2888), - [5253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6252), - [5256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4754), - [5259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(337), - [5262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(338), - [5265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(339), - [5268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [5271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2663), - [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7646), - [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [5291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [5293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), - [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [5297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), - [5309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [5315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), - [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), - [5319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), - [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), - [5323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), - [5325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), - [5327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), - [5329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [5345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), - [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [5355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1244), - [5358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7395), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), - [5365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3964), - [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3964), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [5375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), - [5378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3965), - [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [5391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1256), - [5394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7485), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [5401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), - [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [5407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [5411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [5415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1403), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), - [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 1, 0, 0), - [5472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 1, 0, 0), - [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [5484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1428), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [5489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3978), - [5492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3978), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [5497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3977), - [5500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3977), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [5507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), - [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), - [5513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), - [5515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [5521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3967), - [5524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3967), - [5527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1456), - [5530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3973), - [5533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3973), - [5536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1552), - [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [5553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [5571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), - [5574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), - [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), - [5587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 9), - [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 9), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 22), - [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 22), - [5597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3979), - [5600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3979), - [5603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3879), - [5606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3879), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [5617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), - [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), - [5625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [5633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), - [5639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3017), - [5642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4124), - [5645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4125), - [5648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6015), - [5651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3023), - [5654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5712), - [5657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3263), - [5660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6311), - [5663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4712), - [5666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(317), - [5669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(318), - [5672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(319), - [5675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(268), - [5678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3016), - [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7643), - [5684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [5699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [5718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3782), - [5721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3782), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), - [5728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), - [5731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3703), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [5736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), - [5739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), - [5742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3971), - [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3971), - [5748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1705), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), - [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [5765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5609), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), - [5777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), - [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [5815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [5818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3981), - [5821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3981), - [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [5830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [5833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3889), - [5836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [5838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_expression, 2, 0, 66), - [5840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6611), - [5843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2, 0, 0), - [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [5849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), - [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), - [5853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), - [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), - [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), - [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), - [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), - [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [5871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), - [5879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [5890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3928), - [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3928), - [5902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1788), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), - [5921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3943), - [5924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3943), - [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2, 0, 0), - [5929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2, 0, 0), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [5939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [5946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3730), - [5949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3730), - [5952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7512), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [5967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3921), - [5970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3921), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [5983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3940), - [5986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3940), - [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), - [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [6005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2238), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7273), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), - [6016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6604), - [6019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1957), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [6024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1977), - [6027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [6046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2147), - [6049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2160), - [6052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2164), - [6055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [6058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4066), - [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4067), - [6064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5886), - [6067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3472), - [6070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5788), - [6073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3476), - [6076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3518), - [6079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6333), - [6082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4839), - [6085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(190), - [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [6094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(173), - [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), - [6100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7619), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [6111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3918), - [6114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1723), - [6117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1096), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [6122] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2318), - [6125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2336), - [6128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2308), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [6135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2271), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [6142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1700), - [6145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1108), - [6148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6231), - [6151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(516), - [6154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1638), - [6157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1829), - [6160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2904), - [6163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3231), - [6166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6154), - [6169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6543), - [6172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1195), - [6175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2659), - [6178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3043), - [6181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2678), - [6184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1510), - [6187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1908), - [6190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1200), - [6193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3507), - [6196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2431), - [6199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(488), - [6202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2521), - [6205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2686), - [6208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2274), - [6211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2209), - [6214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3311), - [6217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1953), - [6220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4507), - [6223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1758), - [6226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4264), - [6229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5197), - [6232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3177), - [6235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4743), - [6238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2058), - [6241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1771), - [6244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6491), - [6247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2574), - [6250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2727), - [6253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5471), - [6256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2451), - [6259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5371), - [6262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6210), - [6265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6519), - [6268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4298), - [6271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3367), - [6274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2494), - [6277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6629), - [6280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5414), - [6283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2863), - [6286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6436), - [6289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3422), - [6292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5691), - [6295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2642), - [6298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2800), - [6301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(870), - [6304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2833), - [6307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5512), - [6310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2694), - [6313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5404), - [6316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6238), - [6319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1234), - [6322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1169), - [6325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1332), - [6328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(934), - [6331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1565), - [6334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4544), - [6337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1368), - [6340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4410), - [6343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(944), - [6346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4291), - [6349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1394), - [6352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1400), - [6355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1519), - [6358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1022), - [6361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1843), - [6364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4824), - [6367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1540), - [6370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4420), - [6373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4424), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [6406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2270), - [6409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2278), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [6424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3915), - [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [6441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4104), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [6450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), - [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [6455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2402), - [6458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2351), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [6471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2353), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), - [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), - [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [6506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [6520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), - [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 0), - [6548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 0), - [6550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2529), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5696), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [6615] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3907), - [6618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3952), - [6621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3947), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), - [6632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [6644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [6660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3962), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [6675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3817), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [6702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2717), - [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), - [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), - [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6381), - [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), - [6717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3849), - [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [6724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3948), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2681), - [6746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [6751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 2, 0, 0), - [6753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 2, 0, 0), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [6761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3911), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6661), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), - [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2907), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4303), - [6777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), - [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [6793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 43), - [6795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 43), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [6801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3960), - [6804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2935), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 27), - [6813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 27), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 41), - [6819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 41), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), - [6823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2847), - [6826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 12), - [6828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 12), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), - [6832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2869), - [6835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 40), - [6837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 40), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [6843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2898), - [6846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 3, 0, 0), - [6848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 3, 0, 0), - [6850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [6854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2928), - [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 40), - [6859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 40), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [6863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 41), - [6865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 41), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [6939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 43), - [6941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 43), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), - [6955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), - [6967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), - [6969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [6977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3012), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [6998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [7000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), - [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [7022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [7024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 76), - [7026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 76), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), - [7042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), - [7044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), - [7046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [7052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 40), - [7054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 40), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [7060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2959), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), - [7071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 41), - [7073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 41), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), - [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), - [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 76), - [7121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 76), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [7131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), - [7133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [7137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3150), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7096), - [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [7150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), - [7152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), - [7164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), - [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4959), - [7168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [7248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [7260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), - [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [7292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), - [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), - [7306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [7330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), - [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), - [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [7370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), - [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), - [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 0), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5154), - [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), - [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 0), - [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [7430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), - [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), - [7434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3671), - [7437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3671), - [7440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(2044), - [7443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3841), - [7446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(6137), - [7449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(6591), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), - [7470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), - [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), - [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4989), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [7504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), - [7506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), - [7508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3, 0, 43), - [7510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3, 0, 43), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), - [7522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2, 0, 12), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2, 0, 12), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [7528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), - [7534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), - [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [7542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), - [7544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [7548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), - [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3427), - [7557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), - [7560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3957), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), - [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), - [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [7617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), - [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), - [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), - [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [7671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [7673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [7675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [7677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [7685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [7687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [7693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [7717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [7741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6768), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), - [7757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [7761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), - [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), - [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [7774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), - [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5740), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), - [7794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), - [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 49), - [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7642), - [7818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3897), - [7821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6332), - [7824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4102), - [7827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3601), - [7830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4103), - [7833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6032), - [7836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6337), - [7839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5858), - [7842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6332), - [7845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6546), - [7848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6344), - [7851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4646), - [7854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(257), - [7857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(258), - [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(259), - [7863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(233), - [7866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6318), - [7869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6182), - [7872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7634), - [7875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6458), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), - [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 89), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), - [7885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6442), - [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 51), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [7895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6754), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [7899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), - [7903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4539), - [7906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4094), - [7909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4095), - [7912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6012), - [7915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4494), - [7918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5849), - [7921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4703), - [7924] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6325), - [7927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4637), - [7930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(246), - [7933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(247), - [7936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(248), - [7939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [7942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4537), - [7945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7631), - [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), - [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), - [7970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6285), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [7982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7640), - [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4259), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), - [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), - [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [8048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), - [8094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5773), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [8100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [8114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), - [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), - [8132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5703), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6307), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [8152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [8164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), - [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6351), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4899), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), - [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [8228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), - [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [8256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [8262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [8278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), - [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [8304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6256), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [8340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), - [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [8386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7635), - [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [8416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), - [8446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [8490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), - [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [8520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6732), - [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), - [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), - [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), - [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 12), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6147), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [8546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3559), - [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 0), - [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [8553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), - [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), - [8557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), - [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 33), - [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 13), - [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [8567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [8583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), - [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6299), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), - [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [8613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), - [8615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [8639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [8649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [8659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), - [8661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [8663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5462), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [8669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5109), - [8672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4094), - [8675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), - [8677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4095), - [8680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(6012), - [8683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5085), - [8686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5849), - [8689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4703), - [8692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(6325), - [8695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4637), - [8698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(246), - [8701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(247), - [8704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(248), - [8707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(221), - [8710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5039), - [8713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(7631), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), - [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), - [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), - [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6493), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6324), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [8760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5119), - [8763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4092), - [8766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4093), - [8769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6005), - [8772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5115), - [8775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5843), - [8778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5119), - [8781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5172), - [8784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6299), - [8787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4628), - [8790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(238), - [8793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(239), - [8796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(240), - [8799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(217), - [8802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5108), - [8805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7630), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6447), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6424), - [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), - [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), - [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), - [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), - [8966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6268), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), - [8970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [9026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [9028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [9030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [9038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [9044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5768), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [9166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [9192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [9198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5813), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [9236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4859), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [9260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [9268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [9276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [9278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [9280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), - [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [9296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5486), - [9298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [9308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [9310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [9316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), - [9318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [9320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [9328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [9344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [9348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [9352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6304), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [9364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [9368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [9378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [9380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), - [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [9408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [9412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [9414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [9416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [9418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [9420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [9422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [9424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), - [9438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), - [9442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [9448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6259), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [9458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [9460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [9464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), - [9466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [9472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [9474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [9494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [9496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [9498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [9504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [9508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [9514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [9530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), - [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [9536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [9540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [9546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), - [9564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [9572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [9576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [9582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [9584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [9586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [9602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [9606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [9608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [9610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [9616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [9618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [9620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [9622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [9624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), - [9626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [9628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), - [9630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [9632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), - [9640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), - [9650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4855), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [9670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [9676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [9688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [9690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [9696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [9698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [9700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [9706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [9722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [9726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [9728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [9730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [9740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [9742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), - [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [9746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [9756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [9758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [9764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), - [9782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [9786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [9792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [9794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), - [9796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [9802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [9814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [9816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), - [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [9828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [9846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [9852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [9854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [9856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [9858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [9864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [9882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [9888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [9896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [9902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [9906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [9910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [9912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [9914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [9916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [9918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [9920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), - [9922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [9924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [9926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [9928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [9930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [9932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [9934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [9936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [9942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [9944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [9946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [9950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [9956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [9958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [9962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [9964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [9966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [9972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [9976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [9978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [9980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [9982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [9988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), - [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), - [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), - [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), - [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), - [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), - [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), - [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), - [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1130), - [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [10122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), - [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), - [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), - [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), - [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), - [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), - [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [10246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [10248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), - [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [10300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [10302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), - [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [10310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1124), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), - [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), - [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [10354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), - [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), - [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [10360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), - [10366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [10374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), - [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [10386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [10400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [10406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), - [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [10430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [10436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [10442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [10444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [10450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [10452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), - [10474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), - [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), - [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [10502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), - [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6506), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), - [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), - [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [10538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), - [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5433), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), - [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5449), - [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), - [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), - [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), - [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), - [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), - [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), - [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [10666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [10672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), - [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), - [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), - [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), - [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6249), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6221), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [10762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), - [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), - [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [10872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [10880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [10884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), - [10886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), - [10888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [10890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [10902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), - [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), - [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), - [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [10930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [10932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [10934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [10936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), - [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [10940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), - [10942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [10944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [10946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [10948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [10950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [10956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [10958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [10960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [10966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [10968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [10970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [10972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [10974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [10976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), - [10978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [10980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [10982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [10984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [10986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [10988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [10990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), - [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [10994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [10996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [10998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [11000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [11002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [11004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [11010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), - [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [11014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [11018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [11022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [11026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [11028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [11056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [11058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [11064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [11068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [11072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2826), - [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), - [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), - [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), - [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [11166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6204), - [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), - [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [11216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [11218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [11222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), - [11224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6190), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6190), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), - [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), - [11242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [11248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6088), - [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), - [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), - [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), - [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5763), - [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), - [11270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6282), - [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [11278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [11292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), - [11294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), - [11296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6616), - [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [11307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2, 0, 0), - [11309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2, 0, 0), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), - [11313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [11316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3976), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [11327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3932), - [11330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3932), - [11333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3954), - [11336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3954), - [11339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3974), - [11342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3974), - [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [11349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, -1, 3), - [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [11355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, -1, 3), - [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6135), - [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [11365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), - [11367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3659), - [11370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(622), - [11373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), - [11375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3933), - [11378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6135), - [11381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [11393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4477), - [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [11398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), - [11400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), - [11403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7486), - [11406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(665), - [11409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), - [11411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6114), - [11414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 54), - [11416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 54), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [11420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6623), - [11423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4513), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [11436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3924), - [11439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3924), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [11446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [11448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 61), - [11450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 61), - [11452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [11454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [11458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [11464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 29), - [11466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 29), - [11468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [11470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [11472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [11476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), - [11478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3986), - [11481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3986), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [11486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [11488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [11490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [11494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [11498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3972), - [11501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3972), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [11506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), - [11509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3987), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6114), - [11514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4567), - [11517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4559), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), - [11522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [11524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [11528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3692), - [11531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(675), - [11534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3944), - [11537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6128), - [11540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [11542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6092), - [11546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 14), - [11548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 14), - [11550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), - [11552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [11554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4616), - [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), - [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [11563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6130), - [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), - [11577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3619), - [11580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(718), - [11583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4002), - [11586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6133), - [11589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4673), - [11592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [11594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), - [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [11598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), - [11601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3983), - [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), - [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [11622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [11626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [11628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3938), - [11631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3938), - [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), - [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [11640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [11642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [11656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3639), - [11659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(796), - [11662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4029), - [11665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6131), - [11668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3685), - [11671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(769), - [11674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3890), - [11677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6125), - [11680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4695), - [11683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4722), - [11686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3681), - [11689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7513), - [11692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(748), - [11695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6101), - [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [11702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [11706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6589), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [11717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6597), - [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [11722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6606), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [11727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [11741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [11743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [11745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 131), - [11747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), - [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), - [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [11753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), - [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [11757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), - [11761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), - [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [11765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [11767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [11769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6138), - [11771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [11775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 71), - [11777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 30), - [11779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 30), - [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [11787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 0), - [11789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 0), - [11791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 73), - [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [11795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 44), - [11797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 44), - [11799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [11801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [11803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6134), - [11807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3657), - [11810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(790), - [11813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4019), - [11816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6134), - [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [11821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2, 0, 0), - [11823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2, 0, 0), - [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [11829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), - [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [11839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [11841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(439), - [11844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [11846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4900), - [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), - [11851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [11863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [11869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 57), - [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), - [11873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), - [11875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), - [11877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), - [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), - [11885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 44), - [11887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 44), - [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), - [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [11895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), - [11897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [11899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [11901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3697), - [11904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7068), - [11907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(811), - [11910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6099), - [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [11917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 44), - [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [11921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3, 0, 0), - [11923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3, 0, 0), - [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [11929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2, 0, 0), - [11931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2, 0, 0), - [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), - [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [11943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 44), - [11945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 44), - [11947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), - [11951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), - [11953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), - [11955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), - [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [11959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3615), - [11962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(778), - [11965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6113), - [11968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [11971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 97), - [11973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 99), - [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [11977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3653), - [11980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(787), - [11983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6104), - [11986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [11992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 44), - [11994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 44), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [12002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3, 0, 0), - [12004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3, 0, 0), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [12016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6230), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [12026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [12036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2, 0, 0), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [12052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 69), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [12060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6601), - [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [12067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), - [12069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), - [12071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), - [12101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 46), - [12103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 46), - [12105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), - [12107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), - [12109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), - [12111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), - [12113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, 0, 68), - [12115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, 0, 68), - [12117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 124), - [12119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 124), - [12121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), - [12123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), - [12125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2, 0, 0), - [12127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2, 0, 0), - [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), - [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [12135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), - [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), - [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [12141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), - [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [12147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [12151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 45), - [12153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 45), - [12155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 46), - [12157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 46), - [12159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 47), - [12161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 47), - [12163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), - [12165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), - [12167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 93), - [12169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 93), - [12171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 45), - [12173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 45), - [12175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 2), - [12177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 2), - [12179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), - [12181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), - [12183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, 0, 56), - [12185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, 0, 56), - [12187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), - [12189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), - [12191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), - [12193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), - [12195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), - [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), - [12203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 75), - [12205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 75), - [12207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 19), - [12209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 19), - [12211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), - [12213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), - [12215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 45), - [12217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 45), - [12219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 65), - [12221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 65), - [12223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 46), - [12225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 46), - [12227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 7, 0, 149), - [12229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 7, 0, 149), - [12231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 45), - [12233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 45), - [12235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 46), - [12237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 46), - [12239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 84), - [12241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 84), - [12243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 15), - [12245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 15), - [12247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 45), - [12249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 45), - [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6143), - [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), - [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [12265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [12267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [12271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), - [12273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), - [12275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), - [12277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), - [12279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 42), - [12281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 42), - [12283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5076), - [12286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [12288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 46), - [12290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 46), - [12292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3636), - [12295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [12298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6110), - [12301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(449), - [12304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), - [12306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [12314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [12316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [12318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(441), - [12321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(446), - [12324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [12326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [12328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [12336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(434), - [12339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3935), - [12342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [12344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), - [12346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [12350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 144), - [12352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 144), - [12354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 83), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [12358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 81), - [12360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 81), - [12362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 60), - [12364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 105), - [12366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 105), - [12368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 79), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [12372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3953), - [12375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 134), - [12377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 134), - [12379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 79), - [12381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [12383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6095), - [12393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [12395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [12397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [12401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(444), - [12404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 138), - [12406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 138), - [12408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 109), - [12410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 103), - [12412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 103), - [12414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 59), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [12426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 110), - [12428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 110), - [12430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 46), - [12432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 107), - [12434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 107), - [12436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 45), - [12438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 155), - [12440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 155), - [12442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 112), - [12444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [12446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [12448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [12450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 153), - [12452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 153), - [12454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 109), - [12456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [12458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [12460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [12462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [12464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [12468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [12470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), - [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), - [12478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3690), - [12481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3690), - [12484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(960), - [12487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3904), - [12490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6144), - [12493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [12495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [12497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [12499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), - [12501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [12503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [12505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [12507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [12509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [12511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [12513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), - [12515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 1, 0, 12), - [12517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [12519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [12521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [12523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3640), - [12526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1007), - [12529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4037), - [12532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6129), - [12535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), - [12537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), - [12539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [12541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [12543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 142), - [12545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 142), - [12547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 112), - [12549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [12551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [12553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [12555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [12557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [12559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), - [12561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [12563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 64), - [12565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [12567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [12569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [12571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6261), - [12573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [12575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 115), - [12577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 115), - [12579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 83), - [12581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [12583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), - [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [12589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 77), - [12591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 77), - [12593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 59), - [12595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 140), - [12597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 140), - [12599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 46), - [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [12605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 51), - [12607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6300), - [12609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [12611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), - [12613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 2, 0, 49), - [12615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), - [12617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [12619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 113), - [12621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 113), - [12623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 60), - [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [12627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 136), - [12629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 136), - [12631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 45), - [12633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [12635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [12637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [12639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), - [12643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), - [12645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6611), - [12648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [12650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), - [12656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [12658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [12660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 137), - [12662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 137), - [12664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 145), - [12666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 145), - [12668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 82), - [12670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 82), - [12672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [12674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [12676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [12678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [12680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [12682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [12684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 135), - [12686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 135), - [12688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), - [12690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 154), - [12692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 154), - [12694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 156), - [12696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 156), - [12698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3686), - [12701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7273), - [12704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3686), - [12707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1043), - [12710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7273), - [12713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6106), - [12716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6604), - [12719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3673), - [12722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3673), - [12725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1074), - [12728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3919), - [12731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6151), - [12734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [12736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [12738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3631), - [12741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1159), - [12744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6105), - [12747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5495), - [12750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 104), - [12752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 104), - [12754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 106), - [12756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 106), - [12758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [12760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [12762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [12764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 108), - [12766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 108), - [12768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 111), - [12770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 111), - [12772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 114), - [12774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 114), - [12776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 116), - [12778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 116), - [12780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [12782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3950), - [12785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 78), - [12787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 78), - [12789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), - [12791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [12793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 1, 0, 12), - [12795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6218), - [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [12801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5448), - [12804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3956), - [12807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), - [12809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 139), - [12811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 139), - [12813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [12815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), - [12817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [12819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 141), - [12821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 141), - [12823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3963), - [12826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 143), - [12828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 143), - [12830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [12832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [12834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [12836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [12838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [12840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [12842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), - [12844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5515), - [12847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), - [12849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 51), - [12851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), - [12853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6851), - [12855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 64), - [12857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), - [12859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5510), - [12862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5521), - [12865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), - [12867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 49), - [12869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6360), - [12871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), - [12873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), - [12875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6112), - [12877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [12879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [12881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [12883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3961), - [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [12888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), - [12891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7396), - [12894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3651), - [12897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1207), - [12900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7396), - [12903] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6112), - [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [12908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [12910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), - [12912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6430), - [12914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [12916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [12918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), - [12920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [12922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6237), - [12924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6237), - [12926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5614), - [12929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), - [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), - [12939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [12941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(447), - [12944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [12946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), - [12948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [12950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), - [12952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [12954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [12956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [12958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [12962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7068), - [12964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [12968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3630), - [12971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1503), - [12974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3912), - [12977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6136), - [12980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3958), - [12983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3958), - [12986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [12988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [12990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [12992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7486), - [12994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [12996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [12998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [13000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [13002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [13004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(439), - [13007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(439), - [13010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [13014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [13016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [13018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [13020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [13022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(439), - [13025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [13027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [13029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [13031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [13033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5699), - [13036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [13038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [13040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [13042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [13044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), - [13046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), - [13048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), - [13050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [13052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), - [13054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), - [13056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [13058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [13060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [13062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [13064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [13066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), - [13068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), - [13070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [13072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [13074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [13076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [13078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), - [13080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), - [13082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), - [13084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), - [13086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6227), - [13088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [13090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [13092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), - [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), - [13096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), - [13100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), - [13102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [13104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), - [13106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [13108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5890), - [13110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [13112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), - [13114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [13116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [13118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [13120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [13122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), - [13124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [13126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [13128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [13130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), - [13132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [13134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [13136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [13138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2614), - [13140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), - [13142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), - [13144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), - [13146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [13148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), - [13150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [13152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), - [13154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [13156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), - [13158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6697), - [13160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), - [13162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [13164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), - [13166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [13168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), - [13170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [13172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), - [13174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [13176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), - [13178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), - [13180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), - [13182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6699), - [13184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5905), - [13186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [13188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), - [13190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [13192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), - [13194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), - [13196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), - [13198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [13200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [13202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [13204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), - [13206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [13208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), - [13210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [13212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), - [13214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6507), - [13216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [13218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [13220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [13222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [13224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [13226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [13228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), - [13230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6743), - [13232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), - [13234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [13236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), - [13238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [13240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [13242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6767), - [13244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), - [13246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [13248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [13250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [13252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), - [13254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [13256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [13258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), - [13260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6042), - [13262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), - [13264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [13266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [13268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4046), - [13271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4047), - [13274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6098), - [13277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [13279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6149), - [13282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4774), - [13285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(150), - [13288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(151), - [13291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(152), - [13294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), - [13296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [13298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), - [13300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [13302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [13304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [13306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), - [13308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [13310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), - [13312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [13314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), - [13316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [13318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [13320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [13322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [13324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [13326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [13328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), - [13330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), - [13332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), - [13334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [13336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [13338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), - [13340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [13342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [13344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [13346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [13348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [13350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), - [13352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [13354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), - [13356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), - [13358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), - [13360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [13362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [13364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), - [13366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [13368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [13370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), - [13372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [13374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5884), - [13376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [13378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), - [13380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [13382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), - [13384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [13386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), - [13388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [13390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [13392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [13394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5896), - [13396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [13398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), - [13400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [13402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), - [13404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [13406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [13408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [13410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [13412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [13414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), - [13416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [13418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), - [13420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), - [13422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), - [13424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [13426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), - [13428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), - [13430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [13432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [13434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), - [13436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [13438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [13440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [13442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), - [13444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [13446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [13448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [13450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), - [13452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [13454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [13456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [13458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), - [13460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [13462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [13464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [13466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), - [13468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [13470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [13472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [13474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), - [13476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [13478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), - [13480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [13482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), - [13484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [13486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [13488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [13490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [13492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [13494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [13496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [13498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), - [13500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [13502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [13504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [13506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [13508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [13510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [13512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [13514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), - [13516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [13518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [13520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [13522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [13524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [13526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), - [13528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [13530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [13532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [13534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [13536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [13538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [13540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [13542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), - [13544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [13546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), - [13548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [13550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [13552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [13554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), - [13556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [13558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), - [13560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [13562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), - [13564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [13566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [13568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [13570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [13572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [13574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), - [13576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), - [13578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), - [13580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [13582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), - [13584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [13586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), - [13588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [13590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [13592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [13594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), - [13596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [13598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), - [13600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [13602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), - [13604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [13606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), - [13608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [13610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), - [13612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), - [13614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [13616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [13618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [13620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), - [13622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [13624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), - [13626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), - [13628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), - [13630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [13632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [13634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [13636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [13638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), - [13640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [13642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [13644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [13646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), - [13648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [13650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [13652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [13654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), - [13656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), - [13658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [13660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [13662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), - [13664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [13666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), - [13668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), - [13670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6057), - [13672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [13674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [13676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6657), - [13678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), - [13680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [13682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), - [13684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [13686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), - [13688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [13690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), - [13692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), - [13694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), - [13696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), - [13698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [13700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [13702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [13704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), - [13706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), - [13708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6517), - [13710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), - [13712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [13714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), - [13716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6642), - [13718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [13720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [13722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), - [13724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), - [13726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), - [13728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [13730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), - [13732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), - [13734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), - [13736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [13738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), - [13740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [13742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [13744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [13746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [13748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [13750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [13752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), - [13754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [13756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [13758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [13760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), - [13762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [13764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), - [13766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), - [13768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [13770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [13772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), - [13774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [13776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [13778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [13780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4310), - [13782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), - [13784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [13786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [13788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [13790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [13792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [13794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), - [13796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [13798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), - [13800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [13802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), - [13804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [13806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [13808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [13810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), - [13812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [13814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6258), - [13816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), - [13818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [13820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [13822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [13824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [13826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [13828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [13830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [13832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [13834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [13836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), - [13838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [13840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [13842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), - [13844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [13846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [13848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [13850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [13852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [13854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [13856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [13858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6483), - [13860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), - [13862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [13864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), - [13866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), - [13868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [13870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), - [13872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), - [13874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [13876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [13878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [13880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [13882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), - [13884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [13886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [13888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [13890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [13892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), - [13894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), - [13896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), - [13898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [13900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [13902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [13904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [13906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), - [13908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [13910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [13912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [13914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [13916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [13918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), - [13920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [13922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [13924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), - [13926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [13928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [13930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [13932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [13934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [13936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [13938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [13940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [13942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [13944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [13946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), - [13948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [13950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [13952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), - [13954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [13956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [13958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [13960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [13962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [13964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [13966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7291), - [13968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [13970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [13972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), - [13974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [13976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [13978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [13980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [13982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [13984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [13986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [13988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [13990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [13992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [13994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [13996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [13998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [14000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [14002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), - [14004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), - [14006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [14008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [14010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [14012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [14014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6243), - [14016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), - [14018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), - [14020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [14022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), - [14024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [14026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [14028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [14030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [14032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [14034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), - [14036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [14038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [14040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [14042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6109), - [14045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4775), - [14048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(353), - [14051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(354), - [14054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(355), - [14057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6117), - [14060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), - [14062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [14064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [14066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [14068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [14070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [14072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [14074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [14076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [14078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [14080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [14082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [14084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [14086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [14088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [14090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [14092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [14094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [14096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), - [14098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), - [14100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [14102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), - [14104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [14106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [14108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [14110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [14112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [14114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [14116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [14118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [14120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [14122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [14124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [14126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [14128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [14130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [14132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [14134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [14136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [14138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [14140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [14142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [14144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [14146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [14148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [14150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), - [14152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [14154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [14156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [14158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [14160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [14162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [14164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [14166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [14168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [14170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [14172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [14174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [14176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [14178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [14180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [14182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [14184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [14186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [14188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [14190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [14192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [14194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [14196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [14198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [14200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [14202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [14204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [14206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [14208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [14210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [14212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [14214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1, 0, 0), - [14216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 51), - [14218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [14220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [14222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), - [14224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [14226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [14228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [14230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [14232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [14234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [14236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), - [14238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [14240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [14242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), - [14244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [14246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [14248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [14250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [14252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [14254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [14256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [14258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [14260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [14262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [14264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [14266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [14268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3, 0, 0), - [14270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [14272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [14274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [14276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [14278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [14280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [14282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [14284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [14286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [14288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [14290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [14292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [14294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), - [14296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [14298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [14300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [14302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [14304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [14306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [14308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), - [14310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [14312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), - [14314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [14316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [14318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [14320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [14322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [14324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), - [14326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [14328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 1, 0, 12), - [14330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [14332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [14334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [14336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), - [14338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6295), - [14341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(5710), - [14344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6189), - [14347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), - [14349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6295), - [14352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6189), - [14355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [14357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), - [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), - [14361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4014), - [14364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4014), - [14367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), - [14369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), - [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), - [14373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [14375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), - [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), - [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [14381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6239), - [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [14385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6206), - [14387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6295), - [14389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [14391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), - [14393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 1, 0, 12), - [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), - [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), - [14399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [14401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7063), - [14403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [14405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), - [14407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7598), - [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), - [14411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [14413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7408), - [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), - [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [14419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [14421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6906), - [14423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6906), - [14425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), - [14427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 2, 0, 12), - [14429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [14431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [14433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), - [14435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [14437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_binary_expression, 3, 0, 27), - [14439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), - [14441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 7), - [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), - [14445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 50), - [14447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 0), - [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [14451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 12), - [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [14455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6284), - [14458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6902), - [14460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), - [14462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 49), - [14464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6753), - [14466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [14468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [14470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [14472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [14474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [14476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [14478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), - [14480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [14482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [14484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [14486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [14488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 64), - [14490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [14492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [14494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), - [14496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 89), - [14498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [14500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [14502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [14504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [14506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [14508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [14510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [14512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [14514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [14516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [14518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [14520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [14522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 63), - [14524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [14526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [14528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [14530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [14532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [14534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [14536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7057), - [14538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 51), - [14540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6775), - [14542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [14544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [14546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [14548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [14550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [14552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [14554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [14556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 92), - [14558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [14560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [14562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [14564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 64), - [14566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 48), - [14568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 48), - [14570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [14572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [14574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [14576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [14578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 51), - [14580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [14582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [14584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 51), - [14586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [14588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [14590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [14592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [14594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 49), - [14596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [14598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [14600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [14602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [14604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [14606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [14608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [14610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [14612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [14614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [14616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [14618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [14620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [14622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [14624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [14626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [14628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [14630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [14632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [14634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [14636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [14638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [14640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [14642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [14644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [14646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [14648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 122), - [14650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [14652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [14654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [14660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [14666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 90), - [14668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), - [14670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [14672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [14674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), - [14676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [14680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 123), - [14682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [14686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [14690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [14692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [14694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 49), - [14696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [14698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [14700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [14702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 91), - [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [14706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [14708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), - [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6621), - [14714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [14716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), - [14718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3946), - [14721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), - [14723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6820), - [14725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 46), - [14727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), - [14729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [14731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6780), - [14733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [14735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 52), - [14737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [14739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), - [14741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4965), - [14744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), - [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [14748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 85), - [14750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [14752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 121), - [14754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 53), - [14756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 31), - [14758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 32), - [14760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [14762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), - [14764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(5478), - [14767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concatenation_in_expansion, 2, 0, 0), - [14769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), - [14771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(423), - [14774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [14776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 7), - [14778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), - [14780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), SHIFT_REPEAT(6495), - [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), - [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), - [14789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 62), - [14791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [14793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [14795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), - [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [14799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), - [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [14803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [14805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 45), - [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [14809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [14811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6741), - [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), - [14815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [14817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), - [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6764), - [14821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [14823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6776), - [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), - [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), - [14829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 83), - [14831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), - [14833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), - [14835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), - [14837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 2, 0, 12), - [14839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6680), - [14842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 79), - [14844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), - [14846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [14848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [14850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, 0, 12), - [14852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 112), - [14854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [14856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [14858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [14860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 46), - [14862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [14864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [14866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, 0, 55), - [14868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, 0, 55), - [14870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 109), - [14872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), - [14874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [14876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [14878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [14880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), - [14882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), - [14884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), - [14886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [14888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [14890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 26), - [14892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 26), - [14894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [14896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), - [14898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [14900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), - [14902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [14904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [14906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 59), - [14908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), - [14910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [14912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6621), - [14915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 60), - [14917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [14921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 45), - [14923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), - [14931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), - [14933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4993), - [14936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), - [14938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [14940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), - [14942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, 0, 158), - [14944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4993), - [14946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [14948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [14950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), - [14952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 96), - [14954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [14956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 98), - [14958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [14960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), - [14962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [14964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [14966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [14968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), - [14970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [14972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [14974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [14976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [14978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [14980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), - [14982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), - [14984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [14986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), - [14988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [14990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [14992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [14994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [14996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [14998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [15000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), - [15002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [15004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), - [15006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 100), - [15008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [15010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [15012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [15014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [15016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [15018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [15020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [15022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 101), - [15024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 102), - [15026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [15028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), - [15030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [15032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [15034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 70), - [15036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [15038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [15040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [15042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [15044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [15054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [15056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [15058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), - [15060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [15062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [15064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [15066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [15068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [15070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4940), - [15073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [15075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [15077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [15079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 72), - [15081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [15083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [15085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), - [15087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 74), - [15089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [15091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [15093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [15095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [15097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [15099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [15101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [15103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [15105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [15107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [15109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [15111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [15113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 150), - [15115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 151), - [15117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 152), - [15119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [15121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [15123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [15125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 12), - [15127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6738), - [15129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [15131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [15133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [15135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [15137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [15139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [15141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [15143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [15145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [15147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [15149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), - [15151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(3726), - [15154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [15160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [15162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [15166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [15168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [15172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [15174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 128), - [15176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 129), - [15178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [15180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [15182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [15184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [15186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 130), - [15188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [15190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [15192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 132), - [15194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 133), - [15196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), - [15198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [15200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [15202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [15204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [15206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [15208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 58), - [15210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [15212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [15214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [15216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [15218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), - [15220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [15222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [15224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [15226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [15228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [15230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [15232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [15234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [15236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), - [15238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [15240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 80), SHIFT_REPEAT(3573), - [15243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 80), - [15245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [15247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [15249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [15251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), - [15253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [15255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [15257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [15259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [15261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6475), - [15263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6950), - [15265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 89), - [15267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 1, 0, 12), - [15269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), - [15271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [15273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 12), - [15275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [15277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), - [15279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), - [15281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [15283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), - [15285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 88), - [15287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), - [15289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [15291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), - [15293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 119), - [15295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [15297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), - [15299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [15301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6378), - [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), - [15313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [15321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), - [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [15325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [15327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [15329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [15333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [15335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [15337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [15339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), - [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [15349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [15353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [15361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [15365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__test_command_binary_expression, 3, 0, 43), - [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), - [15371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [15373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [15377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [15387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [15395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), - [15403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), - [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), - [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [15419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [15421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [15423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [15425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [15427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [15429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), - [15431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [15433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [15435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [15437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [15439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [15441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [15443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [15445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [15447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [15449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 86), - [15451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), - [15453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [15455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [15457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [15459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), - [15461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), - [15463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), - [15465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [15467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [15469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 87), - [15471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [15473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4933), - [15475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [15477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), - [15479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), - [15481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [15483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [15485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7256), - [15487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), - [15489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [15491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [15493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [15495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [15497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), - [15499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [15501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [15503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [15505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), - [15507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [15509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [15511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), - [15513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [15515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [15517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [15519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4986), - [15521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), - [15523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [15525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [15527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), - [15529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6229), - [15531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [15533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [15535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), - [15537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [15539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), - [15541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), - [15543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [15545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6734), - [15547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 7, 0, 157), - [15549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [15551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [15553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7283), - [15555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), - [15557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [15559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), - [15561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 146), - [15563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), - [15565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 147), - [15567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [15569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [15571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [15573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [15575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 148), - [15577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [15579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [15581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [15583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [15585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [15587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [15589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), - [15591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [15593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [15595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [15597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), - [15599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), - [15601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [15603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), - [15605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [15607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [15609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [15611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [15613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [15615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [15617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [15619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [15621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), - [15623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), - [15625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [15627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [15629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [15631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [15633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [15635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [15637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [15639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [15641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), - [15643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [15645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [15647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [15649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7504), - [15651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [15653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 117), - [15655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [15657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [15659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), - [15661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), - [15663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [15665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), - [15667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [15669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [15671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), - [15673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [15675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [15677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [15679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [15681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [15683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6949), - [15685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [15687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [15689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [15691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [15693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [15695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), - [15697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [15699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [15701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [15703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6423), - [15705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), - [15707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [15709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [15711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [15713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [15715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), - [15717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [15719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), - [15721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), - [15723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [15725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 118), - [15727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), - [15729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [15731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [15733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), - [15735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), - [15737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [15739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), - [15741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [15743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [15745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [15747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), - [15749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [15751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [15753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), - [15755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [15757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [15759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [15761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [15763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [15765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [15767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [15769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [15771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [15773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7437), - [15775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [15777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [15779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), - [15781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [15783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 120), - [15785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), - [15787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [15789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [15791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [15793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [15795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), - [15797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), - [15799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [15801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [15803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [15805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [15807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), - [15809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [15811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [15813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [15815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), - [15817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [15819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6877), - [15821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [15823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [15825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [15827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [15829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), - [15831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), - [15833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [15835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), - [15837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [15839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), - [15841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), - [15843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [15845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [15847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), - [15849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [15851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [15853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6952), - [15855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [15857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [15859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [15861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [15863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [15865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [15867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [15869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [15871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [15873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [15875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), - [15877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [15879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [15881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [15883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [15885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7018), - [15887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [15889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [15891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [15893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [15895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [15897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [15899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [15901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [15903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [15905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [15907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [15909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), - [15911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [15913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [15915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [15917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [15919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [15921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), - [15923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [15925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [15927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [15929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [15931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [15933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), - [15935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [15937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [15939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [15941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [15943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [15945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [15947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [15949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [15951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), - [15953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), - [15955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [15957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), - [15959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [15961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [15963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [15965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), - [15967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [15969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [15971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [15973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), - [15975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [15977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [15979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), - [15981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [15983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [15985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [15987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [15989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [15991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), - [15993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4948), - [15995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [15997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [15999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [16001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [16003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [16005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [16007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [16009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [16011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [16013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [16015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [16017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [16019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [16021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [16023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [16025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [16027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [16029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [16031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [16033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [16035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [16037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [16039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [16041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [16043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [16045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [16047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), - [16049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [16051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [16053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [16055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [16057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [16059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [16061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [16063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), - [16065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [16067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [16069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [16071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [16073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [16075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [16077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [16079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [16081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [16083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [16085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [16087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), - [16089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [16091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [16093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [16095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [16097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [16099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [16101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [16103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [16105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [16107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [16109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [16111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [16113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [16115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [16117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), - [16119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [16121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [16123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [16125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [16127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [16129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7111), - [16131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [16133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [16135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [16137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [16139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [16141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [16143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [16145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [16147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [16149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [16151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [16153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), - [16155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [16157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [16159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), - [16161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [16163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [16165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [16167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), - [16169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), - [16171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [16173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [16175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [16177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [16179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [16181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [16183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [16185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [16187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [16189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [16191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [16193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [16195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [16197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), - [16199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [16201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [16203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [16205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [16207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [16209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), - [16211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [16213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [16215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), - [16217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), - [16219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [16221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [16223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), - [16225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [16227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), - [16229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6895), - [16231] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [16233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [16235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), - [16237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [16239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [16241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6167), - [16243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [16245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [16247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), - [16249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), - [16251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [16253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [16255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [16257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), - [16259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [16261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [16263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [16265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [16267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), - [16269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [16271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6155), - [16273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [16275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [16277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [16279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [16281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [16283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [16285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [16287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6402), - [16289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), - [16291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), - [16293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), - [16295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [16297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), - [16299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), - [16301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), - [16303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), - [16305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [16307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [16309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), - [16311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), - [16313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [16315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [16317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [16319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [16321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [16323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [16325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [16327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [16329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [16331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [16333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [16335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [16337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [16339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [16341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), - [16343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [16345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), - [16347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [16349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [16351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [16353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), - [16355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [16357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [16359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [16361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [16363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), - [16365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), - [16367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [16369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [16371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7046), - [16373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), - [16375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), - [16377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), - [16379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_operator, 2, 0, 49), - [16381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [16383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), - [16385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [16387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 2, 0, 12), - [16389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [16391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [16393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), - [16395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6404), - [16397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [16399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [16401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [16403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), - [16405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [16407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [16409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [16411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6653), - [16413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [16415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [16417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [16419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7174), - [16421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [16423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [16425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), - [16427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), - [16429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [16431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [16433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), - [16435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [16437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [16439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), - [16441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [16443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), - [16445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [16447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [16449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5656), - [16451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [16453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [16455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [16457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [16459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [16461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), - [16463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [16465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [16467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), - [16469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), - [16471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), - [16473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [16475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [16477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), - [16479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [16481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), - [16483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), - [16485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), - [16487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), - [16489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), - [16491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [16493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), - [16495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [16497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), - [16499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6918), - [16501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6925), - [16503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), - [16505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6939), - [16507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), - [16509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [16511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), - [16513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), - [16515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), - [16517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), - [16519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6988), - [16521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), - [16523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), - [16525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), - [16527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), - [16529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), - [16531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7030), - [16533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [16535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [16537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [16539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), - [16541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), - [16543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [16545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [16547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [16549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), - [16551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), - [16553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7107), - [16555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7114), - [16557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [16559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), - [16561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [16563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [16565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7149), - [16567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), - [16569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [16571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [16573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), - [16575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [16577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7191), - [16579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [16581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), - [16583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), - [16585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [16587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [16589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [16591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), - [16593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), - [16595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [16597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [16599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [16601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), - [16603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7482), - [16605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7511), - [16607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), - [16609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), - [16611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [16613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [16615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [16617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), - [16619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [16621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), - [16623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7544), - [16625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), - [16627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7546), - [16629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [16631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [16633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [16635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [16637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [16639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), - [16641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7553), - [16643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), - [16645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [16647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [16649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), - [16651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), - [16653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [16655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7560), - [16657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7561), - [16659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [16661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [16663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), - [16665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [16667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), - [16669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7567), - [16671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7568), - [16673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), - [16675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [16677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), - [16679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), - [16681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [16683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), - [16685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), - [16687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), - [16689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), - [16691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), - [16693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [16695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [16697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [16699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [16701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7583), - [16703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7584), - [16705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), - [16707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7586), - [16709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7587), - [16711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [16713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7589), - [16715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), - [16717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [16719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), - [16721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), - [16723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [16725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [16727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [16729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [1344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_translated_string, 2, 0, 0), + [1346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_translated_string, 2, 0, 0), + [1348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 10), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string, 3, 0, 0), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string, 3, 0, 0), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 3, 0, 0), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_process_substitution, 3, 0, 0), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_process_substitution, 3, 0, 0), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_brace_expression, 5, 0, 0), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_brace_expression, 5, 0, 0), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 0), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 0), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arithmetic_expansion, 4, 0, 0), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 3, 0, 31), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 3, 0, 31), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command_substitution, 3, 0, 35), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_substitution, 3, 0, 35), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_number, 1, 0, 0), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_number, 1, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), + [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), + [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(502), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [1403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3745), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [1410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7136), + [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(529), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [1424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 2), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 2), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7851), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 19), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 19), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5988), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6313), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7861), + [1516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(913), + [1519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4113), + [1522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3650), + [1527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), + [1529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3753), + [1532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4114), + [1535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5952), + [1538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(877), + [1541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5877), + [1544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7292), + [1547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(985), + [1550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6378), + [1553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4665), + [1556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(369), + [1559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(370), + [1562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(371), + [1565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(308), + [1568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6896), + [1571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(910), + [1574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1277), + [1577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7851), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5924), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6398), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7810), + [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 39), + [1620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 39), + [1622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 18), + [1624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 18), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6987), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7816), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 2, 0, 0), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 2, 0, 0), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6338), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [1702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7849), + [1704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1077), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4101), + [1710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), + [1712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), + [1714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4102), + [1717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5945), + [1720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1055), + [1723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5918), + [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7276), + [1729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1203), + [1732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6338), + [1735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4916), + [1738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(361), + [1741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(362), + [1744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(363), + [1747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(300), + [1750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [1753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6644), + [1756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1075), + [1759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7849), + [1762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_command, 1, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_command, 1, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [1768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(953), + [1771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4185), + [1774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3686), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3785), + [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4186), + [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5988), + [1786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(999), + [1789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5916), + [1792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7372), + [1795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1165), + [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6313), + [1801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4681), + [1804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(399), + [1807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(400), + [1810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(401), + [1813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(348), + [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6910), + [1819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(947), + [1822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1493), + [1825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7861), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [1834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [1844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5851), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6381), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [1878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7859), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1078), + [1887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4125), + [1890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3683), + [1893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3890), + [1896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4128), + [1899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6056), + [1902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1156), + [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5833), + [1908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6987), + [1911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1282), + [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6401), + [1917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4736), + [1920] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(186), + [1923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(187), + [1926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(188), + [1929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(169), + [1932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7138), + [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1074), + [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1705), + [1941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7816), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [1948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [1958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1115), + [1961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4214), + [1964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3655), + [1967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4033), + [1970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4216), + [1973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6008), + [1976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1038), + [1979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5924), + [1982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6927), + [1985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1244), + [1988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6398), + [1991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4688), + [1994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(158), + [1997] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(159), + [2000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(61), + [2003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(145), + [2006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7383), + [2009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1087), + [2012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1655), + [2015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7810), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1312), + [2021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4173), + [2024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4174), + [2027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5981), + [2030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1216), + [2033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5851), + [2036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7356), + [2039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1474), + [2042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6381), + [2045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4678), + [2048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(393), + [2051] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(394), + [2054] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(395), + [2057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(340), + [2060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [2063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6668), + [2066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1311), + [2069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7859), + [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), + [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [2090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6904), + [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6390), + [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), + [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7808), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6347), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), + [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7814), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 8), + [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 8), + [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 21), + [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 21), + [2162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1097), + [2165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4096), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), + [2172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4097), + [2175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5942), + [2178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1052), + [2181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5891), + [2184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7268), + [2187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1200), + [2190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6318), + [2193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4912), + [2196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(357), + [2199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(358), + [2202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(359), + [2205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(296), + [2208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1027), + [2211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7848), + [2214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [2216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [2218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [2222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1422), + [2225] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4247), + [2228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4210), + [2231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6049), + [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1402), + [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5895), + [2240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6967), + [2243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1663), + [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6347), + [2249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4729), + [2252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(178), + [2255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [2258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [2261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [2264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(577), + [2267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6747), + [2270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1421), + [2273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7814), + [2276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [2280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [2282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1451), + [2285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4163), + [2288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4166), + [2291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5957), + [2294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1331), + [2297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5830), + [2300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6904), + [2303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1621), + [2306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6390), + [2309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4707), + [2312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(133), + [2315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(134), + [2318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(135), + [2321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(136), + [2324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(580), + [2327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6673), + [2330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1431), + [2333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7808), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [2338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1314), + [2341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3721), + [2344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3794), + [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1256), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7410), + [2353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1313), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 1, 0, 0), + [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 1, 0, 0), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [2382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), + [2384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [2390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [2392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7850), + [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 1, 0, 0), + [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 1, 0, 0), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7316), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6355), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7854), + [2442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1300), + [2445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4162), + [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4164), + [2451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5977), + [2454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1215), + [2457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5906), + [2460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7348), + [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1459), + [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6364), + [2469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4677), + [2472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(390), + [2475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(391), + [2478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(392), + [2481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(336), + [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1299), + [2487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7858), + [2490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1292), + [2493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4132), + [2496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4133), + [2499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5962), + [2502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1202), + [2505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5903), + [2508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7316), + [2511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1413), + [2514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6355), + [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4672), + [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(378), + [2523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(379), + [2526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(380), + [2529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [2532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1291), + [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7854), + [2538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unset_command, 2, 0, 0), + [2540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unset_command, 2, 0, 0), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 4), + [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 4), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [2562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1747), + [2565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1611), + [2568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(603), + [2571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6771), + [2574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1746), + [2577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1268), + [2580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4107), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), + [2585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), + [2587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4108), + [2590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5948), + [2593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1195), + [2596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5923), + [2599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7284), + [2602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1489), + [2605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6353), + [2608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4661), + [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(365), + [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(366), + [2617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(367), + [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(304), + [2623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(604), + [2626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1267), + [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7850), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7324), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7855), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6077), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7822), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), + [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7860), + [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1391), + [2765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4251), + [2768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4256), + [2771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6045), + [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1385), + [2777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5882), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6957), + [2783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1651), + [2786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6315), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4718), + [2792] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(174), + [2795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [2801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [2804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1387), + [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7813), + [2810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1322), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4206), + [2816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4207), + [2819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5997), + [2822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1473), + [2825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5811), + [2828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7396), + [2831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), + [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6332), + [2837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4684), + [2840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(408), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(409), + [2846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(410), + [2849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(360), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), + [2855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7864), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4207), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7864), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [2898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6389), + [2916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [2918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [2920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [2922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [2924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7852), + [2930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1372), + [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4201), + [2936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4219), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6105), + [2942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1412), + [2945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5788), + [2948] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7374), + [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1526), + [2954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6431), + [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4805), + [2960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(109), + [2963] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(110), + [2966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [2972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1370), + [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7802), + [2978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1491), + [2981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4179), + [2984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4180), + [2987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5984), + [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1425), + [2993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5900), + [2996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7364), + [2999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1716), + [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6411), + [3005] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4679), + [3008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(396), + [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(397), + [3014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(398), + [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(344), + [3020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [3023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1490), + [3026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7860), + [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [3037] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1441), + [3040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4119), + [3043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4120), + [3046] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5955), + [3049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1377), + [3052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5894), + [3055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7300), + [3058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1522), + [3061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6389), + [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4668), + [3067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(372), + [3070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(373), + [3073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(374), + [3076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(312), + [3079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1440), + [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7852), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7809), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [3149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1584), + [3152] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4193), + [3155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4195), + [3158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5985), + [3161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1553), + [3164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5817), + [3167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6917), + [3170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1892), + [3173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6410), + [3176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4752), + [3179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(138), + [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(139), + [3185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(140), + [3188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(141), + [3191] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(656), + [3194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1582), + [3197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7809), + [3200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [3202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [3216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [3218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [3222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__statements_repeat1, 2, 0, 0), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 3, 0, 0), + [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 3, 0, 0), + [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [3234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [3236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [3242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [3246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), + [3252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [3254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [3260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [3264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [3266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7815), + [3268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [3270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [3272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [3274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [3276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 2, 0, 0), + [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 2, 0, 0), + [3282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [3284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [3286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [3288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [3290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [3292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [3294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), + [3296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6374), + [3300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [3302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [3304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [3306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [3308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7826), + [3314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1684), + [3317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4117), + [3320] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4184), + [3323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6053), + [3326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1650), + [3329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5795), + [3332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6977), + [3335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1921), + [3338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6376), + [3341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4731), + [3344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [3347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [3350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(184), + [3353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [3356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(674), + [3359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1681), + [3362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7815), + [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1559), + [3368] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4130), + [3371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4138), + [3374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6092), + [3377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1739), + [3380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5804), + [3383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7084), + [3386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1772), + [3389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6374), + [3392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4790), + [3395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [3398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [3401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [3404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [3407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1506), + [3410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7826), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), + [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7124), + [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), + [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7831), + [3445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1569), + [3448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4081), + [3451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4084), + [3454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6108), + [3457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1654), + [3460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5869), + [3463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7124), + [3466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2093), + [3469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6400), + [3472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4821), + [3475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(253), + [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [3481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(255), + [3484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(228), + [3487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1568), + [3490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7831), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7308), + [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6427), + [3511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [3517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7853), + [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), + [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7380), + [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6322), + [3547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7862), + [3561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1718), + [3564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4191), + [3567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4192), + [3570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5991), + [3573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1674), + [3576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5792), + [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7380), + [3582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2059), + [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6322), + [3588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4682), + [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(402), + [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(403), + [3597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(404), + [3600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(352), + [3603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1717), + [3606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7862), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [3613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [3619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [3621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5874), + [3623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7404), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [3635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [3637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7865), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [3647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1745), + [3650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1608), + [3653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1744), + [3656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2078), + [3659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3666), + [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3806), + [3665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(1829), + [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7798), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2077), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [3686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1796), + [3689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1888), + [3692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1795), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6380), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7827), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6434), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5777), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6387), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6218), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7829), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6396), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7830), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4385), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1809), + [3862] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4257), + [3865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4258), + [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6104), + [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2080), + [3874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5834), + [3877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7116), + [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), + [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6396), + [3886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4814), + [3889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(249), + [3892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(250), + [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(251), + [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(224), + [3901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1808), + [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7830), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7824), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [3955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2251), + [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4213), + [3961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(3653), + [3964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4004), + [3967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4221), + [3970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6077), + [3973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2123), + [3976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(5784), + [3979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7047), + [3982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2251), + [3985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2362), + [3988] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(6341), + [3991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(4768), + [3994] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(209), + [3997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(210), + [4000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(211), + [4003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(192), + [4006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7623), + [4009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2293), + [4012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(2601), + [4015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 38), SHIFT_REPEAT(7822), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6328), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [4062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7863), + [4066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [4070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), + [4073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4087), + [4076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4092), + [4079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6086), + [4082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), + [4085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5925), + [4088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7067), + [4091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2171), + [4094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6358), + [4097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4784), + [4100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [4103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(222), + [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(223), + [4109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(200), + [4112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2015), + [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7824), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [4142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2052), + [4145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(1804), + [4148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(752), + [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2051), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [4168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2384), + [4171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), + [4174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(756), + [4177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6632), + [4180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2383), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [4207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7825), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [4263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [4265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6787), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7820), + [4307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2236), + [4310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2189), + [4313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [4322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2456), + [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4104), + [4328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4111), + [4331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6071), + [4334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2475), + [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5831), + [4340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7027), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2456), + [4346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2513), + [4349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6330), + [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4766), + [4355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [4364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [4367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(783), + [4370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6787), + [4373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2454), + [4376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7820), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [4387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [4409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [4413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4175), + [4419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4182), + [4422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6063), + [4425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2339), + [4428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5888), + [4431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7007), + [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2310), + [4437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2450), + [4440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6314), + [4443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4753), + [4446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(193), + [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [4452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [4455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [4458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), + [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7818), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), + [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [4486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2382), + [4489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2357), + [4492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), + [4495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [4497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3, 0, 0), + [4499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), + [4501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3, 0, 0), + [4503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6649), + [4508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_not_pipeline, 1, 0, 0), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [4514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7408), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7684), + [4523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statements, 1, 0, 0), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), + [4531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3855), + [4534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3855), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [4541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2433), + [4544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4150), + [4547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4152), + [4550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6125), + [4553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2458), + [4556] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5835), + [4559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7164), + [4562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2433), + [4565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2589), + [4568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6423), + [4571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4843), + [4574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [4577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(274), + [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(275), + [4583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(248), + [4586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2431), + [4589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7836), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2407), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [4598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2469), + [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4106), + [4604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4109), + [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6115), + [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2452), + [4613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5922), + [4616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7140), + [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2469), + [4622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2576), + [4625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6408), + [4628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4830), + [4631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(262), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(263), + [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2464), + [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7833), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [4655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [4657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2407), + [4660] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2427), + [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2406), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7836), + [4702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2466), + [4705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2416), + [4708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(846), + [4711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), + [4714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), + [4717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3900), + [4720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6680), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7711), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [4743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5858), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6333), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7821), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [4775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2615), + [4778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4122), + [4781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4123), + [4784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6118), + [4787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2564), + [4790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5772), + [4793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7148), + [4796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2615), + [4799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2778), + [4802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6419), + [4805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4832), + [4808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(265), + [4811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(266), + [4814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(267), + [4817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(240), + [4820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2614), + [4823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7834), + [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [4828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6419), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7834), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [4876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [4894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3934), + [4897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3934), + [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), + [4902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 37), + [4904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2572), + [4907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4145), + [4910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4153), + [4913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6074), + [4916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2512), + [4919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(5858), + [4922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7037), + [4925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2572), + [4928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2733), + [4931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(6333), + [4934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(4767), + [4937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [4940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(206), + [4943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [4946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [4949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(888), + [4952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(2570), + [4955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 2, 0, 0), SHIFT_REPEAT(7821), + [4958] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2521), + [4961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2484), + [4964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2520), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 10), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 10), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7837), + [5009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 2, 0, 0), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 2, 0, 0), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [5021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7621), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [5032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), + [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 16), + [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), + [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 17), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 23), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 23), + [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_herestring_redirect, 3, 0, 4), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_herestring_redirect, 3, 0, 4), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [5056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [5076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7846), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [5096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2544), + [5099] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4082), + [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4083), + [5105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5935), + [5108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2612), + [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5876), + [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7252), + [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2544), + [5120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), + [5123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6340), + [5126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4908), + [5129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(345), + [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(346), + [5135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(347), + [5138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(288), + [5141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2543), + [5144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7846), + [5147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 2, 0, 36), + [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 2, 0, 36), + [5151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7052), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [5162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), + [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6759), + [5171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6717), + [5174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3882), + [5177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3882), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statements, 1, 0, 0), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5439), + [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [5202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [5208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [5210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), + [5212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6422), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7835), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [5244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [5246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), + [5249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [5251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), + [5253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), + [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [5259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [5265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), + [5267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [5275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3973), + [5278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3973), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [5283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), + [5285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [5289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [5295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [5305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [5311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7844), + [5323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2749), + [5326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4176), + [5329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4165), + [5332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5928), + [5335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2743), + [5338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5861), + [5341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7236), + [5344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2749), + [5347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2787), + [5350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6393), + [5353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4906), + [5356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(337), + [5359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(338), + [5362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2730), + [5371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7844), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [5386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7260), + [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7847), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5444), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5448), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [5424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3961), + [5427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3961), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [5440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), + [5442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 1), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [5456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4059), + [5459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4059), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6779), + [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [5475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3878), + [5478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3878), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [5487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3885), + [5490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3885), + [5493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 25), + [5495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 25), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [5499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignment, 3, 0, 24), + [5501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignment, 3, 0, 24), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6619), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [5520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1198), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [5525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), + [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 1), + [5529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_command_repeat1, 1, 0, 0), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [5535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1213), + [5538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 1, 0, 0), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7593), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [5569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [5571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [5573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7244), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [5593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), + [5595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6361), + [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [5599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7845), + [5611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [5613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [5615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), + [5619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [5627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [5633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3846), + [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3846), + [5639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7683), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [5646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [5650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3892), + [5653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3892), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [5664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3919), + [5667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3919), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), + [5678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3947), + [5681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3947), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [5690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3960), + [5693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3960), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [5700] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1450), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), + [5715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [5717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), + [5721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), + [5725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [5731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7841), + [5739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3179), + [5742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4211), + [5745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4212), + [5748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6141), + [5751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3204), + [5754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5827), + [5757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7212), + [5760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3488), + [5763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6321), + [5766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4888), + [5769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(317), + [5772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(318), + [5775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(319), + [5778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(268), + [5781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3177), + [5784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7841), + [5787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), + [5789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 1), + [5791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), + [5793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unset_command_repeat1, 1, 0, 0), + [5795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), + [5797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat2, 1, 0, 3), + [5799] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1432), + [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 1, 0, 0), + [5804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 1, 0, 0), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4852), + [5810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [5818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1455), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [5843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [5855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1571), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [5860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1564), + [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [5865] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), + [5868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3903), + [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [5873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [5879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [5881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3941), + [5884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3941), + [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 2, 0, 9), + [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 2, 0, 9), + [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [5905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_file_redirect, 3, 0, 22), + [5907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_file_redirect, 3, 0, 22), + [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [5913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4015), + [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4015), + [5919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), + [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7220), + [5933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [5935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [5937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7842), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [5959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3968), + [5962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3968), + [5965] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3814), + [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3814), + [5971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1673), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [5978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1523), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [5987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), + [5990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3985), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5843), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [6011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3838), + [6014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3838), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [6021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [6023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), + [6025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), + [6030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 3), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [6043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), + [6046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4080), + [6049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4098), + [6052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6060), + [6055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3550), + [6058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5826), + [6061] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6997), + [6064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3533), + [6067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3572), + [6070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6415), + [6073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4744), + [6076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(417), + [6079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(190), + [6082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [6085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), + [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7817), + [6094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4010), + [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4010), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [6104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_expression, 2, 0, 66), + [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6638), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2954), + [6111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_pipeline, 2, 0, 0), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), + [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [6129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [6131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [6133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [6137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1997), + [6140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1778), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [6151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [6163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1823), + [6166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3977), + [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3977), + [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [6180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3759), + [6183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3759), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [6206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(1998), + [6209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negated_command, 2, 0, 0), + [6211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negated_command, 2, 0, 0), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [6217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3749), + [6220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3749), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [6229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_command_name, 1, 0, 0), SHIFT(7710), + [6232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3789), + [6235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3789), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7471), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [6252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), SHIFT(6616), + [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [6263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2228), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [6290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2183), + [6293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [6308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2181), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [6313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [6315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2250), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [6326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2144), + [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [6331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2297), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4050), + [6342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4013), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [6349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [6352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4050), + [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), + [6361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), + [6364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3781), + [6367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2726), + [6370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2697), + [6373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1693), + [6376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1699), + [6379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1987), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [6384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1977), + [6387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1306), + [6390] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3559), + [6393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2346), + [6396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4770), + [6399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2418), + [6402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1551), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [6407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4541), + [6410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(491), + [6413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2536), + [6416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2636), + [6419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2375), + [6422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(512), + [6425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2177), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [6430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3304), + [6433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2231), + [6436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2306), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [6441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4518), + [6444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), + [6447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1034), + [6450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2083), + [6453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4546), + [6456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4368), + [6459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1172), + [6462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5243), + [6465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2377), + [6468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3373), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [6473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1508), + [6476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1743), + [6479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4878), + [6482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4573), + [6485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1333), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [6490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2099), + [6493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4401), + [6496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1971), + [6499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6567), + [6502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2586), + [6505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(932), + [6508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(929), + [6511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2599), + [6514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5375), + [6517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6271), + [6520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2302), + [6523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6606), + [6526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4399), + [6529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6308), + [6532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3442), + [6535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2505), + [6538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6704), + [6541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5486), + [6544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2957), + [6547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(4416), + [6550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6484), + [6553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3474), + [6556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5741), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [6561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2641), + [6564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2839), + [6567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1787), + [6570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1347), + [6573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(890), + [6576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2933), + [6579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2975), + [6582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1350), + [6585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5606), + [6588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2752), + [6591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3480), + [6594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5544), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), + [6599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6206), + [6602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6602), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [6607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1542), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [6612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1260), + [6615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(6305), + [6618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(2720), + [6621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3955), + [6624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1229), + [6627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1232), + [6630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(3219), + [6633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1499), + [6636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2380), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [6647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1084), + [6650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(1560), + [6653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 1, 0, 0), SHIFT(5509), + [6656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3897), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), + [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4966), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5904), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7132), + [6683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6554), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6382), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7832), + [6703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2857), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [6739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3991), + [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), + [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), + [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), + [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [6812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2425), + [6815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2434), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [6820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2445), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [6833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2530), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), + [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [6842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), + [6844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_literal, 1, 0, 0), + [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [6848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 0), + [6850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 0), + [6852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3828), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [6859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3818), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [6866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3827), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [6887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3763), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), + [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6538), + [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7002), + [6908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2693), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [6917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3869), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7618), + [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [6944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 2, 0, 0), + [6946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 2, 0, 0), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [6950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [6960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3822), + [6963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3865), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [6970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3868), + [6973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2754), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [6986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2773), + [6989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [6993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 40), + [6995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 40), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, 0, 41), + [7003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, 0, 41), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [7007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_postfix_expression, 2, 0, 27), + [7009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_postfix_expression, 2, 0, 27), + [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 43), + [7013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 43), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 40), + [7019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 40), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [7023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2939), + [7026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, 0, 41), + [7028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, 0, 41), + [7030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [7034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2969), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7043] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2970), + [7046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 12), + [7048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 12), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [7056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2978), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extglob_blob, 3, 0, 0), + [7065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extglob_blob, 3, 0, 0), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [7073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3858), + [7076] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2948), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [7085] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2815), + [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), + [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 43), + [7110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_binary_expression, 3, 0, 43), + [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6331), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), + [7192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), + [7194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_unary_expression, 2, 0, 12), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4920), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7065), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [7228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6281), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7622), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6215), + [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [7276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [7278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [7288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [7294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6713), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), + [7332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 7), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [7364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), + [7367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), + [7369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 5), + [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [7373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, 0, 76), + [7375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 76), + [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 40), + [7379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 40), + [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, 0, 41), + [7383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, 0, 41), + [7385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [7391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3181), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), + [7398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_expression, 1, 0, 6), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [7402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), + [7404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 0), + [7408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 76), + [7410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_ternary_expression, 5, 0, 76), + [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), + [7414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_parenthesized_expression, 3, 0, 0), + [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), + [7418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmetic_postfix_expression, 2, 0, 27), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [7422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3230), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5735), + [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [7463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), + [7473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [7477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [7509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [7537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [7557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [7565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), + [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [7571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [7573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [7589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [7599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [7601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [7605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [7625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [7633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [7635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), + [7637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [7641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), + [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 3, 0, 0), + [7645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_binary_expression, 3, 0, 43), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [7661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [7663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [7665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [7667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [7669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_binary_expression, 3, 0, 43), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [7683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [7689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [7697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), + [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [7715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), + [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_parenthesized_expression, 4, 0, 0), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [7727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3847), + [7730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3847), + [7733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 0), + [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [7737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 0), + [7739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), + [7741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 7), + [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), + [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression_not_assignment, 1, 0, 5), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [7749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), + [7751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), + [7753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3700), + [7756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(3700), + [7759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(1974), + [7762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(4040), + [7765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(6211), + [7768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 20), SHIFT_REPEAT(6736), + [7771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_unary_expression, 2, 0, 12), + [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_unary_expression, 2, 0, 12), + [7775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), + [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_postfix_expression, 2, 0, 27), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [7781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4143), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), + [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), + [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [7812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [7814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [7832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), + [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [7846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [7870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [7878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [7890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [7896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [7902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), + [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6770), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6277), + [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), + [7922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 49), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6482), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7840), + [7940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6351), + [7943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4093), + [7946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3615), + [7949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4095), + [7952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6112), + [7955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6372), + [7958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5904), + [7961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7132), + [7964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6351), + [7967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6554), + [7970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6402), + [7973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4826), + [7976] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(257), + [7979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [7982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(259), + [7985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(232), + [7988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6311), + [7991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6223), + [7994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7832), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [8003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [8007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6818), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [8017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [8019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [8025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [8033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6450), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 51), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [8047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4560), + [8050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4241), + [8053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4242), + [8056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6101), + [8059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4515), + [8062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5777), + [8065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7108), + [8068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4789), + [8071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6387), + [8074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4812), + [8077] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(245), + [8080] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(246), + [8083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [8086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(220), + [8089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4559), + [8092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7829), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [8105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [8109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6799), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6822), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6509), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [8153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 89), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5895), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), + [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5882), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [8223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6315), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7813), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [8249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [8253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), + [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [8277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7838), + [8285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [8297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7204), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [8311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), + [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7839), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [8341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5942), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5891), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [8365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7848), + [8373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [8411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [8419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [8435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [8445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [8447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6344), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [8459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7857), + [8467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [8475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), + [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [8485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [8487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6364), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [8499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [8501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7858), + [8507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [8515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [8523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [8531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [8535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [8555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [8561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [8569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6004), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [8579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [8581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [8585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [8593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7866), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [8603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [8621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [8623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [8627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7802), + [8643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [8647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6904), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [8673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [8679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [8689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3570), + [8692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [8710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7817), + [8732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3874), + [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), + [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [8755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [8771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [8773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7833), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6854), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6250), + [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [8785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6252), + [8787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 12), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [8793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [8795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6250), + [8797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [8799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), + [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), + [8803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [8811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 33), + [8815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [8819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), + [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7100), + [8837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), + [8843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [8855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7828), + [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [8859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [8863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), + [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), + [8871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5161), + [8874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4241), + [8877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), + [8879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4242), + [8882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(6101), + [8885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5132), + [8888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5777), + [8891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(7108), + [8894] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4789), + [8897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(6387), + [8900] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(4812), + [8903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(245), + [8906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(246), + [8909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(247), + [8912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(220), + [8915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(5142), + [8918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 2, 0, 67), SHIFT_REPEAT(7829), + [8921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6365), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5645), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [8933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5114), + [8936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4194), + [8939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4204), + [8942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6098), + [8945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5168), + [8948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5778), + [8951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7100), + [8954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5114), + [8957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5205), + [8960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6385), + [8963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(4918), + [8966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(237), + [8969] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [8972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(239), + [8975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(216), + [8978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(5104), + [8981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7828), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [8992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 13), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6587), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [9016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6395), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6395), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [9032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 0), + [9034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6514), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), + [9050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(3724), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), + [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5834), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), + [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7124), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5888), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [9123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7818), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [9149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [9151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), + [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5833), + [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), + [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7108), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5916), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [9369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [9389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6730), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), + [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7084), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5903), + [9465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7316), + [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [9473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), + [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [9517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [9519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [9521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), + [9525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7396), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [9557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [9561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [9563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [9565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [9567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7364), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [9585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [9587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [9621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [9645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), + [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [9671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7092), + [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), + [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), + [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [9745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5840), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), + [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [9775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [9779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [9781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4283), + [9785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), + [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [9805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [9817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [9829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [9867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [9871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [9873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [9911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [9913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [9915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [9917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [9921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [9923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [9931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [9933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [9939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [9953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [9955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [9963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [9965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [9971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7404), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [9995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [10005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [10011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [10017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [10027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7076), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [10047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4880), + [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [10065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [10071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [10077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [10087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [10089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [10097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [10099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [10101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [10103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [10105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), + [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6605), + [10111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6550), + [10113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [10115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [10121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [10123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [10125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [10131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [10137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [10139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [10157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [10163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [10165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6267), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [10171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6267), + [10181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6303), + [10183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6383), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [10187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6302), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7806), + [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [10203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), + [10211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [10221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [10223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [10225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [10231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [10233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [10239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [10247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [10251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [10259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4306), + [10263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [10265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [10271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [10275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [10277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [10279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [10283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [10285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [10287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [10291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [10295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [10297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [10301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5520), + [10317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5519), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), + [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [10329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), + [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5706), + [10377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), + [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), + [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [10473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), + [10475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(961), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [10479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [10481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), + [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), + [10485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [10487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5568), + [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [10493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [10495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [10497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [10499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [10505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [10513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [10517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [10519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [10525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [10527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [10535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1155), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4896), + [10549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [10557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [10561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [10571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [10575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [10579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [10581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [10583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [10585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [10591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [10597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [10603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [10605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [10613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [10621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [10623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [10625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [10627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [10629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [10631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [10635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [10637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [10641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [10645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [10655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4548), + [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [10663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [10679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [10689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [10691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [10697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [10699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [10701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [10709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [10711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [10713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [10721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [10725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [10729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [10735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [10753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [10755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [10757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [10759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [10761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [10763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [10767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [10771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [10779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [10783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [10787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [10791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [10793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6265), + [10801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [10803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [10805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [10807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [10809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [10811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [10815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [10817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [10819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [10821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [10823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [10825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [10833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5446), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), + [10841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [10847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [10855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5302), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [10863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [10869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [10871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [10873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [10875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), + [10877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [10879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [10881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5530), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), + [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [10889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [10893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [10895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), + [10901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [10905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [10907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [10909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [10911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [10917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [10919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [10929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [10931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [10941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [10943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), + [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [10959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), + [10973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [10975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), + [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [10993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [10995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [10997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5599), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5599), + [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [11007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6257), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), + [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), + [11017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [11023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [11025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5434), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5434), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [11045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), + [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), + [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [11069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [11071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [11073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [11075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [11077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [11079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [11081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [11087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [11089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [11095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6260), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6260), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6259), + [11101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4835), + [11109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), + [11115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [11117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [11119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [11121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [11123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), + [11135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [11139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6170), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [11143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [11145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [11161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), + [11165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [11169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [11171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [11181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [11183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [11185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [11193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [11197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [11201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [11203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6371), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [11213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [11217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [11219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [11221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [11223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [11225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [11227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [11231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [11235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), + [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [11245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [11247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [11249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [11251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [11253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [11255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [11257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [11259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [11261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [11263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [11265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [11267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [11269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [11271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [11273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [11275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [11277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [11279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [11281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [11283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [11285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [11287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [11289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [11291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [11293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [11295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [11297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [11299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [11301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [11303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [11305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [11307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [11309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [11311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [11313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [11315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [11317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [11319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [11321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [11323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [11325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [11327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [11329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [11331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [11333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [11335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [11337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [11339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [11341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [11343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [11345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [11347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [11349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [11351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [11353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [11355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [11357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [11359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [11361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [11363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [11365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [11367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [11369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [11371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [11373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [11375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [11377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [11379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [11381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [11383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [11385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [11387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [11389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [11391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [11393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [11397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [11399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [11403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [11405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [11407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [11411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [11417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [11433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [11435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [11437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [11439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [11441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [11447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [11449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3483), + [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [11453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [11471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [11491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [11493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [11501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [11511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3396), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [11523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [11535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), + [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), + [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4279), + [11579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [11581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), + [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), + [11589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [11591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [11597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [11609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [11613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [11617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 1, -1, 3), + [11619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [11621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [11623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 1, -1, 3), + [11625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6192), + [11629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), + [11633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [11635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4902), + [11639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), + [11641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), + [11645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), + [11647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3712), + [11650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(611), + [11653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), + [11655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3760), + [11658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6192), + [11661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3758), + [11664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3758), + [11667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [11671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3836), + [11674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3836), + [11677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_assignments, 2, 0, 0), + [11679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_assignments, 2, 0, 0), + [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [11683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), + [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [11691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3929), + [11694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3929), + [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [11699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3943), + [11702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3943), + [11705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [11707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), + [11709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6649), + [11712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [11714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [11716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), + [11720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 61), + [11722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 61), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [11726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [11728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), + [11730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3708), + [11733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7684), + [11736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [11739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), + [11741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6161), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [11746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6680), + [11749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [11751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [11753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [11755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [11757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [11759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [11761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [11763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6158), + [11765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [11767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [11769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [11771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [11773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [11775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [11777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), + [11781] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4068), + [11784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(4068), + [11787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [11789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [11793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4506), + [11796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [11798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3729), + [11801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(686), + [11804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3791), + [11807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6217), + [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [11812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), + [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [11816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4556), + [11819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3992), + [11822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3992), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [11829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3914), + [11832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3914), + [11835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [11837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4603), + [11840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 3, 0, 29), + [11842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 3, 0, 29), + [11844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 14), + [11846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 14), + [11848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4611), + [11851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 54), + [11853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 54), + [11855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [11863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3988), + [11866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3988), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), + [11871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [11873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), + [11875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [11877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), + [11881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4068), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [11889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4714), + [11892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3726), + [11895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7711), + [11898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(733), + [11901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6172), + [11904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [11910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3775), + [11913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3775), + [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [11918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4728), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [11925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [11927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [11929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6185), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [11941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6717), + [11944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [11954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [11956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [11958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6181), + [11962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [11964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6152), + [11968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3664), + [11971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(716), + [11974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4070), + [11977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6181), + [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), + [11982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4773), + [11985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [11987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [11989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [11991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), + [11995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6759), + [11998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3657), + [12001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(762), + [12004] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3904), + [12007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6205), + [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [12014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3981), + [12017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3981), + [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), + [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [12024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6619), + [12027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(4886), + [12030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [12032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3703), + [12035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(748), + [12038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4011), + [12041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6185), + [12044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [12048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), + [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [12062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), + [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [12068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [12074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 28), + [12076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 28), + [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [12080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4341), + [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [12094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), + [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [12106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3679), + [12109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7319), + [12112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(784), + [12115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6175), + [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [12120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 2, 0, 0), + [12122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 2, 0, 0), + [12124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 44), + [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5282), + [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [12132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6166), + [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), + [12136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [12138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [12148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_group, 3, 0, 0), + [12150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_group, 3, 0, 0), + [12152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, 0, 44), + [12154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, 0, 44), + [12156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [12160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [12166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [12168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [12170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6212), + [12174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3722), + [12177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(785), + [12180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3800), + [12183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6212), + [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [12188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [12190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(443), + [12193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [12199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [12205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [12207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [12213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 131), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [12219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 2, 0, 0), + [12221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 2, 0, 0), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [12225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pipeline, 2, 0, 0), + [12227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [12229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [12235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 2, 0, 0), + [12237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 2, 0, 0), + [12239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [12241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, 0, 44), + [12243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, 0, 44), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [12247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 69), + [12249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 71), + [12251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 73), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6191), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [12263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5050), + [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [12268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3690), + [12271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(765), + [12274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6163), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2767), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [12285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 0), + [12287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 0), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [12291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, 0, 44), + [12293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, 0, 44), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [12303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 2, 0, 0), + [12305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subshell, 3, 0, 0), + [12307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subshell, 3, 0, 0), + [12309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_statement, 3, 0, 0), + [12311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_statement, 3, 0, 0), + [12313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_test_command, 3, 0, 30), + [12315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_test_command, 3, 0, 30), + [12317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [12319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 97), + [12321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 99), + [12323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(439), + [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), + [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), + [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6299), + [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6546), + [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [12362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 44), + [12364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 44), + [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [12368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6779), + [12371] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3639), + [12374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(808), + [12377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6173), + [12380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), + [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [12394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 57), + [12396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [12402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [12406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), + [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [12420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 45), + [12422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 45), + [12424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 6, 0, 46), + [12426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 46), + [12428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, 0, 84), + [12430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, 0, 84), + [12432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [12434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 75), + [12436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 75), + [12438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), + [12440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 127), + [12442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 45), + [12444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 45), + [12446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), + [12448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 4, 0, 0), + [12450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, 0, 65), + [12452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, 0, 65), + [12454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 6, 0, 68), + [12456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 6, 0, 68), + [12458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 2), + [12460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 2), + [12462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 4, 0, 42), + [12464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 4, 0, 42), + [12466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6177), + [12468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 5, 0, 46), + [12470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 46), + [12472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [12474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [12476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [12478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), + [12480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), + [12482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [12484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [12486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [12488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [12490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [12492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [12494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 45), + [12496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 45), + [12498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 45), + [12500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 45), + [12502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(445), + [12505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 8, 0, 46), + [12507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 8, 0, 46), + [12509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), + [12511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 4), + [12513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 7, 0, 149), + [12515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 7, 0, 149), + [12517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), + [12519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_heredoc_body, 2, 0, 0), + [12521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__heredoc_body, 2, 0, 0), + [12523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__heredoc_body, 2, 0, 0), + [12525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), + [12527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 0), + [12529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 93), + [12531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 93), + [12533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), + [12535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 94), + [12537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), + [12539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 5, 0, 95), + [12541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 46), + [12543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 4, 0, 46), + [12545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_style_for_statement, 5, 0, 56), + [12547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_style_for_statement, 5, 0, 56), + [12549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), + [12551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 4), + [12553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 124), + [12555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 124), + [12557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, 0, 47), + [12559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, 0, 47), + [12561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), + [12563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 125), + [12565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 45), + [12567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 45), + [12569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 19), + [12571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 19), + [12573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), + [12575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_redirect, 6, 0, 126), + [12577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 7, 0, 46), + [12579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_statement, 7, 0, 46), + [12581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirected_statement, 2, -1, 15), + [12583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirected_statement, 2, -1, 15), + [12585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [12587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [12589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [12591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [12593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [12595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [12597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [12599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [12601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [12603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), + [12605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3668), + [12608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(796), + [12611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6177), + [12614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5143), + [12617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [12619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [12621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [12623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [12625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [12627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [12629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3766), + [12632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(436), + [12635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [12637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [12639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [12641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6150), + [12643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [12645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [12647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [12649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(446), + [12652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6545), + [12654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [12656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6168), + [12658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 1, 0, 12), + [12660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [12662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [12664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [12666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [12668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), + [12670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 16), + [12672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [12674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), + [12676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__heredoc_command, 1, 0, 17), + [12678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(437), + [12681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [12683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 153), + [12685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 153), + [12687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 109), + [12689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 136), + [12691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 136), + [12693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 45), + [12695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 138), + [12697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 138), + [12699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 109), + [12701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [12703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [12705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [12707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [12709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6157), + [12711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 155), + [12713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 155), + [12715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 6, 0, 112), + [12717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [12719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 144), + [12721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 144), + [12723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 83), + [12725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [12727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [12729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [12731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [12733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [12735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [12737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [12739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [12741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [12743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [12745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [12747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [12749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [12751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [12753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 140), + [12755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 140), + [12757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 46), + [12759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [12761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [12763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [12765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [12767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [12769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [12771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), + [12773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3704), + [12776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(919), + [12779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3974), + [12782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6182), + [12785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 142), + [12787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 142), + [12789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 112), + [12791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [12793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), + [12795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [12797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [12799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [12801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [12803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [12805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [12807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [12809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [12811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [12813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 51), + [12815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [12817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [12819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [12821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6356), + [12823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), + [12825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 64), + [12827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [12829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [12831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 77), + [12833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 77), + [12835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 59), + [12837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 81), + [12839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 81), + [12841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 3, 0, 60), + [12843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [12845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 134), + [12847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 134), + [12849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 5, 0, 79), + [12851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3682), + [12854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3682), + [12857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(900), + [12860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3743), + [12863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6208), + [12866] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 103), + [12868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 103), + [12870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 59), + [12872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 105), + [12874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 105), + [12876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 79), + [12878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 107), + [12880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 107), + [12882] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 45), + [12884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [12886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [12888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [12890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [12892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [12894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), + [12896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [12898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [12900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [12902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [12904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [12906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [12908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 113), + [12910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 113), + [12912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 60), + [12914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 115), + [12916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 115), + [12918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 83), + [12920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [12922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [12924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [12926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [12928] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(447), + [12931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [12933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [12935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), + [12937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [12939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), + [12941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [12943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [12945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [12947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [12949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [12951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [12953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [12955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [12957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3830), + [12960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), + [12962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 2, 0, 49), + [12964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6319), + [12966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [12968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6638), + [12971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [12973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 110), + [12975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 110), + [12977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_last_case_item, 4, 0, 46), + [12979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 154), + [12981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 154), + [12983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 78), + [12985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 78), + [12987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 143), + [12989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 143), + [12991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), + [12993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3691), + [12996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3691), + [12999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1017), + [13002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(4023), + [13005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6197), + [13008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 3, 0, 82), + [13010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 3, 0, 82), + [13012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [13014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 139), + [13016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 139), + [13018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 135), + [13020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 135), + [13022] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), + [13025] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7471), + [13028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3654), + [13031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(958), + [13034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7471), + [13037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6162), + [13040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5547), + [13043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 145), + [13045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 145), + [13047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 6, 0, 156), + [13049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 6, 0, 156), + [13051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [13053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6165), + [13055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_assignments_repeat1, 2, 0, 0), SHIFT_REPEAT(6616), + [13058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [13060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [13062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 104), + [13064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 104), + [13066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 106), + [13068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 106), + [13070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3826), + [13073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), + [13075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 108), + [13077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 108), + [13079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 111), + [13081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 111), + [13083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3701), + [13086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1019), + [13089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6165), + [13092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), + [13094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [13096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 1, 0, 12), + [13098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [13100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 141), + [13102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 141), + [13104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 114), + [13106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 114), + [13108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 4, 0, 116), + [13110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 4, 0, 116), + [13112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_item, 5, 0, 137), + [13114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_item, 5, 0, 137), + [13116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [13118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [13120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [13122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [13124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [13126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [13128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [13130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3871), + [13133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5517), + [13136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [13138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [13140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [13142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [13144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [13146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [13148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6197), + [13150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3841), + [13153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [13155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [13157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [13159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6216), + [13161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), + [13163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [13165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 3, 0, 49), + [13167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [13169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [13171] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5586), + [13174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5588), + [13177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7594), + [13179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), + [13181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6171), + [13183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [13185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 51), + [13187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6406), + [13189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), + [13191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7631), + [13193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_max_length, 4, 0, 64), + [13195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), + [13197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), + [13200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7594), + [13203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3685), + [13206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(1140), + [13209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(7594), + [13212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(6171), + [13215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [13217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [13219] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3862), + [13222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5593), + [13225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [13227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5622), + [13230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [13232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [13234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [13236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6511), + [13238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [13240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6490), + [13242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), + [13244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6274), + [13246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [13248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), + [13250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6273), + [13252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), + [13254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [13256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(449), + [13259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [13261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), + [13263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [13265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [13267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT(439), + [13270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [13272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [13274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [13276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), + [13278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [13280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3675), + [13283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(1401), + [13286] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(3879), + [13289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_redirected_statement_repeat2, 2, 0, 0), SHIFT_REPEAT(6218), + [13292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [13294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [13296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [13298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [13300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [13303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(439), + [13306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [13308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [13310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [13312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [13314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [13316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [13318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [13320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [13322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [13324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), + [13326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [13328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [13330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [13332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [13334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [13336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [13338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [13340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [13342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3852), + [13345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3852), + [13348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [13350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(5759), + [13353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), + [13355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [13357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), + [13359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [13361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [13363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [13365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [13367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [13369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), + [13371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6496), + [13373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6487), + [13375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), + [13377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), + [13379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [13381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [13383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2519), + [13385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6198), + [13387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), + [13389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [13391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [13393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [13395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6062), + [13397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [13399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [13401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [13403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [13405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [13407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), + [13409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [13411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), + [13413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [13415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [13417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6283), + [13419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [13421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6637), + [13423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [13425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [13427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [13429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [13431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [13433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [13435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), + [13437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [13439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6021), + [13441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [13443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), + [13445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [13447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [13449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [13451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [13453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [13455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6031), + [13457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [13459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), + [13461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [13463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [13465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [13467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), + [13469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [13471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), + [13473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), + [13475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), + [13477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [13479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6137), + [13481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [13483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), + [13485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [13487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [13489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [13491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6102), + [13493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [13495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), + [13497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [13499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6030), + [13501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [13503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), + [13505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), + [13507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [13509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [13511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [13513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [13515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5940), + [13517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [13519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [13521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [13523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), + [13525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [13527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [13529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [13531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [13533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [13535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), + [13537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), + [13539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), + [13541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [13543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), + [13545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [13547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6106), + [13549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [13551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [13553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [13555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [13557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [13559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [13561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6669), + [13563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), + [13565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [13567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [13569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [13571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [13573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [13575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6116), + [13577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [13579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [13581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [13583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), + [13585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6685), + [13587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [13589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [13591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), + [13593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [13595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5994), + [13597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [13599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), + [13601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [13603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), + [13605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [13607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [13609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), + [13611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), + [13613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [13615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [13617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [13619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), + [13621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [13623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6007), + [13625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [13627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [13629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [13631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [13633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [13635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [13637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [13639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6096), + [13641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [13643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), + [13645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [13647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5969), + [13649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [13651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [13653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), + [13655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), + [13657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [13659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [13661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [13663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), + [13665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [13667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [13669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [13671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [13673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [13675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), + [13677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [13679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), + [13681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [13683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [13685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), + [13687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), + [13689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [13691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), + [13693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [13695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [13697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), + [13699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), + [13701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [13703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), + [13705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [13707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [13709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [13711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [13713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6615), + [13715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [13717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [13719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [13721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [13723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6015), + [13725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [13727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [13729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [13731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6009), + [13733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [13735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [13737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [13739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [13741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [13743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), + [13745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [13747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [13749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [13751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [13753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [13755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [13757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [13759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [13761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [13763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [13765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [13767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), + [13769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [13771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [13773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [13775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [13777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [13779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [13781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [13783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [13785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [13787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [13789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [13791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), + [13793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), + [13795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [13797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [13799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [13801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [13803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [13805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [13807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [13809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), + [13811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [13813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), + [13815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [13817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [13819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6037), + [13821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [13823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [13825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [13827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [13829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [13831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [13833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [13835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), + [13837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [13839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5983), + [13841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [13843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4208), + [13846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4209), + [13849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6159), + [13852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [13854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(6198), + [13857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(4917), + [13860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(150), + [13863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(151), + [13866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(152), + [13869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [13871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [13873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6058), + [13875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [13877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6016), + [13879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [13881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6044), + [13883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [13885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), + [13887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), + [13889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [13891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [13893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5989), + [13895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6836), + [13897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [13899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2461), + [13901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6017), + [13903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [13905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), + [13907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6827), + [13909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), + [13911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [13913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6018), + [13915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [13917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), + [13919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [13921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), + [13923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [13925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [13927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [13929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), + [13931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [13933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), + [13935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [13937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6147), + [13939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [13941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [13943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [13945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6025), + [13947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [13949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [13951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6375), + [13953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [13955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [13957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [13959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [13961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6129), + [13963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), + [13965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), + [13967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [13969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [13971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [13973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [13975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [13977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [13979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [13981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [13983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [13985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6107), + [13987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [13989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [13991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [13993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [13995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [13997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6130), + [13999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [14001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), + [14003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [14005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [14007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [14009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5999), + [14011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [14013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [14015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [14017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6033), + [14019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [14021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), + [14023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), + [14025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), + [14027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [14029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6133), + [14031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [14033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5998), + [14035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [14037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6043), + [14039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [14041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), + [14043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [14045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6093), + [14047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [14049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), + [14051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [14053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), + [14055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6188), + [14057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6188), + [14059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), + [14061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6571), + [14063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [14065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [14067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [14069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6692), + [14071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [14073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), + [14075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [14077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [14079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [14081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [14083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [14085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [14087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [14089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [14091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [14093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [14095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [14097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [14099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [14101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [14103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [14105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [14107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [14109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [14111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [14113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [14115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [14117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), + [14119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [14121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [14123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [14125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [14127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [14129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [14131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [14133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [14135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [14137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [14139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [14141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [14143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [14145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [14147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), + [14149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), + [14151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [14153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [14155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [14157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [14159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [14161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [14163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [14165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [14167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [14169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [14171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), + [14173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [14175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [14177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), + [14179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [14181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [14183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), + [14185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [14187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [14189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [14191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [14193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [14195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [14197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [14199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [14201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), + [14203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), + [14205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [14207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [14209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), + [14211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [14213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), + [14215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [14217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [14219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [14221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [14223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [14225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7491), + [14227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [14229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [14231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), + [14233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [14235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [14237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7714), + [14239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [14241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [14243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), + [14245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [14247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [14249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [14251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [14253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [14255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [14257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7688), + [14259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [14261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [14263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [14265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [14267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [14269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [14271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [14273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [14275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [14277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), + [14279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [14281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [14283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7489), + [14285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [14287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [14289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [14291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [14293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [14295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [14297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [14299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [14301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [14303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6155), + [14305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), + [14307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [14309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [14311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [14313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [14315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [14317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [14319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [14321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [14323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [14325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [14327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [14329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [14331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [14333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [14335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7598), + [14337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [14339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [14341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7598), + [14343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [14345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [14347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [14349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [14351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [14353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [14355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), + [14357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), + [14359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [14361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 51), + [14363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [14365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [14367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [14369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [14371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [14373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [14375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [14377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [14379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [14381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [14383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [14385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [14387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [14389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6178), + [14391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [14393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [14395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [14397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [14399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6187), + [14401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 2, 0, 0), + [14403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [14405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [14407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [14409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [14411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [14413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [14415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [14417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [14419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6178), + [14422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4910), + [14425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(353), + [14428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(354), + [14431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(355), + [14434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6187), + [14437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_body_repeat1, 2, 0, 0), + [14439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [14441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [14443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [14445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [14447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [14449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [14451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [14453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [14455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [14457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [14459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [14461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [14463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [14465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [14467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [14469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [14471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [14473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3692), + [14475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [14477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [14479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [14481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6242), + [14483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [14485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [14487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [14489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [14491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [14493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [14495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [14497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [14499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [14501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [14503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [14505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [14507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6184), + [14509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_body, 1, 0, 0), + [14511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [14513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [14515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [14517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [14519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [14521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [14523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [14525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [14527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [14529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [14531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [14533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [14535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [14537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [14539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [14541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [14543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [14545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [14547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [14549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), + [14551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [14553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [14555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [14557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), + [14559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [14561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), + [14563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [14565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [14567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [14569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [14571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [14573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [14575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), + [14577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [14579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [14581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [14583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [14585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [14587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [14589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [14591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [14593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [14595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [14597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [14599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [14601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [14603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [14605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [14607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [14609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [14611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [14613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [14615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [14617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [14619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [14621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [14623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [14625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [14627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [14629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [14631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 3, 0, 0), + [14633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [14635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [14637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [14639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6392), + [14642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(5901), + [14645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(7180), + [14648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), + [14650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6392), + [14653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 2, 0, 0), SHIFT_REPEAT(6249), + [14656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [14658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5847), + [14660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 1, 0, 12), + [14662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [14664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [14666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [14668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [14670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6392), + [14672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5901), + [14674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), + [14676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 2, 0, 12), + [14678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [14680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), + [14682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_regex, 1, 0, 12), + [14684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6251), + [14686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [14688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [14690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [14692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), + [14694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3870), + [14697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3870), + [14700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [14702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7419), + [14704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [14706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [14708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), + [14710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), + [14712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [14714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), + [14716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7630), + [14718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [14720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), + [14722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7634), + [14724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), + [14726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [14728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), + [14730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [14732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7054), + [14734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [14736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [14738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7207), + [14740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [14742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [14744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7158), + [14746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7158), + [14748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [14750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), + [14752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [14754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), + [14756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 0), + [14758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [14760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 12), + [14762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_binary_expression, 3, 0, 27), + [14764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6262), + [14766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length_expression, 1, 0, 7), + [14768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6379), + [14771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [14773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 2, 0, 50), + [14775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [14777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [14779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [14781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [14783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [14785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [14787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [14789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [14791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [14793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 49), + [14795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [14797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [14799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 49), + [14801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [14803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [14805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [14807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [14809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 3, 0, 63), + [14811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [14813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [14815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [14817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [14819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [14821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [14823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [14825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [14827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), + [14829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [14831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [14833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [14835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [14837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [14839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [14841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [14843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [14845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [14847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [14849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [14851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [14853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [14855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [14857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4957), + [14859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [14861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [14863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [14865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [14867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [14869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [14871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 51), + [14873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [14875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [14877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 51), + [14879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 90), + [14881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [14883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 49), + [14885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 91), + [14887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [14889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [14891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), + [14893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [14895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [14897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [14899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 64), + [14901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 4, 0, 92), + [14903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [14905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [14907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [14909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [14911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [14913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [14915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [14917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [14919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [14921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [14923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [14925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [14927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [14929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [14931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [14933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [14935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [14937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [14939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 48), + [14941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_regex_repeat1, 1, 0, 48), + [14943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [14945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [14947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [14949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [14951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [14953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [14955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), + [14957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), + [14959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [14961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [14963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [14965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [14967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [14969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), + [14971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 89), + [14973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), + [14975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [14977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [14979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 51), + [14981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [14983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [14985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [14987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [14989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [14991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 122), + [14993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 64), + [14995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [14997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_max_length, 5, 0, 123), + [14999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [15001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), + [15003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [15005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [15007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [15009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [15011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [15013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [15015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [15017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [15019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [15021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [15023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [15025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), + [15027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7104), + [15029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [15031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [15033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [15035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 31), + [15037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), + [15039] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 2, 0, 34), SHIFT_REPEAT(6584), + [15042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [15044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), + [15046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [15048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), + [15050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [15052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [15054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), + [15056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5055), + [15059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), + [15061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [15063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 85), + [15065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [15067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), + [15069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 52), + [15071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 2, 0, 32), + [15073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), + [15075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__concatenation_in_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(5442), + [15078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [15080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [15082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_concatenation_repeat1, 2, 0, 0), SHIFT_REPEAT(3808), + [15085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), + [15087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [15089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [15091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__concatenation_in_expansion, 2, 0, 0), + [15093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), + [15095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [15098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7301), + [15100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 62), + [15102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), + [15104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [15106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 53), + [15108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [15110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [15112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [15114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6817), + [15116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [15118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [15120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6804), + [15122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6804), + [15124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), + [15126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 121), + [15128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [15130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6808), + [15132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), + [15134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 45), + [15136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 46), + [15138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7658), + [15140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), + [15142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), + [15144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 1, 0, 7), + [15146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_expression, 2, 0, 12), + [15148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_variable_assignment, 3, 0, 55), + [15150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_variable_assignment, 3, 0, 55), + [15152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 79), + [15154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [15156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5329), + [15158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [15160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 60), + [15162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [15164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [15166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 3, 0, 59), + [15168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [15170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [15172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 45), + [15174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [15176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [15178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__c_expression, 1, 0, 26), + [15180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__c_expression, 1, 0, 26), + [15182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6678), + [15185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 46), + [15187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [15189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [15191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [15193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5393), + [15195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [15197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 109), + [15199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [15201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [15203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [15205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expansion_body_repeat1, 1, 0, 12), + [15207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 5, 0, 112), + [15209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [15211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), + [15213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [15215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_case_item, 4, 0, 83), + [15217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [15219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [15221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [15223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [15225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [15227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [15229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [15231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [15233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [15235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [15237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [15239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [15241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__literal_repeat1, 2, 0, 0), SHIFT_REPEAT(6770), + [15244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 130), + [15246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [15248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 133), + [15250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [15252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [15254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [15256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [15258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [15260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), + [15262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [15264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [15266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [15268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), + [15270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [15272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [15274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [15276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [15278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [15280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), + [15282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [15284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [15286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [15288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [15290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [15292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [15294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [15296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 8, 0, 158), + [15298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arithmetic_expansion_repeat1, 2, 0, 0), SHIFT_REPEAT(4225), + [15301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5429), + [15303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [15305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [15307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [15309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4892), + [15311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [15313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [15315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [15317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [15319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [15321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [15323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), + [15325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 96), + [15327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [15329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 98), + [15331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [15333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 100), + [15335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 101), + [15337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 5, 0, 102), + [15339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 128), + [15341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [15343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [15345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [15347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [15349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [15351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [15353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [15355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [15357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [15359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [15361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [15363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [15365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [15367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), + [15369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [15371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [15373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [15375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [15377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [15379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [15381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [15383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [15385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [15387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 129), + [15389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [15391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [15393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [15395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [15397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [15399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [15401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [15403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 152), + [15405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [15407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [15409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [15411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [15413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [15415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6816), + [15417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [15419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(4978), + [15422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6802), + [15424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [15426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [15428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [15430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [15432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 70), + [15434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [15436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [15438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 72), + [15440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 4, 0, 74), + [15442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [15444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [15446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [15448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [15450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), + [15452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [15454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [15456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [15458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [15460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [15462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [15464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [15466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__for_body_repeat1, 2, 0, 0), SHIFT_REPEAT(5009), + [15469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [15471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 80), SHIFT_REPEAT(3623), + [15474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_item_repeat1, 2, 0, 80), + [15476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 6, 0, 132), + [15478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [15480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 2, 0, 12), + [15482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [15484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [15486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [15488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [15490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [15492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [15494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [15496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [15498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [15500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [15502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [15504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [15506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6219), + [15508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [15510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [15512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [15514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [15516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [15518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [15520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [15522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 3, 0, 58), + [15524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [15526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [15528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 151), + [15530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [15532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [15534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [15536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [15538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [15540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [15542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [15544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [15546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [15548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [15550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [15552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [15554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [15556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [15558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [15560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [15562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [15564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [15566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [15568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_body, 7, 0, 150), + [15570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [15572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [15574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [15576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7171), + [15578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 119), + [15580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [15582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 3, 0, 12), + [15584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [15586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [15588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), + [15590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), + [15592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [15594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), + [15596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7600), + [15598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 89), + [15600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 1, 0, 12), + [15602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), + [15604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), + [15606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [15608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), + [15610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 88), + [15612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), + [15614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [15616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), + [15618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [15620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [15622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [15624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [15626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [15628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [15630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [15632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [15634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [15636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [15638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [15640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [15642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [15644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [15646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [15648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [15650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [15652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [15654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [15656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [15658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [15660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [15662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), + [15664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [15666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [15668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), + [15670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [15672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [15674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [15676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [15678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [15680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7078), + [15682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [15684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [15686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [15688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), + [15690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [15692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [15694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [15696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [15698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [15700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [15702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [15704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [15706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [15708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7427), + [15710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [15712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [15714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [15716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [15718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), + [15720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [15722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [15724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [15726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6884), + [15728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [15730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [15732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [15734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [15736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), + [15738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [15740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [15742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [15744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [15746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), + [15748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [15750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [15752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [15754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [15756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [15758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [15760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), + [15762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [15764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [15766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), + [15768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7227), + [15770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [15772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [15774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [15776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7264), + [15778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [15780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [15782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [15784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [15786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [15788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7290), + [15790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [15792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7328), + [15794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [15796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [15798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [15800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [15802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [15804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [15806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [15808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), + [15810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), + [15812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [15814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [15816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [15818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [15820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7481), + [15822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [15824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [15826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7530), + [15828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [15830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [15832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [15834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [15836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [15838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [15840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), + [15842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [15844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [15846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [15848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [15850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [15852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [15854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [15856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [15858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [15860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [15862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [15864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), + [15866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [15868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [15870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), + [15872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [15874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [15876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [15878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [15880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [15882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [15884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [15886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [15888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6920), + [15890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), + [15892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [15894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [15896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [15898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [15900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [15902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), + [15904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [15906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [15908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [15910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [15912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [15914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [15916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [15918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7020), + [15920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [15922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [15924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), + [15926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), + [15928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), + [15930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [15932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), + [15934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [15936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), + [15938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [15940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [15942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [15944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [15946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [15948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [15950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [15952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [15954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [15956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [15958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [15960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [15962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), + [15964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [15966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7192), + [15968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [15970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [15972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [15974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), + [15976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [15978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [15980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [15982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [15984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [15986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [15988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [15990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [15992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [15994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), + [15996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [15998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [16000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [16002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [16004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [16006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), + [16008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6227), + [16010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [16012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [16014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), + [16016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), + [16018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), + [16020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [16022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [16024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [16026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [16028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [16030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [16032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [16034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [16036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [16038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [16040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [16042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), + [16044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [16046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [16048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), + [16050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [16052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [16054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [16056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7448), + [16058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [16060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [16062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [16064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [16066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [16068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6232), + [16070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [16072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), + [16074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), + [16076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), + [16078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [16080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [16082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [16084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [16086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), + [16088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [16090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), + [16092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [16094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7516), + [16096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [16098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7536), + [16100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), + [16102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [16104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [16106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [16108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), + [16110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [16112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), + [16114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [16116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [16118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [16120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), + [16122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [16124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 146), + [16126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [16128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [16130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [16132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), + [16134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), + [16136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [16138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6203), + [16140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7628), + [16142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [16144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6531), + [16146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [16148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [16150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), + [16152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6207), + [16154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [16156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), + [16158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [16160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [16162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), + [16164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [16166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [16168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [16170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [16172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [16174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [16176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [16178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [16180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [16182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [16184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [16186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [16188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), + [16190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), + [16192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [16194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7727), + [16196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [16198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [16200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7797), + [16202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [16204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [16206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7262), + [16208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [16210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7572), + [16212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [16214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [16216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [16218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [16220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [16222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [16224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [16226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [16228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [16230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [16232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [16234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_operator, 2, 0, 49), + [16236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [16238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), + [16240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [16242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [16244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), + [16246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [16248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [16250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [16252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [16254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [16256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [16258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), + [16260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [16262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [16264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [16266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7263), + [16268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [16270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [16272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7405), + [16274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), + [16276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [16278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [16280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [16282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7541), + [16284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [16286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [16288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7666), + [16290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [16292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), + [16294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [16296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [16298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [16300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [16302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6974), + [16304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [16306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), + [16308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [16310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), + [16312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [16314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [16316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [16318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [16320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [16322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), + [16324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [16326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7223), + [16328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [16330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__test_command_binary_expression, 3, 0, 43), + [16332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [16334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [16336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [16338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [16340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), + [16342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [16344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7445), + [16346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 86), + [16348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 4, 0, 87), + [16350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [16352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [16354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [16356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [16358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7576), + [16360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [16362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [16364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [16366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), + [16368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [16370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [16372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [16374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [16376] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [16378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [16380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6876), + [16382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [16384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5290), + [16386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [16388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [16390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), + [16392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [16394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [16396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [16398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [16400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [16402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [16404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7015), + [16406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [16408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), + [16410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [16412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), + [16414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7118), + [16416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [16418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [16420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [16422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [16424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), + [16426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [16428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [16430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [16432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), + [16434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [16436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [16438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [16440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7258), + [16442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7293), + [16444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5543), + [16446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [16448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [16450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7315), + [16452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 147), + [16454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), + [16456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [16458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [16460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [16462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [16464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [16466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [16468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7417), + [16470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6495), + [16472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [16474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [16476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [16478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [16480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 6, 0, 148), + [16482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [16484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [16486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), + [16488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [16490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [16492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), + [16494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [16496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), + [16498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), + [16500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [16502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [16504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [16506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), + [16508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [16510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [16512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [16514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [16516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [16518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6243), + [16520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [16522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [16524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [16526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7648), + [16528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [16530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [16532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [16534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [16536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [16538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [16540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [16542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [16544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [16546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [16548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [16550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [16552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [16554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [16556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [16558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [16560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), + [16562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6304), + [16564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7210), + [16566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [16568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), + [16570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [16572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [16574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [16576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [16578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [16580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [16582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [16584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [16586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [16588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [16590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [16592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6534), + [16594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), + [16596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [16598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [16600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [16602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [16604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [16606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [16608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), + [16610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [16612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [16614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [16616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [16618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), + [16620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7139), + [16622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [16624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [16626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [16628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [16630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), + [16632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), + [16634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [16636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [16638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), + [16640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [16642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [16644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [16646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [16648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [16650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [16652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [16654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [16656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [16658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [16660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [16662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [16664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [16666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [16668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [16670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [16672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [16674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), + [16676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [16678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [16680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [16682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [16684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [16686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [16688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [16690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [16692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [16694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [16696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [16698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), + [16700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), + [16702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [16704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [16706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [16708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [16710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [16712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [16714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [16716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [16718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [16720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [16722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [16724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [16726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6295), + [16728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [16730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [16732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), + [16734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [16736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [16738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [16740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [16742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [16744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5601), + [16746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [16748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [16750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [16752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [16754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [16756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [16758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [16760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [16762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6282), + [16764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [16766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [16768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [16770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [16772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), + [16774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [16776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [16778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [16780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [16782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [16784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [16786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [16788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [16790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [16792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [16794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [16796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), + [16798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [16800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [16802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [16804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), + [16806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [16808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 117), + [16810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 118), + [16812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_removal, 2, 0, 12), + [16814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [16816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [16818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [16820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [16822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [16824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6236), + [16826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [16828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), + [16830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [16832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [16834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [16836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [16838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [16840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [16842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 5, 0, 120), + [16844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [16846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [16848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_regex_replacement, 7, 0, 157), + [16850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [16852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), + [16854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6867), + [16856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [16858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [16860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [16862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [16864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [16866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), + [16868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [16870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [16872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [16874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [16876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [16878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [16880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [16882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6488), + [16884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [16886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6412), + [16888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [16890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [16892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [16894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6285), + [16896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [16898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [16900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [16902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [16904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [16906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [16908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [16910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [16912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [16914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [16916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [16918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6436), + [16920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [16922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [16924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [16926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), + [16928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [16930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [16932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [16934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [16936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [16938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [16940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [16942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), + [16944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [16946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [16948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [16950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), + [16952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [16954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [16956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [16958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [16960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [16962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), + [16964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [16966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), + [16968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [16970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [16972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [16974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [16976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [16978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), + [16980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [16982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [16984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [16986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [16988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [16990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [16992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [16994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [16996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [16998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [17000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [17002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [17004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [17006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [17008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6234), + [17010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7799), + [17012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6221), + [17014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [17016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [17018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [17020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [17022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [17024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [17026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7531), + [17028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), + [17030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [17032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [17034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [17036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [17038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [17040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [17042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [17044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5508), + [17046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [17048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [17050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), + [17052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [17054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6911), + [17056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6923), + [17058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6933), + [17060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [17062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), + [17064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), + [17066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), + [17068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [17070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [17072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7003), + [17074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), + [17076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [17078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), + [17080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), + [17082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), + [17084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [17086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), + [17088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [17090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [17092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7097), + [17094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [17096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [17098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [17100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), + [17102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), + [17104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), + [17106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [17108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), + [17110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), + [17112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [17114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7185), + [17116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7193), + [17118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), + [17120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7209), + [17122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [17124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [17126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), + [17128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [17130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7249), + [17132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [17134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), + [17136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [17138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [17140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7289), + [17142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7297), + [17144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), + [17146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7313), + [17148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7321), + [17150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7329), + [17152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [17154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [17156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), + [17158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7361), + [17160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [17162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [17164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [17166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7393), + [17168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [17170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [17172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [17174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [17176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [17178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [17180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), + [17182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [17184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7590), + [17186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), + [17188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), + [17190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [17192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), + [17194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [17196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [17198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7737), + [17200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [17202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7739), + [17204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7740), + [17206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [17208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7742), + [17210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7743), + [17212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [17214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7745), + [17216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7746), + [17218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7747), + [17220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7748), + [17222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7749), + [17224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7750), + [17226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7751), + [17228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [17230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [17232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7754), + [17234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), + [17236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7756), + [17238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7757), + [17240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7758), + [17242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7759), + [17244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7760), + [17246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7761), + [17248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7762), + [17250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7763), + [17252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7764), + [17254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7765), + [17256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7766), + [17258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7767), + [17260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7768), + [17262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), + [17264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [17266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), + [17268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7772), + [17270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7773), + [17272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7774), + [17274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7775), + [17276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7776), + [17278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7777), + [17280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7778), + [17282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7779), + [17284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7780), + [17286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7781), + [17288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7782), + [17290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7783), + [17292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7784), + [17294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7785), + [17296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7786), + [17298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7787), + [17300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7788), + [17302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7789), + [17304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7790), + [17306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7791), + [17308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7792), + [17310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7793), }; enum ts_external_scanner_symbol_identifiers { @@ -359011,7 +365719,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LPAREN] = true, }, @@ -359019,6 +365726,7 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LPAREN] = true, }, @@ -359089,43 +365797,41 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_LPAREN] = true, [ts_external_token_esac] = true, }, [16] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_esac] = true, }, [17] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, }, [18] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_esac] = true, }, [19] = { [ts_external_token_file_descriptor] = true, @@ -359136,11 +365842,13 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_esac] = true, }, [20] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, @@ -359158,19 +365866,19 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [22] = { [ts_external_token_file_descriptor] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, }, [23] = { [ts_external_token_file_descriptor] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LPAREN] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, [24] = { [ts_external_token_variable_name] = true, @@ -359180,33 +365888,32 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [25] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_LPAREN] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, [26] = { [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_heredoc_redirect_token1] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, }, [27] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_LPAREN] = true, }, [28] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, @@ -359216,6 +365923,7 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [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, }, @@ -359223,8 +365931,8 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, @@ -359261,26 +365969,26 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [34] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, - [ts_external_token_heredoc_redirect_token1] = true, }, [35] = { [ts_external_token_file_descriptor] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, }, [36] = { [ts_external_token_file_descriptor] = true, - [ts_external_token_variable_name] = true, + [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, [37] = { [ts_external_token__concat] = true, @@ -359345,48 +366053,48 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, }, [45] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_LPAREN] = true, + }, + [46] = { [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_heredoc_redirect_token1] = true, }, - [46] = { + [47] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, - [47] = { + [48] = { [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, + [ts_external_token__regex_no_space] = true, [ts_external_token__brace_start] = true, [ts_external_token_LPAREN] = true, }, - [48] = { - [ts_external_token_test_operator] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - }, [49] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, - [ts_external_token_LT_LT] = true, - [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LPAREN] = true, }, [50] = { [ts_external_token_test_operator] = true, - [ts_external_token__regex_no_space] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_LPAREN] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, }, [51] = { + [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_LT_LT] = true, + [ts_external_token_LT_LT_DASH] = true, [ts_external_token_LPAREN] = true, }, [52] = { @@ -359404,6 +366112,14 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, }, [54] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token__brace_start] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + [ts_external_token_esac] = true, + }, + [55] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -359413,7 +366129,7 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [55] = { + [56] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, @@ -359422,14 +366138,6 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [56] = { - [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, - [ts_external_token__brace_start] = true, - [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_LPAREN] = true, - [ts_external_token_esac] = true, - }, [57] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, @@ -359440,6 +366148,11 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [58] = { + [ts_external_token_test_operator] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_LT_LT] = true, + }, + [59] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, @@ -359447,19 +366160,18 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [59] = { - [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, + [60] = { + [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, }, - [60] = { + [61] = { [ts_external_token__concat] = true, [ts_external_token_test_operator] = true, [ts_external_token_extglob_pattern] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, - [61] = { + [62] = { [ts_external_token_file_descriptor] = true, [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, @@ -359467,52 +366179,48 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, - [62] = { - [ts_external_token_LT_LT] = true, - }, [63] = { - [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, }, [64] = { - [ts_external_token_test_operator] = true, - [ts_external_token_extglob_pattern] = true, - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, - }, - [65] = { [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, }, - [66] = { - [ts_external_token_LT_LT] = true, - [ts_external_token_heredoc_redirect_token1] = true, - }, - [67] = { + [65] = { [ts_external_token_test_operator] = true, [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, [ts_external_token_LPAREN] = true, [ts_external_token_esac] = true, }, - [68] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, + [66] = { [ts_external_token_test_operator] = true, - [ts_external_token__brace_start] = true, + [ts_external_token_extglob_pattern] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, + [67] = { + [ts_external_token_LT_LT] = true, [ts_external_token_heredoc_redirect_token1] = true, }, + [68] = { + [ts_external_token_RBRACK] = true, + [ts_external_token_LT_LT] = true, + }, [69] = { [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, }, [70] = { - [ts_external_token_RBRACK] = true, - [ts_external_token_LT_LT] = true, + [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_heredoc_redirect_token1] = true, }, [71] = { [ts_external_token_test_operator] = true, @@ -359522,8 +366230,10 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [72] = { [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, + [ts_external_token__expansion_word] = true, [ts_external_token__brace_start] = true, - [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_RBRACE] = true, + [ts_external_token_LPAREN] = true, }, [73] = { [ts_external_token_file_descriptor] = true, @@ -359533,18 +366243,16 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_start] = true, }, [74] = { - [ts_external_token_variable_name] = true, + [ts_external_token__empty_value] = true, [ts_external_token_test_operator] = true, - [ts_external_token__expansion_word] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACE] = true, [ts_external_token_LPAREN] = true, }, [75] = { - [ts_external_token__empty_value] = true, + [ts_external_token_variable_name] = true, [ts_external_token_test_operator] = true, [ts_external_token__brace_start] = true, - [ts_external_token_LPAREN] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, [76] = { [ts_external_token__immediate_double_hash] = true, @@ -359565,41 +366273,41 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_start] = true, }, [79] = { - [ts_external_token_variable_name] = true, - [ts_external_token_test_operator] = true, - [ts_external_token__brace_start] = true, - }, - [80] = { [ts_external_token_test_operator] = true, [ts_external_token_extglob_pattern] = true, [ts_external_token__brace_start] = true, }, - [81] = { + [80] = { [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, }, + [81] = { + [ts_external_token_variable_name] = true, + [ts_external_token_test_operator] = true, + [ts_external_token__brace_start] = true, + }, [82] = { [ts_external_token_test_operator] = true, - [ts_external_token__bare_dollar] = true, + [ts_external_token_regex] = true, [ts_external_token__brace_start] = true, - [ts_external_token_RBRACK] = true, }, [83] = { [ts_external_token_test_operator] = true, - [ts_external_token_regex] = true, + [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, + [ts_external_token_RBRACK] = true, }, [84] = { - [ts_external_token__immediate_double_hash] = true, - [ts_external_token_RBRACE] = true, - }, - [85] = { [ts_external_token_test_operator] = true, [ts_external_token__bare_dollar] = true, [ts_external_token__brace_start] = true, }, + [85] = { + [ts_external_token__immediate_double_hash] = true, + [ts_external_token_RBRACE] = true, + }, [86] = { [ts_external_token_variable_name] = true, [ts_external_token_LPAREN] = true, @@ -359617,21 +366325,21 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_esac] = true, }, [89] = { - [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_LPAREN] = true, - }, - [90] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, [ts_external_token_esac] = true, }, + [90] = { + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + }, [91] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, @@ -359642,6 +366350,7 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [93] = { [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, @@ -359649,14 +366358,13 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [94] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, }, [95] = { [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, - [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, [ts_external_token_heredoc_redirect_token1] = true, @@ -359691,47 +366399,47 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__brace_start] = true, }, [101] = { + [ts_external_token_variable_name] = true, + [ts_external_token__expansion_word] = true, + [ts_external_token_RBRACE] = true, + [ts_external_token_LPAREN] = true, + }, + [102] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [102] = { + [103] = { [ts_external_token_file_descriptor] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [103] = { + [104] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_variable_name] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [104] = { + [105] = { [ts_external_token_file_descriptor] = true, [ts_external_token_RBRACK] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, - [105] = { - [ts_external_token_variable_name] = true, - [ts_external_token__expansion_word] = true, - [ts_external_token_RBRACE] = true, - [ts_external_token_LPAREN] = true, - }, [106] = { - [ts_external_token_RBRACE] = true, - [ts_external_token_heredoc_redirect_token1] = true, - [ts_external_token_LPAREN] = true, - }, - [107] = { [ts_external_token_file_descriptor] = true, [ts_external_token__concat] = true, [ts_external_token_LT_LT] = true, [ts_external_token_LT_LT_DASH] = true, }, + [107] = { + [ts_external_token_RBRACE] = true, + [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_LPAREN] = true, + }, [108] = { [ts_external_token_variable_name] = true, [ts_external_token__expansion_word] = true, @@ -359739,15 +366447,15 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { }, [109] = { [ts_external_token_file_descriptor] = true, + [ts_external_token__concat] = true, [ts_external_token_heredoc_redirect_token1] = true, }, [110] = { - [ts_external_token_variable_name] = true, + [ts_external_token_file_descriptor] = true, [ts_external_token_heredoc_redirect_token1] = true, }, [111] = { - [ts_external_token_file_descriptor] = true, - [ts_external_token__concat] = true, + [ts_external_token_variable_name] = true, [ts_external_token_heredoc_redirect_token1] = true, }, [112] = { @@ -359758,26 +366466,26 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_LT_LT_DASH] = true, }, [114] = { - [ts_external_token_heredoc_content] = true, - [ts_external_token_heredoc_end] = true, + [ts_external_token_RBRACE] = true, }, [115] = { - [ts_external_token__concat] = true, + [ts_external_token_heredoc_content] = true, + [ts_external_token_heredoc_end] = true, }, [116] = { - [ts_external_token_RBRACE] = true, + [ts_external_token__concat] = true, }, [117] = { - [ts_external_token__concat] = true, - [ts_external_token_heredoc_redirect_token1] = true, + [ts_external_token_regex] = true, + [ts_external_token_RBRACE] = true, }, [118] = { [ts_external_token__regex_no_slash] = true, [ts_external_token_RBRACE] = true, }, [119] = { - [ts_external_token_regex] = true, - [ts_external_token_RBRACE] = true, + [ts_external_token__concat] = true, + [ts_external_token_heredoc_redirect_token1] = true, }, [120] = { [ts_external_token_heredoc_redirect_token1] = true, @@ -359788,16 +366496,16 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_RBRACE] = true, }, [122] = { - [ts_external_token_simple_heredoc_body] = true, - [ts_external_token__heredoc_body_beginning] = true, - }, - [123] = { [ts_external_token__concat] = true, [ts_external_token__external_expansion_sym_hash] = true, [ts_external_token__external_expansion_sym_bang] = true, [ts_external_token__external_expansion_sym_equal] = true, [ts_external_token_RBRACE] = true, }, + [123] = { + [ts_external_token_simple_heredoc_body] = true, + [ts_external_token__heredoc_body_beginning] = true, + }, [124] = { [ts_external_token__external_expansion_sym_hash] = true, [ts_external_token__external_expansion_sym_bang] = true, @@ -359815,10 +366523,10 @@ static const bool ts_external_scanner_states[131][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_extglob_pattern] = true, }, [128] = { - [ts_external_token_heredoc_end] = true, + [ts_external_token_RBRACK] = true, }, [129] = { - [ts_external_token_RBRACK] = true, + [ts_external_token_heredoc_end] = true, }, [130] = { [ts_external_token_heredoc_start] = true, diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b233..a17a574f 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif